Merge tag 'fscache-fixes-for-ceph' into wip-fscache
[linux-2.6-block.git] / fs / ceph / caps.c
CommitLineData
3d14c5d2 1#include <linux/ceph/ceph_debug.h>
a8599bd8
SW
2
3#include <linux/fs.h>
4#include <linux/kernel.h>
5#include <linux/sched.h>
5a0e3ad6 6#include <linux/slab.h>
a8599bd8
SW
7#include <linux/vmalloc.h>
8#include <linux/wait.h>
f1a3d572 9#include <linux/writeback.h>
a8599bd8
SW
10
11#include "super.h"
3d14c5d2
YS
12#include "mds_client.h"
13#include <linux/ceph/decode.h>
14#include <linux/ceph/messenger.h>
a8599bd8
SW
15
16/*
17 * Capability management
18 *
19 * The Ceph metadata servers control client access to inode metadata
20 * and file data by issuing capabilities, granting clients permission
21 * to read and/or write both inode field and file data to OSDs
22 * (storage nodes). Each capability consists of a set of bits
23 * indicating which operations are allowed.
24 *
25 * If the client holds a *_SHARED cap, the client has a coherent value
26 * that can be safely read from the cached inode.
27 *
28 * In the case of a *_EXCL (exclusive) or FILE_WR capabilities, the
29 * client is allowed to change inode attributes (e.g., file size,
30 * mtime), note its dirty state in the ceph_cap, and asynchronously
31 * flush that metadata change to the MDS.
32 *
33 * In the event of a conflicting operation (perhaps by another
34 * client), the MDS will revoke the conflicting client capabilities.
35 *
36 * In order for a client to cache an inode, it must hold a capability
37 * with at least one MDS server. When inodes are released, release
38 * notifications are batched and periodically sent en masse to the MDS
39 * cluster to release server state.
40 */
41
42
43/*
44 * Generate readable cap strings for debugging output.
45 */
46#define MAX_CAP_STR 20
47static char cap_str[MAX_CAP_STR][40];
48static DEFINE_SPINLOCK(cap_str_lock);
49static int last_cap_str;
50
51static char *gcap_string(char *s, int c)
52{
53 if (c & CEPH_CAP_GSHARED)
54 *s++ = 's';
55 if (c & CEPH_CAP_GEXCL)
56 *s++ = 'x';
57 if (c & CEPH_CAP_GCACHE)
58 *s++ = 'c';
59 if (c & CEPH_CAP_GRD)
60 *s++ = 'r';
61 if (c & CEPH_CAP_GWR)
62 *s++ = 'w';
63 if (c & CEPH_CAP_GBUFFER)
64 *s++ = 'b';
65 if (c & CEPH_CAP_GLAZYIO)
66 *s++ = 'l';
67 return s;
68}
69
70const char *ceph_cap_string(int caps)
71{
72 int i;
73 char *s;
74 int c;
75
76 spin_lock(&cap_str_lock);
77 i = last_cap_str++;
78 if (last_cap_str == MAX_CAP_STR)
79 last_cap_str = 0;
80 spin_unlock(&cap_str_lock);
81
82 s = cap_str[i];
83
84 if (caps & CEPH_CAP_PIN)
85 *s++ = 'p';
86
87 c = (caps >> CEPH_CAP_SAUTH) & 3;
88 if (c) {
89 *s++ = 'A';
90 s = gcap_string(s, c);
91 }
92
93 c = (caps >> CEPH_CAP_SLINK) & 3;
94 if (c) {
95 *s++ = 'L';
96 s = gcap_string(s, c);
97 }
98
99 c = (caps >> CEPH_CAP_SXATTR) & 3;
100 if (c) {
101 *s++ = 'X';
102 s = gcap_string(s, c);
103 }
104
105 c = caps >> CEPH_CAP_SFILE;
106 if (c) {
107 *s++ = 'F';
108 s = gcap_string(s, c);
109 }
110
111 if (s == cap_str[i])
112 *s++ = '-';
113 *s = 0;
114 return cap_str[i];
115}
116
37151668 117void ceph_caps_init(struct ceph_mds_client *mdsc)
a8599bd8 118{
37151668
YS
119 INIT_LIST_HEAD(&mdsc->caps_list);
120 spin_lock_init(&mdsc->caps_list_lock);
a8599bd8
SW
121}
122
37151668 123void ceph_caps_finalize(struct ceph_mds_client *mdsc)
a8599bd8
SW
124{
125 struct ceph_cap *cap;
126
37151668
YS
127 spin_lock(&mdsc->caps_list_lock);
128 while (!list_empty(&mdsc->caps_list)) {
129 cap = list_first_entry(&mdsc->caps_list,
130 struct ceph_cap, caps_item);
a8599bd8
SW
131 list_del(&cap->caps_item);
132 kmem_cache_free(ceph_cap_cachep, cap);
133 }
37151668
YS
134 mdsc->caps_total_count = 0;
135 mdsc->caps_avail_count = 0;
136 mdsc->caps_use_count = 0;
137 mdsc->caps_reserve_count = 0;
138 mdsc->caps_min_count = 0;
139 spin_unlock(&mdsc->caps_list_lock);
85ccce43
SW
140}
141
37151668 142void ceph_adjust_min_caps(struct ceph_mds_client *mdsc, int delta)
85ccce43 143{
37151668
YS
144 spin_lock(&mdsc->caps_list_lock);
145 mdsc->caps_min_count += delta;
146 BUG_ON(mdsc->caps_min_count < 0);
147 spin_unlock(&mdsc->caps_list_lock);
a8599bd8
SW
148}
149
93faca6e 150void ceph_reserve_caps(struct ceph_mds_client *mdsc,
37151668 151 struct ceph_cap_reservation *ctx, int need)
a8599bd8
SW
152{
153 int i;
154 struct ceph_cap *cap;
155 int have;
156 int alloc = 0;
157 LIST_HEAD(newcaps);
a8599bd8
SW
158
159 dout("reserve caps ctx=%p need=%d\n", ctx, need);
160
161 /* first reserve any caps that are already allocated */
37151668
YS
162 spin_lock(&mdsc->caps_list_lock);
163 if (mdsc->caps_avail_count >= need)
a8599bd8
SW
164 have = need;
165 else
37151668
YS
166 have = mdsc->caps_avail_count;
167 mdsc->caps_avail_count -= have;
168 mdsc->caps_reserve_count += have;
169 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
170 mdsc->caps_reserve_count +
171 mdsc->caps_avail_count);
172 spin_unlock(&mdsc->caps_list_lock);
a8599bd8
SW
173
174 for (i = have; i < need; i++) {
175 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
93faca6e 176 if (!cap)
177 break;
a8599bd8
SW
178 list_add(&cap->caps_item, &newcaps);
179 alloc++;
180 }
93faca6e 181 /* we didn't manage to reserve as much as we needed */
182 if (have + alloc != need)
183 pr_warn("reserve caps ctx=%p ENOMEM need=%d got=%d\n",
184 ctx, need, have + alloc);
a8599bd8 185
37151668
YS
186 spin_lock(&mdsc->caps_list_lock);
187 mdsc->caps_total_count += alloc;
188 mdsc->caps_reserve_count += alloc;
189 list_splice(&newcaps, &mdsc->caps_list);
a8599bd8 190
37151668
YS
191 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
192 mdsc->caps_reserve_count +
193 mdsc->caps_avail_count);
194 spin_unlock(&mdsc->caps_list_lock);
a8599bd8
SW
195
196 ctx->count = need;
197 dout("reserve caps ctx=%p %d = %d used + %d resv + %d avail\n",
37151668
YS
198 ctx, mdsc->caps_total_count, mdsc->caps_use_count,
199 mdsc->caps_reserve_count, mdsc->caps_avail_count);
a8599bd8
SW
200}
201
37151668
YS
202int ceph_unreserve_caps(struct ceph_mds_client *mdsc,
203 struct ceph_cap_reservation *ctx)
a8599bd8
SW
204{
205 dout("unreserve caps ctx=%p count=%d\n", ctx, ctx->count);
206 if (ctx->count) {
37151668
YS
207 spin_lock(&mdsc->caps_list_lock);
208 BUG_ON(mdsc->caps_reserve_count < ctx->count);
209 mdsc->caps_reserve_count -= ctx->count;
210 mdsc->caps_avail_count += ctx->count;
a8599bd8
SW
211 ctx->count = 0;
212 dout("unreserve caps %d = %d used + %d resv + %d avail\n",
37151668
YS
213 mdsc->caps_total_count, mdsc->caps_use_count,
214 mdsc->caps_reserve_count, mdsc->caps_avail_count);
215 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
216 mdsc->caps_reserve_count +
217 mdsc->caps_avail_count);
218 spin_unlock(&mdsc->caps_list_lock);
a8599bd8
SW
219 }
220 return 0;
221}
222
37151668
YS
223static struct ceph_cap *get_cap(struct ceph_mds_client *mdsc,
224 struct ceph_cap_reservation *ctx)
a8599bd8
SW
225{
226 struct ceph_cap *cap = NULL;
227
228 /* temporary, until we do something about cap import/export */
443b3760
SW
229 if (!ctx) {
230 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
231 if (cap) {
4d1d0534 232 spin_lock(&mdsc->caps_list_lock);
37151668
YS
233 mdsc->caps_use_count++;
234 mdsc->caps_total_count++;
4d1d0534 235 spin_unlock(&mdsc->caps_list_lock);
443b3760
SW
236 }
237 return cap;
238 }
a8599bd8 239
37151668 240 spin_lock(&mdsc->caps_list_lock);
a8599bd8 241 dout("get_cap ctx=%p (%d) %d = %d used + %d resv + %d avail\n",
37151668
YS
242 ctx, ctx->count, mdsc->caps_total_count, mdsc->caps_use_count,
243 mdsc->caps_reserve_count, mdsc->caps_avail_count);
a8599bd8 244 BUG_ON(!ctx->count);
37151668
YS
245 BUG_ON(ctx->count > mdsc->caps_reserve_count);
246 BUG_ON(list_empty(&mdsc->caps_list));
a8599bd8
SW
247
248 ctx->count--;
37151668
YS
249 mdsc->caps_reserve_count--;
250 mdsc->caps_use_count++;
a8599bd8 251
37151668 252 cap = list_first_entry(&mdsc->caps_list, struct ceph_cap, caps_item);
a8599bd8
SW
253 list_del(&cap->caps_item);
254
37151668
YS
255 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
256 mdsc->caps_reserve_count + mdsc->caps_avail_count);
257 spin_unlock(&mdsc->caps_list_lock);
a8599bd8
SW
258 return cap;
259}
260
37151668 261void ceph_put_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap)
a8599bd8 262{
37151668 263 spin_lock(&mdsc->caps_list_lock);
7c1332b8 264 dout("put_cap %p %d = %d used + %d resv + %d avail\n",
37151668
YS
265 cap, mdsc->caps_total_count, mdsc->caps_use_count,
266 mdsc->caps_reserve_count, mdsc->caps_avail_count);
267 mdsc->caps_use_count--;
a8599bd8 268 /*
85ccce43
SW
269 * Keep some preallocated caps around (ceph_min_count), to
270 * avoid lots of free/alloc churn.
a8599bd8 271 */
37151668
YS
272 if (mdsc->caps_avail_count >= mdsc->caps_reserve_count +
273 mdsc->caps_min_count) {
274 mdsc->caps_total_count--;
a8599bd8
SW
275 kmem_cache_free(ceph_cap_cachep, cap);
276 } else {
37151668
YS
277 mdsc->caps_avail_count++;
278 list_add(&cap->caps_item, &mdsc->caps_list);
a8599bd8
SW
279 }
280
37151668
YS
281 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
282 mdsc->caps_reserve_count + mdsc->caps_avail_count);
283 spin_unlock(&mdsc->caps_list_lock);
a8599bd8
SW
284}
285
3d14c5d2 286void ceph_reservation_status(struct ceph_fs_client *fsc,
85ccce43
SW
287 int *total, int *avail, int *used, int *reserved,
288 int *min)
a8599bd8 289{
3d14c5d2 290 struct ceph_mds_client *mdsc = fsc->mdsc;
37151668 291
a8599bd8 292 if (total)
37151668 293 *total = mdsc->caps_total_count;
a8599bd8 294 if (avail)
37151668 295 *avail = mdsc->caps_avail_count;
a8599bd8 296 if (used)
37151668 297 *used = mdsc->caps_use_count;
a8599bd8 298 if (reserved)
37151668 299 *reserved = mdsc->caps_reserve_count;
85ccce43 300 if (min)
37151668 301 *min = mdsc->caps_min_count;
a8599bd8
SW
302}
303
304/*
305 * Find ceph_cap for given mds, if any.
306 *
be655596 307 * Called with i_ceph_lock held.
a8599bd8
SW
308 */
309static struct ceph_cap *__get_cap_for_mds(struct ceph_inode_info *ci, int mds)
310{
311 struct ceph_cap *cap;
312 struct rb_node *n = ci->i_caps.rb_node;
313
314 while (n) {
315 cap = rb_entry(n, struct ceph_cap, ci_node);
316 if (mds < cap->mds)
317 n = n->rb_left;
318 else if (mds > cap->mds)
319 n = n->rb_right;
320 else
321 return cap;
322 }
323 return NULL;
324}
325
2bc50259
GF
326struct ceph_cap *ceph_get_cap_for_mds(struct ceph_inode_info *ci, int mds)
327{
328 struct ceph_cap *cap;
329
be655596 330 spin_lock(&ci->i_ceph_lock);
2bc50259 331 cap = __get_cap_for_mds(ci, mds);
be655596 332 spin_unlock(&ci->i_ceph_lock);
2bc50259
GF
333 return cap;
334}
335
a8599bd8 336/*
33caad32 337 * Return id of any MDS with a cap, preferably FILE_WR|BUFFER|EXCL, else -1.
a8599bd8 338 */
ca81f3f6 339static int __ceph_get_cap_mds(struct ceph_inode_info *ci)
a8599bd8
SW
340{
341 struct ceph_cap *cap;
342 int mds = -1;
343 struct rb_node *p;
344
33caad32 345 /* prefer mds with WR|BUFFER|EXCL caps */
a8599bd8
SW
346 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
347 cap = rb_entry(p, struct ceph_cap, ci_node);
348 mds = cap->mds;
a8599bd8
SW
349 if (cap->issued & (CEPH_CAP_FILE_WR |
350 CEPH_CAP_FILE_BUFFER |
351 CEPH_CAP_FILE_EXCL))
352 break;
353 }
354 return mds;
355}
356
357int ceph_get_cap_mds(struct inode *inode)
358{
be655596 359 struct ceph_inode_info *ci = ceph_inode(inode);
a8599bd8 360 int mds;
be655596 361 spin_lock(&ci->i_ceph_lock);
ca81f3f6 362 mds = __ceph_get_cap_mds(ceph_inode(inode));
be655596 363 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
364 return mds;
365}
366
367/*
be655596 368 * Called under i_ceph_lock.
a8599bd8
SW
369 */
370static void __insert_cap_node(struct ceph_inode_info *ci,
371 struct ceph_cap *new)
372{
373 struct rb_node **p = &ci->i_caps.rb_node;
374 struct rb_node *parent = NULL;
375 struct ceph_cap *cap = NULL;
376
377 while (*p) {
378 parent = *p;
379 cap = rb_entry(parent, struct ceph_cap, ci_node);
380 if (new->mds < cap->mds)
381 p = &(*p)->rb_left;
382 else if (new->mds > cap->mds)
383 p = &(*p)->rb_right;
384 else
385 BUG();
386 }
387
388 rb_link_node(&new->ci_node, parent, p);
389 rb_insert_color(&new->ci_node, &ci->i_caps);
390}
391
392/*
393 * (re)set cap hold timeouts, which control the delayed release
394 * of unused caps back to the MDS. Should be called on cap use.
395 */
396static void __cap_set_timeouts(struct ceph_mds_client *mdsc,
397 struct ceph_inode_info *ci)
398{
3d14c5d2 399 struct ceph_mount_options *ma = mdsc->fsc->mount_options;
a8599bd8
SW
400
401 ci->i_hold_caps_min = round_jiffies(jiffies +
402 ma->caps_wanted_delay_min * HZ);
403 ci->i_hold_caps_max = round_jiffies(jiffies +
404 ma->caps_wanted_delay_max * HZ);
405 dout("__cap_set_timeouts %p min %lu max %lu\n", &ci->vfs_inode,
406 ci->i_hold_caps_min - jiffies, ci->i_hold_caps_max - jiffies);
407}
408
409/*
410 * (Re)queue cap at the end of the delayed cap release list.
411 *
412 * If I_FLUSH is set, leave the inode at the front of the list.
413 *
be655596 414 * Caller holds i_ceph_lock
a8599bd8
SW
415 * -> we take mdsc->cap_delay_lock
416 */
417static void __cap_delay_requeue(struct ceph_mds_client *mdsc,
418 struct ceph_inode_info *ci)
419{
420 __cap_set_timeouts(mdsc, ci);
421 dout("__cap_delay_requeue %p flags %d at %lu\n", &ci->vfs_inode,
422 ci->i_ceph_flags, ci->i_hold_caps_max);
423 if (!mdsc->stopping) {
424 spin_lock(&mdsc->cap_delay_lock);
425 if (!list_empty(&ci->i_cap_delay_list)) {
426 if (ci->i_ceph_flags & CEPH_I_FLUSH)
427 goto no_change;
428 list_del_init(&ci->i_cap_delay_list);
429 }
430 list_add_tail(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
431no_change:
432 spin_unlock(&mdsc->cap_delay_lock);
433 }
434}
435
436/*
437 * Queue an inode for immediate writeback. Mark inode with I_FLUSH,
438 * indicating we should send a cap message to flush dirty metadata
439 * asap, and move to the front of the delayed cap list.
440 */
441static void __cap_delay_requeue_front(struct ceph_mds_client *mdsc,
442 struct ceph_inode_info *ci)
443{
444 dout("__cap_delay_requeue_front %p\n", &ci->vfs_inode);
445 spin_lock(&mdsc->cap_delay_lock);
446 ci->i_ceph_flags |= CEPH_I_FLUSH;
447 if (!list_empty(&ci->i_cap_delay_list))
448 list_del_init(&ci->i_cap_delay_list);
449 list_add(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
450 spin_unlock(&mdsc->cap_delay_lock);
451}
452
453/*
454 * Cancel delayed work on cap.
455 *
be655596 456 * Caller must hold i_ceph_lock.
a8599bd8
SW
457 */
458static void __cap_delay_cancel(struct ceph_mds_client *mdsc,
459 struct ceph_inode_info *ci)
460{
461 dout("__cap_delay_cancel %p\n", &ci->vfs_inode);
462 if (list_empty(&ci->i_cap_delay_list))
463 return;
464 spin_lock(&mdsc->cap_delay_lock);
465 list_del_init(&ci->i_cap_delay_list);
466 spin_unlock(&mdsc->cap_delay_lock);
467}
468
469/*
470 * Common issue checks for add_cap, handle_cap_grant.
471 */
472static void __check_cap_issue(struct ceph_inode_info *ci, struct ceph_cap *cap,
473 unsigned issued)
474{
475 unsigned had = __ceph_caps_issued(ci, NULL);
476
477 /*
478 * Each time we receive FILE_CACHE anew, we increment
479 * i_rdcache_gen.
480 */
2962507c
SW
481 if ((issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
482 (had & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0)
a8599bd8
SW
483 ci->i_rdcache_gen++;
484
485 /*
2f276c51 486 * if we are newly issued FILE_SHARED, mark dir not complete; we
a8599bd8
SW
487 * don't know what happened to this directory while we didn't
488 * have the cap.
489 */
490 if ((issued & CEPH_CAP_FILE_SHARED) &&
491 (had & CEPH_CAP_FILE_SHARED) == 0) {
492 ci->i_shared_gen++;
a8673d61
YZ
493 if (S_ISDIR(ci->vfs_inode.i_mode)) {
494 dout(" marking %p NOT complete\n", &ci->vfs_inode);
2f276c51 495 __ceph_dir_clear_complete(ci);
a8673d61 496 }
a8599bd8
SW
497 }
498}
499
500/*
501 * Add a capability under the given MDS session.
502 *
503 * Caller should hold session snap_rwsem (read) and s_mutex.
504 *
505 * @fmode is the open file mode, if we are opening a file, otherwise
506 * it is < 0. (This is so we can atomically add the cap and add an
507 * open file reference to it.)
508 */
509int ceph_add_cap(struct inode *inode,
510 struct ceph_mds_session *session, u64 cap_id,
511 int fmode, unsigned issued, unsigned wanted,
512 unsigned seq, unsigned mseq, u64 realmino, int flags,
513 struct ceph_cap_reservation *caps_reservation)
514{
3d14c5d2 515 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
a8599bd8
SW
516 struct ceph_inode_info *ci = ceph_inode(inode);
517 struct ceph_cap *new_cap = NULL;
518 struct ceph_cap *cap;
519 int mds = session->s_mds;
520 int actual_wanted;
521
522 dout("add_cap %p mds%d cap %llx %s seq %d\n", inode,
523 session->s_mds, cap_id, ceph_cap_string(issued), seq);
524
525 /*
526 * If we are opening the file, include file mode wanted bits
527 * in wanted.
528 */
529 if (fmode >= 0)
530 wanted |= ceph_caps_for_mode(fmode);
531
532retry:
be655596 533 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
534 cap = __get_cap_for_mds(ci, mds);
535 if (!cap) {
536 if (new_cap) {
537 cap = new_cap;
538 new_cap = NULL;
539 } else {
be655596 540 spin_unlock(&ci->i_ceph_lock);
37151668 541 new_cap = get_cap(mdsc, caps_reservation);
a8599bd8
SW
542 if (new_cap == NULL)
543 return -ENOMEM;
544 goto retry;
545 }
546
547 cap->issued = 0;
548 cap->implemented = 0;
549 cap->mds = mds;
550 cap->mds_wanted = 0;
964266cc 551 cap->mseq = 0;
a8599bd8
SW
552
553 cap->ci = ci;
554 __insert_cap_node(ci, cap);
555
556 /* clear out old exporting info? (i.e. on cap import) */
557 if (ci->i_cap_exporting_mds == mds) {
558 ci->i_cap_exporting_issued = 0;
559 ci->i_cap_exporting_mseq = 0;
560 ci->i_cap_exporting_mds = -1;
561 }
562
563 /* add to session cap list */
564 cap->session = session;
565 spin_lock(&session->s_cap_lock);
566 list_add_tail(&cap->session_caps, &session->s_caps);
567 session->s_nr_caps++;
568 spin_unlock(&session->s_cap_lock);
3540303f
SW
569 } else if (new_cap)
570 ceph_put_cap(mdsc, new_cap);
a8599bd8
SW
571
572 if (!ci->i_snap_realm) {
573 /*
574 * add this inode to the appropriate snap realm
575 */
576 struct ceph_snap_realm *realm = ceph_lookup_snap_realm(mdsc,
577 realmino);
578 if (realm) {
579 ceph_get_snap_realm(mdsc, realm);
580 spin_lock(&realm->inodes_with_caps_lock);
581 ci->i_snap_realm = realm;
582 list_add(&ci->i_snap_realm_item,
583 &realm->inodes_with_caps);
584 spin_unlock(&realm->inodes_with_caps_lock);
585 } else {
586 pr_err("ceph_add_cap: couldn't find snap realm %llx\n",
587 realmino);
b8cd07e7 588 WARN_ON(!realm);
a8599bd8
SW
589 }
590 }
591
592 __check_cap_issue(ci, cap, issued);
593
594 /*
595 * If we are issued caps we don't want, or the mds' wanted
596 * value appears to be off, queue a check so we'll release
597 * later and/or update the mds wanted value.
598 */
599 actual_wanted = __ceph_caps_wanted(ci);
600 if ((wanted & ~actual_wanted) ||
601 (issued & ~actual_wanted & CEPH_CAP_ANY_WR)) {
602 dout(" issued %s, mds wanted %s, actual %s, queueing\n",
603 ceph_cap_string(issued), ceph_cap_string(wanted),
604 ceph_cap_string(actual_wanted));
605 __cap_delay_requeue(mdsc, ci);
606 }
607
b8c2f3ae
YZ
608 if (flags & CEPH_CAP_FLAG_AUTH) {
609 if (ci->i_auth_cap == NULL ||
610 ceph_seq_cmp(ci->i_auth_cap->mseq, mseq) < 0)
611 ci->i_auth_cap = cap;
612 } else if (ci->i_auth_cap == cap) {
a8599bd8 613 ci->i_auth_cap = NULL;
8a92a119
YZ
614 spin_lock(&mdsc->cap_dirty_lock);
615 if (!list_empty(&ci->i_dirty_item)) {
616 dout(" moving %p to cap_dirty_migrating\n", inode);
617 list_move(&ci->i_dirty_item,
618 &mdsc->cap_dirty_migrating);
619 }
620 spin_unlock(&mdsc->cap_dirty_lock);
621 }
a8599bd8
SW
622
623 dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
624 inode, ceph_vinop(inode), cap, ceph_cap_string(issued),
625 ceph_cap_string(issued|cap->issued), seq, mds);
626 cap->cap_id = cap_id;
627 cap->issued = issued;
628 cap->implemented |= issued;
964266cc
YZ
629 if (mseq > cap->mseq)
630 cap->mds_wanted = wanted;
631 else
632 cap->mds_wanted |= wanted;
a8599bd8
SW
633 cap->seq = seq;
634 cap->issue_seq = seq;
635 cap->mseq = mseq;
685f9a5d 636 cap->cap_gen = session->s_cap_gen;
a8599bd8
SW
637
638 if (fmode >= 0)
639 __ceph_get_fmode(ci, fmode);
be655596 640 spin_unlock(&ci->i_ceph_lock);
03066f23 641 wake_up_all(&ci->i_cap_wq);
a8599bd8
SW
642 return 0;
643}
644
645/*
646 * Return true if cap has not timed out and belongs to the current
647 * generation of the MDS session (i.e. has not gone 'stale' due to
648 * us losing touch with the mds).
649 */
650static int __cap_is_valid(struct ceph_cap *cap)
651{
652 unsigned long ttl;
cdac8303 653 u32 gen;
a8599bd8 654
d8fb02ab 655 spin_lock(&cap->session->s_gen_ttl_lock);
a8599bd8
SW
656 gen = cap->session->s_cap_gen;
657 ttl = cap->session->s_cap_ttl;
d8fb02ab 658 spin_unlock(&cap->session->s_gen_ttl_lock);
a8599bd8 659
685f9a5d 660 if (cap->cap_gen < gen || time_after_eq(jiffies, ttl)) {
a8599bd8
SW
661 dout("__cap_is_valid %p cap %p issued %s "
662 "but STALE (gen %u vs %u)\n", &cap->ci->vfs_inode,
685f9a5d 663 cap, ceph_cap_string(cap->issued), cap->cap_gen, gen);
a8599bd8
SW
664 return 0;
665 }
666
667 return 1;
668}
669
670/*
671 * Return set of valid cap bits issued to us. Note that caps time
672 * out, and may be invalidated in bulk if the client session times out
673 * and session->s_cap_gen is bumped.
674 */
675int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented)
676{
7af8f1e4 677 int have = ci->i_snap_caps | ci->i_cap_exporting_issued;
a8599bd8
SW
678 struct ceph_cap *cap;
679 struct rb_node *p;
680
681 if (implemented)
682 *implemented = 0;
683 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
684 cap = rb_entry(p, struct ceph_cap, ci_node);
685 if (!__cap_is_valid(cap))
686 continue;
687 dout("__ceph_caps_issued %p cap %p issued %s\n",
688 &ci->vfs_inode, cap, ceph_cap_string(cap->issued));
689 have |= cap->issued;
690 if (implemented)
691 *implemented |= cap->implemented;
692 }
b1530f57
YZ
693 /*
694 * exclude caps issued by non-auth MDS, but are been revoking
695 * by the auth MDS. The non-auth MDS should be revoking/exporting
696 * these caps, but the message is delayed.
697 */
698 if (ci->i_auth_cap) {
699 cap = ci->i_auth_cap;
700 have &= ~cap->implemented | cap->issued;
701 }
a8599bd8
SW
702 return have;
703}
704
705/*
706 * Get cap bits issued by caps other than @ocap
707 */
708int __ceph_caps_issued_other(struct ceph_inode_info *ci, struct ceph_cap *ocap)
709{
710 int have = ci->i_snap_caps;
711 struct ceph_cap *cap;
712 struct rb_node *p;
713
714 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
715 cap = rb_entry(p, struct ceph_cap, ci_node);
716 if (cap == ocap)
717 continue;
718 if (!__cap_is_valid(cap))
719 continue;
720 have |= cap->issued;
721 }
722 return have;
723}
724
725/*
726 * Move a cap to the end of the LRU (oldest caps at list head, newest
727 * at list tail).
728 */
729static void __touch_cap(struct ceph_cap *cap)
730{
731 struct ceph_mds_session *s = cap->session;
732
a8599bd8 733 spin_lock(&s->s_cap_lock);
7c1332b8 734 if (s->s_cap_iterator == NULL) {
5dacf091
SW
735 dout("__touch_cap %p cap %p mds%d\n", &cap->ci->vfs_inode, cap,
736 s->s_mds);
737 list_move_tail(&cap->session_caps, &s->s_caps);
738 } else {
739 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
740 &cap->ci->vfs_inode, cap, s->s_mds);
741 }
a8599bd8
SW
742 spin_unlock(&s->s_cap_lock);
743}
744
745/*
746 * Check if we hold the given mask. If so, move the cap(s) to the
747 * front of their respective LRUs. (This is the preferred way for
748 * callers to check for caps they want.)
749 */
750int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int touch)
751{
752 struct ceph_cap *cap;
753 struct rb_node *p;
754 int have = ci->i_snap_caps;
755
756 if ((have & mask) == mask) {
757 dout("__ceph_caps_issued_mask %p snap issued %s"
758 " (mask %s)\n", &ci->vfs_inode,
759 ceph_cap_string(have),
760 ceph_cap_string(mask));
761 return 1;
762 }
763
764 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
765 cap = rb_entry(p, struct ceph_cap, ci_node);
766 if (!__cap_is_valid(cap))
767 continue;
768 if ((cap->issued & mask) == mask) {
769 dout("__ceph_caps_issued_mask %p cap %p issued %s"
770 " (mask %s)\n", &ci->vfs_inode, cap,
771 ceph_cap_string(cap->issued),
772 ceph_cap_string(mask));
773 if (touch)
774 __touch_cap(cap);
775 return 1;
776 }
777
778 /* does a combination of caps satisfy mask? */
779 have |= cap->issued;
780 if ((have & mask) == mask) {
781 dout("__ceph_caps_issued_mask %p combo issued %s"
782 " (mask %s)\n", &ci->vfs_inode,
783 ceph_cap_string(cap->issued),
784 ceph_cap_string(mask));
785 if (touch) {
786 struct rb_node *q;
787
25985edc 788 /* touch this + preceding caps */
a8599bd8
SW
789 __touch_cap(cap);
790 for (q = rb_first(&ci->i_caps); q != p;
791 q = rb_next(q)) {
792 cap = rb_entry(q, struct ceph_cap,
793 ci_node);
794 if (!__cap_is_valid(cap))
795 continue;
796 __touch_cap(cap);
797 }
798 }
799 return 1;
800 }
801 }
802
803 return 0;
804}
805
806/*
807 * Return true if mask caps are currently being revoked by an MDS.
808 */
6ee6b953
YZ
809int __ceph_caps_revoking_other(struct ceph_inode_info *ci,
810 struct ceph_cap *ocap, int mask)
a8599bd8 811{
a8599bd8
SW
812 struct ceph_cap *cap;
813 struct rb_node *p;
a8599bd8 814
a8599bd8
SW
815 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
816 cap = rb_entry(p, struct ceph_cap, ci_node);
6ee6b953
YZ
817 if (cap != ocap && __cap_is_valid(cap) &&
818 (cap->implemented & ~cap->issued & mask))
819 return 1;
a8599bd8 820 }
6ee6b953
YZ
821 return 0;
822}
823
824int ceph_caps_revoking(struct ceph_inode_info *ci, int mask)
825{
826 struct inode *inode = &ci->vfs_inode;
827 int ret;
828
829 spin_lock(&ci->i_ceph_lock);
830 ret = __ceph_caps_revoking_other(ci, NULL, mask);
be655596 831 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
832 dout("ceph_caps_revoking %p %s = %d\n", inode,
833 ceph_cap_string(mask), ret);
834 return ret;
835}
836
837int __ceph_caps_used(struct ceph_inode_info *ci)
838{
839 int used = 0;
840 if (ci->i_pin_ref)
841 used |= CEPH_CAP_PIN;
842 if (ci->i_rd_ref)
843 used |= CEPH_CAP_FILE_RD;
a43fb731 844 if (ci->i_rdcache_ref || ci->vfs_inode.i_data.nrpages)
a8599bd8
SW
845 used |= CEPH_CAP_FILE_CACHE;
846 if (ci->i_wr_ref)
847 used |= CEPH_CAP_FILE_WR;
d3d0720d 848 if (ci->i_wb_ref || ci->i_wrbuffer_ref)
a8599bd8
SW
849 used |= CEPH_CAP_FILE_BUFFER;
850 return used;
851}
852
853/*
854 * wanted, by virtue of open file modes
855 */
856int __ceph_caps_file_wanted(struct ceph_inode_info *ci)
857{
858 int want = 0;
859 int mode;
33caad32 860 for (mode = 0; mode < CEPH_FILE_MODE_NUM; mode++)
a8599bd8
SW
861 if (ci->i_nr_by_mode[mode])
862 want |= ceph_caps_for_mode(mode);
863 return want;
864}
865
866/*
867 * Return caps we have registered with the MDS(s) as 'wanted'.
868 */
869int __ceph_caps_mds_wanted(struct ceph_inode_info *ci)
870{
871 struct ceph_cap *cap;
872 struct rb_node *p;
873 int mds_wanted = 0;
874
875 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
876 cap = rb_entry(p, struct ceph_cap, ci_node);
877 if (!__cap_is_valid(cap))
878 continue;
879 mds_wanted |= cap->mds_wanted;
880 }
881 return mds_wanted;
882}
883
884/*
be655596 885 * called under i_ceph_lock
a8599bd8
SW
886 */
887static int __ceph_is_any_caps(struct ceph_inode_info *ci)
888{
889 return !RB_EMPTY_ROOT(&ci->i_caps) || ci->i_cap_exporting_mds >= 0;
890}
891
892/*
f818a736
SW
893 * Remove a cap. Take steps to deal with a racing iterate_session_caps.
894 *
be655596 895 * caller should hold i_ceph_lock.
a6369741 896 * caller will not hold session s_mutex if called from destroy_inode.
a8599bd8 897 */
7c1332b8 898void __ceph_remove_cap(struct ceph_cap *cap)
a8599bd8
SW
899{
900 struct ceph_mds_session *session = cap->session;
901 struct ceph_inode_info *ci = cap->ci;
640ef79d 902 struct ceph_mds_client *mdsc =
3d14c5d2 903 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
f818a736 904 int removed = 0;
a8599bd8
SW
905
906 dout("__ceph_remove_cap %p from %p\n", cap, &ci->vfs_inode);
907
7c1332b8
SW
908 /* remove from session list */
909 spin_lock(&session->s_cap_lock);
910 if (session->s_cap_iterator == cap) {
911 /* not yet, we are iterating over this very cap */
912 dout("__ceph_remove_cap delaying %p removal from session %p\n",
913 cap, cap->session);
914 } else {
915 list_del_init(&cap->session_caps);
916 session->s_nr_caps--;
917 cap->session = NULL;
f818a736 918 removed = 1;
7c1332b8 919 }
f818a736
SW
920 /* protect backpointer with s_cap_lock: see iterate_session_caps */
921 cap->ci = NULL;
7c1332b8
SW
922 spin_unlock(&session->s_cap_lock);
923
f818a736
SW
924 /* remove from inode list */
925 rb_erase(&cap->ci_node, &ci->i_caps);
926 if (ci->i_auth_cap == cap)
927 ci->i_auth_cap = NULL;
928
929 if (removed)
37151668 930 ceph_put_cap(mdsc, cap);
a8599bd8
SW
931
932 if (!__ceph_is_any_caps(ci) && ci->i_snap_realm) {
933 struct ceph_snap_realm *realm = ci->i_snap_realm;
934 spin_lock(&realm->inodes_with_caps_lock);
935 list_del_init(&ci->i_snap_realm_item);
936 ci->i_snap_realm_counter++;
937 ci->i_snap_realm = NULL;
938 spin_unlock(&realm->inodes_with_caps_lock);
939 ceph_put_snap_realm(mdsc, realm);
940 }
941 if (!__ceph_is_any_real_caps(ci))
942 __cap_delay_cancel(mdsc, ci);
943}
944
945/*
946 * Build and send a cap message to the given MDS.
947 *
948 * Caller should be holding s_mutex.
949 */
950static int send_cap_msg(struct ceph_mds_session *session,
951 u64 ino, u64 cid, int op,
952 int caps, int wanted, int dirty,
953 u32 seq, u64 flush_tid, u32 issue_seq, u32 mseq,
954 u64 size, u64 max_size,
955 struct timespec *mtime, struct timespec *atime,
956 u64 time_warp_seq,
05cb11c1 957 kuid_t uid, kgid_t gid, umode_t mode,
a8599bd8
SW
958 u64 xattr_version,
959 struct ceph_buffer *xattrs_buf,
960 u64 follows)
961{
962 struct ceph_mds_caps *fc;
963 struct ceph_msg *msg;
964
965 dout("send_cap_msg %s %llx %llx caps %s wanted %s dirty %s"
966 " seq %u/%u mseq %u follows %lld size %llu/%llu"
967 " xattr_ver %llu xattr_len %d\n", ceph_cap_op_name(op),
968 cid, ino, ceph_cap_string(caps), ceph_cap_string(wanted),
969 ceph_cap_string(dirty),
970 seq, issue_seq, mseq, follows, size, max_size,
971 xattr_version, xattrs_buf ? (int)xattrs_buf->vec.iov_len : 0);
972
b61c2763 973 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, sizeof(*fc), GFP_NOFS, false);
a79832f2
SW
974 if (!msg)
975 return -ENOMEM;
a8599bd8 976
6df058c0 977 msg->hdr.tid = cpu_to_le64(flush_tid);
a8599bd8 978
6df058c0 979 fc = msg->front.iov_base;
a8599bd8
SW
980 memset(fc, 0, sizeof(*fc));
981
982 fc->cap_id = cpu_to_le64(cid);
983 fc->op = cpu_to_le32(op);
984 fc->seq = cpu_to_le32(seq);
a8599bd8
SW
985 fc->issue_seq = cpu_to_le32(issue_seq);
986 fc->migrate_seq = cpu_to_le32(mseq);
987 fc->caps = cpu_to_le32(caps);
988 fc->wanted = cpu_to_le32(wanted);
989 fc->dirty = cpu_to_le32(dirty);
990 fc->ino = cpu_to_le64(ino);
991 fc->snap_follows = cpu_to_le64(follows);
992
993 fc->size = cpu_to_le64(size);
994 fc->max_size = cpu_to_le64(max_size);
995 if (mtime)
996 ceph_encode_timespec(&fc->mtime, mtime);
997 if (atime)
998 ceph_encode_timespec(&fc->atime, atime);
999 fc->time_warp_seq = cpu_to_le32(time_warp_seq);
1000
05cb11c1
EB
1001 fc->uid = cpu_to_le32(from_kuid(&init_user_ns, uid));
1002 fc->gid = cpu_to_le32(from_kgid(&init_user_ns, gid));
a8599bd8
SW
1003 fc->mode = cpu_to_le32(mode);
1004
1005 fc->xattr_version = cpu_to_le64(xattr_version);
1006 if (xattrs_buf) {
1007 msg->middle = ceph_buffer_get(xattrs_buf);
1008 fc->xattr_len = cpu_to_le32(xattrs_buf->vec.iov_len);
1009 msg->hdr.middle_len = cpu_to_le32(xattrs_buf->vec.iov_len);
1010 }
1011
1012 ceph_con_send(&session->s_con, msg);
1013 return 0;
1014}
1015
d40ee0dc
YZ
1016void __queue_cap_release(struct ceph_mds_session *session,
1017 u64 ino, u64 cap_id, u32 migrate_seq,
1018 u32 issue_seq)
3d7ded4d
SW
1019{
1020 struct ceph_msg *msg;
1021 struct ceph_mds_cap_release *head;
1022 struct ceph_mds_cap_item *item;
1023
1024 spin_lock(&session->s_cap_lock);
1025 BUG_ON(!session->s_num_cap_releases);
1026 msg = list_first_entry(&session->s_cap_releases,
1027 struct ceph_msg, list_head);
1028
1029 dout(" adding %llx release to mds%d msg %p (%d left)\n",
1030 ino, session->s_mds, msg, session->s_num_cap_releases);
1031
1032 BUG_ON(msg->front.iov_len + sizeof(*item) > PAGE_CACHE_SIZE);
1033 head = msg->front.iov_base;
b905a7f8 1034 le32_add_cpu(&head->num, 1);
3d7ded4d
SW
1035 item = msg->front.iov_base + msg->front.iov_len;
1036 item->ino = cpu_to_le64(ino);
1037 item->cap_id = cpu_to_le64(cap_id);
1038 item->migrate_seq = cpu_to_le32(migrate_seq);
1039 item->seq = cpu_to_le32(issue_seq);
1040
1041 session->s_num_cap_releases--;
1042
1043 msg->front.iov_len += sizeof(*item);
1044 if (le32_to_cpu(head->num) == CEPH_CAPS_PER_RELEASE) {
1045 dout(" release msg %p full\n", msg);
1046 list_move_tail(&msg->list_head, &session->s_cap_releases_done);
1047 } else {
1048 dout(" release msg %p at %d/%d (%d)\n", msg,
1049 (int)le32_to_cpu(head->num),
1050 (int)CEPH_CAPS_PER_RELEASE,
1051 (int)msg->front.iov_len);
1052 }
1053 spin_unlock(&session->s_cap_lock);
1054}
1055
a8599bd8 1056/*
a6369741 1057 * Queue cap releases when an inode is dropped from our cache. Since
be655596 1058 * inode is about to be destroyed, there is no need for i_ceph_lock.
a8599bd8
SW
1059 */
1060void ceph_queue_caps_release(struct inode *inode)
1061{
1062 struct ceph_inode_info *ci = ceph_inode(inode);
1063 struct rb_node *p;
1064
a8599bd8
SW
1065 p = rb_first(&ci->i_caps);
1066 while (p) {
1067 struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
1068 struct ceph_mds_session *session = cap->session;
a8599bd8 1069
3d7ded4d
SW
1070 __queue_cap_release(session, ceph_ino(inode), cap->cap_id,
1071 cap->mseq, cap->issue_seq);
a8599bd8 1072 p = rb_next(p);
7c1332b8 1073 __ceph_remove_cap(cap);
a8599bd8 1074 }
a8599bd8
SW
1075}
1076
1077/*
1078 * Send a cap msg on the given inode. Update our caps state, then
be655596 1079 * drop i_ceph_lock and send the message.
a8599bd8
SW
1080 *
1081 * Make note of max_size reported/requested from mds, revoked caps
1082 * that have now been implemented.
1083 *
1084 * Make half-hearted attempt ot to invalidate page cache if we are
1085 * dropping RDCACHE. Note that this will leave behind locked pages
1086 * that we'll then need to deal with elsewhere.
1087 *
1088 * Return non-zero if delayed release, or we experienced an error
1089 * such that the caller should requeue + retry later.
1090 *
be655596 1091 * called with i_ceph_lock, then drops it.
a8599bd8
SW
1092 * caller should hold snap_rwsem (read), s_mutex.
1093 */
1094static int __send_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap,
1095 int op, int used, int want, int retain, int flushing,
1096 unsigned *pflush_tid)
be655596 1097 __releases(cap->ci->i_ceph_lock)
a8599bd8
SW
1098{
1099 struct ceph_inode_info *ci = cap->ci;
1100 struct inode *inode = &ci->vfs_inode;
1101 u64 cap_id = cap->cap_id;
68c28323 1102 int held, revoking, dropping, keep;
a8599bd8
SW
1103 u64 seq, issue_seq, mseq, time_warp_seq, follows;
1104 u64 size, max_size;
1105 struct timespec mtime, atime;
1106 int wake = 0;
5706b27d 1107 umode_t mode;
05cb11c1
EB
1108 kuid_t uid;
1109 kgid_t gid;
a8599bd8
SW
1110 struct ceph_mds_session *session;
1111 u64 xattr_version = 0;
082afec9 1112 struct ceph_buffer *xattr_blob = NULL;
a8599bd8
SW
1113 int delayed = 0;
1114 u64 flush_tid = 0;
1115 int i;
1116 int ret;
1117
68c28323
SW
1118 held = cap->issued | cap->implemented;
1119 revoking = cap->implemented & ~cap->issued;
1120 retain &= ~revoking;
1121 dropping = cap->issued & ~retain;
1122
a8599bd8
SW
1123 dout("__send_cap %p cap %p session %p %s -> %s (revoking %s)\n",
1124 inode, cap, cap->session,
1125 ceph_cap_string(held), ceph_cap_string(held & retain),
1126 ceph_cap_string(revoking));
1127 BUG_ON((retain & CEPH_CAP_PIN) == 0);
1128
1129 session = cap->session;
1130
1131 /* don't release wanted unless we've waited a bit. */
1132 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1133 time_before(jiffies, ci->i_hold_caps_min)) {
1134 dout(" delaying issued %s -> %s, wanted %s -> %s on send\n",
1135 ceph_cap_string(cap->issued),
1136 ceph_cap_string(cap->issued & retain),
1137 ceph_cap_string(cap->mds_wanted),
1138 ceph_cap_string(want));
1139 want |= cap->mds_wanted;
1140 retain |= cap->issued;
1141 delayed = 1;
1142 }
1143 ci->i_ceph_flags &= ~(CEPH_I_NODELAY | CEPH_I_FLUSH);
1144
1145 cap->issued &= retain; /* drop bits we don't want */
1146 if (cap->implemented & ~cap->issued) {
1147 /*
1148 * Wake up any waiters on wanted -> needed transition.
1149 * This is due to the weird transition from buffered
1150 * to sync IO... we need to flush dirty pages _before_
1151 * allowing sync writes to avoid reordering.
1152 */
1153 wake = 1;
1154 }
1155 cap->implemented &= cap->issued | used;
1156 cap->mds_wanted = want;
1157
1158 if (flushing) {
1159 /*
1160 * assign a tid for flush operations so we can avoid
1161 * flush1 -> dirty1 -> flush2 -> flushack1 -> mark
1162 * clean type races. track latest tid for every bit
1163 * so we can handle flush AxFw, flush Fw, and have the
1164 * first ack clean Ax.
1165 */
1166 flush_tid = ++ci->i_cap_flush_last_tid;
1167 if (pflush_tid)
1168 *pflush_tid = flush_tid;
1169 dout(" cap_flush_tid %d\n", (int)flush_tid);
1170 for (i = 0; i < CEPH_CAP_BITS; i++)
1171 if (flushing & (1 << i))
1172 ci->i_cap_flush_tid[i] = flush_tid;
7d8cb26d
SW
1173
1174 follows = ci->i_head_snapc->seq;
1175 } else {
1176 follows = 0;
a8599bd8
SW
1177 }
1178
1179 keep = cap->implemented;
1180 seq = cap->seq;
1181 issue_seq = cap->issue_seq;
1182 mseq = cap->mseq;
1183 size = inode->i_size;
1184 ci->i_reported_size = size;
1185 max_size = ci->i_wanted_max_size;
1186 ci->i_requested_max_size = max_size;
1187 mtime = inode->i_mtime;
1188 atime = inode->i_atime;
1189 time_warp_seq = ci->i_time_warp_seq;
a8599bd8
SW
1190 uid = inode->i_uid;
1191 gid = inode->i_gid;
1192 mode = inode->i_mode;
1193
082afec9 1194 if (flushing & CEPH_CAP_XATTR_EXCL) {
a8599bd8 1195 __ceph_build_xattrs_blob(ci);
082afec9
SW
1196 xattr_blob = ci->i_xattrs.blob;
1197 xattr_version = ci->i_xattrs.version;
a8599bd8
SW
1198 }
1199
be655596 1200 spin_unlock(&ci->i_ceph_lock);
a8599bd8 1201
a8599bd8
SW
1202 ret = send_cap_msg(session, ceph_vino(inode).ino, cap_id,
1203 op, keep, want, flushing, seq, flush_tid, issue_seq, mseq,
1204 size, max_size, &mtime, &atime, time_warp_seq,
082afec9 1205 uid, gid, mode, xattr_version, xattr_blob,
a8599bd8
SW
1206 follows);
1207 if (ret < 0) {
1208 dout("error sending cap msg, must requeue %p\n", inode);
1209 delayed = 1;
1210 }
1211
1212 if (wake)
03066f23 1213 wake_up_all(&ci->i_cap_wq);
a8599bd8
SW
1214
1215 return delayed;
1216}
1217
1218/*
1219 * When a snapshot is taken, clients accumulate dirty metadata on
1220 * inodes with capabilities in ceph_cap_snaps to describe the file
1221 * state at the time the snapshot was taken. This must be flushed
1222 * asynchronously back to the MDS once sync writes complete and dirty
1223 * data is written out.
1224 *
e835124c
SW
1225 * Unless @again is true, skip cap_snaps that were already sent to
1226 * the MDS (i.e., during this session).
1227 *
be655596 1228 * Called under i_ceph_lock. Takes s_mutex as needed.
a8599bd8
SW
1229 */
1230void __ceph_flush_snaps(struct ceph_inode_info *ci,
e835124c
SW
1231 struct ceph_mds_session **psession,
1232 int again)
be655596
SW
1233 __releases(ci->i_ceph_lock)
1234 __acquires(ci->i_ceph_lock)
a8599bd8
SW
1235{
1236 struct inode *inode = &ci->vfs_inode;
1237 int mds;
1238 struct ceph_cap_snap *capsnap;
1239 u32 mseq;
3d14c5d2 1240 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
a8599bd8
SW
1241 struct ceph_mds_session *session = NULL; /* if session != NULL, we hold
1242 session->s_mutex */
1243 u64 next_follows = 0; /* keep track of how far we've gotten through the
1244 i_cap_snaps list, and skip these entries next time
1245 around to avoid an infinite loop */
1246
1247 if (psession)
1248 session = *psession;
1249
1250 dout("__flush_snaps %p\n", inode);
1251retry:
1252 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
1253 /* avoid an infiniute loop after retry */
1254 if (capsnap->follows < next_follows)
1255 continue;
1256 /*
1257 * we need to wait for sync writes to complete and for dirty
1258 * pages to be written out.
1259 */
1260 if (capsnap->dirty_pages || capsnap->writing)
cfc0bf66 1261 break;
a8599bd8 1262
819ccbfa
SW
1263 /*
1264 * if cap writeback already occurred, we should have dropped
1265 * the capsnap in ceph_put_wrbuffer_cap_refs.
1266 */
1267 BUG_ON(capsnap->dirty == 0);
1268
a8599bd8 1269 /* pick mds, take s_mutex */
ca81f3f6
SW
1270 if (ci->i_auth_cap == NULL) {
1271 dout("no auth cap (migrating?), doing nothing\n");
1272 goto out;
1273 }
e835124c
SW
1274
1275 /* only flush each capsnap once */
1276 if (!again && !list_empty(&capsnap->flushing_item)) {
1277 dout("already flushed %p, skipping\n", capsnap);
1278 continue;
1279 }
1280
ca81f3f6
SW
1281 mds = ci->i_auth_cap->session->s_mds;
1282 mseq = ci->i_auth_cap->mseq;
1283
a8599bd8
SW
1284 if (session && session->s_mds != mds) {
1285 dout("oops, wrong session %p mutex\n", session);
1286 mutex_unlock(&session->s_mutex);
1287 ceph_put_mds_session(session);
1288 session = NULL;
1289 }
1290 if (!session) {
be655596 1291 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1292 mutex_lock(&mdsc->mutex);
1293 session = __ceph_lookup_mds_session(mdsc, mds);
1294 mutex_unlock(&mdsc->mutex);
1295 if (session) {
1296 dout("inverting session/ino locks on %p\n",
1297 session);
1298 mutex_lock(&session->s_mutex);
1299 }
1300 /*
1301 * if session == NULL, we raced against a cap
ca81f3f6
SW
1302 * deletion or migration. retry, and we'll
1303 * get a better @mds value next time.
a8599bd8 1304 */
be655596 1305 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1306 goto retry;
1307 }
1308
1309 capsnap->flush_tid = ++ci->i_cap_flush_last_tid;
1310 atomic_inc(&capsnap->nref);
1311 if (!list_empty(&capsnap->flushing_item))
1312 list_del_init(&capsnap->flushing_item);
1313 list_add_tail(&capsnap->flushing_item,
1314 &session->s_cap_snaps_flushing);
be655596 1315 spin_unlock(&ci->i_ceph_lock);
a8599bd8 1316
cfc0bf66
SW
1317 dout("flush_snaps %p cap_snap %p follows %lld tid %llu\n",
1318 inode, capsnap, capsnap->follows, capsnap->flush_tid);
a8599bd8
SW
1319 send_cap_msg(session, ceph_vino(inode).ino, 0,
1320 CEPH_CAP_OP_FLUSHSNAP, capsnap->issued, 0,
1321 capsnap->dirty, 0, capsnap->flush_tid, 0, mseq,
1322 capsnap->size, 0,
1323 &capsnap->mtime, &capsnap->atime,
1324 capsnap->time_warp_seq,
1325 capsnap->uid, capsnap->gid, capsnap->mode,
4a625be4 1326 capsnap->xattr_version, capsnap->xattr_blob,
a8599bd8
SW
1327 capsnap->follows);
1328
1329 next_follows = capsnap->follows + 1;
1330 ceph_put_cap_snap(capsnap);
1331
be655596 1332 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1333 goto retry;
1334 }
1335
1336 /* we flushed them all; remove this inode from the queue */
1337 spin_lock(&mdsc->snap_flush_lock);
1338 list_del_init(&ci->i_snap_flush_item);
1339 spin_unlock(&mdsc->snap_flush_lock);
1340
ca81f3f6 1341out:
a8599bd8
SW
1342 if (psession)
1343 *psession = session;
1344 else if (session) {
1345 mutex_unlock(&session->s_mutex);
1346 ceph_put_mds_session(session);
1347 }
1348}
1349
1350static void ceph_flush_snaps(struct ceph_inode_info *ci)
1351{
be655596 1352 spin_lock(&ci->i_ceph_lock);
e835124c 1353 __ceph_flush_snaps(ci, NULL, 0);
be655596 1354 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1355}
1356
76e3b390 1357/*
fca65b4a
SW
1358 * Mark caps dirty. If inode is newly dirty, return the dirty flags.
1359 * Caller is then responsible for calling __mark_inode_dirty with the
1360 * returned flags value.
76e3b390 1361 */
fca65b4a 1362int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask)
76e3b390 1363{
640ef79d 1364 struct ceph_mds_client *mdsc =
3d14c5d2 1365 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
76e3b390
SW
1366 struct inode *inode = &ci->vfs_inode;
1367 int was = ci->i_dirty_caps;
1368 int dirty = 0;
1369
1370 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci->vfs_inode,
1371 ceph_cap_string(mask), ceph_cap_string(was),
1372 ceph_cap_string(was | mask));
1373 ci->i_dirty_caps |= mask;
1374 if (was == 0) {
7d8cb26d
SW
1375 if (!ci->i_head_snapc)
1376 ci->i_head_snapc = ceph_get_snap_context(
1377 ci->i_snap_realm->cached_context);
0685235f
YZ
1378 dout(" inode %p now dirty snapc %p auth cap %p\n",
1379 &ci->vfs_inode, ci->i_head_snapc, ci->i_auth_cap);
76e3b390
SW
1380 BUG_ON(!list_empty(&ci->i_dirty_item));
1381 spin_lock(&mdsc->cap_dirty_lock);
0685235f
YZ
1382 if (ci->i_auth_cap)
1383 list_add(&ci->i_dirty_item, &mdsc->cap_dirty);
1384 else
1385 list_add(&ci->i_dirty_item,
1386 &mdsc->cap_dirty_migrating);
76e3b390
SW
1387 spin_unlock(&mdsc->cap_dirty_lock);
1388 if (ci->i_flushing_caps == 0) {
3772d26d 1389 ihold(inode);
76e3b390
SW
1390 dirty |= I_DIRTY_SYNC;
1391 }
1392 }
1393 BUG_ON(list_empty(&ci->i_dirty_item));
1394 if (((was | ci->i_flushing_caps) & CEPH_CAP_FILE_BUFFER) &&
1395 (mask & CEPH_CAP_FILE_BUFFER))
1396 dirty |= I_DIRTY_DATASYNC;
76e3b390 1397 __cap_delay_requeue(mdsc, ci);
fca65b4a 1398 return dirty;
76e3b390
SW
1399}
1400
a8599bd8
SW
1401/*
1402 * Add dirty inode to the flushing list. Assigned a seq number so we
1403 * can wait for caps to flush without starving.
cdc35f96 1404 *
be655596 1405 * Called under i_ceph_lock.
a8599bd8 1406 */
cdc35f96 1407static int __mark_caps_flushing(struct inode *inode,
a8599bd8
SW
1408 struct ceph_mds_session *session)
1409{
3d14c5d2 1410 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8 1411 struct ceph_inode_info *ci = ceph_inode(inode);
cdc35f96 1412 int flushing;
50b885b9 1413
cdc35f96 1414 BUG_ON(ci->i_dirty_caps == 0);
a8599bd8 1415 BUG_ON(list_empty(&ci->i_dirty_item));
cdc35f96
SW
1416
1417 flushing = ci->i_dirty_caps;
1418 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1419 ceph_cap_string(flushing),
1420 ceph_cap_string(ci->i_flushing_caps),
1421 ceph_cap_string(ci->i_flushing_caps | flushing));
1422 ci->i_flushing_caps |= flushing;
1423 ci->i_dirty_caps = 0;
afcdaea3 1424 dout(" inode %p now !dirty\n", inode);
cdc35f96 1425
a8599bd8 1426 spin_lock(&mdsc->cap_dirty_lock);
afcdaea3
SW
1427 list_del_init(&ci->i_dirty_item);
1428
1429 ci->i_cap_flush_seq = ++mdsc->cap_flush_seq;
a8599bd8
SW
1430 if (list_empty(&ci->i_flushing_item)) {
1431 list_add_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1432 mdsc->num_cap_flushing++;
afcdaea3
SW
1433 dout(" inode %p now flushing seq %lld\n", inode,
1434 ci->i_cap_flush_seq);
1435 } else {
1436 list_move_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1437 dout(" inode %p now flushing (more) seq %lld\n", inode,
a8599bd8
SW
1438 ci->i_cap_flush_seq);
1439 }
1440 spin_unlock(&mdsc->cap_dirty_lock);
cdc35f96
SW
1441
1442 return flushing;
a8599bd8
SW
1443}
1444
5ecad6fd
SW
1445/*
1446 * try to invalidate mapping pages without blocking.
1447 */
5ecad6fd
SW
1448static int try_nonblocking_invalidate(struct inode *inode)
1449{
1450 struct ceph_inode_info *ci = ceph_inode(inode);
1451 u32 invalidating_gen = ci->i_rdcache_gen;
1452
be655596 1453 spin_unlock(&ci->i_ceph_lock);
5ecad6fd 1454 invalidate_mapping_pages(&inode->i_data, 0, -1);
be655596 1455 spin_lock(&ci->i_ceph_lock);
5ecad6fd 1456
18a38193 1457 if (inode->i_data.nrpages == 0 &&
5ecad6fd
SW
1458 invalidating_gen == ci->i_rdcache_gen) {
1459 /* success. */
1460 dout("try_nonblocking_invalidate %p success\n", inode);
cd045cb4
SW
1461 /* save any racing async invalidate some trouble */
1462 ci->i_rdcache_revoking = ci->i_rdcache_gen - 1;
5ecad6fd
SW
1463 return 0;
1464 }
1465 dout("try_nonblocking_invalidate %p failed\n", inode);
1466 return -1;
1467}
1468
a8599bd8
SW
1469/*
1470 * Swiss army knife function to examine currently used and wanted
1471 * versus held caps. Release, flush, ack revoked caps to mds as
1472 * appropriate.
1473 *
1474 * CHECK_CAPS_NODELAY - caller is delayed work and we should not delay
1475 * cap release further.
1476 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1477 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1478 * further delay.
1479 */
1480void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1481 struct ceph_mds_session *session)
1482{
3d14c5d2
YS
1483 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1484 struct ceph_mds_client *mdsc = fsc->mdsc;
a8599bd8
SW
1485 struct inode *inode = &ci->vfs_inode;
1486 struct ceph_cap *cap;
395c312b 1487 int file_wanted, used, cap_used;
a8599bd8 1488 int took_snap_rwsem = 0; /* true if mdsc->snap_rwsem held */
cbd03635 1489 int issued, implemented, want, retain, revoking, flushing = 0;
a8599bd8
SW
1490 int mds = -1; /* keep track of how far we've gone through i_caps list
1491 to avoid an infinite loop on retry */
1492 struct rb_node *p;
1493 int tried_invalidate = 0;
1494 int delayed = 0, sent = 0, force_requeue = 0, num;
cbd03635 1495 int queue_invalidate = 0;
a8599bd8
SW
1496 int is_delayed = flags & CHECK_CAPS_NODELAY;
1497
1498 /* if we are unmounting, flush any unused caps immediately. */
1499 if (mdsc->stopping)
1500 is_delayed = 1;
1501
be655596 1502 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1503
1504 if (ci->i_ceph_flags & CEPH_I_FLUSH)
1505 flags |= CHECK_CAPS_FLUSH;
1506
1507 /* flush snaps first time around only */
1508 if (!list_empty(&ci->i_cap_snaps))
e835124c 1509 __ceph_flush_snaps(ci, &session, 0);
a8599bd8
SW
1510 goto retry_locked;
1511retry:
be655596 1512 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1513retry_locked:
1514 file_wanted = __ceph_caps_file_wanted(ci);
1515 used = __ceph_caps_used(ci);
1516 want = file_wanted | used;
cbd03635
SW
1517 issued = __ceph_caps_issued(ci, &implemented);
1518 revoking = implemented & ~issued;
a8599bd8
SW
1519
1520 retain = want | CEPH_CAP_PIN;
1521 if (!mdsc->stopping && inode->i_nlink > 0) {
1522 if (want) {
1523 retain |= CEPH_CAP_ANY; /* be greedy */
1524 } else {
1525 retain |= CEPH_CAP_ANY_SHARED;
1526 /*
1527 * keep RD only if we didn't have the file open RW,
1528 * because then the mds would revoke it anyway to
1529 * journal max_size=0.
1530 */
1531 if (ci->i_max_size == 0)
1532 retain |= CEPH_CAP_ANY_RD;
1533 }
1534 }
1535
1536 dout("check_caps %p file_want %s used %s dirty %s flushing %s"
cbd03635 1537 " issued %s revoking %s retain %s %s%s%s\n", inode,
a8599bd8
SW
1538 ceph_cap_string(file_wanted),
1539 ceph_cap_string(used), ceph_cap_string(ci->i_dirty_caps),
1540 ceph_cap_string(ci->i_flushing_caps),
cbd03635 1541 ceph_cap_string(issued), ceph_cap_string(revoking),
a8599bd8
SW
1542 ceph_cap_string(retain),
1543 (flags & CHECK_CAPS_AUTHONLY) ? " AUTHONLY" : "",
1544 (flags & CHECK_CAPS_NODELAY) ? " NODELAY" : "",
1545 (flags & CHECK_CAPS_FLUSH) ? " FLUSH" : "");
1546
1547 /*
1548 * If we no longer need to hold onto old our caps, and we may
1549 * have cached pages, but don't want them, then try to invalidate.
1550 * If we fail, it's because pages are locked.... try again later.
1551 */
1552 if ((!is_delayed || mdsc->stopping) &&
1553 ci->i_wrbuffer_ref == 0 && /* no dirty pages... */
93afd449 1554 inode->i_data.nrpages && /* have cached pages */
cbd03635 1555 (file_wanted == 0 || /* no open files */
2962507c
SW
1556 (revoking & (CEPH_CAP_FILE_CACHE|
1557 CEPH_CAP_FILE_LAZYIO))) && /* or revoking cache */
a8599bd8 1558 !tried_invalidate) {
a8599bd8 1559 dout("check_caps trying to invalidate on %p\n", inode);
5ecad6fd 1560 if (try_nonblocking_invalidate(inode) < 0) {
2962507c
SW
1561 if (revoking & (CEPH_CAP_FILE_CACHE|
1562 CEPH_CAP_FILE_LAZYIO)) {
5ecad6fd
SW
1563 dout("check_caps queuing invalidate\n");
1564 queue_invalidate = 1;
1565 ci->i_rdcache_revoking = ci->i_rdcache_gen;
1566 } else {
1567 dout("check_caps failed to invalidate pages\n");
1568 /* we failed to invalidate pages. check these
1569 caps again later. */
1570 force_requeue = 1;
1571 __cap_set_timeouts(mdsc, ci);
1572 }
a8599bd8
SW
1573 }
1574 tried_invalidate = 1;
1575 goto retry_locked;
1576 }
1577
1578 num = 0;
1579 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1580 cap = rb_entry(p, struct ceph_cap, ci_node);
1581 num++;
1582
1583 /* avoid looping forever */
1584 if (mds >= cap->mds ||
1585 ((flags & CHECK_CAPS_AUTHONLY) && cap != ci->i_auth_cap))
1586 continue;
1587
1588 /* NOTE: no side-effects allowed, until we take s_mutex */
1589
395c312b
YZ
1590 cap_used = used;
1591 if (ci->i_auth_cap && cap != ci->i_auth_cap)
1592 cap_used &= ~ci->i_auth_cap->issued;
1593
a8599bd8 1594 revoking = cap->implemented & ~cap->issued;
395c312b 1595 dout(" mds%d cap %p used %s issued %s implemented %s revoking %s\n",
088b3f5e 1596 cap->mds, cap, ceph_cap_string(cap->issued),
395c312b 1597 ceph_cap_string(cap_used),
088b3f5e
SW
1598 ceph_cap_string(cap->implemented),
1599 ceph_cap_string(revoking));
a8599bd8
SW
1600
1601 if (cap == ci->i_auth_cap &&
1602 (cap->issued & CEPH_CAP_FILE_WR)) {
1603 /* request larger max_size from MDS? */
1604 if (ci->i_wanted_max_size > ci->i_max_size &&
1605 ci->i_wanted_max_size > ci->i_requested_max_size) {
1606 dout("requesting new max_size\n");
1607 goto ack;
1608 }
1609
1610 /* approaching file_max? */
1611 if ((inode->i_size << 1) >= ci->i_max_size &&
1612 (ci->i_reported_size << 1) < ci->i_max_size) {
1613 dout("i_size approaching max_size\n");
1614 goto ack;
1615 }
1616 }
1617 /* flush anything dirty? */
1618 if (cap == ci->i_auth_cap && (flags & CHECK_CAPS_FLUSH) &&
1619 ci->i_dirty_caps) {
1620 dout("flushing dirty caps\n");
1621 goto ack;
1622 }
1623
1624 /* completed revocation? going down and there are no caps? */
395c312b 1625 if (revoking && (revoking & cap_used) == 0) {
a8599bd8
SW
1626 dout("completed revocation of %s\n",
1627 ceph_cap_string(cap->implemented & ~cap->issued));
1628 goto ack;
1629 }
1630
1631 /* want more caps from mds? */
1632 if (want & ~(cap->mds_wanted | cap->issued))
1633 goto ack;
1634
1635 /* things we might delay */
1636 if ((cap->issued & ~retain) == 0 &&
1637 cap->mds_wanted == want)
1638 continue; /* nope, all good */
1639
1640 if (is_delayed)
1641 goto ack;
1642
1643 /* delay? */
1644 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1645 time_before(jiffies, ci->i_hold_caps_max)) {
1646 dout(" delaying issued %s -> %s, wanted %s -> %s\n",
1647 ceph_cap_string(cap->issued),
1648 ceph_cap_string(cap->issued & retain),
1649 ceph_cap_string(cap->mds_wanted),
1650 ceph_cap_string(want));
1651 delayed++;
1652 continue;
1653 }
1654
1655ack:
e9964c10
SW
1656 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
1657 dout(" skipping %p I_NOFLUSH set\n", inode);
1658 continue;
1659 }
1660
a8599bd8
SW
1661 if (session && session != cap->session) {
1662 dout("oops, wrong session %p mutex\n", session);
1663 mutex_unlock(&session->s_mutex);
1664 session = NULL;
1665 }
1666 if (!session) {
1667 session = cap->session;
1668 if (mutex_trylock(&session->s_mutex) == 0) {
1669 dout("inverting session/ino locks on %p\n",
1670 session);
be655596 1671 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1672 if (took_snap_rwsem) {
1673 up_read(&mdsc->snap_rwsem);
1674 took_snap_rwsem = 0;
1675 }
1676 mutex_lock(&session->s_mutex);
1677 goto retry;
1678 }
1679 }
1680 /* take snap_rwsem after session mutex */
1681 if (!took_snap_rwsem) {
1682 if (down_read_trylock(&mdsc->snap_rwsem) == 0) {
1683 dout("inverting snap/in locks on %p\n",
1684 inode);
be655596 1685 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1686 down_read(&mdsc->snap_rwsem);
1687 took_snap_rwsem = 1;
1688 goto retry;
1689 }
1690 took_snap_rwsem = 1;
1691 }
1692
cdc35f96
SW
1693 if (cap == ci->i_auth_cap && ci->i_dirty_caps)
1694 flushing = __mark_caps_flushing(inode, session);
24be0c48
SW
1695 else
1696 flushing = 0;
a8599bd8
SW
1697
1698 mds = cap->mds; /* remember mds, so we don't repeat */
1699 sent++;
1700
be655596 1701 /* __send_cap drops i_ceph_lock */
395c312b
YZ
1702 delayed += __send_cap(mdsc, cap, CEPH_CAP_OP_UPDATE, cap_used,
1703 want, retain, flushing, NULL);
be655596 1704 goto retry; /* retake i_ceph_lock and restart our cap scan. */
a8599bd8
SW
1705 }
1706
1707 /*
1708 * Reschedule delayed caps release if we delayed anything,
1709 * otherwise cancel.
1710 */
1711 if (delayed && is_delayed)
1712 force_requeue = 1; /* __send_cap delayed release; requeue */
1713 if (!delayed && !is_delayed)
1714 __cap_delay_cancel(mdsc, ci);
1715 else if (!is_delayed || force_requeue)
1716 __cap_delay_requeue(mdsc, ci);
1717
be655596 1718 spin_unlock(&ci->i_ceph_lock);
a8599bd8 1719
cbd03635 1720 if (queue_invalidate)
3c6f6b79 1721 ceph_queue_invalidate(inode);
cbd03635 1722
cdc2ce05 1723 if (session)
a8599bd8
SW
1724 mutex_unlock(&session->s_mutex);
1725 if (took_snap_rwsem)
1726 up_read(&mdsc->snap_rwsem);
1727}
1728
a8599bd8
SW
1729/*
1730 * Try to flush dirty caps back to the auth mds.
1731 */
1732static int try_flush_caps(struct inode *inode, struct ceph_mds_session *session,
1733 unsigned *flush_tid)
1734{
3d14c5d2 1735 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8
SW
1736 struct ceph_inode_info *ci = ceph_inode(inode);
1737 int unlock_session = session ? 0 : 1;
1738 int flushing = 0;
1739
1740retry:
be655596 1741 spin_lock(&ci->i_ceph_lock);
e9964c10
SW
1742 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
1743 dout("try_flush_caps skipping %p I_NOFLUSH set\n", inode);
1744 goto out;
1745 }
a8599bd8
SW
1746 if (ci->i_dirty_caps && ci->i_auth_cap) {
1747 struct ceph_cap *cap = ci->i_auth_cap;
1748 int used = __ceph_caps_used(ci);
1749 int want = __ceph_caps_wanted(ci);
1750 int delayed;
1751
1752 if (!session) {
be655596 1753 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1754 session = cap->session;
1755 mutex_lock(&session->s_mutex);
1756 goto retry;
1757 }
1758 BUG_ON(session != cap->session);
1759 if (cap->session->s_state < CEPH_MDS_SESSION_OPEN)
1760 goto out;
1761
cdc35f96 1762 flushing = __mark_caps_flushing(inode, session);
a8599bd8 1763
be655596 1764 /* __send_cap drops i_ceph_lock */
a8599bd8
SW
1765 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH, used, want,
1766 cap->issued | cap->implemented, flushing,
1767 flush_tid);
1768 if (!delayed)
1769 goto out_unlocked;
1770
be655596 1771 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1772 __cap_delay_requeue(mdsc, ci);
1773 }
1774out:
be655596 1775 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1776out_unlocked:
1777 if (session && unlock_session)
1778 mutex_unlock(&session->s_mutex);
1779 return flushing;
1780}
1781
1782/*
1783 * Return true if we've flushed caps through the given flush_tid.
1784 */
1785static int caps_are_flushed(struct inode *inode, unsigned tid)
1786{
1787 struct ceph_inode_info *ci = ceph_inode(inode);
a5ee751c 1788 int i, ret = 1;
a8599bd8 1789
be655596 1790 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1791 for (i = 0; i < CEPH_CAP_BITS; i++)
1792 if ((ci->i_flushing_caps & (1 << i)) &&
1793 ci->i_cap_flush_tid[i] <= tid) {
1794 /* still flushing this bit */
1795 ret = 0;
1796 break;
1797 }
be655596 1798 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1799 return ret;
1800}
1801
1802/*
1803 * Wait on any unsafe replies for the given inode. First wait on the
1804 * newest request, and make that the upper bound. Then, if there are
1805 * more requests, keep waiting on the oldest as long as it is still older
1806 * than the original request.
1807 */
1808static void sync_write_wait(struct inode *inode)
1809{
1810 struct ceph_inode_info *ci = ceph_inode(inode);
1811 struct list_head *head = &ci->i_unsafe_writes;
1812 struct ceph_osd_request *req;
1813 u64 last_tid;
1814
1815 spin_lock(&ci->i_unsafe_lock);
1816 if (list_empty(head))
1817 goto out;
1818
1819 /* set upper bound as _last_ entry in chain */
1820 req = list_entry(head->prev, struct ceph_osd_request,
1821 r_unsafe_item);
1822 last_tid = req->r_tid;
1823
1824 do {
1825 ceph_osdc_get_request(req);
1826 spin_unlock(&ci->i_unsafe_lock);
1827 dout("sync_write_wait on tid %llu (until %llu)\n",
1828 req->r_tid, last_tid);
1829 wait_for_completion(&req->r_safe_completion);
1830 spin_lock(&ci->i_unsafe_lock);
1831 ceph_osdc_put_request(req);
1832
1833 /*
1834 * from here on look at first entry in chain, since we
1835 * only want to wait for anything older than last_tid
1836 */
1837 if (list_empty(head))
1838 break;
1839 req = list_entry(head->next, struct ceph_osd_request,
1840 r_unsafe_item);
1841 } while (req->r_tid < last_tid);
1842out:
1843 spin_unlock(&ci->i_unsafe_lock);
1844}
1845
02c24a82 1846int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync)
a8599bd8 1847{
7ea80859 1848 struct inode *inode = file->f_mapping->host;
a8599bd8
SW
1849 struct ceph_inode_info *ci = ceph_inode(inode);
1850 unsigned flush_tid;
1851 int ret;
1852 int dirty;
1853
1854 dout("fsync %p%s\n", inode, datasync ? " datasync" : "");
1855 sync_write_wait(inode);
1856
02c24a82 1857 ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
a8599bd8
SW
1858 if (ret < 0)
1859 return ret;
02c24a82 1860 mutex_lock(&inode->i_mutex);
a8599bd8
SW
1861
1862 dirty = try_flush_caps(inode, NULL, &flush_tid);
1863 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty));
1864
1865 /*
1866 * only wait on non-file metadata writeback (the mds
1867 * can recover size and mtime, so we don't need to
1868 * wait for that)
1869 */
1870 if (!datasync && (dirty & ~CEPH_CAP_ANY_FILE_WR)) {
1871 dout("fsync waiting for flush_tid %u\n", flush_tid);
1872 ret = wait_event_interruptible(ci->i_cap_wq,
1873 caps_are_flushed(inode, flush_tid));
1874 }
1875
1876 dout("fsync %p%s done\n", inode, datasync ? " datasync" : "");
02c24a82 1877 mutex_unlock(&inode->i_mutex);
a8599bd8
SW
1878 return ret;
1879}
1880
1881/*
1882 * Flush any dirty caps back to the mds. If we aren't asked to wait,
1883 * queue inode for flush but don't do so immediately, because we can
1884 * get by with fewer MDS messages if we wait for data writeback to
1885 * complete first.
1886 */
f1a3d572 1887int ceph_write_inode(struct inode *inode, struct writeback_control *wbc)
a8599bd8
SW
1888{
1889 struct ceph_inode_info *ci = ceph_inode(inode);
1890 unsigned flush_tid;
1891 int err = 0;
1892 int dirty;
f1a3d572 1893 int wait = wbc->sync_mode == WB_SYNC_ALL;
a8599bd8
SW
1894
1895 dout("write_inode %p wait=%d\n", inode, wait);
1896 if (wait) {
1897 dirty = try_flush_caps(inode, NULL, &flush_tid);
1898 if (dirty)
1899 err = wait_event_interruptible(ci->i_cap_wq,
1900 caps_are_flushed(inode, flush_tid));
1901 } else {
640ef79d 1902 struct ceph_mds_client *mdsc =
3d14c5d2 1903 ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8 1904
be655596 1905 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1906 if (__ceph_caps_dirty(ci))
1907 __cap_delay_requeue_front(mdsc, ci);
be655596 1908 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1909 }
1910 return err;
1911}
1912
1913/*
1914 * After a recovering MDS goes active, we need to resend any caps
1915 * we were flushing.
1916 *
1917 * Caller holds session->s_mutex.
1918 */
1919static void kick_flushing_capsnaps(struct ceph_mds_client *mdsc,
1920 struct ceph_mds_session *session)
1921{
1922 struct ceph_cap_snap *capsnap;
1923
1924 dout("kick_flushing_capsnaps mds%d\n", session->s_mds);
1925 list_for_each_entry(capsnap, &session->s_cap_snaps_flushing,
1926 flushing_item) {
1927 struct ceph_inode_info *ci = capsnap->ci;
1928 struct inode *inode = &ci->vfs_inode;
1929 struct ceph_cap *cap;
1930
be655596 1931 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1932 cap = ci->i_auth_cap;
1933 if (cap && cap->session == session) {
1934 dout("kick_flushing_caps %p cap %p capsnap %p\n", inode,
1935 cap, capsnap);
e835124c 1936 __ceph_flush_snaps(ci, &session, 1);
a8599bd8
SW
1937 } else {
1938 pr_err("%p auth cap %p not mds%d ???\n", inode,
1939 cap, session->s_mds);
a8599bd8 1940 }
be655596 1941 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1942 }
1943}
1944
1945void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
1946 struct ceph_mds_session *session)
1947{
1948 struct ceph_inode_info *ci;
1949
1950 kick_flushing_capsnaps(mdsc, session);
1951
1952 dout("kick_flushing_caps mds%d\n", session->s_mds);
1953 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
1954 struct inode *inode = &ci->vfs_inode;
1955 struct ceph_cap *cap;
1956 int delayed = 0;
1957
be655596 1958 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1959 cap = ci->i_auth_cap;
1960 if (cap && cap->session == session) {
1961 dout("kick_flushing_caps %p cap %p %s\n", inode,
1962 cap, ceph_cap_string(ci->i_flushing_caps));
1963 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
1964 __ceph_caps_used(ci),
1965 __ceph_caps_wanted(ci),
1966 cap->issued | cap->implemented,
1967 ci->i_flushing_caps, NULL);
1968 if (delayed) {
be655596 1969 spin_lock(&ci->i_ceph_lock);
a8599bd8 1970 __cap_delay_requeue(mdsc, ci);
be655596 1971 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1972 }
1973 } else {
1974 pr_err("%p auth cap %p not mds%d ???\n", inode,
1975 cap, session->s_mds);
be655596 1976 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1977 }
1978 }
1979}
1980
088b3f5e
SW
1981static void kick_flushing_inode_caps(struct ceph_mds_client *mdsc,
1982 struct ceph_mds_session *session,
1983 struct inode *inode)
1984{
1985 struct ceph_inode_info *ci = ceph_inode(inode);
1986 struct ceph_cap *cap;
1987 int delayed = 0;
1988
be655596 1989 spin_lock(&ci->i_ceph_lock);
088b3f5e
SW
1990 cap = ci->i_auth_cap;
1991 dout("kick_flushing_inode_caps %p flushing %s flush_seq %lld\n", inode,
1992 ceph_cap_string(ci->i_flushing_caps), ci->i_cap_flush_seq);
005c4697 1993
088b3f5e 1994 __ceph_flush_snaps(ci, &session, 1);
005c4697 1995
088b3f5e 1996 if (ci->i_flushing_caps) {
005c4697
YZ
1997 spin_lock(&mdsc->cap_dirty_lock);
1998 list_move_tail(&ci->i_flushing_item,
1999 &cap->session->s_cap_flushing);
2000 spin_unlock(&mdsc->cap_dirty_lock);
2001
088b3f5e
SW
2002 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
2003 __ceph_caps_used(ci),
2004 __ceph_caps_wanted(ci),
2005 cap->issued | cap->implemented,
2006 ci->i_flushing_caps, NULL);
2007 if (delayed) {
be655596 2008 spin_lock(&ci->i_ceph_lock);
088b3f5e 2009 __cap_delay_requeue(mdsc, ci);
be655596 2010 spin_unlock(&ci->i_ceph_lock);
088b3f5e
SW
2011 }
2012 } else {
be655596 2013 spin_unlock(&ci->i_ceph_lock);
088b3f5e
SW
2014 }
2015}
2016
a8599bd8
SW
2017
2018/*
2019 * Take references to capabilities we hold, so that we don't release
2020 * them to the MDS prematurely.
2021 *
be655596 2022 * Protected by i_ceph_lock.
a8599bd8
SW
2023 */
2024static void __take_cap_refs(struct ceph_inode_info *ci, int got)
2025{
2026 if (got & CEPH_CAP_PIN)
2027 ci->i_pin_ref++;
2028 if (got & CEPH_CAP_FILE_RD)
2029 ci->i_rd_ref++;
2030 if (got & CEPH_CAP_FILE_CACHE)
2031 ci->i_rdcache_ref++;
2032 if (got & CEPH_CAP_FILE_WR)
2033 ci->i_wr_ref++;
2034 if (got & CEPH_CAP_FILE_BUFFER) {
d3d0720d 2035 if (ci->i_wb_ref == 0)
3772d26d 2036 ihold(&ci->vfs_inode);
d3d0720d
HC
2037 ci->i_wb_ref++;
2038 dout("__take_cap_refs %p wb %d -> %d (?)\n",
2039 &ci->vfs_inode, ci->i_wb_ref-1, ci->i_wb_ref);
a8599bd8
SW
2040 }
2041}
2042
2043/*
2044 * Try to grab cap references. Specify those refs we @want, and the
2045 * minimal set we @need. Also include the larger offset we are writing
2046 * to (when applicable), and check against max_size here as well.
2047 * Note that caller is responsible for ensuring max_size increases are
2048 * requested from the MDS.
2049 */
2050static int try_get_cap_refs(struct ceph_inode_info *ci, int need, int want,
2051 int *got, loff_t endoff, int *check_max, int *err)
2052{
2053 struct inode *inode = &ci->vfs_inode;
2054 int ret = 0;
2055 int have, implemented;
195d3ce2 2056 int file_wanted;
a8599bd8
SW
2057
2058 dout("get_cap_refs %p need %s want %s\n", inode,
2059 ceph_cap_string(need), ceph_cap_string(want));
be655596 2060 spin_lock(&ci->i_ceph_lock);
a8599bd8 2061
195d3ce2
SW
2062 /* make sure file is actually open */
2063 file_wanted = __ceph_caps_file_wanted(ci);
2064 if ((file_wanted & need) == 0) {
2065 dout("try_get_cap_refs need %s file_wanted %s, EBADF\n",
2066 ceph_cap_string(need), ceph_cap_string(file_wanted));
a8599bd8
SW
2067 *err = -EBADF;
2068 ret = 1;
2069 goto out;
2070 }
2071
37505d57
YZ
2072 /* finish pending truncate */
2073 while (ci->i_truncate_pending) {
2074 spin_unlock(&ci->i_ceph_lock);
b415bf4f 2075 __ceph_do_pending_vmtruncate(inode);
37505d57
YZ
2076 spin_lock(&ci->i_ceph_lock);
2077 }
2078
3871cbb9
YZ
2079 have = __ceph_caps_issued(ci, &implemented);
2080
2081 if (have & need & CEPH_CAP_FILE_WR) {
a8599bd8
SW
2082 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2083 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2084 inode, endoff, ci->i_max_size);
3871cbb9 2085 if (endoff > ci->i_requested_max_size) {
a8599bd8
SW
2086 *check_max = 1;
2087 ret = 1;
2088 }
2089 goto out;
2090 }
2091 /*
2092 * If a sync write is in progress, we must wait, so that we
2093 * can get a final snapshot value for size+mtime.
2094 */
2095 if (__ceph_have_pending_cap_snap(ci)) {
2096 dout("get_cap_refs %p cap_snap_pending\n", inode);
2097 goto out;
2098 }
2099 }
a8599bd8 2100
a8599bd8
SW
2101 if ((have & need) == need) {
2102 /*
2103 * Look at (implemented & ~have & not) so that we keep waiting
2104 * on transition from wanted -> needed caps. This is needed
2105 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2106 * going before a prior buffered writeback happens.
2107 */
2108 int not = want & ~(have & need);
2109 int revoking = implemented & ~have;
2110 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2111 inode, ceph_cap_string(have), ceph_cap_string(not),
2112 ceph_cap_string(revoking));
2113 if ((revoking & not) == 0) {
2114 *got = need | (have & want);
2115 __take_cap_refs(ci, *got);
2116 ret = 1;
2117 }
2118 } else {
2119 dout("get_cap_refs %p have %s needed %s\n", inode,
2120 ceph_cap_string(have), ceph_cap_string(need));
2121 }
2122out:
be655596 2123 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2124 dout("get_cap_refs %p ret %d got %s\n", inode,
2125 ret, ceph_cap_string(*got));
2126 return ret;
2127}
2128
2129/*
2130 * Check the offset we are writing up to against our current
2131 * max_size. If necessary, tell the MDS we want to write to
2132 * a larger offset.
2133 */
2134static void check_max_size(struct inode *inode, loff_t endoff)
2135{
2136 struct ceph_inode_info *ci = ceph_inode(inode);
2137 int check = 0;
2138
2139 /* do we need to explicitly request a larger max_size? */
be655596 2140 spin_lock(&ci->i_ceph_lock);
3871cbb9 2141 if (endoff >= ci->i_max_size && endoff > ci->i_wanted_max_size) {
a8599bd8
SW
2142 dout("write %p at large endoff %llu, req max_size\n",
2143 inode, endoff);
2144 ci->i_wanted_max_size = endoff;
a8599bd8 2145 }
3871cbb9
YZ
2146 /* duplicate ceph_check_caps()'s logic */
2147 if (ci->i_auth_cap &&
2148 (ci->i_auth_cap->issued & CEPH_CAP_FILE_WR) &&
2149 ci->i_wanted_max_size > ci->i_max_size &&
2150 ci->i_wanted_max_size > ci->i_requested_max_size)
2151 check = 1;
be655596 2152 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2153 if (check)
2154 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2155}
2156
2157/*
2158 * Wait for caps, and take cap references. If we can't get a WR cap
2159 * due to a small max_size, make sure we check_max_size (and possibly
2160 * ask the mds) so we don't get hung up indefinitely.
2161 */
2162int ceph_get_caps(struct ceph_inode_info *ci, int need, int want, int *got,
2163 loff_t endoff)
2164{
2165 int check_max, ret, err;
2166
2167retry:
2168 if (endoff > 0)
2169 check_max_size(&ci->vfs_inode, endoff);
2170 check_max = 0;
2171 err = 0;
2172 ret = wait_event_interruptible(ci->i_cap_wq,
2173 try_get_cap_refs(ci, need, want,
2174 got, endoff,
2175 &check_max, &err));
2176 if (err)
2177 ret = err;
2178 if (check_max)
2179 goto retry;
2180 return ret;
2181}
2182
2183/*
2184 * Take cap refs. Caller must already know we hold at least one ref
2185 * on the caps in question or we don't know this is safe.
2186 */
2187void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
2188{
be655596 2189 spin_lock(&ci->i_ceph_lock);
a8599bd8 2190 __take_cap_refs(ci, caps);
be655596 2191 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2192}
2193
2194/*
2195 * Release cap refs.
2196 *
2197 * If we released the last ref on any given cap, call ceph_check_caps
2198 * to release (or schedule a release).
2199 *
2200 * If we are releasing a WR cap (from a sync write), finalize any affected
2201 * cap_snap, and wake up any waiters.
2202 */
2203void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
2204{
2205 struct inode *inode = &ci->vfs_inode;
2206 int last = 0, put = 0, flushsnaps = 0, wake = 0;
2207 struct ceph_cap_snap *capsnap;
2208
be655596 2209 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2210 if (had & CEPH_CAP_PIN)
2211 --ci->i_pin_ref;
2212 if (had & CEPH_CAP_FILE_RD)
2213 if (--ci->i_rd_ref == 0)
2214 last++;
2215 if (had & CEPH_CAP_FILE_CACHE)
2216 if (--ci->i_rdcache_ref == 0)
2217 last++;
2218 if (had & CEPH_CAP_FILE_BUFFER) {
d3d0720d 2219 if (--ci->i_wb_ref == 0) {
a8599bd8
SW
2220 last++;
2221 put++;
2222 }
d3d0720d
HC
2223 dout("put_cap_refs %p wb %d -> %d (?)\n",
2224 inode, ci->i_wb_ref+1, ci->i_wb_ref);
a8599bd8
SW
2225 }
2226 if (had & CEPH_CAP_FILE_WR)
2227 if (--ci->i_wr_ref == 0) {
2228 last++;
2229 if (!list_empty(&ci->i_cap_snaps)) {
2230 capsnap = list_first_entry(&ci->i_cap_snaps,
2231 struct ceph_cap_snap,
2232 ci_item);
2233 if (capsnap->writing) {
2234 capsnap->writing = 0;
2235 flushsnaps =
2236 __ceph_finish_cap_snap(ci,
2237 capsnap);
2238 wake = 1;
2239 }
2240 }
2241 }
be655596 2242 spin_unlock(&ci->i_ceph_lock);
a8599bd8 2243
819ccbfa
SW
2244 dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
2245 last ? " last" : "", put ? " put" : "");
a8599bd8
SW
2246
2247 if (last && !flushsnaps)
2248 ceph_check_caps(ci, 0, NULL);
2249 else if (flushsnaps)
2250 ceph_flush_snaps(ci);
2251 if (wake)
03066f23 2252 wake_up_all(&ci->i_cap_wq);
a8599bd8
SW
2253 if (put)
2254 iput(inode);
2255}
2256
2257/*
2258 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
2259 * context. Adjust per-snap dirty page accounting as appropriate.
2260 * Once all dirty data for a cap_snap is flushed, flush snapped file
2261 * metadata back to the MDS. If we dropped the last ref, call
2262 * ceph_check_caps.
2263 */
2264void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
2265 struct ceph_snap_context *snapc)
2266{
2267 struct inode *inode = &ci->vfs_inode;
2268 int last = 0;
819ccbfa
SW
2269 int complete_capsnap = 0;
2270 int drop_capsnap = 0;
a8599bd8
SW
2271 int found = 0;
2272 struct ceph_cap_snap *capsnap = NULL;
2273
be655596 2274 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2275 ci->i_wrbuffer_ref -= nr;
2276 last = !ci->i_wrbuffer_ref;
2277
2278 if (ci->i_head_snapc == snapc) {
2279 ci->i_wrbuffer_ref_head -= nr;
7d8cb26d
SW
2280 if (ci->i_wrbuffer_ref_head == 0 &&
2281 ci->i_dirty_caps == 0 && ci->i_flushing_caps == 0) {
2282 BUG_ON(!ci->i_head_snapc);
a8599bd8
SW
2283 ceph_put_snap_context(ci->i_head_snapc);
2284 ci->i_head_snapc = NULL;
2285 }
2286 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
2287 inode,
2288 ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
2289 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
2290 last ? " LAST" : "");
2291 } else {
2292 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2293 if (capsnap->context == snapc) {
2294 found = 1;
a8599bd8
SW
2295 break;
2296 }
2297 }
2298 BUG_ON(!found);
819ccbfa
SW
2299 capsnap->dirty_pages -= nr;
2300 if (capsnap->dirty_pages == 0) {
2301 complete_capsnap = 1;
2302 if (capsnap->dirty == 0)
2303 /* cap writeback completed before we created
2304 * the cap_snap; no FLUSHSNAP is needed */
2305 drop_capsnap = 1;
2306 }
a8599bd8 2307 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
819ccbfa 2308 " snap %lld %d/%d -> %d/%d %s%s%s\n",
a8599bd8
SW
2309 inode, capsnap, capsnap->context->seq,
2310 ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
2311 ci->i_wrbuffer_ref, capsnap->dirty_pages,
2312 last ? " (wrbuffer last)" : "",
819ccbfa
SW
2313 complete_capsnap ? " (complete capsnap)" : "",
2314 drop_capsnap ? " (drop capsnap)" : "");
2315 if (drop_capsnap) {
2316 ceph_put_snap_context(capsnap->context);
2317 list_del(&capsnap->ci_item);
2318 list_del(&capsnap->flushing_item);
2319 ceph_put_cap_snap(capsnap);
2320 }
a8599bd8
SW
2321 }
2322
be655596 2323 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2324
2325 if (last) {
2326 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2327 iput(inode);
819ccbfa 2328 } else if (complete_capsnap) {
a8599bd8 2329 ceph_flush_snaps(ci);
03066f23 2330 wake_up_all(&ci->i_cap_wq);
a8599bd8 2331 }
819ccbfa
SW
2332 if (drop_capsnap)
2333 iput(inode);
a8599bd8
SW
2334}
2335
ca20c991
YZ
2336/*
2337 * Invalidate unlinked inode's aliases, so we can drop the inode ASAP.
2338 */
2339static void invalidate_aliases(struct inode *inode)
2340{
2341 struct dentry *dn, *prev = NULL;
2342
2343 dout("invalidate_aliases inode %p\n", inode);
2344 d_prune_aliases(inode);
2345 /*
2346 * For non-directory inode, d_find_alias() only returns
2347 * connected dentry. After calling d_delete(), the dentry
2348 * become disconnected.
2349 *
2350 * For directory inode, d_find_alias() only can return
2351 * disconnected dentry. But directory inode should have
2352 * one alias at most.
2353 */
2354 while ((dn = d_find_alias(inode))) {
2355 if (dn == prev) {
2356 dput(dn);
2357 break;
2358 }
2359 d_delete(dn);
2360 if (prev)
2361 dput(prev);
2362 prev = dn;
2363 }
2364 if (prev)
2365 dput(prev);
2366}
2367
a8599bd8
SW
2368/*
2369 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
2370 * actually be a revocation if it specifies a smaller cap set.)
2371 *
be655596 2372 * caller holds s_mutex and i_ceph_lock, we drop both.
15637c8b 2373 *
a8599bd8
SW
2374 * return value:
2375 * 0 - ok
2376 * 1 - check_caps on auth cap only (writeback)
2377 * 2 - check_caps (ack revoke)
2378 */
15637c8b
SW
2379static void handle_cap_grant(struct inode *inode, struct ceph_mds_caps *grant,
2380 struct ceph_mds_session *session,
2381 struct ceph_cap *cap,
2382 struct ceph_buffer *xattr_buf)
be655596 2383 __releases(ci->i_ceph_lock)
a8599bd8
SW
2384{
2385 struct ceph_inode_info *ci = ceph_inode(inode);
2386 int mds = session->s_mds;
2f56f56a 2387 int seq = le32_to_cpu(grant->seq);
a8599bd8
SW
2388 int newcaps = le32_to_cpu(grant->caps);
2389 int issued, implemented, used, wanted, dirty;
2390 u64 size = le64_to_cpu(grant->size);
2391 u64 max_size = le64_to_cpu(grant->max_size);
2392 struct timespec mtime, atime, ctime;
15637c8b 2393 int check_caps = 0;
a8599bd8
SW
2394 int wake = 0;
2395 int writeback = 0;
3c6f6b79 2396 int queue_invalidate = 0;
ca20c991 2397 int deleted_inode = 0;
a8599bd8 2398
2f56f56a
SW
2399 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
2400 inode, cap, mds, seq, ceph_cap_string(newcaps));
a8599bd8
SW
2401 dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
2402 inode->i_size);
2403
2404 /*
2405 * If CACHE is being revoked, and we have no dirty buffers,
2406 * try to invalidate (once). (If there are dirty buffers, we
2407 * will invalidate _after_ writeback.)
2408 */
3b454c49
SW
2409 if (((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
2410 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
bcd2cbd1 2411 !ci->i_wrbuffer_ref) {
e9075743 2412 if (try_nonblocking_invalidate(inode)) {
a8599bd8
SW
2413 /* there were locked pages.. invalidate later
2414 in a separate thread. */
2415 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
3c6f6b79 2416 queue_invalidate = 1;
a8599bd8
SW
2417 ci->i_rdcache_revoking = ci->i_rdcache_gen;
2418 }
a8599bd8 2419 }
a8599bd8
SW
2420 }
2421
2422 /* side effects now are allowed */
2423
2424 issued = __ceph_caps_issued(ci, &implemented);
2425 issued |= implemented | __ceph_caps_dirty(ci);
2426
685f9a5d 2427 cap->cap_gen = session->s_cap_gen;
a8599bd8
SW
2428
2429 __check_cap_issue(ci, cap, newcaps);
2430
2431 if ((issued & CEPH_CAP_AUTH_EXCL) == 0) {
2432 inode->i_mode = le32_to_cpu(grant->mode);
05cb11c1
EB
2433 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(grant->uid));
2434 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(grant->gid));
a8599bd8 2435 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
bd2bae6a
EB
2436 from_kuid(&init_user_ns, inode->i_uid),
2437 from_kgid(&init_user_ns, inode->i_gid));
a8599bd8
SW
2438 }
2439
ca20c991 2440 if ((issued & CEPH_CAP_LINK_EXCL) == 0) {
bfe86848 2441 set_nlink(inode, le32_to_cpu(grant->nlink));
ca20c991
YZ
2442 if (inode->i_nlink == 0 &&
2443 (newcaps & (CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL)))
2444 deleted_inode = 1;
2445 }
a8599bd8
SW
2446
2447 if ((issued & CEPH_CAP_XATTR_EXCL) == 0 && grant->xattr_len) {
2448 int len = le32_to_cpu(grant->xattr_len);
2449 u64 version = le64_to_cpu(grant->xattr_version);
2450
2451 if (version > ci->i_xattrs.version) {
2452 dout(" got new xattrs v%llu on %p len %d\n",
2453 version, inode, len);
2454 if (ci->i_xattrs.blob)
2455 ceph_buffer_put(ci->i_xattrs.blob);
2456 ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
2457 ci->i_xattrs.version = version;
2458 }
2459 }
2460
2461 /* size/ctime/mtime/atime? */
2462 ceph_fill_file_size(inode, issued,
2463 le32_to_cpu(grant->truncate_seq),
2464 le64_to_cpu(grant->truncate_size), size);
2465 ceph_decode_timespec(&mtime, &grant->mtime);
2466 ceph_decode_timespec(&atime, &grant->atime);
2467 ceph_decode_timespec(&ctime, &grant->ctime);
2468 ceph_fill_file_time(inode, issued,
2469 le32_to_cpu(grant->time_warp_seq), &ctime, &mtime,
2470 &atime);
2471
2472 /* max size increase? */
5e62ad30 2473 if (ci->i_auth_cap == cap && max_size != ci->i_max_size) {
a8599bd8
SW
2474 dout("max_size %lld -> %llu\n", ci->i_max_size, max_size);
2475 ci->i_max_size = max_size;
2476 if (max_size >= ci->i_wanted_max_size) {
2477 ci->i_wanted_max_size = 0; /* reset */
2478 ci->i_requested_max_size = 0;
2479 }
2480 wake = 1;
2481 }
2482
2483 /* check cap bits */
2484 wanted = __ceph_caps_wanted(ci);
2485 used = __ceph_caps_used(ci);
2486 dirty = __ceph_caps_dirty(ci);
2487 dout(" my wanted = %s, used = %s, dirty %s\n",
2488 ceph_cap_string(wanted),
2489 ceph_cap_string(used),
2490 ceph_cap_string(dirty));
2491 if (wanted != le32_to_cpu(grant->wanted)) {
2492 dout("mds wanted %s -> %s\n",
2493 ceph_cap_string(le32_to_cpu(grant->wanted)),
2494 ceph_cap_string(wanted));
390306c3
YZ
2495 /* imported cap may not have correct mds_wanted */
2496 if (le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT)
2497 check_caps = 1;
a8599bd8
SW
2498 }
2499
2500 cap->seq = seq;
2501
2502 /* file layout may have changed */
2503 ci->i_layout = grant->layout;
2504
2505 /* revocation, grant, or no-op? */
2506 if (cap->issued & ~newcaps) {
3b454c49
SW
2507 int revoking = cap->issued & ~newcaps;
2508
2509 dout("revocation: %s -> %s (revoking %s)\n",
2510 ceph_cap_string(cap->issued),
2511 ceph_cap_string(newcaps),
2512 ceph_cap_string(revoking));
0eb6cd49 2513 if (revoking & used & CEPH_CAP_FILE_BUFFER)
3b454c49
SW
2514 writeback = 1; /* initiate writeback; will delay ack */
2515 else if (revoking == CEPH_CAP_FILE_CACHE &&
2516 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
2517 queue_invalidate)
2518 ; /* do nothing yet, invalidation will be queued */
2519 else if (cap == ci->i_auth_cap)
2520 check_caps = 1; /* check auth cap only */
2521 else
2522 check_caps = 2; /* check all caps */
a8599bd8 2523 cap->issued = newcaps;
978097c9 2524 cap->implemented |= newcaps;
a8599bd8
SW
2525 } else if (cap->issued == newcaps) {
2526 dout("caps unchanged: %s -> %s\n",
2527 ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
2528 } else {
2529 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
2530 ceph_cap_string(newcaps));
6ee6b953
YZ
2531 /* non-auth MDS is revoking the newly grant caps ? */
2532 if (cap == ci->i_auth_cap &&
2533 __ceph_caps_revoking_other(ci, cap, newcaps))
2534 check_caps = 2;
2535
a8599bd8
SW
2536 cap->issued = newcaps;
2537 cap->implemented |= newcaps; /* add bits only, to
2538 * avoid stepping on a
2539 * pending revocation */
2540 wake = 1;
2541 }
978097c9 2542 BUG_ON(cap->issued & ~cap->implemented);
a8599bd8 2543
be655596 2544 spin_unlock(&ci->i_ceph_lock);
3c6f6b79 2545 if (writeback)
a8599bd8
SW
2546 /*
2547 * queue inode for writeback: we can't actually call
2548 * filemap_write_and_wait, etc. from message handler
2549 * context.
2550 */
3c6f6b79
SW
2551 ceph_queue_writeback(inode);
2552 if (queue_invalidate)
2553 ceph_queue_invalidate(inode);
ca20c991
YZ
2554 if (deleted_inode)
2555 invalidate_aliases(inode);
a8599bd8 2556 if (wake)
03066f23 2557 wake_up_all(&ci->i_cap_wq);
15637c8b
SW
2558
2559 if (check_caps == 1)
2560 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_AUTHONLY,
2561 session);
2562 else if (check_caps == 2)
2563 ceph_check_caps(ci, CHECK_CAPS_NODELAY, session);
2564 else
2565 mutex_unlock(&session->s_mutex);
a8599bd8
SW
2566}
2567
2568/*
2569 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
2570 * MDS has been safely committed.
2571 */
6df058c0 2572static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
a8599bd8
SW
2573 struct ceph_mds_caps *m,
2574 struct ceph_mds_session *session,
2575 struct ceph_cap *cap)
be655596 2576 __releases(ci->i_ceph_lock)
a8599bd8
SW
2577{
2578 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2 2579 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8
SW
2580 unsigned seq = le32_to_cpu(m->seq);
2581 int dirty = le32_to_cpu(m->dirty);
2582 int cleaned = 0;
afcdaea3 2583 int drop = 0;
a8599bd8
SW
2584 int i;
2585
2586 for (i = 0; i < CEPH_CAP_BITS; i++)
2587 if ((dirty & (1 << i)) &&
2588 flush_tid == ci->i_cap_flush_tid[i])
2589 cleaned |= 1 << i;
2590
2591 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
2592 " flushing %s -> %s\n",
2593 inode, session->s_mds, seq, ceph_cap_string(dirty),
2594 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
2595 ceph_cap_string(ci->i_flushing_caps & ~cleaned));
2596
2597 if (ci->i_flushing_caps == (ci->i_flushing_caps & ~cleaned))
2598 goto out;
2599
a8599bd8 2600 ci->i_flushing_caps &= ~cleaned;
a8599bd8
SW
2601
2602 spin_lock(&mdsc->cap_dirty_lock);
2603 if (ci->i_flushing_caps == 0) {
2604 list_del_init(&ci->i_flushing_item);
2605 if (!list_empty(&session->s_cap_flushing))
2606 dout(" mds%d still flushing cap on %p\n",
2607 session->s_mds,
2608 &list_entry(session->s_cap_flushing.next,
2609 struct ceph_inode_info,
2610 i_flushing_item)->vfs_inode);
2611 mdsc->num_cap_flushing--;
03066f23 2612 wake_up_all(&mdsc->cap_flushing_wq);
a8599bd8 2613 dout(" inode %p now !flushing\n", inode);
afcdaea3
SW
2614
2615 if (ci->i_dirty_caps == 0) {
2616 dout(" inode %p now clean\n", inode);
2617 BUG_ON(!list_empty(&ci->i_dirty_item));
2618 drop = 1;
7d8cb26d
SW
2619 if (ci->i_wrbuffer_ref_head == 0) {
2620 BUG_ON(!ci->i_head_snapc);
2621 ceph_put_snap_context(ci->i_head_snapc);
2622 ci->i_head_snapc = NULL;
2623 }
76e3b390
SW
2624 } else {
2625 BUG_ON(list_empty(&ci->i_dirty_item));
afcdaea3 2626 }
a8599bd8
SW
2627 }
2628 spin_unlock(&mdsc->cap_dirty_lock);
03066f23 2629 wake_up_all(&ci->i_cap_wq);
a8599bd8
SW
2630
2631out:
be655596 2632 spin_unlock(&ci->i_ceph_lock);
afcdaea3 2633 if (drop)
a8599bd8
SW
2634 iput(inode);
2635}
2636
2637/*
2638 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
2639 * throw away our cap_snap.
2640 *
2641 * Caller hold s_mutex.
2642 */
6df058c0 2643static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
a8599bd8
SW
2644 struct ceph_mds_caps *m,
2645 struct ceph_mds_session *session)
2646{
2647 struct ceph_inode_info *ci = ceph_inode(inode);
2648 u64 follows = le64_to_cpu(m->snap_follows);
a8599bd8
SW
2649 struct ceph_cap_snap *capsnap;
2650 int drop = 0;
2651
2652 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
2653 inode, ci, session->s_mds, follows);
2654
be655596 2655 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2656 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2657 if (capsnap->follows == follows) {
2658 if (capsnap->flush_tid != flush_tid) {
2659 dout(" cap_snap %p follows %lld tid %lld !="
2660 " %lld\n", capsnap, follows,
2661 flush_tid, capsnap->flush_tid);
2662 break;
2663 }
2664 WARN_ON(capsnap->dirty_pages || capsnap->writing);
819ccbfa
SW
2665 dout(" removing %p cap_snap %p follows %lld\n",
2666 inode, capsnap, follows);
a8599bd8
SW
2667 ceph_put_snap_context(capsnap->context);
2668 list_del(&capsnap->ci_item);
2669 list_del(&capsnap->flushing_item);
2670 ceph_put_cap_snap(capsnap);
2671 drop = 1;
2672 break;
2673 } else {
2674 dout(" skipping cap_snap %p follows %lld\n",
2675 capsnap, capsnap->follows);
2676 }
2677 }
be655596 2678 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2679 if (drop)
2680 iput(inode);
2681}
2682
2683/*
2684 * Handle TRUNC from MDS, indicating file truncation.
2685 *
2686 * caller hold s_mutex.
2687 */
2688static void handle_cap_trunc(struct inode *inode,
2689 struct ceph_mds_caps *trunc,
2690 struct ceph_mds_session *session)
be655596 2691 __releases(ci->i_ceph_lock)
a8599bd8
SW
2692{
2693 struct ceph_inode_info *ci = ceph_inode(inode);
2694 int mds = session->s_mds;
2695 int seq = le32_to_cpu(trunc->seq);
2696 u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
2697 u64 truncate_size = le64_to_cpu(trunc->truncate_size);
2698 u64 size = le64_to_cpu(trunc->size);
2699 int implemented = 0;
2700 int dirty = __ceph_caps_dirty(ci);
2701 int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
2702 int queue_trunc = 0;
2703
2704 issued |= implemented | dirty;
2705
2706 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
2707 inode, mds, seq, truncate_size, truncate_seq);
2708 queue_trunc = ceph_fill_file_size(inode, issued,
2709 truncate_seq, truncate_size, size);
be655596 2710 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2711
2712 if (queue_trunc)
3c6f6b79 2713 ceph_queue_vmtruncate(inode);
a8599bd8
SW
2714}
2715
2716/*
2717 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
2718 * different one. If we are the most recent migration we've seen (as
2719 * indicated by mseq), make note of the migrating cap bits for the
2720 * duration (until we see the corresponding IMPORT).
2721 *
2722 * caller holds s_mutex
2723 */
2724static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
154f42c2
SW
2725 struct ceph_mds_session *session,
2726 int *open_target_sessions)
a8599bd8 2727{
db354052 2728 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
a8599bd8
SW
2729 struct ceph_inode_info *ci = ceph_inode(inode);
2730 int mds = session->s_mds;
2731 unsigned mseq = le32_to_cpu(ex->migrate_seq);
2732 struct ceph_cap *cap = NULL, *t;
2733 struct rb_node *p;
2734 int remember = 1;
2735
2736 dout("handle_cap_export inode %p ci %p mds%d mseq %d\n",
2737 inode, ci, mds, mseq);
2738
be655596 2739 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2740
2741 /* make sure we haven't seen a higher mseq */
2742 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
2743 t = rb_entry(p, struct ceph_cap, ci_node);
2744 if (ceph_seq_cmp(t->mseq, mseq) > 0) {
2745 dout(" higher mseq on cap from mds%d\n",
2746 t->session->s_mds);
2747 remember = 0;
2748 }
2749 if (t->session->s_mds == mds)
2750 cap = t;
2751 }
2752
2753 if (cap) {
2754 if (remember) {
2755 /* make note */
2756 ci->i_cap_exporting_mds = mds;
2757 ci->i_cap_exporting_mseq = mseq;
2758 ci->i_cap_exporting_issued = cap->issued;
154f42c2
SW
2759
2760 /*
2761 * make sure we have open sessions with all possible
2762 * export targets, so that we get the matching IMPORT
2763 */
2764 *open_target_sessions = 1;
db354052
SW
2765
2766 /*
2767 * we can't flush dirty caps that we've seen the
2768 * EXPORT but no IMPORT for
2769 */
2770 spin_lock(&mdsc->cap_dirty_lock);
2771 if (!list_empty(&ci->i_dirty_item)) {
2772 dout(" moving %p to cap_dirty_migrating\n",
2773 inode);
2774 list_move(&ci->i_dirty_item,
2775 &mdsc->cap_dirty_migrating);
2776 }
2777 spin_unlock(&mdsc->cap_dirty_lock);
a8599bd8 2778 }
7c1332b8 2779 __ceph_remove_cap(cap);
a8599bd8 2780 }
4ea0043a 2781 /* else, we already released it */
a8599bd8 2782
be655596 2783 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2784}
2785
2786/*
2787 * Handle cap IMPORT. If there are temp bits from an older EXPORT,
2788 * clean them up.
2789 *
2790 * caller holds s_mutex.
2791 */
2792static void handle_cap_import(struct ceph_mds_client *mdsc,
2793 struct inode *inode, struct ceph_mds_caps *im,
2794 struct ceph_mds_session *session,
2795 void *snaptrace, int snaptrace_len)
2796{
2797 struct ceph_inode_info *ci = ceph_inode(inode);
2798 int mds = session->s_mds;
2799 unsigned issued = le32_to_cpu(im->caps);
2800 unsigned wanted = le32_to_cpu(im->wanted);
2801 unsigned seq = le32_to_cpu(im->seq);
2802 unsigned mseq = le32_to_cpu(im->migrate_seq);
2803 u64 realmino = le64_to_cpu(im->realm);
2804 u64 cap_id = le64_to_cpu(im->cap_id);
2805
2806 if (ci->i_cap_exporting_mds >= 0 &&
2807 ceph_seq_cmp(ci->i_cap_exporting_mseq, mseq) < 0) {
2808 dout("handle_cap_import inode %p ci %p mds%d mseq %d"
2809 " - cleared exporting from mds%d\n",
2810 inode, ci, mds, mseq,
2811 ci->i_cap_exporting_mds);
2812 ci->i_cap_exporting_issued = 0;
2813 ci->i_cap_exporting_mseq = 0;
2814 ci->i_cap_exporting_mds = -1;
db354052
SW
2815
2816 spin_lock(&mdsc->cap_dirty_lock);
2817 if (!list_empty(&ci->i_dirty_item)) {
2818 dout(" moving %p back to cap_dirty\n", inode);
2819 list_move(&ci->i_dirty_item, &mdsc->cap_dirty);
2820 }
2821 spin_unlock(&mdsc->cap_dirty_lock);
a8599bd8
SW
2822 } else {
2823 dout("handle_cap_import inode %p ci %p mds%d mseq %d\n",
2824 inode, ci, mds, mseq);
2825 }
2826
2827 down_write(&mdsc->snap_rwsem);
2828 ceph_update_snap_trace(mdsc, snaptrace, snaptrace+snaptrace_len,
2829 false);
2830 downgrade_write(&mdsc->snap_rwsem);
2831 ceph_add_cap(inode, session, cap_id, -1,
2832 issued, wanted, seq, mseq, realmino, CEPH_CAP_FLAG_AUTH,
2833 NULL /* no caps context */);
088b3f5e 2834 kick_flushing_inode_caps(mdsc, session, inode);
a8599bd8 2835 up_read(&mdsc->snap_rwsem);
feb4cc9b
SW
2836
2837 /* make sure we re-request max_size, if necessary */
be655596 2838 spin_lock(&ci->i_ceph_lock);
0e5e1774 2839 ci->i_wanted_max_size = 0; /* reset */
feb4cc9b 2840 ci->i_requested_max_size = 0;
be655596 2841 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2842}
2843
2844/*
2845 * Handle a caps message from the MDS.
2846 *
2847 * Identify the appropriate session, inode, and call the right handler
2848 * based on the cap op.
2849 */
2850void ceph_handle_caps(struct ceph_mds_session *session,
2851 struct ceph_msg *msg)
2852{
2853 struct ceph_mds_client *mdsc = session->s_mdsc;
3d14c5d2 2854 struct super_block *sb = mdsc->fsc->sb;
a8599bd8 2855 struct inode *inode;
be655596 2856 struct ceph_inode_info *ci;
a8599bd8
SW
2857 struct ceph_cap *cap;
2858 struct ceph_mds_caps *h;
2600d2dd 2859 int mds = session->s_mds;
a8599bd8 2860 int op;
3d7ded4d 2861 u32 seq, mseq;
a8599bd8
SW
2862 struct ceph_vino vino;
2863 u64 cap_id;
2864 u64 size, max_size;
6df058c0 2865 u64 tid;
70edb55b 2866 void *snaptrace;
ce1fbc8d
SW
2867 size_t snaptrace_len;
2868 void *flock;
2869 u32 flock_len;
154f42c2 2870 int open_target_sessions = 0;
a8599bd8
SW
2871
2872 dout("handle_caps from mds%d\n", mds);
2873
2874 /* decode */
6df058c0 2875 tid = le64_to_cpu(msg->hdr.tid);
a8599bd8
SW
2876 if (msg->front.iov_len < sizeof(*h))
2877 goto bad;
2878 h = msg->front.iov_base;
2879 op = le32_to_cpu(h->op);
2880 vino.ino = le64_to_cpu(h->ino);
2881 vino.snap = CEPH_NOSNAP;
2882 cap_id = le64_to_cpu(h->cap_id);
2883 seq = le32_to_cpu(h->seq);
3d7ded4d 2884 mseq = le32_to_cpu(h->migrate_seq);
a8599bd8
SW
2885 size = le64_to_cpu(h->size);
2886 max_size = le64_to_cpu(h->max_size);
2887
ce1fbc8d
SW
2888 snaptrace = h + 1;
2889 snaptrace_len = le32_to_cpu(h->snap_trace_len);
2890
2891 if (le16_to_cpu(msg->hdr.version) >= 2) {
2892 void *p, *end;
2893
2894 p = snaptrace + snaptrace_len;
2895 end = msg->front.iov_base + msg->front.iov_len;
2896 ceph_decode_32_safe(&p, end, flock_len, bad);
2897 flock = p;
2898 } else {
2899 flock = NULL;
2900 flock_len = 0;
2901 }
2902
a8599bd8
SW
2903 mutex_lock(&session->s_mutex);
2904 session->s_seq++;
2905 dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
2906 (unsigned)seq);
2907
66f58691
YZ
2908 if (op == CEPH_CAP_OP_IMPORT)
2909 ceph_add_cap_releases(mdsc, session);
2910
a8599bd8
SW
2911 /* lookup ino */
2912 inode = ceph_find_inode(sb, vino);
be655596 2913 ci = ceph_inode(inode);
a8599bd8
SW
2914 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
2915 vino.snap, inode);
2916 if (!inode) {
2917 dout(" i don't have ino %llx\n", vino.ino);
3d7ded4d
SW
2918
2919 if (op == CEPH_CAP_OP_IMPORT)
2920 __queue_cap_release(session, vino.ino, cap_id,
2921 mseq, seq);
21b559de 2922 goto flush_cap_releases;
a8599bd8
SW
2923 }
2924
2925 /* these will work even if we don't have a cap yet */
2926 switch (op) {
2927 case CEPH_CAP_OP_FLUSHSNAP_ACK:
6df058c0 2928 handle_cap_flushsnap_ack(inode, tid, h, session);
a8599bd8
SW
2929 goto done;
2930
2931 case CEPH_CAP_OP_EXPORT:
154f42c2 2932 handle_cap_export(inode, h, session, &open_target_sessions);
a8599bd8
SW
2933 goto done;
2934
2935 case CEPH_CAP_OP_IMPORT:
2936 handle_cap_import(mdsc, inode, h, session,
ce1fbc8d 2937 snaptrace, snaptrace_len);
a8599bd8
SW
2938 }
2939
2940 /* the rest require a cap */
be655596 2941 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2942 cap = __get_cap_for_mds(ceph_inode(inode), mds);
2943 if (!cap) {
9dbd412f 2944 dout(" no cap on %p ino %llx.%llx from mds%d\n",
a8599bd8 2945 inode, ceph_ino(inode), ceph_snap(inode), mds);
be655596 2946 spin_unlock(&ci->i_ceph_lock);
21b559de 2947 goto flush_cap_releases;
a8599bd8
SW
2948 }
2949
be655596 2950 /* note that each of these drops i_ceph_lock for us */
a8599bd8
SW
2951 switch (op) {
2952 case CEPH_CAP_OP_REVOKE:
2953 case CEPH_CAP_OP_GRANT:
0e5e1774 2954 case CEPH_CAP_OP_IMPORT:
15637c8b
SW
2955 handle_cap_grant(inode, h, session, cap, msg->middle);
2956 goto done_unlocked;
a8599bd8
SW
2957
2958 case CEPH_CAP_OP_FLUSH_ACK:
6df058c0 2959 handle_cap_flush_ack(inode, tid, h, session, cap);
a8599bd8
SW
2960 break;
2961
2962 case CEPH_CAP_OP_TRUNC:
2963 handle_cap_trunc(inode, h, session);
2964 break;
2965
2966 default:
be655596 2967 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2968 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
2969 ceph_cap_op_name(op));
2970 }
2971
21b559de
GF
2972 goto done;
2973
2974flush_cap_releases:
2975 /*
2976 * send any full release message to try to move things
2977 * along for the mds (who clearly thinks we still have this
2978 * cap).
2979 */
2980 ceph_add_cap_releases(mdsc, session);
2981 ceph_send_cap_releases(mdsc, session);
2982
a8599bd8 2983done:
15637c8b
SW
2984 mutex_unlock(&session->s_mutex);
2985done_unlocked:
a8599bd8
SW
2986 if (inode)
2987 iput(inode);
154f42c2
SW
2988 if (open_target_sessions)
2989 ceph_mdsc_open_export_target_sessions(mdsc, session);
a8599bd8
SW
2990 return;
2991
2992bad:
2993 pr_err("ceph_handle_caps: corrupt message\n");
9ec7cab1 2994 ceph_msg_dump(msg);
a8599bd8
SW
2995 return;
2996}
2997
2998/*
2999 * Delayed work handler to process end of delayed cap release LRU list.
3000 */
afcdaea3 3001void ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
a8599bd8
SW
3002{
3003 struct ceph_inode_info *ci;
3004 int flags = CHECK_CAPS_NODELAY;
3005
a8599bd8
SW
3006 dout("check_delayed_caps\n");
3007 while (1) {
3008 spin_lock(&mdsc->cap_delay_lock);
3009 if (list_empty(&mdsc->cap_delay_list))
3010 break;
3011 ci = list_first_entry(&mdsc->cap_delay_list,
3012 struct ceph_inode_info,
3013 i_cap_delay_list);
3014 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
3015 time_before(jiffies, ci->i_hold_caps_max))
3016 break;
3017 list_del_init(&ci->i_cap_delay_list);
3018 spin_unlock(&mdsc->cap_delay_lock);
3019 dout("check_delayed_caps on %p\n", &ci->vfs_inode);
3020 ceph_check_caps(ci, flags, NULL);
3021 }
3022 spin_unlock(&mdsc->cap_delay_lock);
3023}
3024
afcdaea3
SW
3025/*
3026 * Flush all dirty caps to the mds
3027 */
3028void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
3029{
db354052
SW
3030 struct ceph_inode_info *ci;
3031 struct inode *inode;
afcdaea3
SW
3032
3033 dout("flush_dirty_caps\n");
3034 spin_lock(&mdsc->cap_dirty_lock);
db354052
SW
3035 while (!list_empty(&mdsc->cap_dirty)) {
3036 ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info,
3037 i_dirty_item);
70b666c3
SW
3038 inode = &ci->vfs_inode;
3039 ihold(inode);
db354052 3040 dout("flush_dirty_caps %p\n", inode);
afcdaea3 3041 spin_unlock(&mdsc->cap_dirty_lock);
70b666c3
SW
3042 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_FLUSH, NULL);
3043 iput(inode);
afcdaea3
SW
3044 spin_lock(&mdsc->cap_dirty_lock);
3045 }
3046 spin_unlock(&mdsc->cap_dirty_lock);
db354052 3047 dout("flush_dirty_caps done\n");
afcdaea3
SW
3048}
3049
a8599bd8
SW
3050/*
3051 * Drop open file reference. If we were the last open file,
3052 * we may need to release capabilities to the MDS (or schedule
3053 * their delayed release).
3054 */
3055void ceph_put_fmode(struct ceph_inode_info *ci, int fmode)
3056{
3057 struct inode *inode = &ci->vfs_inode;
3058 int last = 0;
3059
be655596 3060 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
3061 dout("put_fmode %p fmode %d %d -> %d\n", inode, fmode,
3062 ci->i_nr_by_mode[fmode], ci->i_nr_by_mode[fmode]-1);
3063 BUG_ON(ci->i_nr_by_mode[fmode] == 0);
3064 if (--ci->i_nr_by_mode[fmode] == 0)
3065 last++;
be655596 3066 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
3067
3068 if (last && ci->i_vino.snap == CEPH_NOSNAP)
3069 ceph_check_caps(ci, 0, NULL);
3070}
3071
3072/*
3073 * Helpers for embedding cap and dentry lease releases into mds
3074 * requests.
3075 *
3076 * @force is used by dentry_release (below) to force inclusion of a
3077 * record for the directory inode, even when there aren't any caps to
3078 * drop.
3079 */
3080int ceph_encode_inode_release(void **p, struct inode *inode,
3081 int mds, int drop, int unless, int force)
3082{
3083 struct ceph_inode_info *ci = ceph_inode(inode);
3084 struct ceph_cap *cap;
3085 struct ceph_mds_request_release *rel = *p;
ec97f88b 3086 int used, dirty;
a8599bd8 3087 int ret = 0;
a8599bd8 3088
be655596 3089 spin_lock(&ci->i_ceph_lock);
916623da 3090 used = __ceph_caps_used(ci);
ec97f88b 3091 dirty = __ceph_caps_dirty(ci);
916623da 3092
ec97f88b
SW
3093 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
3094 inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
916623da
SW
3095 ceph_cap_string(unless));
3096
ec97f88b
SW
3097 /* only drop unused, clean caps */
3098 drop &= ~(used | dirty);
916623da 3099
a8599bd8
SW
3100 cap = __get_cap_for_mds(ci, mds);
3101 if (cap && __cap_is_valid(cap)) {
3102 if (force ||
3103 ((cap->issued & drop) &&
3104 (cap->issued & unless) == 0)) {
3105 if ((cap->issued & drop) &&
3106 (cap->issued & unless) == 0) {
bb137f84
YZ
3107 int wanted = __ceph_caps_wanted(ci);
3108 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0)
3109 wanted |= cap->mds_wanted;
3110 dout("encode_inode_release %p cap %p "
3111 "%s -> %s, wanted %s -> %s\n", inode, cap,
a8599bd8 3112 ceph_cap_string(cap->issued),
bb137f84
YZ
3113 ceph_cap_string(cap->issued & ~drop),
3114 ceph_cap_string(cap->mds_wanted),
3115 ceph_cap_string(wanted));
3116
a8599bd8
SW
3117 cap->issued &= ~drop;
3118 cap->implemented &= ~drop;
bb137f84 3119 cap->mds_wanted = wanted;
a8599bd8
SW
3120 } else {
3121 dout("encode_inode_release %p cap %p %s"
3122 " (force)\n", inode, cap,
3123 ceph_cap_string(cap->issued));
3124 }
3125
3126 rel->ino = cpu_to_le64(ceph_ino(inode));
3127 rel->cap_id = cpu_to_le64(cap->cap_id);
3128 rel->seq = cpu_to_le32(cap->seq);
3129 rel->issue_seq = cpu_to_le32(cap->issue_seq),
3130 rel->mseq = cpu_to_le32(cap->mseq);
3131 rel->caps = cpu_to_le32(cap->issued);
3132 rel->wanted = cpu_to_le32(cap->mds_wanted);
3133 rel->dname_len = 0;
3134 rel->dname_seq = 0;
3135 *p += sizeof(*rel);
3136 ret = 1;
3137 } else {
3138 dout("encode_inode_release %p cap %p %s\n",
3139 inode, cap, ceph_cap_string(cap->issued));
3140 }
3141 }
be655596 3142 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
3143 return ret;
3144}
3145
3146int ceph_encode_dentry_release(void **p, struct dentry *dentry,
3147 int mds, int drop, int unless)
3148{
3149 struct inode *dir = dentry->d_parent->d_inode;
3150 struct ceph_mds_request_release *rel = *p;
3151 struct ceph_dentry_info *di = ceph_dentry(dentry);
3152 int force = 0;
3153 int ret;
3154
3155 /*
3156 * force an record for the directory caps if we have a dentry lease.
be655596 3157 * this is racy (can't take i_ceph_lock and d_lock together), but it
a8599bd8
SW
3158 * doesn't have to be perfect; the mds will revoke anything we don't
3159 * release.
3160 */
3161 spin_lock(&dentry->d_lock);
3162 if (di->lease_session && di->lease_session->s_mds == mds)
3163 force = 1;
3164 spin_unlock(&dentry->d_lock);
3165
3166 ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
3167
3168 spin_lock(&dentry->d_lock);
3169 if (ret && di->lease_session && di->lease_session->s_mds == mds) {
3170 dout("encode_dentry_release %p mds%d seq %d\n",
3171 dentry, mds, (int)di->lease_seq);
3172 rel->dname_len = cpu_to_le32(dentry->d_name.len);
3173 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
3174 *p += dentry->d_name.len;
3175 rel->dname_seq = cpu_to_le32(di->lease_seq);
1dadcce3 3176 __ceph_mdsc_drop_dentry_lease(dentry);
a8599bd8
SW
3177 }
3178 spin_unlock(&dentry->d_lock);
3179 return ret;
3180}