1 #include "ceph_debug.h"
4 #include <linux/kernel.h>
5 #include <linux/sched.h>
6 #include <linux/slab.h>
7 #include <linux/vmalloc.h>
8 #include <linux/wait.h>
9 #include <linux/writeback.h>
13 #include "messenger.h"
16 * Capability management
18 * The Ceph metadata servers control client access to inode metadata
19 * and file data by issuing capabilities, granting clients permission
20 * to read and/or write both inode field and file data to OSDs
21 * (storage nodes). Each capability consists of a set of bits
22 * indicating which operations are allowed.
24 * If the client holds a *_SHARED cap, the client has a coherent value
25 * that can be safely read from the cached inode.
27 * In the case of a *_EXCL (exclusive) or FILE_WR capabilities, the
28 * client is allowed to change inode attributes (e.g., file size,
29 * mtime), note its dirty state in the ceph_cap, and asynchronously
30 * flush that metadata change to the MDS.
32 * In the event of a conflicting operation (perhaps by another
33 * client), the MDS will revoke the conflicting client capabilities.
35 * In order for a client to cache an inode, it must hold a capability
36 * with at least one MDS server. When inodes are released, release
37 * notifications are batched and periodically sent en masse to the MDS
38 * cluster to release server state.
43 * Generate readable cap strings for debugging output.
45 #define MAX_CAP_STR 20
46 static char cap_str
[MAX_CAP_STR
][40];
47 static DEFINE_SPINLOCK(cap_str_lock
);
48 static int last_cap_str
;
50 static char *gcap_string(char *s
, int c
)
52 if (c
& CEPH_CAP_GSHARED
)
54 if (c
& CEPH_CAP_GEXCL
)
56 if (c
& CEPH_CAP_GCACHE
)
62 if (c
& CEPH_CAP_GBUFFER
)
64 if (c
& CEPH_CAP_GLAZYIO
)
69 const char *ceph_cap_string(int caps
)
75 spin_lock(&cap_str_lock
);
77 if (last_cap_str
== MAX_CAP_STR
)
79 spin_unlock(&cap_str_lock
);
83 if (caps
& CEPH_CAP_PIN
)
86 c
= (caps
>> CEPH_CAP_SAUTH
) & 3;
89 s
= gcap_string(s
, c
);
92 c
= (caps
>> CEPH_CAP_SLINK
) & 3;
95 s
= gcap_string(s
, c
);
98 c
= (caps
>> CEPH_CAP_SXATTR
) & 3;
101 s
= gcap_string(s
, c
);
104 c
= caps
>> CEPH_CAP_SFILE
;
107 s
= gcap_string(s
, c
);
116 void ceph_caps_init(struct ceph_mds_client
*mdsc
)
118 INIT_LIST_HEAD(&mdsc
->caps_list
);
119 spin_lock_init(&mdsc
->caps_list_lock
);
122 void ceph_caps_finalize(struct ceph_mds_client
*mdsc
)
124 struct ceph_cap
*cap
;
126 spin_lock(&mdsc
->caps_list_lock
);
127 while (!list_empty(&mdsc
->caps_list
)) {
128 cap
= list_first_entry(&mdsc
->caps_list
,
129 struct ceph_cap
, caps_item
);
130 list_del(&cap
->caps_item
);
131 kmem_cache_free(ceph_cap_cachep
, cap
);
133 mdsc
->caps_total_count
= 0;
134 mdsc
->caps_avail_count
= 0;
135 mdsc
->caps_use_count
= 0;
136 mdsc
->caps_reserve_count
= 0;
137 mdsc
->caps_min_count
= 0;
138 spin_unlock(&mdsc
->caps_list_lock
);
141 void ceph_adjust_min_caps(struct ceph_mds_client
*mdsc
, int delta
)
143 spin_lock(&mdsc
->caps_list_lock
);
144 mdsc
->caps_min_count
+= delta
;
145 BUG_ON(mdsc
->caps_min_count
< 0);
146 spin_unlock(&mdsc
->caps_list_lock
);
149 int ceph_reserve_caps(struct ceph_mds_client
*mdsc
,
150 struct ceph_cap_reservation
*ctx
, int need
)
153 struct ceph_cap
*cap
;
159 dout("reserve caps ctx=%p need=%d\n", ctx
, need
);
161 /* first reserve any caps that are already allocated */
162 spin_lock(&mdsc
->caps_list_lock
);
163 if (mdsc
->caps_avail_count
>= need
)
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
);
174 for (i
= have
; i
< need
; i
++) {
175 cap
= kmem_cache_alloc(ceph_cap_cachep
, GFP_NOFS
);
178 goto out_alloc_count
;
180 list_add(&cap
->caps_item
, &newcaps
);
183 BUG_ON(have
+ alloc
!= need
);
185 spin_lock(&mdsc
->caps_list_lock
);
186 mdsc
->caps_total_count
+= alloc
;
187 mdsc
->caps_reserve_count
+= alloc
;
188 list_splice(&newcaps
, &mdsc
->caps_list
);
190 BUG_ON(mdsc
->caps_total_count
!= mdsc
->caps_use_count
+
191 mdsc
->caps_reserve_count
+
192 mdsc
->caps_avail_count
);
193 spin_unlock(&mdsc
->caps_list_lock
);
196 dout("reserve caps ctx=%p %d = %d used + %d resv + %d avail\n",
197 ctx
, mdsc
->caps_total_count
, mdsc
->caps_use_count
,
198 mdsc
->caps_reserve_count
, mdsc
->caps_avail_count
);
202 /* we didn't manage to reserve as much as we needed */
203 pr_warning("reserve caps ctx=%p ENOMEM need=%d got=%d\n",
208 int ceph_unreserve_caps(struct ceph_mds_client
*mdsc
,
209 struct ceph_cap_reservation
*ctx
)
211 dout("unreserve caps ctx=%p count=%d\n", ctx
, ctx
->count
);
213 spin_lock(&mdsc
->caps_list_lock
);
214 BUG_ON(mdsc
->caps_reserve_count
< ctx
->count
);
215 mdsc
->caps_reserve_count
-= ctx
->count
;
216 mdsc
->caps_avail_count
+= ctx
->count
;
218 dout("unreserve caps %d = %d used + %d resv + %d avail\n",
219 mdsc
->caps_total_count
, mdsc
->caps_use_count
,
220 mdsc
->caps_reserve_count
, mdsc
->caps_avail_count
);
221 BUG_ON(mdsc
->caps_total_count
!= mdsc
->caps_use_count
+
222 mdsc
->caps_reserve_count
+
223 mdsc
->caps_avail_count
);
224 spin_unlock(&mdsc
->caps_list_lock
);
229 static struct ceph_cap
*get_cap(struct ceph_mds_client
*mdsc
,
230 struct ceph_cap_reservation
*ctx
)
232 struct ceph_cap
*cap
= NULL
;
234 /* temporary, until we do something about cap import/export */
236 cap
= kmem_cache_alloc(ceph_cap_cachep
, GFP_NOFS
);
238 mdsc
->caps_use_count
++;
239 mdsc
->caps_total_count
++;
244 spin_lock(&mdsc
->caps_list_lock
);
245 dout("get_cap ctx=%p (%d) %d = %d used + %d resv + %d avail\n",
246 ctx
, ctx
->count
, mdsc
->caps_total_count
, mdsc
->caps_use_count
,
247 mdsc
->caps_reserve_count
, mdsc
->caps_avail_count
);
249 BUG_ON(ctx
->count
> mdsc
->caps_reserve_count
);
250 BUG_ON(list_empty(&mdsc
->caps_list
));
253 mdsc
->caps_reserve_count
--;
254 mdsc
->caps_use_count
++;
256 cap
= list_first_entry(&mdsc
->caps_list
, struct ceph_cap
, caps_item
);
257 list_del(&cap
->caps_item
);
259 BUG_ON(mdsc
->caps_total_count
!= mdsc
->caps_use_count
+
260 mdsc
->caps_reserve_count
+ mdsc
->caps_avail_count
);
261 spin_unlock(&mdsc
->caps_list_lock
);
265 void ceph_put_cap(struct ceph_mds_client
*mdsc
, struct ceph_cap
*cap
)
267 spin_lock(&mdsc
->caps_list_lock
);
268 dout("put_cap %p %d = %d used + %d resv + %d avail\n",
269 cap
, mdsc
->caps_total_count
, mdsc
->caps_use_count
,
270 mdsc
->caps_reserve_count
, mdsc
->caps_avail_count
);
271 mdsc
->caps_use_count
--;
273 * Keep some preallocated caps around (ceph_min_count), to
274 * avoid lots of free/alloc churn.
276 if (mdsc
->caps_avail_count
>= mdsc
->caps_reserve_count
+
277 mdsc
->caps_min_count
) {
278 mdsc
->caps_total_count
--;
279 kmem_cache_free(ceph_cap_cachep
, cap
);
281 mdsc
->caps_avail_count
++;
282 list_add(&cap
->caps_item
, &mdsc
->caps_list
);
285 BUG_ON(mdsc
->caps_total_count
!= mdsc
->caps_use_count
+
286 mdsc
->caps_reserve_count
+ mdsc
->caps_avail_count
);
287 spin_unlock(&mdsc
->caps_list_lock
);
290 void ceph_reservation_status(struct ceph_client
*client
,
291 int *total
, int *avail
, int *used
, int *reserved
,
294 struct ceph_mds_client
*mdsc
= &client
->mdsc
;
297 *total
= mdsc
->caps_total_count
;
299 *avail
= mdsc
->caps_avail_count
;
301 *used
= mdsc
->caps_use_count
;
303 *reserved
= mdsc
->caps_reserve_count
;
305 *min
= mdsc
->caps_min_count
;
309 * Find ceph_cap for given mds, if any.
311 * Called with i_lock held.
313 static struct ceph_cap
*__get_cap_for_mds(struct ceph_inode_info
*ci
, int mds
)
315 struct ceph_cap
*cap
;
316 struct rb_node
*n
= ci
->i_caps
.rb_node
;
319 cap
= rb_entry(n
, struct ceph_cap
, ci_node
);
322 else if (mds
> cap
->mds
)
330 struct ceph_cap
*ceph_get_cap_for_mds(struct ceph_inode_info
*ci
, int mds
)
332 struct ceph_cap
*cap
;
334 spin_lock(&ci
->vfs_inode
.i_lock
);
335 cap
= __get_cap_for_mds(ci
, mds
);
336 spin_unlock(&ci
->vfs_inode
.i_lock
);
341 * Return id of any MDS with a cap, preferably FILE_WR|BUFFER|EXCL, else -1.
343 static int __ceph_get_cap_mds(struct ceph_inode_info
*ci
)
345 struct ceph_cap
*cap
;
349 /* prefer mds with WR|BUFFER|EXCL caps */
350 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
351 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
353 if (cap
->issued
& (CEPH_CAP_FILE_WR
|
354 CEPH_CAP_FILE_BUFFER
|
361 int ceph_get_cap_mds(struct inode
*inode
)
364 spin_lock(&inode
->i_lock
);
365 mds
= __ceph_get_cap_mds(ceph_inode(inode
));
366 spin_unlock(&inode
->i_lock
);
371 * Called under i_lock.
373 static void __insert_cap_node(struct ceph_inode_info
*ci
,
374 struct ceph_cap
*new)
376 struct rb_node
**p
= &ci
->i_caps
.rb_node
;
377 struct rb_node
*parent
= NULL
;
378 struct ceph_cap
*cap
= NULL
;
382 cap
= rb_entry(parent
, struct ceph_cap
, ci_node
);
383 if (new->mds
< cap
->mds
)
385 else if (new->mds
> cap
->mds
)
391 rb_link_node(&new->ci_node
, parent
, p
);
392 rb_insert_color(&new->ci_node
, &ci
->i_caps
);
396 * (re)set cap hold timeouts, which control the delayed release
397 * of unused caps back to the MDS. Should be called on cap use.
399 static void __cap_set_timeouts(struct ceph_mds_client
*mdsc
,
400 struct ceph_inode_info
*ci
)
402 struct ceph_mount_args
*ma
= mdsc
->client
->mount_args
;
404 ci
->i_hold_caps_min
= round_jiffies(jiffies
+
405 ma
->caps_wanted_delay_min
* HZ
);
406 ci
->i_hold_caps_max
= round_jiffies(jiffies
+
407 ma
->caps_wanted_delay_max
* HZ
);
408 dout("__cap_set_timeouts %p min %lu max %lu\n", &ci
->vfs_inode
,
409 ci
->i_hold_caps_min
- jiffies
, ci
->i_hold_caps_max
- jiffies
);
413 * (Re)queue cap at the end of the delayed cap release list.
415 * If I_FLUSH is set, leave the inode at the front of the list.
417 * Caller holds i_lock
418 * -> we take mdsc->cap_delay_lock
420 static void __cap_delay_requeue(struct ceph_mds_client
*mdsc
,
421 struct ceph_inode_info
*ci
)
423 __cap_set_timeouts(mdsc
, ci
);
424 dout("__cap_delay_requeue %p flags %d at %lu\n", &ci
->vfs_inode
,
425 ci
->i_ceph_flags
, ci
->i_hold_caps_max
);
426 if (!mdsc
->stopping
) {
427 spin_lock(&mdsc
->cap_delay_lock
);
428 if (!list_empty(&ci
->i_cap_delay_list
)) {
429 if (ci
->i_ceph_flags
& CEPH_I_FLUSH
)
431 list_del_init(&ci
->i_cap_delay_list
);
433 list_add_tail(&ci
->i_cap_delay_list
, &mdsc
->cap_delay_list
);
435 spin_unlock(&mdsc
->cap_delay_lock
);
440 * Queue an inode for immediate writeback. Mark inode with I_FLUSH,
441 * indicating we should send a cap message to flush dirty metadata
442 * asap, and move to the front of the delayed cap list.
444 static void __cap_delay_requeue_front(struct ceph_mds_client
*mdsc
,
445 struct ceph_inode_info
*ci
)
447 dout("__cap_delay_requeue_front %p\n", &ci
->vfs_inode
);
448 spin_lock(&mdsc
->cap_delay_lock
);
449 ci
->i_ceph_flags
|= CEPH_I_FLUSH
;
450 if (!list_empty(&ci
->i_cap_delay_list
))
451 list_del_init(&ci
->i_cap_delay_list
);
452 list_add(&ci
->i_cap_delay_list
, &mdsc
->cap_delay_list
);
453 spin_unlock(&mdsc
->cap_delay_lock
);
457 * Cancel delayed work on cap.
459 * Caller must hold i_lock.
461 static void __cap_delay_cancel(struct ceph_mds_client
*mdsc
,
462 struct ceph_inode_info
*ci
)
464 dout("__cap_delay_cancel %p\n", &ci
->vfs_inode
);
465 if (list_empty(&ci
->i_cap_delay_list
))
467 spin_lock(&mdsc
->cap_delay_lock
);
468 list_del_init(&ci
->i_cap_delay_list
);
469 spin_unlock(&mdsc
->cap_delay_lock
);
473 * Common issue checks for add_cap, handle_cap_grant.
475 static void __check_cap_issue(struct ceph_inode_info
*ci
, struct ceph_cap
*cap
,
478 unsigned had
= __ceph_caps_issued(ci
, NULL
);
481 * Each time we receive FILE_CACHE anew, we increment
484 if ((issued
& (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_LAZYIO
)) &&
485 (had
& (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_LAZYIO
)) == 0)
489 * if we are newly issued FILE_SHARED, clear I_COMPLETE; we
490 * don't know what happened to this directory while we didn't
493 if ((issued
& CEPH_CAP_FILE_SHARED
) &&
494 (had
& CEPH_CAP_FILE_SHARED
) == 0) {
496 if (S_ISDIR(ci
->vfs_inode
.i_mode
)) {
497 dout(" marking %p NOT complete\n", &ci
->vfs_inode
);
498 ci
->i_ceph_flags
&= ~CEPH_I_COMPLETE
;
504 * Add a capability under the given MDS session.
506 * Caller should hold session snap_rwsem (read) and s_mutex.
508 * @fmode is the open file mode, if we are opening a file, otherwise
509 * it is < 0. (This is so we can atomically add the cap and add an
510 * open file reference to it.)
512 int ceph_add_cap(struct inode
*inode
,
513 struct ceph_mds_session
*session
, u64 cap_id
,
514 int fmode
, unsigned issued
, unsigned wanted
,
515 unsigned seq
, unsigned mseq
, u64 realmino
, int flags
,
516 struct ceph_cap_reservation
*caps_reservation
)
518 struct ceph_mds_client
*mdsc
= &ceph_inode_to_client(inode
)->mdsc
;
519 struct ceph_inode_info
*ci
= ceph_inode(inode
);
520 struct ceph_cap
*new_cap
= NULL
;
521 struct ceph_cap
*cap
;
522 int mds
= session
->s_mds
;
525 dout("add_cap %p mds%d cap %llx %s seq %d\n", inode
,
526 session
->s_mds
, cap_id
, ceph_cap_string(issued
), seq
);
529 * If we are opening the file, include file mode wanted bits
533 wanted
|= ceph_caps_for_mode(fmode
);
536 spin_lock(&inode
->i_lock
);
537 cap
= __get_cap_for_mds(ci
, mds
);
543 spin_unlock(&inode
->i_lock
);
544 new_cap
= get_cap(mdsc
, caps_reservation
);
551 cap
->implemented
= 0;
556 __insert_cap_node(ci
, cap
);
558 /* clear out old exporting info? (i.e. on cap import) */
559 if (ci
->i_cap_exporting_mds
== mds
) {
560 ci
->i_cap_exporting_issued
= 0;
561 ci
->i_cap_exporting_mseq
= 0;
562 ci
->i_cap_exporting_mds
= -1;
565 /* add to session cap list */
566 cap
->session
= session
;
567 spin_lock(&session
->s_cap_lock
);
568 list_add_tail(&cap
->session_caps
, &session
->s_caps
);
569 session
->s_nr_caps
++;
570 spin_unlock(&session
->s_cap_lock
);
573 if (!ci
->i_snap_realm
) {
575 * add this inode to the appropriate snap realm
577 struct ceph_snap_realm
*realm
= ceph_lookup_snap_realm(mdsc
,
580 ceph_get_snap_realm(mdsc
, realm
);
581 spin_lock(&realm
->inodes_with_caps_lock
);
582 ci
->i_snap_realm
= realm
;
583 list_add(&ci
->i_snap_realm_item
,
584 &realm
->inodes_with_caps
);
585 spin_unlock(&realm
->inodes_with_caps_lock
);
587 pr_err("ceph_add_cap: couldn't find snap realm %llx\n",
593 __check_cap_issue(ci
, cap
, issued
);
596 * If we are issued caps we don't want, or the mds' wanted
597 * value appears to be off, queue a check so we'll release
598 * later and/or update the mds wanted value.
600 actual_wanted
= __ceph_caps_wanted(ci
);
601 if ((wanted
& ~actual_wanted
) ||
602 (issued
& ~actual_wanted
& CEPH_CAP_ANY_WR
)) {
603 dout(" issued %s, mds wanted %s, actual %s, queueing\n",
604 ceph_cap_string(issued
), ceph_cap_string(wanted
),
605 ceph_cap_string(actual_wanted
));
606 __cap_delay_requeue(mdsc
, ci
);
609 if (flags
& CEPH_CAP_FLAG_AUTH
)
610 ci
->i_auth_cap
= cap
;
611 else if (ci
->i_auth_cap
== cap
)
612 ci
->i_auth_cap
= NULL
;
614 dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
615 inode
, ceph_vinop(inode
), cap
, ceph_cap_string(issued
),
616 ceph_cap_string(issued
|cap
->issued
), seq
, mds
);
617 cap
->cap_id
= cap_id
;
618 cap
->issued
= issued
;
619 cap
->implemented
|= issued
;
620 cap
->mds_wanted
|= wanted
;
622 cap
->issue_seq
= seq
;
624 cap
->cap_gen
= session
->s_cap_gen
;
627 __ceph_get_fmode(ci
, fmode
);
628 spin_unlock(&inode
->i_lock
);
629 wake_up_all(&ci
->i_cap_wq
);
634 * Return true if cap has not timed out and belongs to the current
635 * generation of the MDS session (i.e. has not gone 'stale' due to
636 * us losing touch with the mds).
638 static int __cap_is_valid(struct ceph_cap
*cap
)
643 spin_lock(&cap
->session
->s_cap_lock
);
644 gen
= cap
->session
->s_cap_gen
;
645 ttl
= cap
->session
->s_cap_ttl
;
646 spin_unlock(&cap
->session
->s_cap_lock
);
648 if (cap
->cap_gen
< gen
|| time_after_eq(jiffies
, ttl
)) {
649 dout("__cap_is_valid %p cap %p issued %s "
650 "but STALE (gen %u vs %u)\n", &cap
->ci
->vfs_inode
,
651 cap
, ceph_cap_string(cap
->issued
), cap
->cap_gen
, gen
);
659 * Return set of valid cap bits issued to us. Note that caps time
660 * out, and may be invalidated in bulk if the client session times out
661 * and session->s_cap_gen is bumped.
663 int __ceph_caps_issued(struct ceph_inode_info
*ci
, int *implemented
)
665 int have
= ci
->i_snap_caps
| ci
->i_cap_exporting_issued
;
666 struct ceph_cap
*cap
;
671 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
672 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
673 if (!__cap_is_valid(cap
))
675 dout("__ceph_caps_issued %p cap %p issued %s\n",
676 &ci
->vfs_inode
, cap
, ceph_cap_string(cap
->issued
));
679 *implemented
|= cap
->implemented
;
685 * Get cap bits issued by caps other than @ocap
687 int __ceph_caps_issued_other(struct ceph_inode_info
*ci
, struct ceph_cap
*ocap
)
689 int have
= ci
->i_snap_caps
;
690 struct ceph_cap
*cap
;
693 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
694 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
697 if (!__cap_is_valid(cap
))
705 * Move a cap to the end of the LRU (oldest caps at list head, newest
708 static void __touch_cap(struct ceph_cap
*cap
)
710 struct ceph_mds_session
*s
= cap
->session
;
712 spin_lock(&s
->s_cap_lock
);
713 if (s
->s_cap_iterator
== NULL
) {
714 dout("__touch_cap %p cap %p mds%d\n", &cap
->ci
->vfs_inode
, cap
,
716 list_move_tail(&cap
->session_caps
, &s
->s_caps
);
718 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
719 &cap
->ci
->vfs_inode
, cap
, s
->s_mds
);
721 spin_unlock(&s
->s_cap_lock
);
725 * Check if we hold the given mask. If so, move the cap(s) to the
726 * front of their respective LRUs. (This is the preferred way for
727 * callers to check for caps they want.)
729 int __ceph_caps_issued_mask(struct ceph_inode_info
*ci
, int mask
, int touch
)
731 struct ceph_cap
*cap
;
733 int have
= ci
->i_snap_caps
;
735 if ((have
& mask
) == mask
) {
736 dout("__ceph_caps_issued_mask %p snap issued %s"
737 " (mask %s)\n", &ci
->vfs_inode
,
738 ceph_cap_string(have
),
739 ceph_cap_string(mask
));
743 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
744 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
745 if (!__cap_is_valid(cap
))
747 if ((cap
->issued
& mask
) == mask
) {
748 dout("__ceph_caps_issued_mask %p cap %p issued %s"
749 " (mask %s)\n", &ci
->vfs_inode
, cap
,
750 ceph_cap_string(cap
->issued
),
751 ceph_cap_string(mask
));
757 /* does a combination of caps satisfy mask? */
759 if ((have
& mask
) == mask
) {
760 dout("__ceph_caps_issued_mask %p combo issued %s"
761 " (mask %s)\n", &ci
->vfs_inode
,
762 ceph_cap_string(cap
->issued
),
763 ceph_cap_string(mask
));
767 /* touch this + preceeding caps */
769 for (q
= rb_first(&ci
->i_caps
); q
!= p
;
771 cap
= rb_entry(q
, struct ceph_cap
,
773 if (!__cap_is_valid(cap
))
786 * Return true if mask caps are currently being revoked by an MDS.
788 int ceph_caps_revoking(struct ceph_inode_info
*ci
, int mask
)
790 struct inode
*inode
= &ci
->vfs_inode
;
791 struct ceph_cap
*cap
;
795 spin_lock(&inode
->i_lock
);
796 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
797 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
798 if (__cap_is_valid(cap
) &&
799 (cap
->implemented
& ~cap
->issued
& mask
)) {
804 spin_unlock(&inode
->i_lock
);
805 dout("ceph_caps_revoking %p %s = %d\n", inode
,
806 ceph_cap_string(mask
), ret
);
810 int __ceph_caps_used(struct ceph_inode_info
*ci
)
814 used
|= CEPH_CAP_PIN
;
816 used
|= CEPH_CAP_FILE_RD
;
817 if (ci
->i_rdcache_ref
|| ci
->i_rdcache_gen
)
818 used
|= CEPH_CAP_FILE_CACHE
;
820 used
|= CEPH_CAP_FILE_WR
;
821 if (ci
->i_wrbuffer_ref
)
822 used
|= CEPH_CAP_FILE_BUFFER
;
827 * wanted, by virtue of open file modes
829 int __ceph_caps_file_wanted(struct ceph_inode_info
*ci
)
833 for (mode
= 0; mode
< CEPH_FILE_MODE_NUM
; mode
++)
834 if (ci
->i_nr_by_mode
[mode
])
835 want
|= ceph_caps_for_mode(mode
);
840 * Return caps we have registered with the MDS(s) as 'wanted'.
842 int __ceph_caps_mds_wanted(struct ceph_inode_info
*ci
)
844 struct ceph_cap
*cap
;
848 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
849 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
850 if (!__cap_is_valid(cap
))
852 mds_wanted
|= cap
->mds_wanted
;
858 * called under i_lock
860 static int __ceph_is_any_caps(struct ceph_inode_info
*ci
)
862 return !RB_EMPTY_ROOT(&ci
->i_caps
) || ci
->i_cap_exporting_mds
>= 0;
866 * Remove a cap. Take steps to deal with a racing iterate_session_caps.
868 * caller should hold i_lock.
869 * caller will not hold session s_mutex if called from destroy_inode.
871 void __ceph_remove_cap(struct ceph_cap
*cap
)
873 struct ceph_mds_session
*session
= cap
->session
;
874 struct ceph_inode_info
*ci
= cap
->ci
;
875 struct ceph_mds_client
*mdsc
=
876 &ceph_sb_to_client(ci
->vfs_inode
.i_sb
)->mdsc
;
879 dout("__ceph_remove_cap %p from %p\n", cap
, &ci
->vfs_inode
);
881 /* remove from session list */
882 spin_lock(&session
->s_cap_lock
);
883 if (session
->s_cap_iterator
== cap
) {
884 /* not yet, we are iterating over this very cap */
885 dout("__ceph_remove_cap delaying %p removal from session %p\n",
888 list_del_init(&cap
->session_caps
);
889 session
->s_nr_caps
--;
893 /* protect backpointer with s_cap_lock: see iterate_session_caps */
895 spin_unlock(&session
->s_cap_lock
);
897 /* remove from inode list */
898 rb_erase(&cap
->ci_node
, &ci
->i_caps
);
899 if (ci
->i_auth_cap
== cap
)
900 ci
->i_auth_cap
= NULL
;
903 ceph_put_cap(mdsc
, cap
);
905 if (!__ceph_is_any_caps(ci
) && ci
->i_snap_realm
) {
906 struct ceph_snap_realm
*realm
= ci
->i_snap_realm
;
907 spin_lock(&realm
->inodes_with_caps_lock
);
908 list_del_init(&ci
->i_snap_realm_item
);
909 ci
->i_snap_realm_counter
++;
910 ci
->i_snap_realm
= NULL
;
911 spin_unlock(&realm
->inodes_with_caps_lock
);
912 ceph_put_snap_realm(mdsc
, realm
);
914 if (!__ceph_is_any_real_caps(ci
))
915 __cap_delay_cancel(mdsc
, ci
);
919 * Build and send a cap message to the given MDS.
921 * Caller should be holding s_mutex.
923 static int send_cap_msg(struct ceph_mds_session
*session
,
924 u64 ino
, u64 cid
, int op
,
925 int caps
, int wanted
, int dirty
,
926 u32 seq
, u64 flush_tid
, u32 issue_seq
, u32 mseq
,
927 u64 size
, u64 max_size
,
928 struct timespec
*mtime
, struct timespec
*atime
,
930 uid_t uid
, gid_t gid
, mode_t mode
,
932 struct ceph_buffer
*xattrs_buf
,
935 struct ceph_mds_caps
*fc
;
936 struct ceph_msg
*msg
;
938 dout("send_cap_msg %s %llx %llx caps %s wanted %s dirty %s"
939 " seq %u/%u mseq %u follows %lld size %llu/%llu"
940 " xattr_ver %llu xattr_len %d\n", ceph_cap_op_name(op
),
941 cid
, ino
, ceph_cap_string(caps
), ceph_cap_string(wanted
),
942 ceph_cap_string(dirty
),
943 seq
, issue_seq
, mseq
, follows
, size
, max_size
,
944 xattr_version
, xattrs_buf
? (int)xattrs_buf
->vec
.iov_len
: 0);
946 msg
= ceph_msg_new(CEPH_MSG_CLIENT_CAPS
, sizeof(*fc
), GFP_NOFS
);
950 msg
->hdr
.tid
= cpu_to_le64(flush_tid
);
952 fc
= msg
->front
.iov_base
;
953 memset(fc
, 0, sizeof(*fc
));
955 fc
->cap_id
= cpu_to_le64(cid
);
956 fc
->op
= cpu_to_le32(op
);
957 fc
->seq
= cpu_to_le32(seq
);
958 fc
->issue_seq
= cpu_to_le32(issue_seq
);
959 fc
->migrate_seq
= cpu_to_le32(mseq
);
960 fc
->caps
= cpu_to_le32(caps
);
961 fc
->wanted
= cpu_to_le32(wanted
);
962 fc
->dirty
= cpu_to_le32(dirty
);
963 fc
->ino
= cpu_to_le64(ino
);
964 fc
->snap_follows
= cpu_to_le64(follows
);
966 fc
->size
= cpu_to_le64(size
);
967 fc
->max_size
= cpu_to_le64(max_size
);
969 ceph_encode_timespec(&fc
->mtime
, mtime
);
971 ceph_encode_timespec(&fc
->atime
, atime
);
972 fc
->time_warp_seq
= cpu_to_le32(time_warp_seq
);
974 fc
->uid
= cpu_to_le32(uid
);
975 fc
->gid
= cpu_to_le32(gid
);
976 fc
->mode
= cpu_to_le32(mode
);
978 fc
->xattr_version
= cpu_to_le64(xattr_version
);
980 msg
->middle
= ceph_buffer_get(xattrs_buf
);
981 fc
->xattr_len
= cpu_to_le32(xattrs_buf
->vec
.iov_len
);
982 msg
->hdr
.middle_len
= cpu_to_le32(xattrs_buf
->vec
.iov_len
);
985 ceph_con_send(&session
->s_con
, msg
);
989 static void __queue_cap_release(struct ceph_mds_session
*session
,
990 u64 ino
, u64 cap_id
, u32 migrate_seq
,
993 struct ceph_msg
*msg
;
994 struct ceph_mds_cap_release
*head
;
995 struct ceph_mds_cap_item
*item
;
997 spin_lock(&session
->s_cap_lock
);
998 BUG_ON(!session
->s_num_cap_releases
);
999 msg
= list_first_entry(&session
->s_cap_releases
,
1000 struct ceph_msg
, list_head
);
1002 dout(" adding %llx release to mds%d msg %p (%d left)\n",
1003 ino
, session
->s_mds
, msg
, session
->s_num_cap_releases
);
1005 BUG_ON(msg
->front
.iov_len
+ sizeof(*item
) > PAGE_CACHE_SIZE
);
1006 head
= msg
->front
.iov_base
;
1007 head
->num
= cpu_to_le32(le32_to_cpu(head
->num
) + 1);
1008 item
= msg
->front
.iov_base
+ msg
->front
.iov_len
;
1009 item
->ino
= cpu_to_le64(ino
);
1010 item
->cap_id
= cpu_to_le64(cap_id
);
1011 item
->migrate_seq
= cpu_to_le32(migrate_seq
);
1012 item
->seq
= cpu_to_le32(issue_seq
);
1014 session
->s_num_cap_releases
--;
1016 msg
->front
.iov_len
+= sizeof(*item
);
1017 if (le32_to_cpu(head
->num
) == CEPH_CAPS_PER_RELEASE
) {
1018 dout(" release msg %p full\n", msg
);
1019 list_move_tail(&msg
->list_head
, &session
->s_cap_releases_done
);
1021 dout(" release msg %p at %d/%d (%d)\n", msg
,
1022 (int)le32_to_cpu(head
->num
),
1023 (int)CEPH_CAPS_PER_RELEASE
,
1024 (int)msg
->front
.iov_len
);
1026 spin_unlock(&session
->s_cap_lock
);
1030 * Queue cap releases when an inode is dropped from our cache. Since
1031 * inode is about to be destroyed, there is no need for i_lock.
1033 void ceph_queue_caps_release(struct inode
*inode
)
1035 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1038 p
= rb_first(&ci
->i_caps
);
1040 struct ceph_cap
*cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
1041 struct ceph_mds_session
*session
= cap
->session
;
1043 __queue_cap_release(session
, ceph_ino(inode
), cap
->cap_id
,
1044 cap
->mseq
, cap
->issue_seq
);
1046 __ceph_remove_cap(cap
);
1051 * Send a cap msg on the given inode. Update our caps state, then
1052 * drop i_lock and send the message.
1054 * Make note of max_size reported/requested from mds, revoked caps
1055 * that have now been implemented.
1057 * Make half-hearted attempt ot to invalidate page cache if we are
1058 * dropping RDCACHE. Note that this will leave behind locked pages
1059 * that we'll then need to deal with elsewhere.
1061 * Return non-zero if delayed release, or we experienced an error
1062 * such that the caller should requeue + retry later.
1064 * called with i_lock, then drops it.
1065 * caller should hold snap_rwsem (read), s_mutex.
1067 static int __send_cap(struct ceph_mds_client
*mdsc
, struct ceph_cap
*cap
,
1068 int op
, int used
, int want
, int retain
, int flushing
,
1069 unsigned *pflush_tid
)
1070 __releases(cap
->ci
->vfs_inode
->i_lock
)
1072 struct ceph_inode_info
*ci
= cap
->ci
;
1073 struct inode
*inode
= &ci
->vfs_inode
;
1074 u64 cap_id
= cap
->cap_id
;
1075 int held
, revoking
, dropping
, keep
;
1076 u64 seq
, issue_seq
, mseq
, time_warp_seq
, follows
;
1078 struct timespec mtime
, atime
;
1083 struct ceph_mds_session
*session
;
1084 u64 xattr_version
= 0;
1090 held
= cap
->issued
| cap
->implemented
;
1091 revoking
= cap
->implemented
& ~cap
->issued
;
1092 retain
&= ~revoking
;
1093 dropping
= cap
->issued
& ~retain
;
1095 dout("__send_cap %p cap %p session %p %s -> %s (revoking %s)\n",
1096 inode
, cap
, cap
->session
,
1097 ceph_cap_string(held
), ceph_cap_string(held
& retain
),
1098 ceph_cap_string(revoking
));
1099 BUG_ON((retain
& CEPH_CAP_PIN
) == 0);
1101 session
= cap
->session
;
1103 /* don't release wanted unless we've waited a bit. */
1104 if ((ci
->i_ceph_flags
& CEPH_I_NODELAY
) == 0 &&
1105 time_before(jiffies
, ci
->i_hold_caps_min
)) {
1106 dout(" delaying issued %s -> %s, wanted %s -> %s on send\n",
1107 ceph_cap_string(cap
->issued
),
1108 ceph_cap_string(cap
->issued
& retain
),
1109 ceph_cap_string(cap
->mds_wanted
),
1110 ceph_cap_string(want
));
1111 want
|= cap
->mds_wanted
;
1112 retain
|= cap
->issued
;
1115 ci
->i_ceph_flags
&= ~(CEPH_I_NODELAY
| CEPH_I_FLUSH
);
1117 cap
->issued
&= retain
; /* drop bits we don't want */
1118 if (cap
->implemented
& ~cap
->issued
) {
1120 * Wake up any waiters on wanted -> needed transition.
1121 * This is due to the weird transition from buffered
1122 * to sync IO... we need to flush dirty pages _before_
1123 * allowing sync writes to avoid reordering.
1127 cap
->implemented
&= cap
->issued
| used
;
1128 cap
->mds_wanted
= want
;
1132 * assign a tid for flush operations so we can avoid
1133 * flush1 -> dirty1 -> flush2 -> flushack1 -> mark
1134 * clean type races. track latest tid for every bit
1135 * so we can handle flush AxFw, flush Fw, and have the
1136 * first ack clean Ax.
1138 flush_tid
= ++ci
->i_cap_flush_last_tid
;
1140 *pflush_tid
= flush_tid
;
1141 dout(" cap_flush_tid %d\n", (int)flush_tid
);
1142 for (i
= 0; i
< CEPH_CAP_BITS
; i
++)
1143 if (flushing
& (1 << i
))
1144 ci
->i_cap_flush_tid
[i
] = flush_tid
;
1147 keep
= cap
->implemented
;
1149 issue_seq
= cap
->issue_seq
;
1151 size
= inode
->i_size
;
1152 ci
->i_reported_size
= size
;
1153 max_size
= ci
->i_wanted_max_size
;
1154 ci
->i_requested_max_size
= max_size
;
1155 mtime
= inode
->i_mtime
;
1156 atime
= inode
->i_atime
;
1157 time_warp_seq
= ci
->i_time_warp_seq
;
1158 follows
= ci
->i_snap_realm
->cached_context
->seq
;
1161 mode
= inode
->i_mode
;
1163 if (dropping
& CEPH_CAP_XATTR_EXCL
) {
1164 __ceph_build_xattrs_blob(ci
);
1165 xattr_version
= ci
->i_xattrs
.version
+ 1;
1168 spin_unlock(&inode
->i_lock
);
1170 ret
= send_cap_msg(session
, ceph_vino(inode
).ino
, cap_id
,
1171 op
, keep
, want
, flushing
, seq
, flush_tid
, issue_seq
, mseq
,
1172 size
, max_size
, &mtime
, &atime
, time_warp_seq
,
1175 (flushing
& CEPH_CAP_XATTR_EXCL
) ? ci
->i_xattrs
.blob
: NULL
,
1178 dout("error sending cap msg, must requeue %p\n", inode
);
1183 wake_up_all(&ci
->i_cap_wq
);
1189 * When a snapshot is taken, clients accumulate dirty metadata on
1190 * inodes with capabilities in ceph_cap_snaps to describe the file
1191 * state at the time the snapshot was taken. This must be flushed
1192 * asynchronously back to the MDS once sync writes complete and dirty
1193 * data is written out.
1195 * Called under i_lock. Takes s_mutex as needed.
1197 void __ceph_flush_snaps(struct ceph_inode_info
*ci
,
1198 struct ceph_mds_session
**psession
)
1199 __releases(ci
->vfs_inode
->i_lock
)
1200 __acquires(ci
->vfs_inode
->i_lock
)
1202 struct inode
*inode
= &ci
->vfs_inode
;
1204 struct ceph_cap_snap
*capsnap
;
1206 struct ceph_mds_client
*mdsc
= &ceph_inode_to_client(inode
)->mdsc
;
1207 struct ceph_mds_session
*session
= NULL
; /* if session != NULL, we hold
1209 u64 next_follows
= 0; /* keep track of how far we've gotten through the
1210 i_cap_snaps list, and skip these entries next time
1211 around to avoid an infinite loop */
1214 session
= *psession
;
1216 dout("__flush_snaps %p\n", inode
);
1218 list_for_each_entry(capsnap
, &ci
->i_cap_snaps
, ci_item
) {
1219 /* avoid an infiniute loop after retry */
1220 if (capsnap
->follows
< next_follows
)
1223 * we need to wait for sync writes to complete and for dirty
1224 * pages to be written out.
1226 if (capsnap
->dirty_pages
|| capsnap
->writing
)
1230 * if cap writeback already occurred, we should have dropped
1231 * the capsnap in ceph_put_wrbuffer_cap_refs.
1233 BUG_ON(capsnap
->dirty
== 0);
1235 /* pick mds, take s_mutex */
1236 if (ci
->i_auth_cap
== NULL
) {
1237 dout("no auth cap (migrating?), doing nothing\n");
1240 mds
= ci
->i_auth_cap
->session
->s_mds
;
1241 mseq
= ci
->i_auth_cap
->mseq
;
1243 if (session
&& session
->s_mds
!= mds
) {
1244 dout("oops, wrong session %p mutex\n", session
);
1245 mutex_unlock(&session
->s_mutex
);
1246 ceph_put_mds_session(session
);
1250 spin_unlock(&inode
->i_lock
);
1251 mutex_lock(&mdsc
->mutex
);
1252 session
= __ceph_lookup_mds_session(mdsc
, mds
);
1253 mutex_unlock(&mdsc
->mutex
);
1255 dout("inverting session/ino locks on %p\n",
1257 mutex_lock(&session
->s_mutex
);
1260 * if session == NULL, we raced against a cap
1261 * deletion or migration. retry, and we'll
1262 * get a better @mds value next time.
1264 spin_lock(&inode
->i_lock
);
1268 capsnap
->flush_tid
= ++ci
->i_cap_flush_last_tid
;
1269 atomic_inc(&capsnap
->nref
);
1270 if (!list_empty(&capsnap
->flushing_item
))
1271 list_del_init(&capsnap
->flushing_item
);
1272 list_add_tail(&capsnap
->flushing_item
,
1273 &session
->s_cap_snaps_flushing
);
1274 spin_unlock(&inode
->i_lock
);
1276 dout("flush_snaps %p cap_snap %p follows %lld size %llu\n",
1277 inode
, capsnap
, next_follows
, capsnap
->size
);
1278 send_cap_msg(session
, ceph_vino(inode
).ino
, 0,
1279 CEPH_CAP_OP_FLUSHSNAP
, capsnap
->issued
, 0,
1280 capsnap
->dirty
, 0, capsnap
->flush_tid
, 0, mseq
,
1282 &capsnap
->mtime
, &capsnap
->atime
,
1283 capsnap
->time_warp_seq
,
1284 capsnap
->uid
, capsnap
->gid
, capsnap
->mode
,
1288 next_follows
= capsnap
->follows
+ 1;
1289 ceph_put_cap_snap(capsnap
);
1291 spin_lock(&inode
->i_lock
);
1295 /* we flushed them all; remove this inode from the queue */
1296 spin_lock(&mdsc
->snap_flush_lock
);
1297 list_del_init(&ci
->i_snap_flush_item
);
1298 spin_unlock(&mdsc
->snap_flush_lock
);
1302 *psession
= session
;
1304 mutex_unlock(&session
->s_mutex
);
1305 ceph_put_mds_session(session
);
1309 static void ceph_flush_snaps(struct ceph_inode_info
*ci
)
1311 struct inode
*inode
= &ci
->vfs_inode
;
1313 spin_lock(&inode
->i_lock
);
1314 __ceph_flush_snaps(ci
, NULL
);
1315 spin_unlock(&inode
->i_lock
);
1319 * Mark caps dirty. If inode is newly dirty, add to the global dirty
1322 void __ceph_mark_dirty_caps(struct ceph_inode_info
*ci
, int mask
)
1324 struct ceph_mds_client
*mdsc
=
1325 &ceph_sb_to_client(ci
->vfs_inode
.i_sb
)->mdsc
;
1326 struct inode
*inode
= &ci
->vfs_inode
;
1327 int was
= ci
->i_dirty_caps
;
1330 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci
->vfs_inode
,
1331 ceph_cap_string(mask
), ceph_cap_string(was
),
1332 ceph_cap_string(was
| mask
));
1333 ci
->i_dirty_caps
|= mask
;
1335 dout(" inode %p now dirty\n", &ci
->vfs_inode
);
1336 BUG_ON(!list_empty(&ci
->i_dirty_item
));
1337 spin_lock(&mdsc
->cap_dirty_lock
);
1338 list_add(&ci
->i_dirty_item
, &mdsc
->cap_dirty
);
1339 spin_unlock(&mdsc
->cap_dirty_lock
);
1340 if (ci
->i_flushing_caps
== 0) {
1342 dirty
|= I_DIRTY_SYNC
;
1345 BUG_ON(list_empty(&ci
->i_dirty_item
));
1346 if (((was
| ci
->i_flushing_caps
) & CEPH_CAP_FILE_BUFFER
) &&
1347 (mask
& CEPH_CAP_FILE_BUFFER
))
1348 dirty
|= I_DIRTY_DATASYNC
;
1350 __mark_inode_dirty(inode
, dirty
);
1351 __cap_delay_requeue(mdsc
, ci
);
1355 * Add dirty inode to the flushing list. Assigned a seq number so we
1356 * can wait for caps to flush without starving.
1358 * Called under i_lock.
1360 static int __mark_caps_flushing(struct inode
*inode
,
1361 struct ceph_mds_session
*session
)
1363 struct ceph_mds_client
*mdsc
= &ceph_sb_to_client(inode
->i_sb
)->mdsc
;
1364 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1367 BUG_ON(ci
->i_dirty_caps
== 0);
1368 BUG_ON(list_empty(&ci
->i_dirty_item
));
1370 flushing
= ci
->i_dirty_caps
;
1371 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1372 ceph_cap_string(flushing
),
1373 ceph_cap_string(ci
->i_flushing_caps
),
1374 ceph_cap_string(ci
->i_flushing_caps
| flushing
));
1375 ci
->i_flushing_caps
|= flushing
;
1376 ci
->i_dirty_caps
= 0;
1377 dout(" inode %p now !dirty\n", inode
);
1379 spin_lock(&mdsc
->cap_dirty_lock
);
1380 list_del_init(&ci
->i_dirty_item
);
1382 ci
->i_cap_flush_seq
= ++mdsc
->cap_flush_seq
;
1383 if (list_empty(&ci
->i_flushing_item
)) {
1384 list_add_tail(&ci
->i_flushing_item
, &session
->s_cap_flushing
);
1385 mdsc
->num_cap_flushing
++;
1386 dout(" inode %p now flushing seq %lld\n", inode
,
1387 ci
->i_cap_flush_seq
);
1389 list_move_tail(&ci
->i_flushing_item
, &session
->s_cap_flushing
);
1390 dout(" inode %p now flushing (more) seq %lld\n", inode
,
1391 ci
->i_cap_flush_seq
);
1393 spin_unlock(&mdsc
->cap_dirty_lock
);
1399 * try to invalidate mapping pages without blocking.
1401 static int mapping_is_empty(struct address_space
*mapping
)
1403 struct page
*page
= find_get_page(mapping
, 0);
1412 static int try_nonblocking_invalidate(struct inode
*inode
)
1414 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1415 u32 invalidating_gen
= ci
->i_rdcache_gen
;
1417 spin_unlock(&inode
->i_lock
);
1418 invalidate_mapping_pages(&inode
->i_data
, 0, -1);
1419 spin_lock(&inode
->i_lock
);
1421 if (mapping_is_empty(&inode
->i_data
) &&
1422 invalidating_gen
== ci
->i_rdcache_gen
) {
1424 dout("try_nonblocking_invalidate %p success\n", inode
);
1425 ci
->i_rdcache_gen
= 0;
1426 ci
->i_rdcache_revoking
= 0;
1429 dout("try_nonblocking_invalidate %p failed\n", inode
);
1434 * Swiss army knife function to examine currently used and wanted
1435 * versus held caps. Release, flush, ack revoked caps to mds as
1438 * CHECK_CAPS_NODELAY - caller is delayed work and we should not delay
1439 * cap release further.
1440 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1441 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1444 void ceph_check_caps(struct ceph_inode_info
*ci
, int flags
,
1445 struct ceph_mds_session
*session
)
1447 struct ceph_client
*client
= ceph_inode_to_client(&ci
->vfs_inode
);
1448 struct ceph_mds_client
*mdsc
= &client
->mdsc
;
1449 struct inode
*inode
= &ci
->vfs_inode
;
1450 struct ceph_cap
*cap
;
1451 int file_wanted
, used
;
1452 int took_snap_rwsem
= 0; /* true if mdsc->snap_rwsem held */
1453 int issued
, implemented
, want
, retain
, revoking
, flushing
= 0;
1454 int mds
= -1; /* keep track of how far we've gone through i_caps list
1455 to avoid an infinite loop on retry */
1457 int tried_invalidate
= 0;
1458 int delayed
= 0, sent
= 0, force_requeue
= 0, num
;
1459 int queue_invalidate
= 0;
1460 int is_delayed
= flags
& CHECK_CAPS_NODELAY
;
1462 /* if we are unmounting, flush any unused caps immediately. */
1466 spin_lock(&inode
->i_lock
);
1468 if (ci
->i_ceph_flags
& CEPH_I_FLUSH
)
1469 flags
|= CHECK_CAPS_FLUSH
;
1471 /* flush snaps first time around only */
1472 if (!list_empty(&ci
->i_cap_snaps
))
1473 __ceph_flush_snaps(ci
, &session
);
1476 spin_lock(&inode
->i_lock
);
1478 file_wanted
= __ceph_caps_file_wanted(ci
);
1479 used
= __ceph_caps_used(ci
);
1480 want
= file_wanted
| used
;
1481 issued
= __ceph_caps_issued(ci
, &implemented
);
1482 revoking
= implemented
& ~issued
;
1484 retain
= want
| CEPH_CAP_PIN
;
1485 if (!mdsc
->stopping
&& inode
->i_nlink
> 0) {
1487 retain
|= CEPH_CAP_ANY
; /* be greedy */
1489 retain
|= CEPH_CAP_ANY_SHARED
;
1491 * keep RD only if we didn't have the file open RW,
1492 * because then the mds would revoke it anyway to
1493 * journal max_size=0.
1495 if (ci
->i_max_size
== 0)
1496 retain
|= CEPH_CAP_ANY_RD
;
1500 dout("check_caps %p file_want %s used %s dirty %s flushing %s"
1501 " issued %s revoking %s retain %s %s%s%s\n", inode
,
1502 ceph_cap_string(file_wanted
),
1503 ceph_cap_string(used
), ceph_cap_string(ci
->i_dirty_caps
),
1504 ceph_cap_string(ci
->i_flushing_caps
),
1505 ceph_cap_string(issued
), ceph_cap_string(revoking
),
1506 ceph_cap_string(retain
),
1507 (flags
& CHECK_CAPS_AUTHONLY
) ? " AUTHONLY" : "",
1508 (flags
& CHECK_CAPS_NODELAY
) ? " NODELAY" : "",
1509 (flags
& CHECK_CAPS_FLUSH
) ? " FLUSH" : "");
1512 * If we no longer need to hold onto old our caps, and we may
1513 * have cached pages, but don't want them, then try to invalidate.
1514 * If we fail, it's because pages are locked.... try again later.
1516 if ((!is_delayed
|| mdsc
->stopping
) &&
1517 ci
->i_wrbuffer_ref
== 0 && /* no dirty pages... */
1518 ci
->i_rdcache_gen
&& /* may have cached pages */
1519 (file_wanted
== 0 || /* no open files */
1520 (revoking
& (CEPH_CAP_FILE_CACHE
|
1521 CEPH_CAP_FILE_LAZYIO
))) && /* or revoking cache */
1522 !tried_invalidate
) {
1523 dout("check_caps trying to invalidate on %p\n", inode
);
1524 if (try_nonblocking_invalidate(inode
) < 0) {
1525 if (revoking
& (CEPH_CAP_FILE_CACHE
|
1526 CEPH_CAP_FILE_LAZYIO
)) {
1527 dout("check_caps queuing invalidate\n");
1528 queue_invalidate
= 1;
1529 ci
->i_rdcache_revoking
= ci
->i_rdcache_gen
;
1531 dout("check_caps failed to invalidate pages\n");
1532 /* we failed to invalidate pages. check these
1533 caps again later. */
1535 __cap_set_timeouts(mdsc
, ci
);
1538 tried_invalidate
= 1;
1543 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
1544 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
1547 /* avoid looping forever */
1548 if (mds
>= cap
->mds
||
1549 ((flags
& CHECK_CAPS_AUTHONLY
) && cap
!= ci
->i_auth_cap
))
1552 /* NOTE: no side-effects allowed, until we take s_mutex */
1554 revoking
= cap
->implemented
& ~cap
->issued
;
1556 dout(" mds%d revoking %s\n", cap
->mds
,
1557 ceph_cap_string(revoking
));
1559 if (cap
== ci
->i_auth_cap
&&
1560 (cap
->issued
& CEPH_CAP_FILE_WR
)) {
1561 /* request larger max_size from MDS? */
1562 if (ci
->i_wanted_max_size
> ci
->i_max_size
&&
1563 ci
->i_wanted_max_size
> ci
->i_requested_max_size
) {
1564 dout("requesting new max_size\n");
1568 /* approaching file_max? */
1569 if ((inode
->i_size
<< 1) >= ci
->i_max_size
&&
1570 (ci
->i_reported_size
<< 1) < ci
->i_max_size
) {
1571 dout("i_size approaching max_size\n");
1575 /* flush anything dirty? */
1576 if (cap
== ci
->i_auth_cap
&& (flags
& CHECK_CAPS_FLUSH
) &&
1578 dout("flushing dirty caps\n");
1582 /* completed revocation? going down and there are no caps? */
1583 if (revoking
&& (revoking
& used
) == 0) {
1584 dout("completed revocation of %s\n",
1585 ceph_cap_string(cap
->implemented
& ~cap
->issued
));
1589 /* want more caps from mds? */
1590 if (want
& ~(cap
->mds_wanted
| cap
->issued
))
1593 /* things we might delay */
1594 if ((cap
->issued
& ~retain
) == 0 &&
1595 cap
->mds_wanted
== want
)
1596 continue; /* nope, all good */
1602 if ((ci
->i_ceph_flags
& CEPH_I_NODELAY
) == 0 &&
1603 time_before(jiffies
, ci
->i_hold_caps_max
)) {
1604 dout(" delaying issued %s -> %s, wanted %s -> %s\n",
1605 ceph_cap_string(cap
->issued
),
1606 ceph_cap_string(cap
->issued
& retain
),
1607 ceph_cap_string(cap
->mds_wanted
),
1608 ceph_cap_string(want
));
1614 if (ci
->i_ceph_flags
& CEPH_I_NOFLUSH
) {
1615 dout(" skipping %p I_NOFLUSH set\n", inode
);
1619 if (session
&& session
!= cap
->session
) {
1620 dout("oops, wrong session %p mutex\n", session
);
1621 mutex_unlock(&session
->s_mutex
);
1625 session
= cap
->session
;
1626 if (mutex_trylock(&session
->s_mutex
) == 0) {
1627 dout("inverting session/ino locks on %p\n",
1629 spin_unlock(&inode
->i_lock
);
1630 if (took_snap_rwsem
) {
1631 up_read(&mdsc
->snap_rwsem
);
1632 took_snap_rwsem
= 0;
1634 mutex_lock(&session
->s_mutex
);
1638 /* take snap_rwsem after session mutex */
1639 if (!took_snap_rwsem
) {
1640 if (down_read_trylock(&mdsc
->snap_rwsem
) == 0) {
1641 dout("inverting snap/in locks on %p\n",
1643 spin_unlock(&inode
->i_lock
);
1644 down_read(&mdsc
->snap_rwsem
);
1645 took_snap_rwsem
= 1;
1648 took_snap_rwsem
= 1;
1651 if (cap
== ci
->i_auth_cap
&& ci
->i_dirty_caps
)
1652 flushing
= __mark_caps_flushing(inode
, session
);
1654 mds
= cap
->mds
; /* remember mds, so we don't repeat */
1657 /* __send_cap drops i_lock */
1658 delayed
+= __send_cap(mdsc
, cap
, CEPH_CAP_OP_UPDATE
, used
, want
,
1659 retain
, flushing
, NULL
);
1660 goto retry
; /* retake i_lock and restart our cap scan. */
1664 * Reschedule delayed caps release if we delayed anything,
1667 if (delayed
&& is_delayed
)
1668 force_requeue
= 1; /* __send_cap delayed release; requeue */
1669 if (!delayed
&& !is_delayed
)
1670 __cap_delay_cancel(mdsc
, ci
);
1671 else if (!is_delayed
|| force_requeue
)
1672 __cap_delay_requeue(mdsc
, ci
);
1674 spin_unlock(&inode
->i_lock
);
1676 if (queue_invalidate
)
1677 ceph_queue_invalidate(inode
);
1680 mutex_unlock(&session
->s_mutex
);
1681 if (took_snap_rwsem
)
1682 up_read(&mdsc
->snap_rwsem
);
1686 * Try to flush dirty caps back to the auth mds.
1688 static int try_flush_caps(struct inode
*inode
, struct ceph_mds_session
*session
,
1689 unsigned *flush_tid
)
1691 struct ceph_mds_client
*mdsc
= &ceph_sb_to_client(inode
->i_sb
)->mdsc
;
1692 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1693 int unlock_session
= session
? 0 : 1;
1697 spin_lock(&inode
->i_lock
);
1698 if (ci
->i_ceph_flags
& CEPH_I_NOFLUSH
) {
1699 dout("try_flush_caps skipping %p I_NOFLUSH set\n", inode
);
1702 if (ci
->i_dirty_caps
&& ci
->i_auth_cap
) {
1703 struct ceph_cap
*cap
= ci
->i_auth_cap
;
1704 int used
= __ceph_caps_used(ci
);
1705 int want
= __ceph_caps_wanted(ci
);
1709 spin_unlock(&inode
->i_lock
);
1710 session
= cap
->session
;
1711 mutex_lock(&session
->s_mutex
);
1714 BUG_ON(session
!= cap
->session
);
1715 if (cap
->session
->s_state
< CEPH_MDS_SESSION_OPEN
)
1718 flushing
= __mark_caps_flushing(inode
, session
);
1720 /* __send_cap drops i_lock */
1721 delayed
= __send_cap(mdsc
, cap
, CEPH_CAP_OP_FLUSH
, used
, want
,
1722 cap
->issued
| cap
->implemented
, flushing
,
1727 spin_lock(&inode
->i_lock
);
1728 __cap_delay_requeue(mdsc
, ci
);
1731 spin_unlock(&inode
->i_lock
);
1733 if (session
&& unlock_session
)
1734 mutex_unlock(&session
->s_mutex
);
1739 * Return true if we've flushed caps through the given flush_tid.
1741 static int caps_are_flushed(struct inode
*inode
, unsigned tid
)
1743 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1746 spin_lock(&inode
->i_lock
);
1747 for (i
= 0; i
< CEPH_CAP_BITS
; i
++)
1748 if ((ci
->i_flushing_caps
& (1 << i
)) &&
1749 ci
->i_cap_flush_tid
[i
] <= tid
) {
1750 /* still flushing this bit */
1754 spin_unlock(&inode
->i_lock
);
1759 * Wait on any unsafe replies for the given inode. First wait on the
1760 * newest request, and make that the upper bound. Then, if there are
1761 * more requests, keep waiting on the oldest as long as it is still older
1762 * than the original request.
1764 static void sync_write_wait(struct inode
*inode
)
1766 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1767 struct list_head
*head
= &ci
->i_unsafe_writes
;
1768 struct ceph_osd_request
*req
;
1771 spin_lock(&ci
->i_unsafe_lock
);
1772 if (list_empty(head
))
1775 /* set upper bound as _last_ entry in chain */
1776 req
= list_entry(head
->prev
, struct ceph_osd_request
,
1778 last_tid
= req
->r_tid
;
1781 ceph_osdc_get_request(req
);
1782 spin_unlock(&ci
->i_unsafe_lock
);
1783 dout("sync_write_wait on tid %llu (until %llu)\n",
1784 req
->r_tid
, last_tid
);
1785 wait_for_completion(&req
->r_safe_completion
);
1786 spin_lock(&ci
->i_unsafe_lock
);
1787 ceph_osdc_put_request(req
);
1790 * from here on look at first entry in chain, since we
1791 * only want to wait for anything older than last_tid
1793 if (list_empty(head
))
1795 req
= list_entry(head
->next
, struct ceph_osd_request
,
1797 } while (req
->r_tid
< last_tid
);
1799 spin_unlock(&ci
->i_unsafe_lock
);
1802 int ceph_fsync(struct file
*file
, int datasync
)
1804 struct inode
*inode
= file
->f_mapping
->host
;
1805 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1810 dout("fsync %p%s\n", inode
, datasync
? " datasync" : "");
1811 sync_write_wait(inode
);
1813 ret
= filemap_write_and_wait(inode
->i_mapping
);
1817 dirty
= try_flush_caps(inode
, NULL
, &flush_tid
);
1818 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty
));
1821 * only wait on non-file metadata writeback (the mds
1822 * can recover size and mtime, so we don't need to
1825 if (!datasync
&& (dirty
& ~CEPH_CAP_ANY_FILE_WR
)) {
1826 dout("fsync waiting for flush_tid %u\n", flush_tid
);
1827 ret
= wait_event_interruptible(ci
->i_cap_wq
,
1828 caps_are_flushed(inode
, flush_tid
));
1831 dout("fsync %p%s done\n", inode
, datasync
? " datasync" : "");
1836 * Flush any dirty caps back to the mds. If we aren't asked to wait,
1837 * queue inode for flush but don't do so immediately, because we can
1838 * get by with fewer MDS messages if we wait for data writeback to
1841 int ceph_write_inode(struct inode
*inode
, struct writeback_control
*wbc
)
1843 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1847 int wait
= wbc
->sync_mode
== WB_SYNC_ALL
;
1849 dout("write_inode %p wait=%d\n", inode
, wait
);
1851 dirty
= try_flush_caps(inode
, NULL
, &flush_tid
);
1853 err
= wait_event_interruptible(ci
->i_cap_wq
,
1854 caps_are_flushed(inode
, flush_tid
));
1856 struct ceph_mds_client
*mdsc
=
1857 &ceph_sb_to_client(inode
->i_sb
)->mdsc
;
1859 spin_lock(&inode
->i_lock
);
1860 if (__ceph_caps_dirty(ci
))
1861 __cap_delay_requeue_front(mdsc
, ci
);
1862 spin_unlock(&inode
->i_lock
);
1868 * After a recovering MDS goes active, we need to resend any caps
1871 * Caller holds session->s_mutex.
1873 static void kick_flushing_capsnaps(struct ceph_mds_client
*mdsc
,
1874 struct ceph_mds_session
*session
)
1876 struct ceph_cap_snap
*capsnap
;
1878 dout("kick_flushing_capsnaps mds%d\n", session
->s_mds
);
1879 list_for_each_entry(capsnap
, &session
->s_cap_snaps_flushing
,
1881 struct ceph_inode_info
*ci
= capsnap
->ci
;
1882 struct inode
*inode
= &ci
->vfs_inode
;
1883 struct ceph_cap
*cap
;
1885 spin_lock(&inode
->i_lock
);
1886 cap
= ci
->i_auth_cap
;
1887 if (cap
&& cap
->session
== session
) {
1888 dout("kick_flushing_caps %p cap %p capsnap %p\n", inode
,
1890 __ceph_flush_snaps(ci
, &session
);
1892 pr_err("%p auth cap %p not mds%d ???\n", inode
,
1893 cap
, session
->s_mds
);
1895 spin_unlock(&inode
->i_lock
);
1899 void ceph_kick_flushing_caps(struct ceph_mds_client
*mdsc
,
1900 struct ceph_mds_session
*session
)
1902 struct ceph_inode_info
*ci
;
1904 kick_flushing_capsnaps(mdsc
, session
);
1906 dout("kick_flushing_caps mds%d\n", session
->s_mds
);
1907 list_for_each_entry(ci
, &session
->s_cap_flushing
, i_flushing_item
) {
1908 struct inode
*inode
= &ci
->vfs_inode
;
1909 struct ceph_cap
*cap
;
1912 spin_lock(&inode
->i_lock
);
1913 cap
= ci
->i_auth_cap
;
1914 if (cap
&& cap
->session
== session
) {
1915 dout("kick_flushing_caps %p cap %p %s\n", inode
,
1916 cap
, ceph_cap_string(ci
->i_flushing_caps
));
1917 delayed
= __send_cap(mdsc
, cap
, CEPH_CAP_OP_FLUSH
,
1918 __ceph_caps_used(ci
),
1919 __ceph_caps_wanted(ci
),
1920 cap
->issued
| cap
->implemented
,
1921 ci
->i_flushing_caps
, NULL
);
1923 spin_lock(&inode
->i_lock
);
1924 __cap_delay_requeue(mdsc
, ci
);
1925 spin_unlock(&inode
->i_lock
);
1928 pr_err("%p auth cap %p not mds%d ???\n", inode
,
1929 cap
, session
->s_mds
);
1930 spin_unlock(&inode
->i_lock
);
1937 * Take references to capabilities we hold, so that we don't release
1938 * them to the MDS prematurely.
1940 * Protected by i_lock.
1942 static void __take_cap_refs(struct ceph_inode_info
*ci
, int got
)
1944 if (got
& CEPH_CAP_PIN
)
1946 if (got
& CEPH_CAP_FILE_RD
)
1948 if (got
& CEPH_CAP_FILE_CACHE
)
1949 ci
->i_rdcache_ref
++;
1950 if (got
& CEPH_CAP_FILE_WR
)
1952 if (got
& CEPH_CAP_FILE_BUFFER
) {
1953 if (ci
->i_wrbuffer_ref
== 0)
1954 igrab(&ci
->vfs_inode
);
1955 ci
->i_wrbuffer_ref
++;
1956 dout("__take_cap_refs %p wrbuffer %d -> %d (?)\n",
1957 &ci
->vfs_inode
, ci
->i_wrbuffer_ref
-1, ci
->i_wrbuffer_ref
);
1962 * Try to grab cap references. Specify those refs we @want, and the
1963 * minimal set we @need. Also include the larger offset we are writing
1964 * to (when applicable), and check against max_size here as well.
1965 * Note that caller is responsible for ensuring max_size increases are
1966 * requested from the MDS.
1968 static int try_get_cap_refs(struct ceph_inode_info
*ci
, int need
, int want
,
1969 int *got
, loff_t endoff
, int *check_max
, int *err
)
1971 struct inode
*inode
= &ci
->vfs_inode
;
1973 int have
, implemented
;
1976 dout("get_cap_refs %p need %s want %s\n", inode
,
1977 ceph_cap_string(need
), ceph_cap_string(want
));
1978 spin_lock(&inode
->i_lock
);
1980 /* make sure file is actually open */
1981 file_wanted
= __ceph_caps_file_wanted(ci
);
1982 if ((file_wanted
& need
) == 0) {
1983 dout("try_get_cap_refs need %s file_wanted %s, EBADF\n",
1984 ceph_cap_string(need
), ceph_cap_string(file_wanted
));
1990 if (need
& CEPH_CAP_FILE_WR
) {
1991 if (endoff
>= 0 && endoff
> (loff_t
)ci
->i_max_size
) {
1992 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
1993 inode
, endoff
, ci
->i_max_size
);
1994 if (endoff
> ci
->i_wanted_max_size
) {
2001 * If a sync write is in progress, we must wait, so that we
2002 * can get a final snapshot value for size+mtime.
2004 if (__ceph_have_pending_cap_snap(ci
)) {
2005 dout("get_cap_refs %p cap_snap_pending\n", inode
);
2009 have
= __ceph_caps_issued(ci
, &implemented
);
2012 * disallow writes while a truncate is pending
2014 if (ci
->i_truncate_pending
)
2015 have
&= ~CEPH_CAP_FILE_WR
;
2017 if ((have
& need
) == need
) {
2019 * Look at (implemented & ~have & not) so that we keep waiting
2020 * on transition from wanted -> needed caps. This is needed
2021 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2022 * going before a prior buffered writeback happens.
2024 int not = want
& ~(have
& need
);
2025 int revoking
= implemented
& ~have
;
2026 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2027 inode
, ceph_cap_string(have
), ceph_cap_string(not),
2028 ceph_cap_string(revoking
));
2029 if ((revoking
& not) == 0) {
2030 *got
= need
| (have
& want
);
2031 __take_cap_refs(ci
, *got
);
2035 dout("get_cap_refs %p have %s needed %s\n", inode
,
2036 ceph_cap_string(have
), ceph_cap_string(need
));
2039 spin_unlock(&inode
->i_lock
);
2040 dout("get_cap_refs %p ret %d got %s\n", inode
,
2041 ret
, ceph_cap_string(*got
));
2046 * Check the offset we are writing up to against our current
2047 * max_size. If necessary, tell the MDS we want to write to
2050 static void check_max_size(struct inode
*inode
, loff_t endoff
)
2052 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2055 /* do we need to explicitly request a larger max_size? */
2056 spin_lock(&inode
->i_lock
);
2057 if ((endoff
>= ci
->i_max_size
||
2058 endoff
> (inode
->i_size
<< 1)) &&
2059 endoff
> ci
->i_wanted_max_size
) {
2060 dout("write %p at large endoff %llu, req max_size\n",
2062 ci
->i_wanted_max_size
= endoff
;
2065 spin_unlock(&inode
->i_lock
);
2067 ceph_check_caps(ci
, CHECK_CAPS_AUTHONLY
, NULL
);
2071 * Wait for caps, and take cap references. If we can't get a WR cap
2072 * due to a small max_size, make sure we check_max_size (and possibly
2073 * ask the mds) so we don't get hung up indefinitely.
2075 int ceph_get_caps(struct ceph_inode_info
*ci
, int need
, int want
, int *got
,
2078 int check_max
, ret
, err
;
2082 check_max_size(&ci
->vfs_inode
, endoff
);
2085 ret
= wait_event_interruptible(ci
->i_cap_wq
,
2086 try_get_cap_refs(ci
, need
, want
,
2097 * Take cap refs. Caller must already know we hold at least one ref
2098 * on the caps in question or we don't know this is safe.
2100 void ceph_get_cap_refs(struct ceph_inode_info
*ci
, int caps
)
2102 spin_lock(&ci
->vfs_inode
.i_lock
);
2103 __take_cap_refs(ci
, caps
);
2104 spin_unlock(&ci
->vfs_inode
.i_lock
);
2110 * If we released the last ref on any given cap, call ceph_check_caps
2111 * to release (or schedule a release).
2113 * If we are releasing a WR cap (from a sync write), finalize any affected
2114 * cap_snap, and wake up any waiters.
2116 void ceph_put_cap_refs(struct ceph_inode_info
*ci
, int had
)
2118 struct inode
*inode
= &ci
->vfs_inode
;
2119 int last
= 0, put
= 0, flushsnaps
= 0, wake
= 0;
2120 struct ceph_cap_snap
*capsnap
;
2122 spin_lock(&inode
->i_lock
);
2123 if (had
& CEPH_CAP_PIN
)
2125 if (had
& CEPH_CAP_FILE_RD
)
2126 if (--ci
->i_rd_ref
== 0)
2128 if (had
& CEPH_CAP_FILE_CACHE
)
2129 if (--ci
->i_rdcache_ref
== 0)
2131 if (had
& CEPH_CAP_FILE_BUFFER
) {
2132 if (--ci
->i_wrbuffer_ref
== 0) {
2136 dout("put_cap_refs %p wrbuffer %d -> %d (?)\n",
2137 inode
, ci
->i_wrbuffer_ref
+1, ci
->i_wrbuffer_ref
);
2139 if (had
& CEPH_CAP_FILE_WR
)
2140 if (--ci
->i_wr_ref
== 0) {
2142 if (!list_empty(&ci
->i_cap_snaps
)) {
2143 capsnap
= list_first_entry(&ci
->i_cap_snaps
,
2144 struct ceph_cap_snap
,
2146 if (capsnap
->writing
) {
2147 capsnap
->writing
= 0;
2149 __ceph_finish_cap_snap(ci
,
2155 spin_unlock(&inode
->i_lock
);
2157 dout("put_cap_refs %p had %s%s%s\n", inode
, ceph_cap_string(had
),
2158 last
? " last" : "", put
? " put" : "");
2160 if (last
&& !flushsnaps
)
2161 ceph_check_caps(ci
, 0, NULL
);
2162 else if (flushsnaps
)
2163 ceph_flush_snaps(ci
);
2165 wake_up_all(&ci
->i_cap_wq
);
2171 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
2172 * context. Adjust per-snap dirty page accounting as appropriate.
2173 * Once all dirty data for a cap_snap is flushed, flush snapped file
2174 * metadata back to the MDS. If we dropped the last ref, call
2177 void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info
*ci
, int nr
,
2178 struct ceph_snap_context
*snapc
)
2180 struct inode
*inode
= &ci
->vfs_inode
;
2182 int complete_capsnap
= 0;
2183 int drop_capsnap
= 0;
2185 struct ceph_cap_snap
*capsnap
= NULL
;
2187 spin_lock(&inode
->i_lock
);
2188 ci
->i_wrbuffer_ref
-= nr
;
2189 last
= !ci
->i_wrbuffer_ref
;
2191 if (ci
->i_head_snapc
== snapc
) {
2192 ci
->i_wrbuffer_ref_head
-= nr
;
2193 if (!ci
->i_wrbuffer_ref_head
) {
2194 ceph_put_snap_context(ci
->i_head_snapc
);
2195 ci
->i_head_snapc
= NULL
;
2197 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
2199 ci
->i_wrbuffer_ref
+nr
, ci
->i_wrbuffer_ref_head
+nr
,
2200 ci
->i_wrbuffer_ref
, ci
->i_wrbuffer_ref_head
,
2201 last
? " LAST" : "");
2203 list_for_each_entry(capsnap
, &ci
->i_cap_snaps
, ci_item
) {
2204 if (capsnap
->context
== snapc
) {
2210 capsnap
->dirty_pages
-= nr
;
2211 if (capsnap
->dirty_pages
== 0) {
2212 complete_capsnap
= 1;
2213 if (capsnap
->dirty
== 0)
2214 /* cap writeback completed before we created
2215 * the cap_snap; no FLUSHSNAP is needed */
2218 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
2219 " snap %lld %d/%d -> %d/%d %s%s%s\n",
2220 inode
, capsnap
, capsnap
->context
->seq
,
2221 ci
->i_wrbuffer_ref
+nr
, capsnap
->dirty_pages
+ nr
,
2222 ci
->i_wrbuffer_ref
, capsnap
->dirty_pages
,
2223 last
? " (wrbuffer last)" : "",
2224 complete_capsnap
? " (complete capsnap)" : "",
2225 drop_capsnap
? " (drop capsnap)" : "");
2227 ceph_put_snap_context(capsnap
->context
);
2228 list_del(&capsnap
->ci_item
);
2229 list_del(&capsnap
->flushing_item
);
2230 ceph_put_cap_snap(capsnap
);
2234 spin_unlock(&inode
->i_lock
);
2237 ceph_check_caps(ci
, CHECK_CAPS_AUTHONLY
, NULL
);
2239 } else if (complete_capsnap
) {
2240 ceph_flush_snaps(ci
);
2241 wake_up_all(&ci
->i_cap_wq
);
2248 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
2249 * actually be a revocation if it specifies a smaller cap set.)
2251 * caller holds s_mutex and i_lock, we drop both.
2255 * 1 - check_caps on auth cap only (writeback)
2256 * 2 - check_caps (ack revoke)
2258 static void handle_cap_grant(struct inode
*inode
, struct ceph_mds_caps
*grant
,
2259 struct ceph_mds_session
*session
,
2260 struct ceph_cap
*cap
,
2261 struct ceph_buffer
*xattr_buf
)
2262 __releases(inode
->i_lock
)
2264 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2265 int mds
= session
->s_mds
;
2266 int seq
= le32_to_cpu(grant
->seq
);
2267 int newcaps
= le32_to_cpu(grant
->caps
);
2268 int issued
, implemented
, used
, wanted
, dirty
;
2269 u64 size
= le64_to_cpu(grant
->size
);
2270 u64 max_size
= le64_to_cpu(grant
->max_size
);
2271 struct timespec mtime
, atime
, ctime
;
2275 int revoked_rdcache
= 0;
2276 int queue_invalidate
= 0;
2278 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
2279 inode
, cap
, mds
, seq
, ceph_cap_string(newcaps
));
2280 dout(" size %llu max_size %llu, i_size %llu\n", size
, max_size
,
2284 * If CACHE is being revoked, and we have no dirty buffers,
2285 * try to invalidate (once). (If there are dirty buffers, we
2286 * will invalidate _after_ writeback.)
2288 if (((cap
->issued
& ~newcaps
) & CEPH_CAP_FILE_CACHE
) &&
2289 (newcaps
& CEPH_CAP_FILE_LAZYIO
) == 0 &&
2290 !ci
->i_wrbuffer_ref
) {
2291 if (try_nonblocking_invalidate(inode
) == 0) {
2292 revoked_rdcache
= 1;
2294 /* there were locked pages.. invalidate later
2295 in a separate thread. */
2296 if (ci
->i_rdcache_revoking
!= ci
->i_rdcache_gen
) {
2297 queue_invalidate
= 1;
2298 ci
->i_rdcache_revoking
= ci
->i_rdcache_gen
;
2303 /* side effects now are allowed */
2305 issued
= __ceph_caps_issued(ci
, &implemented
);
2306 issued
|= implemented
| __ceph_caps_dirty(ci
);
2308 cap
->cap_gen
= session
->s_cap_gen
;
2310 __check_cap_issue(ci
, cap
, newcaps
);
2312 if ((issued
& CEPH_CAP_AUTH_EXCL
) == 0) {
2313 inode
->i_mode
= le32_to_cpu(grant
->mode
);
2314 inode
->i_uid
= le32_to_cpu(grant
->uid
);
2315 inode
->i_gid
= le32_to_cpu(grant
->gid
);
2316 dout("%p mode 0%o uid.gid %d.%d\n", inode
, inode
->i_mode
,
2317 inode
->i_uid
, inode
->i_gid
);
2320 if ((issued
& CEPH_CAP_LINK_EXCL
) == 0)
2321 inode
->i_nlink
= le32_to_cpu(grant
->nlink
);
2323 if ((issued
& CEPH_CAP_XATTR_EXCL
) == 0 && grant
->xattr_len
) {
2324 int len
= le32_to_cpu(grant
->xattr_len
);
2325 u64 version
= le64_to_cpu(grant
->xattr_version
);
2327 if (version
> ci
->i_xattrs
.version
) {
2328 dout(" got new xattrs v%llu on %p len %d\n",
2329 version
, inode
, len
);
2330 if (ci
->i_xattrs
.blob
)
2331 ceph_buffer_put(ci
->i_xattrs
.blob
);
2332 ci
->i_xattrs
.blob
= ceph_buffer_get(xattr_buf
);
2333 ci
->i_xattrs
.version
= version
;
2337 /* size/ctime/mtime/atime? */
2338 ceph_fill_file_size(inode
, issued
,
2339 le32_to_cpu(grant
->truncate_seq
),
2340 le64_to_cpu(grant
->truncate_size
), size
);
2341 ceph_decode_timespec(&mtime
, &grant
->mtime
);
2342 ceph_decode_timespec(&atime
, &grant
->atime
);
2343 ceph_decode_timespec(&ctime
, &grant
->ctime
);
2344 ceph_fill_file_time(inode
, issued
,
2345 le32_to_cpu(grant
->time_warp_seq
), &ctime
, &mtime
,
2348 /* max size increase? */
2349 if (max_size
!= ci
->i_max_size
) {
2350 dout("max_size %lld -> %llu\n", ci
->i_max_size
, max_size
);
2351 ci
->i_max_size
= max_size
;
2352 if (max_size
>= ci
->i_wanted_max_size
) {
2353 ci
->i_wanted_max_size
= 0; /* reset */
2354 ci
->i_requested_max_size
= 0;
2359 /* check cap bits */
2360 wanted
= __ceph_caps_wanted(ci
);
2361 used
= __ceph_caps_used(ci
);
2362 dirty
= __ceph_caps_dirty(ci
);
2363 dout(" my wanted = %s, used = %s, dirty %s\n",
2364 ceph_cap_string(wanted
),
2365 ceph_cap_string(used
),
2366 ceph_cap_string(dirty
));
2367 if (wanted
!= le32_to_cpu(grant
->wanted
)) {
2368 dout("mds wanted %s -> %s\n",
2369 ceph_cap_string(le32_to_cpu(grant
->wanted
)),
2370 ceph_cap_string(wanted
));
2371 grant
->wanted
= cpu_to_le32(wanted
);
2376 /* file layout may have changed */
2377 ci
->i_layout
= grant
->layout
;
2379 /* revocation, grant, or no-op? */
2380 if (cap
->issued
& ~newcaps
) {
2381 int revoking
= cap
->issued
& ~newcaps
;
2383 dout("revocation: %s -> %s (revoking %s)\n",
2384 ceph_cap_string(cap
->issued
),
2385 ceph_cap_string(newcaps
),
2386 ceph_cap_string(revoking
));
2387 if (revoking
& used
& CEPH_CAP_FILE_BUFFER
)
2388 writeback
= 1; /* initiate writeback; will delay ack */
2389 else if (revoking
== CEPH_CAP_FILE_CACHE
&&
2390 (newcaps
& CEPH_CAP_FILE_LAZYIO
) == 0 &&
2392 ; /* do nothing yet, invalidation will be queued */
2393 else if (cap
== ci
->i_auth_cap
)
2394 check_caps
= 1; /* check auth cap only */
2396 check_caps
= 2; /* check all caps */
2397 cap
->issued
= newcaps
;
2398 cap
->implemented
|= newcaps
;
2399 } else if (cap
->issued
== newcaps
) {
2400 dout("caps unchanged: %s -> %s\n",
2401 ceph_cap_string(cap
->issued
), ceph_cap_string(newcaps
));
2403 dout("grant: %s -> %s\n", ceph_cap_string(cap
->issued
),
2404 ceph_cap_string(newcaps
));
2405 cap
->issued
= newcaps
;
2406 cap
->implemented
|= newcaps
; /* add bits only, to
2407 * avoid stepping on a
2408 * pending revocation */
2411 BUG_ON(cap
->issued
& ~cap
->implemented
);
2413 spin_unlock(&inode
->i_lock
);
2416 * queue inode for writeback: we can't actually call
2417 * filemap_write_and_wait, etc. from message handler
2420 ceph_queue_writeback(inode
);
2421 if (queue_invalidate
)
2422 ceph_queue_invalidate(inode
);
2424 wake_up_all(&ci
->i_cap_wq
);
2426 if (check_caps
== 1)
2427 ceph_check_caps(ci
, CHECK_CAPS_NODELAY
|CHECK_CAPS_AUTHONLY
,
2429 else if (check_caps
== 2)
2430 ceph_check_caps(ci
, CHECK_CAPS_NODELAY
, session
);
2432 mutex_unlock(&session
->s_mutex
);
2436 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
2437 * MDS has been safely committed.
2439 static void handle_cap_flush_ack(struct inode
*inode
, u64 flush_tid
,
2440 struct ceph_mds_caps
*m
,
2441 struct ceph_mds_session
*session
,
2442 struct ceph_cap
*cap
)
2443 __releases(inode
->i_lock
)
2445 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2446 struct ceph_mds_client
*mdsc
= &ceph_sb_to_client(inode
->i_sb
)->mdsc
;
2447 unsigned seq
= le32_to_cpu(m
->seq
);
2448 int dirty
= le32_to_cpu(m
->dirty
);
2453 for (i
= 0; i
< CEPH_CAP_BITS
; i
++)
2454 if ((dirty
& (1 << i
)) &&
2455 flush_tid
== ci
->i_cap_flush_tid
[i
])
2458 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
2459 " flushing %s -> %s\n",
2460 inode
, session
->s_mds
, seq
, ceph_cap_string(dirty
),
2461 ceph_cap_string(cleaned
), ceph_cap_string(ci
->i_flushing_caps
),
2462 ceph_cap_string(ci
->i_flushing_caps
& ~cleaned
));
2464 if (ci
->i_flushing_caps
== (ci
->i_flushing_caps
& ~cleaned
))
2467 ci
->i_flushing_caps
&= ~cleaned
;
2469 spin_lock(&mdsc
->cap_dirty_lock
);
2470 if (ci
->i_flushing_caps
== 0) {
2471 list_del_init(&ci
->i_flushing_item
);
2472 if (!list_empty(&session
->s_cap_flushing
))
2473 dout(" mds%d still flushing cap on %p\n",
2475 &list_entry(session
->s_cap_flushing
.next
,
2476 struct ceph_inode_info
,
2477 i_flushing_item
)->vfs_inode
);
2478 mdsc
->num_cap_flushing
--;
2479 wake_up_all(&mdsc
->cap_flushing_wq
);
2480 dout(" inode %p now !flushing\n", inode
);
2482 if (ci
->i_dirty_caps
== 0) {
2483 dout(" inode %p now clean\n", inode
);
2484 BUG_ON(!list_empty(&ci
->i_dirty_item
));
2487 BUG_ON(list_empty(&ci
->i_dirty_item
));
2490 spin_unlock(&mdsc
->cap_dirty_lock
);
2491 wake_up_all(&ci
->i_cap_wq
);
2494 spin_unlock(&inode
->i_lock
);
2500 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
2501 * throw away our cap_snap.
2503 * Caller hold s_mutex.
2505 static void handle_cap_flushsnap_ack(struct inode
*inode
, u64 flush_tid
,
2506 struct ceph_mds_caps
*m
,
2507 struct ceph_mds_session
*session
)
2509 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2510 u64 follows
= le64_to_cpu(m
->snap_follows
);
2511 struct ceph_cap_snap
*capsnap
;
2514 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
2515 inode
, ci
, session
->s_mds
, follows
);
2517 spin_lock(&inode
->i_lock
);
2518 list_for_each_entry(capsnap
, &ci
->i_cap_snaps
, ci_item
) {
2519 if (capsnap
->follows
== follows
) {
2520 if (capsnap
->flush_tid
!= flush_tid
) {
2521 dout(" cap_snap %p follows %lld tid %lld !="
2522 " %lld\n", capsnap
, follows
,
2523 flush_tid
, capsnap
->flush_tid
);
2526 WARN_ON(capsnap
->dirty_pages
|| capsnap
->writing
);
2527 dout(" removing %p cap_snap %p follows %lld\n",
2528 inode
, capsnap
, follows
);
2529 ceph_put_snap_context(capsnap
->context
);
2530 list_del(&capsnap
->ci_item
);
2531 list_del(&capsnap
->flushing_item
);
2532 ceph_put_cap_snap(capsnap
);
2536 dout(" skipping cap_snap %p follows %lld\n",
2537 capsnap
, capsnap
->follows
);
2540 spin_unlock(&inode
->i_lock
);
2546 * Handle TRUNC from MDS, indicating file truncation.
2548 * caller hold s_mutex.
2550 static void handle_cap_trunc(struct inode
*inode
,
2551 struct ceph_mds_caps
*trunc
,
2552 struct ceph_mds_session
*session
)
2553 __releases(inode
->i_lock
)
2555 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2556 int mds
= session
->s_mds
;
2557 int seq
= le32_to_cpu(trunc
->seq
);
2558 u32 truncate_seq
= le32_to_cpu(trunc
->truncate_seq
);
2559 u64 truncate_size
= le64_to_cpu(trunc
->truncate_size
);
2560 u64 size
= le64_to_cpu(trunc
->size
);
2561 int implemented
= 0;
2562 int dirty
= __ceph_caps_dirty(ci
);
2563 int issued
= __ceph_caps_issued(ceph_inode(inode
), &implemented
);
2564 int queue_trunc
= 0;
2566 issued
|= implemented
| dirty
;
2568 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
2569 inode
, mds
, seq
, truncate_size
, truncate_seq
);
2570 queue_trunc
= ceph_fill_file_size(inode
, issued
,
2571 truncate_seq
, truncate_size
, size
);
2572 spin_unlock(&inode
->i_lock
);
2575 ceph_queue_vmtruncate(inode
);
2579 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
2580 * different one. If we are the most recent migration we've seen (as
2581 * indicated by mseq), make note of the migrating cap bits for the
2582 * duration (until we see the corresponding IMPORT).
2584 * caller holds s_mutex
2586 static void handle_cap_export(struct inode
*inode
, struct ceph_mds_caps
*ex
,
2587 struct ceph_mds_session
*session
,
2588 int *open_target_sessions
)
2590 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2591 int mds
= session
->s_mds
;
2592 unsigned mseq
= le32_to_cpu(ex
->migrate_seq
);
2593 struct ceph_cap
*cap
= NULL
, *t
;
2597 dout("handle_cap_export inode %p ci %p mds%d mseq %d\n",
2598 inode
, ci
, mds
, mseq
);
2600 spin_lock(&inode
->i_lock
);
2602 /* make sure we haven't seen a higher mseq */
2603 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
2604 t
= rb_entry(p
, struct ceph_cap
, ci_node
);
2605 if (ceph_seq_cmp(t
->mseq
, mseq
) > 0) {
2606 dout(" higher mseq on cap from mds%d\n",
2610 if (t
->session
->s_mds
== mds
)
2617 ci
->i_cap_exporting_mds
= mds
;
2618 ci
->i_cap_exporting_mseq
= mseq
;
2619 ci
->i_cap_exporting_issued
= cap
->issued
;
2622 * make sure we have open sessions with all possible
2623 * export targets, so that we get the matching IMPORT
2625 *open_target_sessions
= 1;
2627 __ceph_remove_cap(cap
);
2629 /* else, we already released it */
2631 spin_unlock(&inode
->i_lock
);
2635 * Handle cap IMPORT. If there are temp bits from an older EXPORT,
2638 * caller holds s_mutex.
2640 static void handle_cap_import(struct ceph_mds_client
*mdsc
,
2641 struct inode
*inode
, struct ceph_mds_caps
*im
,
2642 struct ceph_mds_session
*session
,
2643 void *snaptrace
, int snaptrace_len
)
2645 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2646 int mds
= session
->s_mds
;
2647 unsigned issued
= le32_to_cpu(im
->caps
);
2648 unsigned wanted
= le32_to_cpu(im
->wanted
);
2649 unsigned seq
= le32_to_cpu(im
->seq
);
2650 unsigned mseq
= le32_to_cpu(im
->migrate_seq
);
2651 u64 realmino
= le64_to_cpu(im
->realm
);
2652 u64 cap_id
= le64_to_cpu(im
->cap_id
);
2654 if (ci
->i_cap_exporting_mds
>= 0 &&
2655 ceph_seq_cmp(ci
->i_cap_exporting_mseq
, mseq
) < 0) {
2656 dout("handle_cap_import inode %p ci %p mds%d mseq %d"
2657 " - cleared exporting from mds%d\n",
2658 inode
, ci
, mds
, mseq
,
2659 ci
->i_cap_exporting_mds
);
2660 ci
->i_cap_exporting_issued
= 0;
2661 ci
->i_cap_exporting_mseq
= 0;
2662 ci
->i_cap_exporting_mds
= -1;
2664 dout("handle_cap_import inode %p ci %p mds%d mseq %d\n",
2665 inode
, ci
, mds
, mseq
);
2668 down_write(&mdsc
->snap_rwsem
);
2669 ceph_update_snap_trace(mdsc
, snaptrace
, snaptrace
+snaptrace_len
,
2671 downgrade_write(&mdsc
->snap_rwsem
);
2672 ceph_add_cap(inode
, session
, cap_id
, -1,
2673 issued
, wanted
, seq
, mseq
, realmino
, CEPH_CAP_FLAG_AUTH
,
2674 NULL
/* no caps context */);
2675 try_flush_caps(inode
, session
, NULL
);
2676 up_read(&mdsc
->snap_rwsem
);
2680 * Handle a caps message from the MDS.
2682 * Identify the appropriate session, inode, and call the right handler
2683 * based on the cap op.
2685 void ceph_handle_caps(struct ceph_mds_session
*session
,
2686 struct ceph_msg
*msg
)
2688 struct ceph_mds_client
*mdsc
= session
->s_mdsc
;
2689 struct super_block
*sb
= mdsc
->client
->sb
;
2690 struct inode
*inode
;
2691 struct ceph_cap
*cap
;
2692 struct ceph_mds_caps
*h
;
2693 int mds
= session
->s_mds
;
2696 struct ceph_vino vino
;
2701 size_t snaptrace_len
;
2704 int open_target_sessions
= 0;
2706 dout("handle_caps from mds%d\n", mds
);
2709 tid
= le64_to_cpu(msg
->hdr
.tid
);
2710 if (msg
->front
.iov_len
< sizeof(*h
))
2712 h
= msg
->front
.iov_base
;
2713 op
= le32_to_cpu(h
->op
);
2714 vino
.ino
= le64_to_cpu(h
->ino
);
2715 vino
.snap
= CEPH_NOSNAP
;
2716 cap_id
= le64_to_cpu(h
->cap_id
);
2717 seq
= le32_to_cpu(h
->seq
);
2718 mseq
= le32_to_cpu(h
->migrate_seq
);
2719 size
= le64_to_cpu(h
->size
);
2720 max_size
= le64_to_cpu(h
->max_size
);
2723 snaptrace_len
= le32_to_cpu(h
->snap_trace_len
);
2725 if (le16_to_cpu(msg
->hdr
.version
) >= 2) {
2728 p
= snaptrace
+ snaptrace_len
;
2729 end
= msg
->front
.iov_base
+ msg
->front
.iov_len
;
2730 ceph_decode_32_safe(&p
, end
, flock_len
, bad
);
2737 mutex_lock(&session
->s_mutex
);
2739 dout(" mds%d seq %lld cap seq %u\n", session
->s_mds
, session
->s_seq
,
2743 inode
= ceph_find_inode(sb
, vino
);
2744 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op
), vino
.ino
,
2747 dout(" i don't have ino %llx\n", vino
.ino
);
2749 if (op
== CEPH_CAP_OP_IMPORT
)
2750 __queue_cap_release(session
, vino
.ino
, cap_id
,
2754 * send any full release message to try to move things
2755 * along for the mds (who clearly thinks we still have this
2758 ceph_add_cap_releases(mdsc
, session
);
2759 ceph_send_cap_releases(mdsc
, session
);
2763 /* these will work even if we don't have a cap yet */
2765 case CEPH_CAP_OP_FLUSHSNAP_ACK
:
2766 handle_cap_flushsnap_ack(inode
, tid
, h
, session
);
2769 case CEPH_CAP_OP_EXPORT
:
2770 handle_cap_export(inode
, h
, session
, &open_target_sessions
);
2773 case CEPH_CAP_OP_IMPORT
:
2774 handle_cap_import(mdsc
, inode
, h
, session
,
2775 snaptrace
, snaptrace_len
);
2776 ceph_check_caps(ceph_inode(inode
), CHECK_CAPS_NODELAY
,
2781 /* the rest require a cap */
2782 spin_lock(&inode
->i_lock
);
2783 cap
= __get_cap_for_mds(ceph_inode(inode
), mds
);
2785 dout(" no cap on %p ino %llx.%llx from mds%d\n",
2786 inode
, ceph_ino(inode
), ceph_snap(inode
), mds
);
2787 spin_unlock(&inode
->i_lock
);
2791 /* note that each of these drops i_lock for us */
2793 case CEPH_CAP_OP_REVOKE
:
2794 case CEPH_CAP_OP_GRANT
:
2795 handle_cap_grant(inode
, h
, session
, cap
, msg
->middle
);
2798 case CEPH_CAP_OP_FLUSH_ACK
:
2799 handle_cap_flush_ack(inode
, tid
, h
, session
, cap
);
2802 case CEPH_CAP_OP_TRUNC
:
2803 handle_cap_trunc(inode
, h
, session
);
2807 spin_unlock(&inode
->i_lock
);
2808 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op
,
2809 ceph_cap_op_name(op
));
2813 mutex_unlock(&session
->s_mutex
);
2817 if (open_target_sessions
)
2818 ceph_mdsc_open_export_target_sessions(mdsc
, session
);
2822 pr_err("ceph_handle_caps: corrupt message\n");
2828 * Delayed work handler to process end of delayed cap release LRU list.
2830 void ceph_check_delayed_caps(struct ceph_mds_client
*mdsc
)
2832 struct ceph_inode_info
*ci
;
2833 int flags
= CHECK_CAPS_NODELAY
;
2835 dout("check_delayed_caps\n");
2837 spin_lock(&mdsc
->cap_delay_lock
);
2838 if (list_empty(&mdsc
->cap_delay_list
))
2840 ci
= list_first_entry(&mdsc
->cap_delay_list
,
2841 struct ceph_inode_info
,
2843 if ((ci
->i_ceph_flags
& CEPH_I_FLUSH
) == 0 &&
2844 time_before(jiffies
, ci
->i_hold_caps_max
))
2846 list_del_init(&ci
->i_cap_delay_list
);
2847 spin_unlock(&mdsc
->cap_delay_lock
);
2848 dout("check_delayed_caps on %p\n", &ci
->vfs_inode
);
2849 ceph_check_caps(ci
, flags
, NULL
);
2851 spin_unlock(&mdsc
->cap_delay_lock
);
2855 * Flush all dirty caps to the mds
2857 void ceph_flush_dirty_caps(struct ceph_mds_client
*mdsc
)
2859 struct ceph_inode_info
*ci
, *nci
= NULL
;
2860 struct inode
*inode
, *ninode
= NULL
;
2861 struct list_head
*p
, *n
;
2863 dout("flush_dirty_caps\n");
2864 spin_lock(&mdsc
->cap_dirty_lock
);
2865 list_for_each_safe(p
, n
, &mdsc
->cap_dirty
) {
2869 ci
->i_ceph_flags
&= ~CEPH_I_NOFLUSH
;
2870 dout("flush_dirty_caps inode %p (was next inode)\n",
2873 ci
= list_entry(p
, struct ceph_inode_info
,
2875 inode
= igrab(&ci
->vfs_inode
);
2877 dout("flush_dirty_caps inode %p\n", inode
);
2879 if (n
!= &mdsc
->cap_dirty
) {
2880 nci
= list_entry(n
, struct ceph_inode_info
,
2882 ninode
= igrab(&nci
->vfs_inode
);
2884 nci
->i_ceph_flags
|= CEPH_I_NOFLUSH
;
2885 dout("flush_dirty_caps next inode %p, noflush\n",
2891 spin_unlock(&mdsc
->cap_dirty_lock
);
2893 ceph_check_caps(ci
, CHECK_CAPS_NODELAY
|CHECK_CAPS_FLUSH
,
2897 spin_lock(&mdsc
->cap_dirty_lock
);
2899 spin_unlock(&mdsc
->cap_dirty_lock
);
2903 * Drop open file reference. If we were the last open file,
2904 * we may need to release capabilities to the MDS (or schedule
2905 * their delayed release).
2907 void ceph_put_fmode(struct ceph_inode_info
*ci
, int fmode
)
2909 struct inode
*inode
= &ci
->vfs_inode
;
2912 spin_lock(&inode
->i_lock
);
2913 dout("put_fmode %p fmode %d %d -> %d\n", inode
, fmode
,
2914 ci
->i_nr_by_mode
[fmode
], ci
->i_nr_by_mode
[fmode
]-1);
2915 BUG_ON(ci
->i_nr_by_mode
[fmode
] == 0);
2916 if (--ci
->i_nr_by_mode
[fmode
] == 0)
2918 spin_unlock(&inode
->i_lock
);
2920 if (last
&& ci
->i_vino
.snap
== CEPH_NOSNAP
)
2921 ceph_check_caps(ci
, 0, NULL
);
2925 * Helpers for embedding cap and dentry lease releases into mds
2928 * @force is used by dentry_release (below) to force inclusion of a
2929 * record for the directory inode, even when there aren't any caps to
2932 int ceph_encode_inode_release(void **p
, struct inode
*inode
,
2933 int mds
, int drop
, int unless
, int force
)
2935 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2936 struct ceph_cap
*cap
;
2937 struct ceph_mds_request_release
*rel
= *p
;
2941 spin_lock(&inode
->i_lock
);
2942 used
= __ceph_caps_used(ci
);
2943 dirty
= __ceph_caps_dirty(ci
);
2945 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
2946 inode
, mds
, ceph_cap_string(used
|dirty
), ceph_cap_string(drop
),
2947 ceph_cap_string(unless
));
2949 /* only drop unused, clean caps */
2950 drop
&= ~(used
| dirty
);
2952 cap
= __get_cap_for_mds(ci
, mds
);
2953 if (cap
&& __cap_is_valid(cap
)) {
2955 ((cap
->issued
& drop
) &&
2956 (cap
->issued
& unless
) == 0)) {
2957 if ((cap
->issued
& drop
) &&
2958 (cap
->issued
& unless
) == 0) {
2959 dout("encode_inode_release %p cap %p %s -> "
2961 ceph_cap_string(cap
->issued
),
2962 ceph_cap_string(cap
->issued
& ~drop
));
2963 cap
->issued
&= ~drop
;
2964 cap
->implemented
&= ~drop
;
2965 if (ci
->i_ceph_flags
& CEPH_I_NODELAY
) {
2966 int wanted
= __ceph_caps_wanted(ci
);
2967 dout(" wanted %s -> %s (act %s)\n",
2968 ceph_cap_string(cap
->mds_wanted
),
2969 ceph_cap_string(cap
->mds_wanted
&
2971 ceph_cap_string(wanted
));
2972 cap
->mds_wanted
&= wanted
;
2975 dout("encode_inode_release %p cap %p %s"
2976 " (force)\n", inode
, cap
,
2977 ceph_cap_string(cap
->issued
));
2980 rel
->ino
= cpu_to_le64(ceph_ino(inode
));
2981 rel
->cap_id
= cpu_to_le64(cap
->cap_id
);
2982 rel
->seq
= cpu_to_le32(cap
->seq
);
2983 rel
->issue_seq
= cpu_to_le32(cap
->issue_seq
),
2984 rel
->mseq
= cpu_to_le32(cap
->mseq
);
2985 rel
->caps
= cpu_to_le32(cap
->issued
);
2986 rel
->wanted
= cpu_to_le32(cap
->mds_wanted
);
2992 dout("encode_inode_release %p cap %p %s\n",
2993 inode
, cap
, ceph_cap_string(cap
->issued
));
2996 spin_unlock(&inode
->i_lock
);
3000 int ceph_encode_dentry_release(void **p
, struct dentry
*dentry
,
3001 int mds
, int drop
, int unless
)
3003 struct inode
*dir
= dentry
->d_parent
->d_inode
;
3004 struct ceph_mds_request_release
*rel
= *p
;
3005 struct ceph_dentry_info
*di
= ceph_dentry(dentry
);
3010 * force an record for the directory caps if we have a dentry lease.
3011 * this is racy (can't take i_lock and d_lock together), but it
3012 * doesn't have to be perfect; the mds will revoke anything we don't
3015 spin_lock(&dentry
->d_lock
);
3016 if (di
->lease_session
&& di
->lease_session
->s_mds
== mds
)
3018 spin_unlock(&dentry
->d_lock
);
3020 ret
= ceph_encode_inode_release(p
, dir
, mds
, drop
, unless
, force
);
3022 spin_lock(&dentry
->d_lock
);
3023 if (ret
&& di
->lease_session
&& di
->lease_session
->s_mds
== mds
) {
3024 dout("encode_dentry_release %p mds%d seq %d\n",
3025 dentry
, mds
, (int)di
->lease_seq
);
3026 rel
->dname_len
= cpu_to_le32(dentry
->d_name
.len
);
3027 memcpy(*p
, dentry
->d_name
.name
, dentry
->d_name
.len
);
3028 *p
+= dentry
->d_name
.len
;
3029 rel
->dname_seq
= cpu_to_le32(di
->lease_seq
);
3030 __ceph_mdsc_drop_dentry_lease(dentry
);
3032 spin_unlock(&dentry
->d_lock
);