]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/ceph/caps.c
ceph: introduce i_truncate_mutex
[mirror_ubuntu-artful-kernel.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
a8599bd8
SW
2079 if (need & CEPH_CAP_FILE_WR) {
2080 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2081 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2082 inode, endoff, ci->i_max_size);
2083 if (endoff > ci->i_wanted_max_size) {
2084 *check_max = 1;
2085 ret = 1;
2086 }
2087 goto out;
2088 }
2089 /*
2090 * If a sync write is in progress, we must wait, so that we
2091 * can get a final snapshot value for size+mtime.
2092 */
2093 if (__ceph_have_pending_cap_snap(ci)) {
2094 dout("get_cap_refs %p cap_snap_pending\n", inode);
2095 goto out;
2096 }
2097 }
2098 have = __ceph_caps_issued(ci, &implemented);
2099
a8599bd8
SW
2100 if ((have & need) == need) {
2101 /*
2102 * Look at (implemented & ~have & not) so that we keep waiting
2103 * on transition from wanted -> needed caps. This is needed
2104 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2105 * going before a prior buffered writeback happens.
2106 */
2107 int not = want & ~(have & need);
2108 int revoking = implemented & ~have;
2109 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2110 inode, ceph_cap_string(have), ceph_cap_string(not),
2111 ceph_cap_string(revoking));
2112 if ((revoking & not) == 0) {
2113 *got = need | (have & want);
2114 __take_cap_refs(ci, *got);
2115 ret = 1;
2116 }
2117 } else {
2118 dout("get_cap_refs %p have %s needed %s\n", inode,
2119 ceph_cap_string(have), ceph_cap_string(need));
2120 }
2121out:
be655596 2122 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2123 dout("get_cap_refs %p ret %d got %s\n", inode,
2124 ret, ceph_cap_string(*got));
2125 return ret;
2126}
2127
2128/*
2129 * Check the offset we are writing up to against our current
2130 * max_size. If necessary, tell the MDS we want to write to
2131 * a larger offset.
2132 */
2133static void check_max_size(struct inode *inode, loff_t endoff)
2134{
2135 struct ceph_inode_info *ci = ceph_inode(inode);
2136 int check = 0;
2137
2138 /* do we need to explicitly request a larger max_size? */
be655596 2139 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2140 if ((endoff >= ci->i_max_size ||
2141 endoff > (inode->i_size << 1)) &&
2142 endoff > ci->i_wanted_max_size) {
2143 dout("write %p at large endoff %llu, req max_size\n",
2144 inode, endoff);
2145 ci->i_wanted_max_size = endoff;
2146 check = 1;
2147 }
be655596 2148 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2149 if (check)
2150 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2151}
2152
2153/*
2154 * Wait for caps, and take cap references. If we can't get a WR cap
2155 * due to a small max_size, make sure we check_max_size (and possibly
2156 * ask the mds) so we don't get hung up indefinitely.
2157 */
2158int ceph_get_caps(struct ceph_inode_info *ci, int need, int want, int *got,
2159 loff_t endoff)
2160{
2161 int check_max, ret, err;
2162
2163retry:
2164 if (endoff > 0)
2165 check_max_size(&ci->vfs_inode, endoff);
2166 check_max = 0;
2167 err = 0;
2168 ret = wait_event_interruptible(ci->i_cap_wq,
2169 try_get_cap_refs(ci, need, want,
2170 got, endoff,
2171 &check_max, &err));
2172 if (err)
2173 ret = err;
2174 if (check_max)
2175 goto retry;
2176 return ret;
2177}
2178
2179/*
2180 * Take cap refs. Caller must already know we hold at least one ref
2181 * on the caps in question or we don't know this is safe.
2182 */
2183void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
2184{
be655596 2185 spin_lock(&ci->i_ceph_lock);
a8599bd8 2186 __take_cap_refs(ci, caps);
be655596 2187 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2188}
2189
2190/*
2191 * Release cap refs.
2192 *
2193 * If we released the last ref on any given cap, call ceph_check_caps
2194 * to release (or schedule a release).
2195 *
2196 * If we are releasing a WR cap (from a sync write), finalize any affected
2197 * cap_snap, and wake up any waiters.
2198 */
2199void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
2200{
2201 struct inode *inode = &ci->vfs_inode;
2202 int last = 0, put = 0, flushsnaps = 0, wake = 0;
2203 struct ceph_cap_snap *capsnap;
2204
be655596 2205 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2206 if (had & CEPH_CAP_PIN)
2207 --ci->i_pin_ref;
2208 if (had & CEPH_CAP_FILE_RD)
2209 if (--ci->i_rd_ref == 0)
2210 last++;
2211 if (had & CEPH_CAP_FILE_CACHE)
2212 if (--ci->i_rdcache_ref == 0)
2213 last++;
2214 if (had & CEPH_CAP_FILE_BUFFER) {
d3d0720d 2215 if (--ci->i_wb_ref == 0) {
a8599bd8
SW
2216 last++;
2217 put++;
2218 }
d3d0720d
HC
2219 dout("put_cap_refs %p wb %d -> %d (?)\n",
2220 inode, ci->i_wb_ref+1, ci->i_wb_ref);
a8599bd8
SW
2221 }
2222 if (had & CEPH_CAP_FILE_WR)
2223 if (--ci->i_wr_ref == 0) {
2224 last++;
2225 if (!list_empty(&ci->i_cap_snaps)) {
2226 capsnap = list_first_entry(&ci->i_cap_snaps,
2227 struct ceph_cap_snap,
2228 ci_item);
2229 if (capsnap->writing) {
2230 capsnap->writing = 0;
2231 flushsnaps =
2232 __ceph_finish_cap_snap(ci,
2233 capsnap);
2234 wake = 1;
2235 }
2236 }
2237 }
be655596 2238 spin_unlock(&ci->i_ceph_lock);
a8599bd8 2239
819ccbfa
SW
2240 dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
2241 last ? " last" : "", put ? " put" : "");
a8599bd8
SW
2242
2243 if (last && !flushsnaps)
2244 ceph_check_caps(ci, 0, NULL);
2245 else if (flushsnaps)
2246 ceph_flush_snaps(ci);
2247 if (wake)
03066f23 2248 wake_up_all(&ci->i_cap_wq);
a8599bd8
SW
2249 if (put)
2250 iput(inode);
2251}
2252
2253/*
2254 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
2255 * context. Adjust per-snap dirty page accounting as appropriate.
2256 * Once all dirty data for a cap_snap is flushed, flush snapped file
2257 * metadata back to the MDS. If we dropped the last ref, call
2258 * ceph_check_caps.
2259 */
2260void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
2261 struct ceph_snap_context *snapc)
2262{
2263 struct inode *inode = &ci->vfs_inode;
2264 int last = 0;
819ccbfa
SW
2265 int complete_capsnap = 0;
2266 int drop_capsnap = 0;
a8599bd8
SW
2267 int found = 0;
2268 struct ceph_cap_snap *capsnap = NULL;
2269
be655596 2270 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2271 ci->i_wrbuffer_ref -= nr;
2272 last = !ci->i_wrbuffer_ref;
2273
2274 if (ci->i_head_snapc == snapc) {
2275 ci->i_wrbuffer_ref_head -= nr;
7d8cb26d
SW
2276 if (ci->i_wrbuffer_ref_head == 0 &&
2277 ci->i_dirty_caps == 0 && ci->i_flushing_caps == 0) {
2278 BUG_ON(!ci->i_head_snapc);
a8599bd8
SW
2279 ceph_put_snap_context(ci->i_head_snapc);
2280 ci->i_head_snapc = NULL;
2281 }
2282 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
2283 inode,
2284 ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
2285 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
2286 last ? " LAST" : "");
2287 } else {
2288 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2289 if (capsnap->context == snapc) {
2290 found = 1;
a8599bd8
SW
2291 break;
2292 }
2293 }
2294 BUG_ON(!found);
819ccbfa
SW
2295 capsnap->dirty_pages -= nr;
2296 if (capsnap->dirty_pages == 0) {
2297 complete_capsnap = 1;
2298 if (capsnap->dirty == 0)
2299 /* cap writeback completed before we created
2300 * the cap_snap; no FLUSHSNAP is needed */
2301 drop_capsnap = 1;
2302 }
a8599bd8 2303 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
819ccbfa 2304 " snap %lld %d/%d -> %d/%d %s%s%s\n",
a8599bd8
SW
2305 inode, capsnap, capsnap->context->seq,
2306 ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
2307 ci->i_wrbuffer_ref, capsnap->dirty_pages,
2308 last ? " (wrbuffer last)" : "",
819ccbfa
SW
2309 complete_capsnap ? " (complete capsnap)" : "",
2310 drop_capsnap ? " (drop capsnap)" : "");
2311 if (drop_capsnap) {
2312 ceph_put_snap_context(capsnap->context);
2313 list_del(&capsnap->ci_item);
2314 list_del(&capsnap->flushing_item);
2315 ceph_put_cap_snap(capsnap);
2316 }
a8599bd8
SW
2317 }
2318
be655596 2319 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2320
2321 if (last) {
2322 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2323 iput(inode);
819ccbfa 2324 } else if (complete_capsnap) {
a8599bd8 2325 ceph_flush_snaps(ci);
03066f23 2326 wake_up_all(&ci->i_cap_wq);
a8599bd8 2327 }
819ccbfa
SW
2328 if (drop_capsnap)
2329 iput(inode);
a8599bd8
SW
2330}
2331
ca20c991
YZ
2332/*
2333 * Invalidate unlinked inode's aliases, so we can drop the inode ASAP.
2334 */
2335static void invalidate_aliases(struct inode *inode)
2336{
2337 struct dentry *dn, *prev = NULL;
2338
2339 dout("invalidate_aliases inode %p\n", inode);
2340 d_prune_aliases(inode);
2341 /*
2342 * For non-directory inode, d_find_alias() only returns
2343 * connected dentry. After calling d_delete(), the dentry
2344 * become disconnected.
2345 *
2346 * For directory inode, d_find_alias() only can return
2347 * disconnected dentry. But directory inode should have
2348 * one alias at most.
2349 */
2350 while ((dn = d_find_alias(inode))) {
2351 if (dn == prev) {
2352 dput(dn);
2353 break;
2354 }
2355 d_delete(dn);
2356 if (prev)
2357 dput(prev);
2358 prev = dn;
2359 }
2360 if (prev)
2361 dput(prev);
2362}
2363
a8599bd8
SW
2364/*
2365 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
2366 * actually be a revocation if it specifies a smaller cap set.)
2367 *
be655596 2368 * caller holds s_mutex and i_ceph_lock, we drop both.
15637c8b 2369 *
a8599bd8
SW
2370 * return value:
2371 * 0 - ok
2372 * 1 - check_caps on auth cap only (writeback)
2373 * 2 - check_caps (ack revoke)
2374 */
15637c8b
SW
2375static void handle_cap_grant(struct inode *inode, struct ceph_mds_caps *grant,
2376 struct ceph_mds_session *session,
2377 struct ceph_cap *cap,
2378 struct ceph_buffer *xattr_buf)
be655596 2379 __releases(ci->i_ceph_lock)
a8599bd8
SW
2380{
2381 struct ceph_inode_info *ci = ceph_inode(inode);
2382 int mds = session->s_mds;
2f56f56a 2383 int seq = le32_to_cpu(grant->seq);
a8599bd8
SW
2384 int newcaps = le32_to_cpu(grant->caps);
2385 int issued, implemented, used, wanted, dirty;
2386 u64 size = le64_to_cpu(grant->size);
2387 u64 max_size = le64_to_cpu(grant->max_size);
2388 struct timespec mtime, atime, ctime;
15637c8b 2389 int check_caps = 0;
a8599bd8
SW
2390 int wake = 0;
2391 int writeback = 0;
2392 int revoked_rdcache = 0;
3c6f6b79 2393 int queue_invalidate = 0;
ca20c991 2394 int deleted_inode = 0;
a8599bd8 2395
2f56f56a
SW
2396 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
2397 inode, cap, mds, seq, ceph_cap_string(newcaps));
a8599bd8
SW
2398 dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
2399 inode->i_size);
2400
2401 /*
2402 * If CACHE is being revoked, and we have no dirty buffers,
2403 * try to invalidate (once). (If there are dirty buffers, we
2404 * will invalidate _after_ writeback.)
2405 */
3b454c49
SW
2406 if (((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
2407 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
bcd2cbd1 2408 !ci->i_wrbuffer_ref) {
5ecad6fd
SW
2409 if (try_nonblocking_invalidate(inode) == 0) {
2410 revoked_rdcache = 1;
2411 } else {
a8599bd8
SW
2412 /* there were locked pages.. invalidate later
2413 in a separate thread. */
2414 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
3c6f6b79 2415 queue_invalidate = 1;
a8599bd8
SW
2416 ci->i_rdcache_revoking = ci->i_rdcache_gen;
2417 }
a8599bd8 2418 }
a8599bd8
SW
2419 }
2420
2421 /* side effects now are allowed */
2422
2423 issued = __ceph_caps_issued(ci, &implemented);
2424 issued |= implemented | __ceph_caps_dirty(ci);
2425
685f9a5d 2426 cap->cap_gen = session->s_cap_gen;
a8599bd8
SW
2427
2428 __check_cap_issue(ci, cap, newcaps);
2429
2430 if ((issued & CEPH_CAP_AUTH_EXCL) == 0) {
2431 inode->i_mode = le32_to_cpu(grant->mode);
05cb11c1
EB
2432 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(grant->uid));
2433 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(grant->gid));
a8599bd8 2434 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
bd2bae6a
EB
2435 from_kuid(&init_user_ns, inode->i_uid),
2436 from_kgid(&init_user_ns, inode->i_gid));
a8599bd8
SW
2437 }
2438
ca20c991 2439 if ((issued & CEPH_CAP_LINK_EXCL) == 0) {
bfe86848 2440 set_nlink(inode, le32_to_cpu(grant->nlink));
ca20c991
YZ
2441 if (inode->i_nlink == 0 &&
2442 (newcaps & (CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL)))
2443 deleted_inode = 1;
2444 }
a8599bd8
SW
2445
2446 if ((issued & CEPH_CAP_XATTR_EXCL) == 0 && grant->xattr_len) {
2447 int len = le32_to_cpu(grant->xattr_len);
2448 u64 version = le64_to_cpu(grant->xattr_version);
2449
2450 if (version > ci->i_xattrs.version) {
2451 dout(" got new xattrs v%llu on %p len %d\n",
2452 version, inode, len);
2453 if (ci->i_xattrs.blob)
2454 ceph_buffer_put(ci->i_xattrs.blob);
2455 ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
2456 ci->i_xattrs.version = version;
2457 }
2458 }
2459
2460 /* size/ctime/mtime/atime? */
2461 ceph_fill_file_size(inode, issued,
2462 le32_to_cpu(grant->truncate_seq),
2463 le64_to_cpu(grant->truncate_size), size);
2464 ceph_decode_timespec(&mtime, &grant->mtime);
2465 ceph_decode_timespec(&atime, &grant->atime);
2466 ceph_decode_timespec(&ctime, &grant->ctime);
2467 ceph_fill_file_time(inode, issued,
2468 le32_to_cpu(grant->time_warp_seq), &ctime, &mtime,
2469 &atime);
2470
2471 /* max size increase? */
5e62ad30 2472 if (ci->i_auth_cap == cap && max_size != ci->i_max_size) {
a8599bd8
SW
2473 dout("max_size %lld -> %llu\n", ci->i_max_size, max_size);
2474 ci->i_max_size = max_size;
2475 if (max_size >= ci->i_wanted_max_size) {
2476 ci->i_wanted_max_size = 0; /* reset */
2477 ci->i_requested_max_size = 0;
2478 }
2479 wake = 1;
2480 }
2481
2482 /* check cap bits */
2483 wanted = __ceph_caps_wanted(ci);
2484 used = __ceph_caps_used(ci);
2485 dirty = __ceph_caps_dirty(ci);
2486 dout(" my wanted = %s, used = %s, dirty %s\n",
2487 ceph_cap_string(wanted),
2488 ceph_cap_string(used),
2489 ceph_cap_string(dirty));
2490 if (wanted != le32_to_cpu(grant->wanted)) {
2491 dout("mds wanted %s -> %s\n",
2492 ceph_cap_string(le32_to_cpu(grant->wanted)),
2493 ceph_cap_string(wanted));
390306c3
YZ
2494 /* imported cap may not have correct mds_wanted */
2495 if (le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT)
2496 check_caps = 1;
a8599bd8
SW
2497 }
2498
2499 cap->seq = seq;
2500
2501 /* file layout may have changed */
2502 ci->i_layout = grant->layout;
2503
2504 /* revocation, grant, or no-op? */
2505 if (cap->issued & ~newcaps) {
3b454c49
SW
2506 int revoking = cap->issued & ~newcaps;
2507
2508 dout("revocation: %s -> %s (revoking %s)\n",
2509 ceph_cap_string(cap->issued),
2510 ceph_cap_string(newcaps),
2511 ceph_cap_string(revoking));
0eb6cd49 2512 if (revoking & used & CEPH_CAP_FILE_BUFFER)
3b454c49
SW
2513 writeback = 1; /* initiate writeback; will delay ack */
2514 else if (revoking == CEPH_CAP_FILE_CACHE &&
2515 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
2516 queue_invalidate)
2517 ; /* do nothing yet, invalidation will be queued */
2518 else if (cap == ci->i_auth_cap)
2519 check_caps = 1; /* check auth cap only */
2520 else
2521 check_caps = 2; /* check all caps */
a8599bd8 2522 cap->issued = newcaps;
978097c9 2523 cap->implemented |= newcaps;
a8599bd8
SW
2524 } else if (cap->issued == newcaps) {
2525 dout("caps unchanged: %s -> %s\n",
2526 ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
2527 } else {
2528 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
2529 ceph_cap_string(newcaps));
6ee6b953
YZ
2530 /* non-auth MDS is revoking the newly grant caps ? */
2531 if (cap == ci->i_auth_cap &&
2532 __ceph_caps_revoking_other(ci, cap, newcaps))
2533 check_caps = 2;
2534
a8599bd8
SW
2535 cap->issued = newcaps;
2536 cap->implemented |= newcaps; /* add bits only, to
2537 * avoid stepping on a
2538 * pending revocation */
2539 wake = 1;
2540 }
978097c9 2541 BUG_ON(cap->issued & ~cap->implemented);
a8599bd8 2542
be655596 2543 spin_unlock(&ci->i_ceph_lock);
3c6f6b79 2544 if (writeback)
a8599bd8
SW
2545 /*
2546 * queue inode for writeback: we can't actually call
2547 * filemap_write_and_wait, etc. from message handler
2548 * context.
2549 */
3c6f6b79
SW
2550 ceph_queue_writeback(inode);
2551 if (queue_invalidate)
2552 ceph_queue_invalidate(inode);
ca20c991
YZ
2553 if (deleted_inode)
2554 invalidate_aliases(inode);
a8599bd8 2555 if (wake)
03066f23 2556 wake_up_all(&ci->i_cap_wq);
15637c8b
SW
2557
2558 if (check_caps == 1)
2559 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_AUTHONLY,
2560 session);
2561 else if (check_caps == 2)
2562 ceph_check_caps(ci, CHECK_CAPS_NODELAY, session);
2563 else
2564 mutex_unlock(&session->s_mutex);
a8599bd8
SW
2565}
2566
2567/*
2568 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
2569 * MDS has been safely committed.
2570 */
6df058c0 2571static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
a8599bd8
SW
2572 struct ceph_mds_caps *m,
2573 struct ceph_mds_session *session,
2574 struct ceph_cap *cap)
be655596 2575 __releases(ci->i_ceph_lock)
a8599bd8
SW
2576{
2577 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2 2578 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8
SW
2579 unsigned seq = le32_to_cpu(m->seq);
2580 int dirty = le32_to_cpu(m->dirty);
2581 int cleaned = 0;
afcdaea3 2582 int drop = 0;
a8599bd8
SW
2583 int i;
2584
2585 for (i = 0; i < CEPH_CAP_BITS; i++)
2586 if ((dirty & (1 << i)) &&
2587 flush_tid == ci->i_cap_flush_tid[i])
2588 cleaned |= 1 << i;
2589
2590 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
2591 " flushing %s -> %s\n",
2592 inode, session->s_mds, seq, ceph_cap_string(dirty),
2593 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
2594 ceph_cap_string(ci->i_flushing_caps & ~cleaned));
2595
2596 if (ci->i_flushing_caps == (ci->i_flushing_caps & ~cleaned))
2597 goto out;
2598
a8599bd8 2599 ci->i_flushing_caps &= ~cleaned;
a8599bd8
SW
2600
2601 spin_lock(&mdsc->cap_dirty_lock);
2602 if (ci->i_flushing_caps == 0) {
2603 list_del_init(&ci->i_flushing_item);
2604 if (!list_empty(&session->s_cap_flushing))
2605 dout(" mds%d still flushing cap on %p\n",
2606 session->s_mds,
2607 &list_entry(session->s_cap_flushing.next,
2608 struct ceph_inode_info,
2609 i_flushing_item)->vfs_inode);
2610 mdsc->num_cap_flushing--;
03066f23 2611 wake_up_all(&mdsc->cap_flushing_wq);
a8599bd8 2612 dout(" inode %p now !flushing\n", inode);
afcdaea3
SW
2613
2614 if (ci->i_dirty_caps == 0) {
2615 dout(" inode %p now clean\n", inode);
2616 BUG_ON(!list_empty(&ci->i_dirty_item));
2617 drop = 1;
7d8cb26d
SW
2618 if (ci->i_wrbuffer_ref_head == 0) {
2619 BUG_ON(!ci->i_head_snapc);
2620 ceph_put_snap_context(ci->i_head_snapc);
2621 ci->i_head_snapc = NULL;
2622 }
76e3b390
SW
2623 } else {
2624 BUG_ON(list_empty(&ci->i_dirty_item));
afcdaea3 2625 }
a8599bd8
SW
2626 }
2627 spin_unlock(&mdsc->cap_dirty_lock);
03066f23 2628 wake_up_all(&ci->i_cap_wq);
a8599bd8
SW
2629
2630out:
be655596 2631 spin_unlock(&ci->i_ceph_lock);
afcdaea3 2632 if (drop)
a8599bd8
SW
2633 iput(inode);
2634}
2635
2636/*
2637 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
2638 * throw away our cap_snap.
2639 *
2640 * Caller hold s_mutex.
2641 */
6df058c0 2642static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
a8599bd8
SW
2643 struct ceph_mds_caps *m,
2644 struct ceph_mds_session *session)
2645{
2646 struct ceph_inode_info *ci = ceph_inode(inode);
2647 u64 follows = le64_to_cpu(m->snap_follows);
a8599bd8
SW
2648 struct ceph_cap_snap *capsnap;
2649 int drop = 0;
2650
2651 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
2652 inode, ci, session->s_mds, follows);
2653
be655596 2654 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2655 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2656 if (capsnap->follows == follows) {
2657 if (capsnap->flush_tid != flush_tid) {
2658 dout(" cap_snap %p follows %lld tid %lld !="
2659 " %lld\n", capsnap, follows,
2660 flush_tid, capsnap->flush_tid);
2661 break;
2662 }
2663 WARN_ON(capsnap->dirty_pages || capsnap->writing);
819ccbfa
SW
2664 dout(" removing %p cap_snap %p follows %lld\n",
2665 inode, capsnap, follows);
a8599bd8
SW
2666 ceph_put_snap_context(capsnap->context);
2667 list_del(&capsnap->ci_item);
2668 list_del(&capsnap->flushing_item);
2669 ceph_put_cap_snap(capsnap);
2670 drop = 1;
2671 break;
2672 } else {
2673 dout(" skipping cap_snap %p follows %lld\n",
2674 capsnap, capsnap->follows);
2675 }
2676 }
be655596 2677 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2678 if (drop)
2679 iput(inode);
2680}
2681
2682/*
2683 * Handle TRUNC from MDS, indicating file truncation.
2684 *
2685 * caller hold s_mutex.
2686 */
2687static void handle_cap_trunc(struct inode *inode,
2688 struct ceph_mds_caps *trunc,
2689 struct ceph_mds_session *session)
be655596 2690 __releases(ci->i_ceph_lock)
a8599bd8
SW
2691{
2692 struct ceph_inode_info *ci = ceph_inode(inode);
2693 int mds = session->s_mds;
2694 int seq = le32_to_cpu(trunc->seq);
2695 u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
2696 u64 truncate_size = le64_to_cpu(trunc->truncate_size);
2697 u64 size = le64_to_cpu(trunc->size);
2698 int implemented = 0;
2699 int dirty = __ceph_caps_dirty(ci);
2700 int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
2701 int queue_trunc = 0;
2702
2703 issued |= implemented | dirty;
2704
2705 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
2706 inode, mds, seq, truncate_size, truncate_seq);
2707 queue_trunc = ceph_fill_file_size(inode, issued,
2708 truncate_seq, truncate_size, size);
be655596 2709 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2710
2711 if (queue_trunc)
3c6f6b79 2712 ceph_queue_vmtruncate(inode);
a8599bd8
SW
2713}
2714
2715/*
2716 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
2717 * different one. If we are the most recent migration we've seen (as
2718 * indicated by mseq), make note of the migrating cap bits for the
2719 * duration (until we see the corresponding IMPORT).
2720 *
2721 * caller holds s_mutex
2722 */
2723static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
154f42c2
SW
2724 struct ceph_mds_session *session,
2725 int *open_target_sessions)
a8599bd8 2726{
db354052 2727 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
a8599bd8
SW
2728 struct ceph_inode_info *ci = ceph_inode(inode);
2729 int mds = session->s_mds;
2730 unsigned mseq = le32_to_cpu(ex->migrate_seq);
2731 struct ceph_cap *cap = NULL, *t;
2732 struct rb_node *p;
2733 int remember = 1;
2734
2735 dout("handle_cap_export inode %p ci %p mds%d mseq %d\n",
2736 inode, ci, mds, mseq);
2737
be655596 2738 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2739
2740 /* make sure we haven't seen a higher mseq */
2741 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
2742 t = rb_entry(p, struct ceph_cap, ci_node);
2743 if (ceph_seq_cmp(t->mseq, mseq) > 0) {
2744 dout(" higher mseq on cap from mds%d\n",
2745 t->session->s_mds);
2746 remember = 0;
2747 }
2748 if (t->session->s_mds == mds)
2749 cap = t;
2750 }
2751
2752 if (cap) {
2753 if (remember) {
2754 /* make note */
2755 ci->i_cap_exporting_mds = mds;
2756 ci->i_cap_exporting_mseq = mseq;
2757 ci->i_cap_exporting_issued = cap->issued;
154f42c2
SW
2758
2759 /*
2760 * make sure we have open sessions with all possible
2761 * export targets, so that we get the matching IMPORT
2762 */
2763 *open_target_sessions = 1;
db354052
SW
2764
2765 /*
2766 * we can't flush dirty caps that we've seen the
2767 * EXPORT but no IMPORT for
2768 */
2769 spin_lock(&mdsc->cap_dirty_lock);
2770 if (!list_empty(&ci->i_dirty_item)) {
2771 dout(" moving %p to cap_dirty_migrating\n",
2772 inode);
2773 list_move(&ci->i_dirty_item,
2774 &mdsc->cap_dirty_migrating);
2775 }
2776 spin_unlock(&mdsc->cap_dirty_lock);
a8599bd8 2777 }
7c1332b8 2778 __ceph_remove_cap(cap);
a8599bd8 2779 }
4ea0043a 2780 /* else, we already released it */
a8599bd8 2781
be655596 2782 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2783}
2784
2785/*
2786 * Handle cap IMPORT. If there are temp bits from an older EXPORT,
2787 * clean them up.
2788 *
2789 * caller holds s_mutex.
2790 */
2791static void handle_cap_import(struct ceph_mds_client *mdsc,
2792 struct inode *inode, struct ceph_mds_caps *im,
2793 struct ceph_mds_session *session,
2794 void *snaptrace, int snaptrace_len)
2795{
2796 struct ceph_inode_info *ci = ceph_inode(inode);
2797 int mds = session->s_mds;
2798 unsigned issued = le32_to_cpu(im->caps);
2799 unsigned wanted = le32_to_cpu(im->wanted);
2800 unsigned seq = le32_to_cpu(im->seq);
2801 unsigned mseq = le32_to_cpu(im->migrate_seq);
2802 u64 realmino = le64_to_cpu(im->realm);
2803 u64 cap_id = le64_to_cpu(im->cap_id);
2804
2805 if (ci->i_cap_exporting_mds >= 0 &&
2806 ceph_seq_cmp(ci->i_cap_exporting_mseq, mseq) < 0) {
2807 dout("handle_cap_import inode %p ci %p mds%d mseq %d"
2808 " - cleared exporting from mds%d\n",
2809 inode, ci, mds, mseq,
2810 ci->i_cap_exporting_mds);
2811 ci->i_cap_exporting_issued = 0;
2812 ci->i_cap_exporting_mseq = 0;
2813 ci->i_cap_exporting_mds = -1;
db354052
SW
2814
2815 spin_lock(&mdsc->cap_dirty_lock);
2816 if (!list_empty(&ci->i_dirty_item)) {
2817 dout(" moving %p back to cap_dirty\n", inode);
2818 list_move(&ci->i_dirty_item, &mdsc->cap_dirty);
2819 }
2820 spin_unlock(&mdsc->cap_dirty_lock);
a8599bd8
SW
2821 } else {
2822 dout("handle_cap_import inode %p ci %p mds%d mseq %d\n",
2823 inode, ci, mds, mseq);
2824 }
2825
2826 down_write(&mdsc->snap_rwsem);
2827 ceph_update_snap_trace(mdsc, snaptrace, snaptrace+snaptrace_len,
2828 false);
2829 downgrade_write(&mdsc->snap_rwsem);
2830 ceph_add_cap(inode, session, cap_id, -1,
2831 issued, wanted, seq, mseq, realmino, CEPH_CAP_FLAG_AUTH,
2832 NULL /* no caps context */);
088b3f5e 2833 kick_flushing_inode_caps(mdsc, session, inode);
a8599bd8 2834 up_read(&mdsc->snap_rwsem);
feb4cc9b
SW
2835
2836 /* make sure we re-request max_size, if necessary */
be655596 2837 spin_lock(&ci->i_ceph_lock);
0e5e1774 2838 ci->i_wanted_max_size = 0; /* reset */
feb4cc9b 2839 ci->i_requested_max_size = 0;
be655596 2840 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2841}
2842
2843/*
2844 * Handle a caps message from the MDS.
2845 *
2846 * Identify the appropriate session, inode, and call the right handler
2847 * based on the cap op.
2848 */
2849void ceph_handle_caps(struct ceph_mds_session *session,
2850 struct ceph_msg *msg)
2851{
2852 struct ceph_mds_client *mdsc = session->s_mdsc;
3d14c5d2 2853 struct super_block *sb = mdsc->fsc->sb;
a8599bd8 2854 struct inode *inode;
be655596 2855 struct ceph_inode_info *ci;
a8599bd8
SW
2856 struct ceph_cap *cap;
2857 struct ceph_mds_caps *h;
2600d2dd 2858 int mds = session->s_mds;
a8599bd8 2859 int op;
3d7ded4d 2860 u32 seq, mseq;
a8599bd8
SW
2861 struct ceph_vino vino;
2862 u64 cap_id;
2863 u64 size, max_size;
6df058c0 2864 u64 tid;
70edb55b 2865 void *snaptrace;
ce1fbc8d
SW
2866 size_t snaptrace_len;
2867 void *flock;
2868 u32 flock_len;
154f42c2 2869 int open_target_sessions = 0;
a8599bd8
SW
2870
2871 dout("handle_caps from mds%d\n", mds);
2872
2873 /* decode */
6df058c0 2874 tid = le64_to_cpu(msg->hdr.tid);
a8599bd8
SW
2875 if (msg->front.iov_len < sizeof(*h))
2876 goto bad;
2877 h = msg->front.iov_base;
2878 op = le32_to_cpu(h->op);
2879 vino.ino = le64_to_cpu(h->ino);
2880 vino.snap = CEPH_NOSNAP;
2881 cap_id = le64_to_cpu(h->cap_id);
2882 seq = le32_to_cpu(h->seq);
3d7ded4d 2883 mseq = le32_to_cpu(h->migrate_seq);
a8599bd8
SW
2884 size = le64_to_cpu(h->size);
2885 max_size = le64_to_cpu(h->max_size);
2886
ce1fbc8d
SW
2887 snaptrace = h + 1;
2888 snaptrace_len = le32_to_cpu(h->snap_trace_len);
2889
2890 if (le16_to_cpu(msg->hdr.version) >= 2) {
2891 void *p, *end;
2892
2893 p = snaptrace + snaptrace_len;
2894 end = msg->front.iov_base + msg->front.iov_len;
2895 ceph_decode_32_safe(&p, end, flock_len, bad);
2896 flock = p;
2897 } else {
2898 flock = NULL;
2899 flock_len = 0;
2900 }
2901
a8599bd8
SW
2902 mutex_lock(&session->s_mutex);
2903 session->s_seq++;
2904 dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
2905 (unsigned)seq);
2906
66f58691
YZ
2907 if (op == CEPH_CAP_OP_IMPORT)
2908 ceph_add_cap_releases(mdsc, session);
2909
a8599bd8
SW
2910 /* lookup ino */
2911 inode = ceph_find_inode(sb, vino);
be655596 2912 ci = ceph_inode(inode);
a8599bd8
SW
2913 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
2914 vino.snap, inode);
2915 if (!inode) {
2916 dout(" i don't have ino %llx\n", vino.ino);
3d7ded4d
SW
2917
2918 if (op == CEPH_CAP_OP_IMPORT)
2919 __queue_cap_release(session, vino.ino, cap_id,
2920 mseq, seq);
21b559de 2921 goto flush_cap_releases;
a8599bd8
SW
2922 }
2923
2924 /* these will work even if we don't have a cap yet */
2925 switch (op) {
2926 case CEPH_CAP_OP_FLUSHSNAP_ACK:
6df058c0 2927 handle_cap_flushsnap_ack(inode, tid, h, session);
a8599bd8
SW
2928 goto done;
2929
2930 case CEPH_CAP_OP_EXPORT:
154f42c2 2931 handle_cap_export(inode, h, session, &open_target_sessions);
a8599bd8
SW
2932 goto done;
2933
2934 case CEPH_CAP_OP_IMPORT:
2935 handle_cap_import(mdsc, inode, h, session,
ce1fbc8d 2936 snaptrace, snaptrace_len);
a8599bd8
SW
2937 }
2938
2939 /* the rest require a cap */
be655596 2940 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2941 cap = __get_cap_for_mds(ceph_inode(inode), mds);
2942 if (!cap) {
9dbd412f 2943 dout(" no cap on %p ino %llx.%llx from mds%d\n",
a8599bd8 2944 inode, ceph_ino(inode), ceph_snap(inode), mds);
be655596 2945 spin_unlock(&ci->i_ceph_lock);
21b559de 2946 goto flush_cap_releases;
a8599bd8
SW
2947 }
2948
be655596 2949 /* note that each of these drops i_ceph_lock for us */
a8599bd8
SW
2950 switch (op) {
2951 case CEPH_CAP_OP_REVOKE:
2952 case CEPH_CAP_OP_GRANT:
0e5e1774 2953 case CEPH_CAP_OP_IMPORT:
15637c8b
SW
2954 handle_cap_grant(inode, h, session, cap, msg->middle);
2955 goto done_unlocked;
a8599bd8
SW
2956
2957 case CEPH_CAP_OP_FLUSH_ACK:
6df058c0 2958 handle_cap_flush_ack(inode, tid, h, session, cap);
a8599bd8
SW
2959 break;
2960
2961 case CEPH_CAP_OP_TRUNC:
2962 handle_cap_trunc(inode, h, session);
2963 break;
2964
2965 default:
be655596 2966 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2967 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
2968 ceph_cap_op_name(op));
2969 }
2970
21b559de
GF
2971 goto done;
2972
2973flush_cap_releases:
2974 /*
2975 * send any full release message to try to move things
2976 * along for the mds (who clearly thinks we still have this
2977 * cap).
2978 */
2979 ceph_add_cap_releases(mdsc, session);
2980 ceph_send_cap_releases(mdsc, session);
2981
a8599bd8 2982done:
15637c8b
SW
2983 mutex_unlock(&session->s_mutex);
2984done_unlocked:
a8599bd8
SW
2985 if (inode)
2986 iput(inode);
154f42c2
SW
2987 if (open_target_sessions)
2988 ceph_mdsc_open_export_target_sessions(mdsc, session);
a8599bd8
SW
2989 return;
2990
2991bad:
2992 pr_err("ceph_handle_caps: corrupt message\n");
9ec7cab1 2993 ceph_msg_dump(msg);
a8599bd8
SW
2994 return;
2995}
2996
2997/*
2998 * Delayed work handler to process end of delayed cap release LRU list.
2999 */
afcdaea3 3000void ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
a8599bd8
SW
3001{
3002 struct ceph_inode_info *ci;
3003 int flags = CHECK_CAPS_NODELAY;
3004
a8599bd8
SW
3005 dout("check_delayed_caps\n");
3006 while (1) {
3007 spin_lock(&mdsc->cap_delay_lock);
3008 if (list_empty(&mdsc->cap_delay_list))
3009 break;
3010 ci = list_first_entry(&mdsc->cap_delay_list,
3011 struct ceph_inode_info,
3012 i_cap_delay_list);
3013 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
3014 time_before(jiffies, ci->i_hold_caps_max))
3015 break;
3016 list_del_init(&ci->i_cap_delay_list);
3017 spin_unlock(&mdsc->cap_delay_lock);
3018 dout("check_delayed_caps on %p\n", &ci->vfs_inode);
3019 ceph_check_caps(ci, flags, NULL);
3020 }
3021 spin_unlock(&mdsc->cap_delay_lock);
3022}
3023
afcdaea3
SW
3024/*
3025 * Flush all dirty caps to the mds
3026 */
3027void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
3028{
db354052
SW
3029 struct ceph_inode_info *ci;
3030 struct inode *inode;
afcdaea3
SW
3031
3032 dout("flush_dirty_caps\n");
3033 spin_lock(&mdsc->cap_dirty_lock);
db354052
SW
3034 while (!list_empty(&mdsc->cap_dirty)) {
3035 ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info,
3036 i_dirty_item);
70b666c3
SW
3037 inode = &ci->vfs_inode;
3038 ihold(inode);
db354052 3039 dout("flush_dirty_caps %p\n", inode);
afcdaea3 3040 spin_unlock(&mdsc->cap_dirty_lock);
70b666c3
SW
3041 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_FLUSH, NULL);
3042 iput(inode);
afcdaea3
SW
3043 spin_lock(&mdsc->cap_dirty_lock);
3044 }
3045 spin_unlock(&mdsc->cap_dirty_lock);
db354052 3046 dout("flush_dirty_caps done\n");
afcdaea3
SW
3047}
3048
a8599bd8
SW
3049/*
3050 * Drop open file reference. If we were the last open file,
3051 * we may need to release capabilities to the MDS (or schedule
3052 * their delayed release).
3053 */
3054void ceph_put_fmode(struct ceph_inode_info *ci, int fmode)
3055{
3056 struct inode *inode = &ci->vfs_inode;
3057 int last = 0;
3058
be655596 3059 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
3060 dout("put_fmode %p fmode %d %d -> %d\n", inode, fmode,
3061 ci->i_nr_by_mode[fmode], ci->i_nr_by_mode[fmode]-1);
3062 BUG_ON(ci->i_nr_by_mode[fmode] == 0);
3063 if (--ci->i_nr_by_mode[fmode] == 0)
3064 last++;
be655596 3065 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
3066
3067 if (last && ci->i_vino.snap == CEPH_NOSNAP)
3068 ceph_check_caps(ci, 0, NULL);
3069}
3070
3071/*
3072 * Helpers for embedding cap and dentry lease releases into mds
3073 * requests.
3074 *
3075 * @force is used by dentry_release (below) to force inclusion of a
3076 * record for the directory inode, even when there aren't any caps to
3077 * drop.
3078 */
3079int ceph_encode_inode_release(void **p, struct inode *inode,
3080 int mds, int drop, int unless, int force)
3081{
3082 struct ceph_inode_info *ci = ceph_inode(inode);
3083 struct ceph_cap *cap;
3084 struct ceph_mds_request_release *rel = *p;
ec97f88b 3085 int used, dirty;
a8599bd8 3086 int ret = 0;
a8599bd8 3087
be655596 3088 spin_lock(&ci->i_ceph_lock);
916623da 3089 used = __ceph_caps_used(ci);
ec97f88b 3090 dirty = __ceph_caps_dirty(ci);
916623da 3091
ec97f88b
SW
3092 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
3093 inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
916623da
SW
3094 ceph_cap_string(unless));
3095
ec97f88b
SW
3096 /* only drop unused, clean caps */
3097 drop &= ~(used | dirty);
916623da 3098
a8599bd8
SW
3099 cap = __get_cap_for_mds(ci, mds);
3100 if (cap && __cap_is_valid(cap)) {
3101 if (force ||
3102 ((cap->issued & drop) &&
3103 (cap->issued & unless) == 0)) {
3104 if ((cap->issued & drop) &&
3105 (cap->issued & unless) == 0) {
bb137f84
YZ
3106 int wanted = __ceph_caps_wanted(ci);
3107 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0)
3108 wanted |= cap->mds_wanted;
3109 dout("encode_inode_release %p cap %p "
3110 "%s -> %s, wanted %s -> %s\n", inode, cap,
a8599bd8 3111 ceph_cap_string(cap->issued),
bb137f84
YZ
3112 ceph_cap_string(cap->issued & ~drop),
3113 ceph_cap_string(cap->mds_wanted),
3114 ceph_cap_string(wanted));
3115
a8599bd8
SW
3116 cap->issued &= ~drop;
3117 cap->implemented &= ~drop;
bb137f84 3118 cap->mds_wanted = wanted;
a8599bd8
SW
3119 } else {
3120 dout("encode_inode_release %p cap %p %s"
3121 " (force)\n", inode, cap,
3122 ceph_cap_string(cap->issued));
3123 }
3124
3125 rel->ino = cpu_to_le64(ceph_ino(inode));
3126 rel->cap_id = cpu_to_le64(cap->cap_id);
3127 rel->seq = cpu_to_le32(cap->seq);
3128 rel->issue_seq = cpu_to_le32(cap->issue_seq),
3129 rel->mseq = cpu_to_le32(cap->mseq);
3130 rel->caps = cpu_to_le32(cap->issued);
3131 rel->wanted = cpu_to_le32(cap->mds_wanted);
3132 rel->dname_len = 0;
3133 rel->dname_seq = 0;
3134 *p += sizeof(*rel);
3135 ret = 1;
3136 } else {
3137 dout("encode_inode_release %p cap %p %s\n",
3138 inode, cap, ceph_cap_string(cap->issued));
3139 }
3140 }
be655596 3141 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
3142 return ret;
3143}
3144
3145int ceph_encode_dentry_release(void **p, struct dentry *dentry,
3146 int mds, int drop, int unless)
3147{
3148 struct inode *dir = dentry->d_parent->d_inode;
3149 struct ceph_mds_request_release *rel = *p;
3150 struct ceph_dentry_info *di = ceph_dentry(dentry);
3151 int force = 0;
3152 int ret;
3153
3154 /*
3155 * force an record for the directory caps if we have a dentry lease.
be655596 3156 * this is racy (can't take i_ceph_lock and d_lock together), but it
a8599bd8
SW
3157 * doesn't have to be perfect; the mds will revoke anything we don't
3158 * release.
3159 */
3160 spin_lock(&dentry->d_lock);
3161 if (di->lease_session && di->lease_session->s_mds == mds)
3162 force = 1;
3163 spin_unlock(&dentry->d_lock);
3164
3165 ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
3166
3167 spin_lock(&dentry->d_lock);
3168 if (ret && di->lease_session && di->lease_session->s_mds == mds) {
3169 dout("encode_dentry_release %p mds%d seq %d\n",
3170 dentry, mds, (int)di->lease_seq);
3171 rel->dname_len = cpu_to_le32(dentry->d_name.len);
3172 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
3173 *p += dentry->d_name.len;
3174 rel->dname_seq = cpu_to_le32(di->lease_seq);
1dadcce3 3175 __ceph_mdsc_drop_dentry_lease(dentry);
a8599bd8
SW
3176 }
3177 spin_unlock(&dentry->d_lock);
3178 return ret;
3179}