1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
5 #include <linux/kernel.h>
6 #include <linux/sched/signal.h>
7 #include <linux/slab.h>
8 #include <linux/vmalloc.h>
9 #include <linux/wait.h>
10 #include <linux/writeback.h>
11 #include <linux/iversion.h>
14 #include "mds_client.h"
16 #include <linux/ceph/decode.h>
17 #include <linux/ceph/messenger.h>
20 * Capability management
22 * The Ceph metadata servers control client access to inode metadata
23 * and file data by issuing capabilities, granting clients permission
24 * to read and/or write both inode field and file data to OSDs
25 * (storage nodes). Each capability consists of a set of bits
26 * indicating which operations are allowed.
28 * If the client holds a *_SHARED cap, the client has a coherent value
29 * that can be safely read from the cached inode.
31 * In the case of a *_EXCL (exclusive) or FILE_WR capabilities, the
32 * client is allowed to change inode attributes (e.g., file size,
33 * mtime), note its dirty state in the ceph_cap, and asynchronously
34 * flush that metadata change to the MDS.
36 * In the event of a conflicting operation (perhaps by another
37 * client), the MDS will revoke the conflicting client capabilities.
39 * In order for a client to cache an inode, it must hold a capability
40 * with at least one MDS server. When inodes are released, release
41 * notifications are batched and periodically sent en masse to the MDS
42 * cluster to release server state.
45 static u64
__get_oldest_flush_tid(struct ceph_mds_client
*mdsc
);
46 static void __kick_flushing_caps(struct ceph_mds_client
*mdsc
,
47 struct ceph_mds_session
*session
,
48 struct ceph_inode_info
*ci
,
49 u64 oldest_flush_tid
);
52 * Generate readable cap strings for debugging output.
54 #define MAX_CAP_STR 20
55 static char cap_str
[MAX_CAP_STR
][40];
56 static DEFINE_SPINLOCK(cap_str_lock
);
57 static int last_cap_str
;
59 static char *gcap_string(char *s
, int c
)
61 if (c
& CEPH_CAP_GSHARED
)
63 if (c
& CEPH_CAP_GEXCL
)
65 if (c
& CEPH_CAP_GCACHE
)
71 if (c
& CEPH_CAP_GBUFFER
)
73 if (c
& CEPH_CAP_GWREXTEND
)
75 if (c
& CEPH_CAP_GLAZYIO
)
80 const char *ceph_cap_string(int caps
)
86 spin_lock(&cap_str_lock
);
88 if (last_cap_str
== MAX_CAP_STR
)
90 spin_unlock(&cap_str_lock
);
94 if (caps
& CEPH_CAP_PIN
)
97 c
= (caps
>> CEPH_CAP_SAUTH
) & 3;
100 s
= gcap_string(s
, c
);
103 c
= (caps
>> CEPH_CAP_SLINK
) & 3;
106 s
= gcap_string(s
, c
);
109 c
= (caps
>> CEPH_CAP_SXATTR
) & 3;
112 s
= gcap_string(s
, c
);
115 c
= caps
>> CEPH_CAP_SFILE
;
118 s
= gcap_string(s
, c
);
127 void ceph_caps_init(struct ceph_mds_client
*mdsc
)
129 INIT_LIST_HEAD(&mdsc
->caps_list
);
130 spin_lock_init(&mdsc
->caps_list_lock
);
133 void ceph_caps_finalize(struct ceph_mds_client
*mdsc
)
135 struct ceph_cap
*cap
;
137 spin_lock(&mdsc
->caps_list_lock
);
138 while (!list_empty(&mdsc
->caps_list
)) {
139 cap
= list_first_entry(&mdsc
->caps_list
,
140 struct ceph_cap
, caps_item
);
141 list_del(&cap
->caps_item
);
142 kmem_cache_free(ceph_cap_cachep
, cap
);
144 mdsc
->caps_total_count
= 0;
145 mdsc
->caps_avail_count
= 0;
146 mdsc
->caps_use_count
= 0;
147 mdsc
->caps_reserve_count
= 0;
148 mdsc
->caps_min_count
= 0;
149 spin_unlock(&mdsc
->caps_list_lock
);
152 void ceph_adjust_caps_max_min(struct ceph_mds_client
*mdsc
,
153 struct ceph_mount_options
*fsopt
)
155 spin_lock(&mdsc
->caps_list_lock
);
156 mdsc
->caps_min_count
= fsopt
->max_readdir
;
157 if (mdsc
->caps_min_count
< 1024)
158 mdsc
->caps_min_count
= 1024;
159 mdsc
->caps_use_max
= fsopt
->caps_max
;
160 if (mdsc
->caps_use_max
> 0 &&
161 mdsc
->caps_use_max
< mdsc
->caps_min_count
)
162 mdsc
->caps_use_max
= mdsc
->caps_min_count
;
163 spin_unlock(&mdsc
->caps_list_lock
);
166 static void __ceph_unreserve_caps(struct ceph_mds_client
*mdsc
, int nr_caps
)
168 struct ceph_cap
*cap
;
172 BUG_ON(mdsc
->caps_reserve_count
< nr_caps
);
173 mdsc
->caps_reserve_count
-= nr_caps
;
174 if (mdsc
->caps_avail_count
>=
175 mdsc
->caps_reserve_count
+ mdsc
->caps_min_count
) {
176 mdsc
->caps_total_count
-= nr_caps
;
177 for (i
= 0; i
< nr_caps
; i
++) {
178 cap
= list_first_entry(&mdsc
->caps_list
,
179 struct ceph_cap
, caps_item
);
180 list_del(&cap
->caps_item
);
181 kmem_cache_free(ceph_cap_cachep
, cap
);
184 mdsc
->caps_avail_count
+= nr_caps
;
187 dout("%s: caps %d = %d used + %d resv + %d avail\n",
189 mdsc
->caps_total_count
, mdsc
->caps_use_count
,
190 mdsc
->caps_reserve_count
, mdsc
->caps_avail_count
);
191 BUG_ON(mdsc
->caps_total_count
!= mdsc
->caps_use_count
+
192 mdsc
->caps_reserve_count
+
193 mdsc
->caps_avail_count
);
198 * Called under mdsc->mutex.
200 int ceph_reserve_caps(struct ceph_mds_client
*mdsc
,
201 struct ceph_cap_reservation
*ctx
, int need
)
204 struct ceph_cap
*cap
;
209 bool trimmed
= false;
210 struct ceph_mds_session
*s
;
213 dout("reserve caps ctx=%p need=%d\n", ctx
, need
);
215 /* first reserve any caps that are already allocated */
216 spin_lock(&mdsc
->caps_list_lock
);
217 if (mdsc
->caps_avail_count
>= need
)
220 have
= mdsc
->caps_avail_count
;
221 mdsc
->caps_avail_count
-= have
;
222 mdsc
->caps_reserve_count
+= have
;
223 BUG_ON(mdsc
->caps_total_count
!= mdsc
->caps_use_count
+
224 mdsc
->caps_reserve_count
+
225 mdsc
->caps_avail_count
);
226 spin_unlock(&mdsc
->caps_list_lock
);
228 for (i
= have
; i
< need
; ) {
229 cap
= kmem_cache_alloc(ceph_cap_cachep
, GFP_NOFS
);
231 list_add(&cap
->caps_item
, &newcaps
);
238 for (j
= 0; j
< mdsc
->max_sessions
; j
++) {
239 s
= __ceph_lookup_mds_session(mdsc
, j
);
242 mutex_unlock(&mdsc
->mutex
);
244 mutex_lock(&s
->s_mutex
);
245 max_caps
= s
->s_nr_caps
- (need
- i
);
246 ceph_trim_caps(mdsc
, s
, max_caps
);
247 mutex_unlock(&s
->s_mutex
);
249 ceph_put_mds_session(s
);
250 mutex_lock(&mdsc
->mutex
);
254 spin_lock(&mdsc
->caps_list_lock
);
255 if (mdsc
->caps_avail_count
) {
257 if (mdsc
->caps_avail_count
>= need
- i
)
258 more_have
= need
- i
;
260 more_have
= mdsc
->caps_avail_count
;
264 mdsc
->caps_avail_count
-= more_have
;
265 mdsc
->caps_reserve_count
+= more_have
;
268 spin_unlock(&mdsc
->caps_list_lock
);
273 pr_warn("reserve caps ctx=%p ENOMEM need=%d got=%d\n",
274 ctx
, need
, have
+ alloc
);
280 BUG_ON(have
+ alloc
!= need
);
285 spin_lock(&mdsc
->caps_list_lock
);
286 mdsc
->caps_total_count
+= alloc
;
287 mdsc
->caps_reserve_count
+= alloc
;
288 list_splice(&newcaps
, &mdsc
->caps_list
);
290 BUG_ON(mdsc
->caps_total_count
!= mdsc
->caps_use_count
+
291 mdsc
->caps_reserve_count
+
292 mdsc
->caps_avail_count
);
295 __ceph_unreserve_caps(mdsc
, have
+ alloc
);
297 spin_unlock(&mdsc
->caps_list_lock
);
299 dout("reserve caps ctx=%p %d = %d used + %d resv + %d avail\n",
300 ctx
, mdsc
->caps_total_count
, mdsc
->caps_use_count
,
301 mdsc
->caps_reserve_count
, mdsc
->caps_avail_count
);
305 void ceph_unreserve_caps(struct ceph_mds_client
*mdsc
,
306 struct ceph_cap_reservation
*ctx
)
308 bool reclaim
= false;
312 dout("unreserve caps ctx=%p count=%d\n", ctx
, ctx
->count
);
313 spin_lock(&mdsc
->caps_list_lock
);
314 __ceph_unreserve_caps(mdsc
, ctx
->count
);
317 if (mdsc
->caps_use_max
> 0 &&
318 mdsc
->caps_use_count
> mdsc
->caps_use_max
)
320 spin_unlock(&mdsc
->caps_list_lock
);
323 ceph_reclaim_caps_nr(mdsc
, ctx
->used
);
326 struct ceph_cap
*ceph_get_cap(struct ceph_mds_client
*mdsc
,
327 struct ceph_cap_reservation
*ctx
)
329 struct ceph_cap
*cap
= NULL
;
331 /* temporary, until we do something about cap import/export */
333 cap
= kmem_cache_alloc(ceph_cap_cachep
, GFP_NOFS
);
335 spin_lock(&mdsc
->caps_list_lock
);
336 mdsc
->caps_use_count
++;
337 mdsc
->caps_total_count
++;
338 spin_unlock(&mdsc
->caps_list_lock
);
340 spin_lock(&mdsc
->caps_list_lock
);
341 if (mdsc
->caps_avail_count
) {
342 BUG_ON(list_empty(&mdsc
->caps_list
));
344 mdsc
->caps_avail_count
--;
345 mdsc
->caps_use_count
++;
346 cap
= list_first_entry(&mdsc
->caps_list
,
347 struct ceph_cap
, caps_item
);
348 list_del(&cap
->caps_item
);
350 BUG_ON(mdsc
->caps_total_count
!= mdsc
->caps_use_count
+
351 mdsc
->caps_reserve_count
+ mdsc
->caps_avail_count
);
353 spin_unlock(&mdsc
->caps_list_lock
);
359 spin_lock(&mdsc
->caps_list_lock
);
360 dout("get_cap ctx=%p (%d) %d = %d used + %d resv + %d avail\n",
361 ctx
, ctx
->count
, mdsc
->caps_total_count
, mdsc
->caps_use_count
,
362 mdsc
->caps_reserve_count
, mdsc
->caps_avail_count
);
364 BUG_ON(ctx
->count
> mdsc
->caps_reserve_count
);
365 BUG_ON(list_empty(&mdsc
->caps_list
));
369 mdsc
->caps_reserve_count
--;
370 mdsc
->caps_use_count
++;
372 cap
= list_first_entry(&mdsc
->caps_list
, struct ceph_cap
, caps_item
);
373 list_del(&cap
->caps_item
);
375 BUG_ON(mdsc
->caps_total_count
!= mdsc
->caps_use_count
+
376 mdsc
->caps_reserve_count
+ mdsc
->caps_avail_count
);
377 spin_unlock(&mdsc
->caps_list_lock
);
381 void ceph_put_cap(struct ceph_mds_client
*mdsc
, struct ceph_cap
*cap
)
383 spin_lock(&mdsc
->caps_list_lock
);
384 dout("put_cap %p %d = %d used + %d resv + %d avail\n",
385 cap
, mdsc
->caps_total_count
, mdsc
->caps_use_count
,
386 mdsc
->caps_reserve_count
, mdsc
->caps_avail_count
);
387 mdsc
->caps_use_count
--;
389 * Keep some preallocated caps around (ceph_min_count), to
390 * avoid lots of free/alloc churn.
392 if (mdsc
->caps_avail_count
>= mdsc
->caps_reserve_count
+
393 mdsc
->caps_min_count
) {
394 mdsc
->caps_total_count
--;
395 kmem_cache_free(ceph_cap_cachep
, cap
);
397 mdsc
->caps_avail_count
++;
398 list_add(&cap
->caps_item
, &mdsc
->caps_list
);
401 BUG_ON(mdsc
->caps_total_count
!= mdsc
->caps_use_count
+
402 mdsc
->caps_reserve_count
+ mdsc
->caps_avail_count
);
403 spin_unlock(&mdsc
->caps_list_lock
);
406 void ceph_reservation_status(struct ceph_fs_client
*fsc
,
407 int *total
, int *avail
, int *used
, int *reserved
,
410 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
412 spin_lock(&mdsc
->caps_list_lock
);
415 *total
= mdsc
->caps_total_count
;
417 *avail
= mdsc
->caps_avail_count
;
419 *used
= mdsc
->caps_use_count
;
421 *reserved
= mdsc
->caps_reserve_count
;
423 *min
= mdsc
->caps_min_count
;
425 spin_unlock(&mdsc
->caps_list_lock
);
429 * Find ceph_cap for given mds, if any.
431 * Called with i_ceph_lock held.
433 static struct ceph_cap
*__get_cap_for_mds(struct ceph_inode_info
*ci
, int mds
)
435 struct ceph_cap
*cap
;
436 struct rb_node
*n
= ci
->i_caps
.rb_node
;
439 cap
= rb_entry(n
, struct ceph_cap
, ci_node
);
442 else if (mds
> cap
->mds
)
450 struct ceph_cap
*ceph_get_cap_for_mds(struct ceph_inode_info
*ci
, int mds
)
452 struct ceph_cap
*cap
;
454 spin_lock(&ci
->i_ceph_lock
);
455 cap
= __get_cap_for_mds(ci
, mds
);
456 spin_unlock(&ci
->i_ceph_lock
);
461 * Called under i_ceph_lock.
463 static void __insert_cap_node(struct ceph_inode_info
*ci
,
464 struct ceph_cap
*new)
466 struct rb_node
**p
= &ci
->i_caps
.rb_node
;
467 struct rb_node
*parent
= NULL
;
468 struct ceph_cap
*cap
= NULL
;
472 cap
= rb_entry(parent
, struct ceph_cap
, ci_node
);
473 if (new->mds
< cap
->mds
)
475 else if (new->mds
> cap
->mds
)
481 rb_link_node(&new->ci_node
, parent
, p
);
482 rb_insert_color(&new->ci_node
, &ci
->i_caps
);
486 * (re)set cap hold timeouts, which control the delayed release
487 * of unused caps back to the MDS. Should be called on cap use.
489 static void __cap_set_timeouts(struct ceph_mds_client
*mdsc
,
490 struct ceph_inode_info
*ci
)
492 struct ceph_mount_options
*opt
= mdsc
->fsc
->mount_options
;
494 ci
->i_hold_caps_min
= round_jiffies(jiffies
+
495 opt
->caps_wanted_delay_min
* HZ
);
496 ci
->i_hold_caps_max
= round_jiffies(jiffies
+
497 opt
->caps_wanted_delay_max
* HZ
);
498 dout("__cap_set_timeouts %p min %lu max %lu\n", &ci
->vfs_inode
,
499 ci
->i_hold_caps_min
- jiffies
, ci
->i_hold_caps_max
- jiffies
);
503 * (Re)queue cap at the end of the delayed cap release list.
505 * If I_FLUSH is set, leave the inode at the front of the list.
507 * Caller holds i_ceph_lock
508 * -> we take mdsc->cap_delay_lock
510 static void __cap_delay_requeue(struct ceph_mds_client
*mdsc
,
511 struct ceph_inode_info
*ci
,
514 dout("__cap_delay_requeue %p flags %d at %lu\n", &ci
->vfs_inode
,
515 ci
->i_ceph_flags
, ci
->i_hold_caps_max
);
516 if (!mdsc
->stopping
) {
517 spin_lock(&mdsc
->cap_delay_lock
);
518 if (!list_empty(&ci
->i_cap_delay_list
)) {
519 if (ci
->i_ceph_flags
& CEPH_I_FLUSH
)
521 list_del_init(&ci
->i_cap_delay_list
);
524 __cap_set_timeouts(mdsc
, ci
);
525 list_add_tail(&ci
->i_cap_delay_list
, &mdsc
->cap_delay_list
);
527 spin_unlock(&mdsc
->cap_delay_lock
);
532 * Queue an inode for immediate writeback. Mark inode with I_FLUSH,
533 * indicating we should send a cap message to flush dirty metadata
534 * asap, and move to the front of the delayed cap list.
536 static void __cap_delay_requeue_front(struct ceph_mds_client
*mdsc
,
537 struct ceph_inode_info
*ci
)
539 dout("__cap_delay_requeue_front %p\n", &ci
->vfs_inode
);
540 spin_lock(&mdsc
->cap_delay_lock
);
541 ci
->i_ceph_flags
|= CEPH_I_FLUSH
;
542 if (!list_empty(&ci
->i_cap_delay_list
))
543 list_del_init(&ci
->i_cap_delay_list
);
544 list_add(&ci
->i_cap_delay_list
, &mdsc
->cap_delay_list
);
545 spin_unlock(&mdsc
->cap_delay_lock
);
549 * Cancel delayed work on cap.
551 * Caller must hold i_ceph_lock.
553 static void __cap_delay_cancel(struct ceph_mds_client
*mdsc
,
554 struct ceph_inode_info
*ci
)
556 dout("__cap_delay_cancel %p\n", &ci
->vfs_inode
);
557 if (list_empty(&ci
->i_cap_delay_list
))
559 spin_lock(&mdsc
->cap_delay_lock
);
560 list_del_init(&ci
->i_cap_delay_list
);
561 spin_unlock(&mdsc
->cap_delay_lock
);
565 * Common issue checks for add_cap, handle_cap_grant.
567 static void __check_cap_issue(struct ceph_inode_info
*ci
, struct ceph_cap
*cap
,
570 unsigned had
= __ceph_caps_issued(ci
, NULL
);
573 * Each time we receive FILE_CACHE anew, we increment
576 if ((issued
& (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_LAZYIO
)) &&
577 (had
& (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_LAZYIO
)) == 0) {
582 * If FILE_SHARED is newly issued, mark dir not complete. We don't
583 * know what happened to this directory while we didn't have the cap.
584 * If FILE_SHARED is being revoked, also mark dir not complete. It
585 * stops on-going cached readdir.
587 if ((issued
& CEPH_CAP_FILE_SHARED
) != (had
& CEPH_CAP_FILE_SHARED
)) {
588 if (issued
& CEPH_CAP_FILE_SHARED
)
589 atomic_inc(&ci
->i_shared_gen
);
590 if (S_ISDIR(ci
->vfs_inode
.i_mode
)) {
591 dout(" marking %p NOT complete\n", &ci
->vfs_inode
);
592 __ceph_dir_clear_complete(ci
);
598 * Add a capability under the given MDS session.
600 * Caller should hold session snap_rwsem (read) and ci->i_ceph_lock
602 * @fmode is the open file mode, if we are opening a file, otherwise
603 * it is < 0. (This is so we can atomically add the cap and add an
604 * open file reference to it.)
606 void ceph_add_cap(struct inode
*inode
,
607 struct ceph_mds_session
*session
, u64 cap_id
,
608 int fmode
, unsigned issued
, unsigned wanted
,
609 unsigned seq
, unsigned mseq
, u64 realmino
, int flags
,
610 struct ceph_cap
**new_cap
)
612 struct ceph_mds_client
*mdsc
= ceph_inode_to_client(inode
)->mdsc
;
613 struct ceph_inode_info
*ci
= ceph_inode(inode
);
614 struct ceph_cap
*cap
;
615 int mds
= session
->s_mds
;
619 lockdep_assert_held(&ci
->i_ceph_lock
);
621 dout("add_cap %p mds%d cap %llx %s seq %d\n", inode
,
622 session
->s_mds
, cap_id
, ceph_cap_string(issued
), seq
);
625 * If we are opening the file, include file mode wanted bits
629 wanted
|= ceph_caps_for_mode(fmode
);
631 spin_lock(&session
->s_gen_ttl_lock
);
632 gen
= session
->s_cap_gen
;
633 spin_unlock(&session
->s_gen_ttl_lock
);
635 cap
= __get_cap_for_mds(ci
, mds
);
641 cap
->implemented
= 0;
647 __insert_cap_node(ci
, cap
);
649 /* add to session cap list */
650 cap
->session
= session
;
651 spin_lock(&session
->s_cap_lock
);
652 list_add_tail(&cap
->session_caps
, &session
->s_caps
);
653 session
->s_nr_caps
++;
654 spin_unlock(&session
->s_cap_lock
);
656 spin_lock(&session
->s_cap_lock
);
657 list_move_tail(&cap
->session_caps
, &session
->s_caps
);
658 spin_unlock(&session
->s_cap_lock
);
660 if (cap
->cap_gen
< gen
)
661 cap
->issued
= cap
->implemented
= CEPH_CAP_PIN
;
664 * auth mds of the inode changed. we received the cap export
665 * message, but still haven't received the cap import message.
666 * handle_cap_export() updated the new auth MDS' cap.
668 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing
669 * a message that was send before the cap import message. So
672 if (ceph_seq_cmp(seq
, cap
->seq
) <= 0) {
673 WARN_ON(cap
!= ci
->i_auth_cap
);
674 WARN_ON(cap
->cap_id
!= cap_id
);
677 issued
|= cap
->issued
;
678 flags
|= CEPH_CAP_FLAG_AUTH
;
682 if (!ci
->i_snap_realm
||
683 ((flags
& CEPH_CAP_FLAG_AUTH
) &&
684 realmino
!= (u64
)-1 && ci
->i_snap_realm
->ino
!= realmino
)) {
686 * add this inode to the appropriate snap realm
688 struct ceph_snap_realm
*realm
= ceph_lookup_snap_realm(mdsc
,
691 struct ceph_snap_realm
*oldrealm
= ci
->i_snap_realm
;
693 spin_lock(&oldrealm
->inodes_with_caps_lock
);
694 list_del_init(&ci
->i_snap_realm_item
);
695 spin_unlock(&oldrealm
->inodes_with_caps_lock
);
698 spin_lock(&realm
->inodes_with_caps_lock
);
699 list_add(&ci
->i_snap_realm_item
,
700 &realm
->inodes_with_caps
);
701 ci
->i_snap_realm
= realm
;
702 if (realm
->ino
== ci
->i_vino
.ino
)
703 realm
->inode
= inode
;
704 spin_unlock(&realm
->inodes_with_caps_lock
);
707 ceph_put_snap_realm(mdsc
, oldrealm
);
709 pr_err("ceph_add_cap: couldn't find snap realm %llx\n",
715 __check_cap_issue(ci
, cap
, issued
);
718 * If we are issued caps we don't want, or the mds' wanted
719 * value appears to be off, queue a check so we'll release
720 * later and/or update the mds wanted value.
722 actual_wanted
= __ceph_caps_wanted(ci
);
723 if ((wanted
& ~actual_wanted
) ||
724 (issued
& ~actual_wanted
& CEPH_CAP_ANY_WR
)) {
725 dout(" issued %s, mds wanted %s, actual %s, queueing\n",
726 ceph_cap_string(issued
), ceph_cap_string(wanted
),
727 ceph_cap_string(actual_wanted
));
728 __cap_delay_requeue(mdsc
, ci
, true);
731 if (flags
& CEPH_CAP_FLAG_AUTH
) {
732 if (!ci
->i_auth_cap
||
733 ceph_seq_cmp(ci
->i_auth_cap
->mseq
, mseq
) < 0) {
734 ci
->i_auth_cap
= cap
;
735 cap
->mds_wanted
= wanted
;
738 WARN_ON(ci
->i_auth_cap
== cap
);
741 dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
742 inode
, ceph_vinop(inode
), cap
, ceph_cap_string(issued
),
743 ceph_cap_string(issued
|cap
->issued
), seq
, mds
);
744 cap
->cap_id
= cap_id
;
745 cap
->issued
= issued
;
746 cap
->implemented
|= issued
;
747 if (ceph_seq_cmp(mseq
, cap
->mseq
) > 0)
748 cap
->mds_wanted
= wanted
;
750 cap
->mds_wanted
|= wanted
;
752 cap
->issue_seq
= seq
;
757 __ceph_get_fmode(ci
, fmode
);
761 * Return true if cap has not timed out and belongs to the current
762 * generation of the MDS session (i.e. has not gone 'stale' due to
763 * us losing touch with the mds).
765 static int __cap_is_valid(struct ceph_cap
*cap
)
770 spin_lock(&cap
->session
->s_gen_ttl_lock
);
771 gen
= cap
->session
->s_cap_gen
;
772 ttl
= cap
->session
->s_cap_ttl
;
773 spin_unlock(&cap
->session
->s_gen_ttl_lock
);
775 if (cap
->cap_gen
< gen
|| time_after_eq(jiffies
, ttl
)) {
776 dout("__cap_is_valid %p cap %p issued %s "
777 "but STALE (gen %u vs %u)\n", &cap
->ci
->vfs_inode
,
778 cap
, ceph_cap_string(cap
->issued
), cap
->cap_gen
, gen
);
786 * Return set of valid cap bits issued to us. Note that caps time
787 * out, and may be invalidated in bulk if the client session times out
788 * and session->s_cap_gen is bumped.
790 int __ceph_caps_issued(struct ceph_inode_info
*ci
, int *implemented
)
792 int have
= ci
->i_snap_caps
;
793 struct ceph_cap
*cap
;
798 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
799 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
800 if (!__cap_is_valid(cap
))
802 dout("__ceph_caps_issued %p cap %p issued %s\n",
803 &ci
->vfs_inode
, cap
, ceph_cap_string(cap
->issued
));
806 *implemented
|= cap
->implemented
;
809 * exclude caps issued by non-auth MDS, but are been revoking
810 * by the auth MDS. The non-auth MDS should be revoking/exporting
811 * these caps, but the message is delayed.
813 if (ci
->i_auth_cap
) {
814 cap
= ci
->i_auth_cap
;
815 have
&= ~cap
->implemented
| cap
->issued
;
821 * Get cap bits issued by caps other than @ocap
823 int __ceph_caps_issued_other(struct ceph_inode_info
*ci
, struct ceph_cap
*ocap
)
825 int have
= ci
->i_snap_caps
;
826 struct ceph_cap
*cap
;
829 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
830 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
833 if (!__cap_is_valid(cap
))
841 * Move a cap to the end of the LRU (oldest caps at list head, newest
844 static void __touch_cap(struct ceph_cap
*cap
)
846 struct ceph_mds_session
*s
= cap
->session
;
848 spin_lock(&s
->s_cap_lock
);
849 if (!s
->s_cap_iterator
) {
850 dout("__touch_cap %p cap %p mds%d\n", &cap
->ci
->vfs_inode
, cap
,
852 list_move_tail(&cap
->session_caps
, &s
->s_caps
);
854 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
855 &cap
->ci
->vfs_inode
, cap
, s
->s_mds
);
857 spin_unlock(&s
->s_cap_lock
);
861 * Check if we hold the given mask. If so, move the cap(s) to the
862 * front of their respective LRUs. (This is the preferred way for
863 * callers to check for caps they want.)
865 int __ceph_caps_issued_mask(struct ceph_inode_info
*ci
, int mask
, int touch
)
867 struct ceph_cap
*cap
;
869 int have
= ci
->i_snap_caps
;
871 if ((have
& mask
) == mask
) {
872 dout("__ceph_caps_issued_mask ino 0x%lx snap issued %s"
873 " (mask %s)\n", ci
->vfs_inode
.i_ino
,
874 ceph_cap_string(have
),
875 ceph_cap_string(mask
));
879 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
880 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
881 if (!__cap_is_valid(cap
))
883 if ((cap
->issued
& mask
) == mask
) {
884 dout("__ceph_caps_issued_mask ino 0x%lx cap %p issued %s"
885 " (mask %s)\n", ci
->vfs_inode
.i_ino
, cap
,
886 ceph_cap_string(cap
->issued
),
887 ceph_cap_string(mask
));
893 /* does a combination of caps satisfy mask? */
895 if ((have
& mask
) == mask
) {
896 dout("__ceph_caps_issued_mask ino 0x%lx combo issued %s"
897 " (mask %s)\n", ci
->vfs_inode
.i_ino
,
898 ceph_cap_string(cap
->issued
),
899 ceph_cap_string(mask
));
903 /* touch this + preceding caps */
905 for (q
= rb_first(&ci
->i_caps
); q
!= p
;
907 cap
= rb_entry(q
, struct ceph_cap
,
909 if (!__cap_is_valid(cap
))
911 if (cap
->issued
& mask
)
923 * Return true if mask caps are currently being revoked by an MDS.
925 int __ceph_caps_revoking_other(struct ceph_inode_info
*ci
,
926 struct ceph_cap
*ocap
, int mask
)
928 struct ceph_cap
*cap
;
931 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
932 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
934 (cap
->implemented
& ~cap
->issued
& mask
))
940 int ceph_caps_revoking(struct ceph_inode_info
*ci
, int mask
)
942 struct inode
*inode
= &ci
->vfs_inode
;
945 spin_lock(&ci
->i_ceph_lock
);
946 ret
= __ceph_caps_revoking_other(ci
, NULL
, mask
);
947 spin_unlock(&ci
->i_ceph_lock
);
948 dout("ceph_caps_revoking %p %s = %d\n", inode
,
949 ceph_cap_string(mask
), ret
);
953 int __ceph_caps_used(struct ceph_inode_info
*ci
)
957 used
|= CEPH_CAP_PIN
;
959 used
|= CEPH_CAP_FILE_RD
;
960 if (ci
->i_rdcache_ref
||
961 (!S_ISDIR(ci
->vfs_inode
.i_mode
) && /* ignore readdir cache */
962 ci
->vfs_inode
.i_data
.nrpages
))
963 used
|= CEPH_CAP_FILE_CACHE
;
965 used
|= CEPH_CAP_FILE_WR
;
966 if (ci
->i_wb_ref
|| ci
->i_wrbuffer_ref
)
967 used
|= CEPH_CAP_FILE_BUFFER
;
972 * wanted, by virtue of open file modes
974 int __ceph_caps_file_wanted(struct ceph_inode_info
*ci
)
977 for (i
= 0; i
< CEPH_FILE_MODE_BITS
; i
++) {
978 if (ci
->i_nr_by_mode
[i
])
983 return ceph_caps_for_mode(bits
>> 1);
987 * Return caps we have registered with the MDS(s) as 'wanted'.
989 int __ceph_caps_mds_wanted(struct ceph_inode_info
*ci
, bool check
)
991 struct ceph_cap
*cap
;
995 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
996 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
997 if (check
&& !__cap_is_valid(cap
))
999 if (cap
== ci
->i_auth_cap
)
1000 mds_wanted
|= cap
->mds_wanted
;
1002 mds_wanted
|= (cap
->mds_wanted
& ~CEPH_CAP_ANY_FILE_WR
);
1008 * called under i_ceph_lock
1010 static int __ceph_is_single_caps(struct ceph_inode_info
*ci
)
1012 return rb_first(&ci
->i_caps
) == rb_last(&ci
->i_caps
);
1015 int ceph_is_any_caps(struct inode
*inode
)
1017 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1020 spin_lock(&ci
->i_ceph_lock
);
1021 ret
= __ceph_is_any_real_caps(ci
);
1022 spin_unlock(&ci
->i_ceph_lock
);
1027 static void drop_inode_snap_realm(struct ceph_inode_info
*ci
)
1029 struct ceph_snap_realm
*realm
= ci
->i_snap_realm
;
1030 spin_lock(&realm
->inodes_with_caps_lock
);
1031 list_del_init(&ci
->i_snap_realm_item
);
1032 ci
->i_snap_realm_counter
++;
1033 ci
->i_snap_realm
= NULL
;
1034 if (realm
->ino
== ci
->i_vino
.ino
)
1035 realm
->inode
= NULL
;
1036 spin_unlock(&realm
->inodes_with_caps_lock
);
1037 ceph_put_snap_realm(ceph_sb_to_client(ci
->vfs_inode
.i_sb
)->mdsc
,
1042 * Remove a cap. Take steps to deal with a racing iterate_session_caps.
1044 * caller should hold i_ceph_lock.
1045 * caller will not hold session s_mutex if called from destroy_inode.
1047 void __ceph_remove_cap(struct ceph_cap
*cap
, bool queue_release
)
1049 struct ceph_mds_session
*session
= cap
->session
;
1050 struct ceph_inode_info
*ci
= cap
->ci
;
1051 struct ceph_mds_client
*mdsc
=
1052 ceph_sb_to_client(ci
->vfs_inode
.i_sb
)->mdsc
;
1055 dout("__ceph_remove_cap %p from %p\n", cap
, &ci
->vfs_inode
);
1057 /* remove from inode's cap rbtree, and clear auth cap */
1058 rb_erase(&cap
->ci_node
, &ci
->i_caps
);
1059 if (ci
->i_auth_cap
== cap
)
1060 ci
->i_auth_cap
= NULL
;
1062 /* remove from session list */
1063 spin_lock(&session
->s_cap_lock
);
1064 if (session
->s_cap_iterator
== cap
) {
1065 /* not yet, we are iterating over this very cap */
1066 dout("__ceph_remove_cap delaying %p removal from session %p\n",
1069 list_del_init(&cap
->session_caps
);
1070 session
->s_nr_caps
--;
1071 cap
->session
= NULL
;
1074 /* protect backpointer with s_cap_lock: see iterate_session_caps */
1078 * s_cap_reconnect is protected by s_cap_lock. no one changes
1079 * s_cap_gen while session is in the reconnect state.
1081 if (queue_release
&&
1082 (!session
->s_cap_reconnect
|| cap
->cap_gen
== session
->s_cap_gen
)) {
1083 cap
->queue_release
= 1;
1085 __ceph_queue_cap_release(session
, cap
);
1089 cap
->queue_release
= 0;
1091 cap
->cap_ino
= ci
->i_vino
.ino
;
1093 spin_unlock(&session
->s_cap_lock
);
1096 ceph_put_cap(mdsc
, cap
);
1098 if (!__ceph_is_any_real_caps(ci
)) {
1099 /* when reconnect denied, we remove session caps forcibly,
1100 * i_wr_ref can be non-zero. If there are ongoing write,
1101 * keep i_snap_realm.
1103 if (ci
->i_wr_ref
== 0 && ci
->i_snap_realm
)
1104 drop_inode_snap_realm(ci
);
1106 __cap_delay_cancel(mdsc
, ci
);
1110 struct cap_msg_args
{
1111 struct ceph_mds_session
*session
;
1112 u64 ino
, cid
, follows
;
1113 u64 flush_tid
, oldest_flush_tid
, size
, max_size
;
1116 struct ceph_buffer
*xattr_buf
;
1117 struct timespec64 atime
, mtime
, ctime
, btime
;
1118 int op
, caps
, wanted
, dirty
;
1119 u32 seq
, issue_seq
, mseq
, time_warp_seq
;
1128 * Build and send a cap message to the given MDS.
1130 * Caller should be holding s_mutex.
1132 static int send_cap_msg(struct cap_msg_args
*arg
)
1134 struct ceph_mds_caps
*fc
;
1135 struct ceph_msg
*msg
;
1138 struct ceph_osd_client
*osdc
= &arg
->session
->s_mdsc
->fsc
->client
->osdc
;
1140 dout("send_cap_msg %s %llx %llx caps %s wanted %s dirty %s"
1141 " seq %u/%u tid %llu/%llu mseq %u follows %lld size %llu/%llu"
1142 " xattr_ver %llu xattr_len %d\n", ceph_cap_op_name(arg
->op
),
1143 arg
->cid
, arg
->ino
, ceph_cap_string(arg
->caps
),
1144 ceph_cap_string(arg
->wanted
), ceph_cap_string(arg
->dirty
),
1145 arg
->seq
, arg
->issue_seq
, arg
->flush_tid
, arg
->oldest_flush_tid
,
1146 arg
->mseq
, arg
->follows
, arg
->size
, arg
->max_size
,
1148 arg
->xattr_buf
? (int)arg
->xattr_buf
->vec
.iov_len
: 0);
1150 /* flock buffer size + inline version + inline data size +
1151 * osd_epoch_barrier + oldest_flush_tid */
1152 extra_len
= 4 + 8 + 4 + 4 + 8 + 4 + 4 + 4 + 8 + 8 + 4;
1153 msg
= ceph_msg_new(CEPH_MSG_CLIENT_CAPS
, sizeof(*fc
) + extra_len
,
1158 msg
->hdr
.version
= cpu_to_le16(10);
1159 msg
->hdr
.tid
= cpu_to_le64(arg
->flush_tid
);
1161 fc
= msg
->front
.iov_base
;
1162 memset(fc
, 0, sizeof(*fc
));
1164 fc
->cap_id
= cpu_to_le64(arg
->cid
);
1165 fc
->op
= cpu_to_le32(arg
->op
);
1166 fc
->seq
= cpu_to_le32(arg
->seq
);
1167 fc
->issue_seq
= cpu_to_le32(arg
->issue_seq
);
1168 fc
->migrate_seq
= cpu_to_le32(arg
->mseq
);
1169 fc
->caps
= cpu_to_le32(arg
->caps
);
1170 fc
->wanted
= cpu_to_le32(arg
->wanted
);
1171 fc
->dirty
= cpu_to_le32(arg
->dirty
);
1172 fc
->ino
= cpu_to_le64(arg
->ino
);
1173 fc
->snap_follows
= cpu_to_le64(arg
->follows
);
1175 fc
->size
= cpu_to_le64(arg
->size
);
1176 fc
->max_size
= cpu_to_le64(arg
->max_size
);
1177 ceph_encode_timespec64(&fc
->mtime
, &arg
->mtime
);
1178 ceph_encode_timespec64(&fc
->atime
, &arg
->atime
);
1179 ceph_encode_timespec64(&fc
->ctime
, &arg
->ctime
);
1180 fc
->time_warp_seq
= cpu_to_le32(arg
->time_warp_seq
);
1182 fc
->uid
= cpu_to_le32(from_kuid(&init_user_ns
, arg
->uid
));
1183 fc
->gid
= cpu_to_le32(from_kgid(&init_user_ns
, arg
->gid
));
1184 fc
->mode
= cpu_to_le32(arg
->mode
);
1186 fc
->xattr_version
= cpu_to_le64(arg
->xattr_version
);
1187 if (arg
->xattr_buf
) {
1188 msg
->middle
= ceph_buffer_get(arg
->xattr_buf
);
1189 fc
->xattr_len
= cpu_to_le32(arg
->xattr_buf
->vec
.iov_len
);
1190 msg
->hdr
.middle_len
= cpu_to_le32(arg
->xattr_buf
->vec
.iov_len
);
1194 /* flock buffer size (version 2) */
1195 ceph_encode_32(&p
, 0);
1196 /* inline version (version 4) */
1197 ceph_encode_64(&p
, arg
->inline_data
? 0 : CEPH_INLINE_NONE
);
1198 /* inline data size */
1199 ceph_encode_32(&p
, 0);
1201 * osd_epoch_barrier (version 5)
1202 * The epoch_barrier is protected osdc->lock, so READ_ONCE here in
1203 * case it was recently changed
1205 ceph_encode_32(&p
, READ_ONCE(osdc
->epoch_barrier
));
1206 /* oldest_flush_tid (version 6) */
1207 ceph_encode_64(&p
, arg
->oldest_flush_tid
);
1210 * caller_uid/caller_gid (version 7)
1212 * Currently, we don't properly track which caller dirtied the caps
1213 * last, and force a flush of them when there is a conflict. For now,
1214 * just set this to 0:0, to emulate how the MDS has worked up to now.
1216 ceph_encode_32(&p
, 0);
1217 ceph_encode_32(&p
, 0);
1219 /* pool namespace (version 8) (mds always ignores this) */
1220 ceph_encode_32(&p
, 0);
1222 /* btime and change_attr (version 9) */
1223 ceph_encode_timespec64(p
, &arg
->btime
);
1224 p
+= sizeof(struct ceph_timespec
);
1225 ceph_encode_64(&p
, arg
->change_attr
);
1227 /* Advisory flags (version 10) */
1228 ceph_encode_32(&p
, arg
->flags
);
1230 ceph_con_send(&arg
->session
->s_con
, msg
);
1235 * Queue cap releases when an inode is dropped from our cache.
1237 void __ceph_remove_caps(struct ceph_inode_info
*ci
)
1241 /* lock i_ceph_lock, because ceph_d_revalidate(..., LOOKUP_RCU)
1242 * may call __ceph_caps_issued_mask() on a freeing inode. */
1243 spin_lock(&ci
->i_ceph_lock
);
1244 p
= rb_first(&ci
->i_caps
);
1246 struct ceph_cap
*cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
1248 __ceph_remove_cap(cap
, true);
1250 spin_unlock(&ci
->i_ceph_lock
);
1254 * Send a cap msg on the given inode. Update our caps state, then
1255 * drop i_ceph_lock and send the message.
1257 * Make note of max_size reported/requested from mds, revoked caps
1258 * that have now been implemented.
1260 * Return non-zero if delayed release, or we experienced an error
1261 * such that the caller should requeue + retry later.
1263 * called with i_ceph_lock, then drops it.
1264 * caller should hold snap_rwsem (read), s_mutex.
1266 static int __send_cap(struct ceph_mds_client
*mdsc
, struct ceph_cap
*cap
,
1267 int op
, int flags
, int used
, int want
, int retain
,
1268 int flushing
, u64 flush_tid
, u64 oldest_flush_tid
)
1269 __releases(cap
->ci
->i_ceph_lock
)
1271 struct ceph_inode_info
*ci
= cap
->ci
;
1272 struct inode
*inode
= &ci
->vfs_inode
;
1273 struct ceph_buffer
*old_blob
= NULL
;
1274 struct cap_msg_args arg
;
1280 held
= cap
->issued
| cap
->implemented
;
1281 revoking
= cap
->implemented
& ~cap
->issued
;
1282 retain
&= ~revoking
;
1284 dout("__send_cap %p cap %p session %p %s -> %s (revoking %s)\n",
1285 inode
, cap
, cap
->session
,
1286 ceph_cap_string(held
), ceph_cap_string(held
& retain
),
1287 ceph_cap_string(revoking
));
1288 BUG_ON((retain
& CEPH_CAP_PIN
) == 0);
1290 arg
.session
= cap
->session
;
1292 /* don't release wanted unless we've waited a bit. */
1293 if ((ci
->i_ceph_flags
& CEPH_I_NODELAY
) == 0 &&
1294 time_before(jiffies
, ci
->i_hold_caps_min
)) {
1295 dout(" delaying issued %s -> %s, wanted %s -> %s on send\n",
1296 ceph_cap_string(cap
->issued
),
1297 ceph_cap_string(cap
->issued
& retain
),
1298 ceph_cap_string(cap
->mds_wanted
),
1299 ceph_cap_string(want
));
1300 want
|= cap
->mds_wanted
;
1301 retain
|= cap
->issued
;
1304 ci
->i_ceph_flags
&= ~(CEPH_I_NODELAY
| CEPH_I_FLUSH
);
1305 if (want
& ~cap
->mds_wanted
) {
1306 /* user space may open/close single file frequently.
1307 * This avoids droping mds_wanted immediately after
1308 * requesting new mds_wanted.
1310 __cap_set_timeouts(mdsc
, ci
);
1313 cap
->issued
&= retain
; /* drop bits we don't want */
1314 if (cap
->implemented
& ~cap
->issued
) {
1316 * Wake up any waiters on wanted -> needed transition.
1317 * This is due to the weird transition from buffered
1318 * to sync IO... we need to flush dirty pages _before_
1319 * allowing sync writes to avoid reordering.
1323 cap
->implemented
&= cap
->issued
| used
;
1324 cap
->mds_wanted
= want
;
1326 arg
.ino
= ceph_vino(inode
).ino
;
1327 arg
.cid
= cap
->cap_id
;
1328 arg
.follows
= flushing
? ci
->i_head_snapc
->seq
: 0;
1329 arg
.flush_tid
= flush_tid
;
1330 arg
.oldest_flush_tid
= oldest_flush_tid
;
1332 arg
.size
= inode
->i_size
;
1333 ci
->i_reported_size
= arg
.size
;
1334 arg
.max_size
= ci
->i_wanted_max_size
;
1335 ci
->i_requested_max_size
= arg
.max_size
;
1337 if (flushing
& CEPH_CAP_XATTR_EXCL
) {
1338 old_blob
= __ceph_build_xattrs_blob(ci
);
1339 arg
.xattr_version
= ci
->i_xattrs
.version
;
1340 arg
.xattr_buf
= ci
->i_xattrs
.blob
;
1342 arg
.xattr_buf
= NULL
;
1345 arg
.mtime
= inode
->i_mtime
;
1346 arg
.atime
= inode
->i_atime
;
1347 arg
.ctime
= inode
->i_ctime
;
1348 arg
.btime
= ci
->i_btime
;
1349 arg
.change_attr
= inode_peek_iversion_raw(inode
);
1352 arg
.caps
= cap
->implemented
;
1354 arg
.dirty
= flushing
;
1357 arg
.issue_seq
= cap
->issue_seq
;
1358 arg
.mseq
= cap
->mseq
;
1359 arg
.time_warp_seq
= ci
->i_time_warp_seq
;
1361 arg
.uid
= inode
->i_uid
;
1362 arg
.gid
= inode
->i_gid
;
1363 arg
.mode
= inode
->i_mode
;
1365 arg
.inline_data
= ci
->i_inline_version
!= CEPH_INLINE_NONE
;
1366 if (!(flags
& CEPH_CLIENT_CAPS_PENDING_CAPSNAP
) &&
1367 !list_empty(&ci
->i_cap_snaps
)) {
1368 struct ceph_cap_snap
*capsnap
;
1369 list_for_each_entry_reverse(capsnap
, &ci
->i_cap_snaps
, ci_item
) {
1370 if (capsnap
->cap_flush
.tid
)
1372 if (capsnap
->need_flush
) {
1373 flags
|= CEPH_CLIENT_CAPS_PENDING_CAPSNAP
;
1380 spin_unlock(&ci
->i_ceph_lock
);
1382 ceph_buffer_put(old_blob
);
1384 ret
= send_cap_msg(&arg
);
1386 dout("error sending cap msg, must requeue %p\n", inode
);
1391 wake_up_all(&ci
->i_cap_wq
);
1396 static inline int __send_flush_snap(struct inode
*inode
,
1397 struct ceph_mds_session
*session
,
1398 struct ceph_cap_snap
*capsnap
,
1399 u32 mseq
, u64 oldest_flush_tid
)
1401 struct cap_msg_args arg
;
1403 arg
.session
= session
;
1404 arg
.ino
= ceph_vino(inode
).ino
;
1406 arg
.follows
= capsnap
->follows
;
1407 arg
.flush_tid
= capsnap
->cap_flush
.tid
;
1408 arg
.oldest_flush_tid
= oldest_flush_tid
;
1410 arg
.size
= capsnap
->size
;
1412 arg
.xattr_version
= capsnap
->xattr_version
;
1413 arg
.xattr_buf
= capsnap
->xattr_blob
;
1415 arg
.atime
= capsnap
->atime
;
1416 arg
.mtime
= capsnap
->mtime
;
1417 arg
.ctime
= capsnap
->ctime
;
1418 arg
.btime
= capsnap
->btime
;
1419 arg
.change_attr
= capsnap
->change_attr
;
1421 arg
.op
= CEPH_CAP_OP_FLUSHSNAP
;
1422 arg
.caps
= capsnap
->issued
;
1424 arg
.dirty
= capsnap
->dirty
;
1429 arg
.time_warp_seq
= capsnap
->time_warp_seq
;
1431 arg
.uid
= capsnap
->uid
;
1432 arg
.gid
= capsnap
->gid
;
1433 arg
.mode
= capsnap
->mode
;
1435 arg
.inline_data
= capsnap
->inline_data
;
1438 return send_cap_msg(&arg
);
1442 * When a snapshot is taken, clients accumulate dirty metadata on
1443 * inodes with capabilities in ceph_cap_snaps to describe the file
1444 * state at the time the snapshot was taken. This must be flushed
1445 * asynchronously back to the MDS once sync writes complete and dirty
1446 * data is written out.
1448 * Called under i_ceph_lock. Takes s_mutex as needed.
1450 static void __ceph_flush_snaps(struct ceph_inode_info
*ci
,
1451 struct ceph_mds_session
*session
)
1452 __releases(ci
->i_ceph_lock
)
1453 __acquires(ci
->i_ceph_lock
)
1455 struct inode
*inode
= &ci
->vfs_inode
;
1456 struct ceph_mds_client
*mdsc
= session
->s_mdsc
;
1457 struct ceph_cap_snap
*capsnap
;
1458 u64 oldest_flush_tid
= 0;
1459 u64 first_tid
= 1, last_tid
= 0;
1461 dout("__flush_snaps %p session %p\n", inode
, session
);
1463 list_for_each_entry(capsnap
, &ci
->i_cap_snaps
, ci_item
) {
1465 * we need to wait for sync writes to complete and for dirty
1466 * pages to be written out.
1468 if (capsnap
->dirty_pages
|| capsnap
->writing
)
1471 /* should be removed by ceph_try_drop_cap_snap() */
1472 BUG_ON(!capsnap
->need_flush
);
1474 /* only flush each capsnap once */
1475 if (capsnap
->cap_flush
.tid
> 0) {
1476 dout(" already flushed %p, skipping\n", capsnap
);
1480 spin_lock(&mdsc
->cap_dirty_lock
);
1481 capsnap
->cap_flush
.tid
= ++mdsc
->last_cap_flush_tid
;
1482 list_add_tail(&capsnap
->cap_flush
.g_list
,
1483 &mdsc
->cap_flush_list
);
1484 if (oldest_flush_tid
== 0)
1485 oldest_flush_tid
= __get_oldest_flush_tid(mdsc
);
1486 if (list_empty(&ci
->i_flushing_item
)) {
1487 list_add_tail(&ci
->i_flushing_item
,
1488 &session
->s_cap_flushing
);
1490 spin_unlock(&mdsc
->cap_dirty_lock
);
1492 list_add_tail(&capsnap
->cap_flush
.i_list
,
1493 &ci
->i_cap_flush_list
);
1496 first_tid
= capsnap
->cap_flush
.tid
;
1497 last_tid
= capsnap
->cap_flush
.tid
;
1500 ci
->i_ceph_flags
&= ~CEPH_I_FLUSH_SNAPS
;
1502 while (first_tid
<= last_tid
) {
1503 struct ceph_cap
*cap
= ci
->i_auth_cap
;
1504 struct ceph_cap_flush
*cf
;
1507 if (!(cap
&& cap
->session
== session
)) {
1508 dout("__flush_snaps %p auth cap %p not mds%d, "
1509 "stop\n", inode
, cap
, session
->s_mds
);
1514 list_for_each_entry(cf
, &ci
->i_cap_flush_list
, i_list
) {
1515 if (cf
->tid
>= first_tid
) {
1523 first_tid
= cf
->tid
+ 1;
1525 capsnap
= container_of(cf
, struct ceph_cap_snap
, cap_flush
);
1526 refcount_inc(&capsnap
->nref
);
1527 spin_unlock(&ci
->i_ceph_lock
);
1529 dout("__flush_snaps %p capsnap %p tid %llu %s\n",
1530 inode
, capsnap
, cf
->tid
, ceph_cap_string(capsnap
->dirty
));
1532 ret
= __send_flush_snap(inode
, session
, capsnap
, cap
->mseq
,
1535 pr_err("__flush_snaps: error sending cap flushsnap, "
1536 "ino (%llx.%llx) tid %llu follows %llu\n",
1537 ceph_vinop(inode
), cf
->tid
, capsnap
->follows
);
1540 ceph_put_cap_snap(capsnap
);
1541 spin_lock(&ci
->i_ceph_lock
);
1545 void ceph_flush_snaps(struct ceph_inode_info
*ci
,
1546 struct ceph_mds_session
**psession
)
1548 struct inode
*inode
= &ci
->vfs_inode
;
1549 struct ceph_mds_client
*mdsc
= ceph_inode_to_client(inode
)->mdsc
;
1550 struct ceph_mds_session
*session
= NULL
;
1553 dout("ceph_flush_snaps %p\n", inode
);
1555 session
= *psession
;
1557 spin_lock(&ci
->i_ceph_lock
);
1558 if (!(ci
->i_ceph_flags
& CEPH_I_FLUSH_SNAPS
)) {
1559 dout(" no capsnap needs flush, doing nothing\n");
1562 if (!ci
->i_auth_cap
) {
1563 dout(" no auth cap (migrating?), doing nothing\n");
1567 mds
= ci
->i_auth_cap
->session
->s_mds
;
1568 if (session
&& session
->s_mds
!= mds
) {
1569 dout(" oops, wrong session %p mutex\n", session
);
1570 mutex_unlock(&session
->s_mutex
);
1571 ceph_put_mds_session(session
);
1575 spin_unlock(&ci
->i_ceph_lock
);
1576 mutex_lock(&mdsc
->mutex
);
1577 session
= __ceph_lookup_mds_session(mdsc
, mds
);
1578 mutex_unlock(&mdsc
->mutex
);
1580 dout(" inverting session/ino locks on %p\n", session
);
1581 mutex_lock(&session
->s_mutex
);
1586 // make sure flushsnap messages are sent in proper order.
1587 if (ci
->i_ceph_flags
& CEPH_I_KICK_FLUSH
)
1588 __kick_flushing_caps(mdsc
, session
, ci
, 0);
1590 __ceph_flush_snaps(ci
, session
);
1592 spin_unlock(&ci
->i_ceph_lock
);
1595 *psession
= session
;
1596 } else if (session
) {
1597 mutex_unlock(&session
->s_mutex
);
1598 ceph_put_mds_session(session
);
1600 /* we flushed them all; remove this inode from the queue */
1601 spin_lock(&mdsc
->snap_flush_lock
);
1602 list_del_init(&ci
->i_snap_flush_item
);
1603 spin_unlock(&mdsc
->snap_flush_lock
);
1607 * Mark caps dirty. If inode is newly dirty, return the dirty flags.
1608 * Caller is then responsible for calling __mark_inode_dirty with the
1609 * returned flags value.
1611 int __ceph_mark_dirty_caps(struct ceph_inode_info
*ci
, int mask
,
1612 struct ceph_cap_flush
**pcf
)
1614 struct ceph_mds_client
*mdsc
=
1615 ceph_sb_to_client(ci
->vfs_inode
.i_sb
)->mdsc
;
1616 struct inode
*inode
= &ci
->vfs_inode
;
1617 int was
= ci
->i_dirty_caps
;
1620 if (!ci
->i_auth_cap
) {
1621 pr_warn("__mark_dirty_caps %p %llx mask %s, "
1622 "but no auth cap (session was closed?)\n",
1623 inode
, ceph_ino(inode
), ceph_cap_string(mask
));
1627 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci
->vfs_inode
,
1628 ceph_cap_string(mask
), ceph_cap_string(was
),
1629 ceph_cap_string(was
| mask
));
1630 ci
->i_dirty_caps
|= mask
;
1632 WARN_ON_ONCE(ci
->i_prealloc_cap_flush
);
1633 swap(ci
->i_prealloc_cap_flush
, *pcf
);
1635 if (!ci
->i_head_snapc
) {
1636 WARN_ON_ONCE(!rwsem_is_locked(&mdsc
->snap_rwsem
));
1637 ci
->i_head_snapc
= ceph_get_snap_context(
1638 ci
->i_snap_realm
->cached_context
);
1640 dout(" inode %p now dirty snapc %p auth cap %p\n",
1641 &ci
->vfs_inode
, ci
->i_head_snapc
, ci
->i_auth_cap
);
1642 BUG_ON(!list_empty(&ci
->i_dirty_item
));
1643 spin_lock(&mdsc
->cap_dirty_lock
);
1644 list_add(&ci
->i_dirty_item
, &mdsc
->cap_dirty
);
1645 spin_unlock(&mdsc
->cap_dirty_lock
);
1646 if (ci
->i_flushing_caps
== 0) {
1648 dirty
|= I_DIRTY_SYNC
;
1651 WARN_ON_ONCE(!ci
->i_prealloc_cap_flush
);
1653 BUG_ON(list_empty(&ci
->i_dirty_item
));
1654 if (((was
| ci
->i_flushing_caps
) & CEPH_CAP_FILE_BUFFER
) &&
1655 (mask
& CEPH_CAP_FILE_BUFFER
))
1656 dirty
|= I_DIRTY_DATASYNC
;
1657 __cap_delay_requeue(mdsc
, ci
, true);
1661 struct ceph_cap_flush
*ceph_alloc_cap_flush(void)
1663 return kmem_cache_alloc(ceph_cap_flush_cachep
, GFP_KERNEL
);
1666 void ceph_free_cap_flush(struct ceph_cap_flush
*cf
)
1669 kmem_cache_free(ceph_cap_flush_cachep
, cf
);
1672 static u64
__get_oldest_flush_tid(struct ceph_mds_client
*mdsc
)
1674 if (!list_empty(&mdsc
->cap_flush_list
)) {
1675 struct ceph_cap_flush
*cf
=
1676 list_first_entry(&mdsc
->cap_flush_list
,
1677 struct ceph_cap_flush
, g_list
);
1684 * Remove cap_flush from the mdsc's or inode's flushing cap list.
1685 * Return true if caller needs to wake up flush waiters.
1687 static bool __finish_cap_flush(struct ceph_mds_client
*mdsc
,
1688 struct ceph_inode_info
*ci
,
1689 struct ceph_cap_flush
*cf
)
1691 struct ceph_cap_flush
*prev
;
1692 bool wake
= cf
->wake
;
1694 /* are there older pending cap flushes? */
1695 if (wake
&& cf
->g_list
.prev
!= &mdsc
->cap_flush_list
) {
1696 prev
= list_prev_entry(cf
, g_list
);
1700 list_del(&cf
->g_list
);
1702 if (wake
&& cf
->i_list
.prev
!= &ci
->i_cap_flush_list
) {
1703 prev
= list_prev_entry(cf
, i_list
);
1707 list_del(&cf
->i_list
);
1715 * Add dirty inode to the flushing list. Assigned a seq number so we
1716 * can wait for caps to flush without starving.
1718 * Called under i_ceph_lock. Returns the flush tid.
1720 static u64
__mark_caps_flushing(struct inode
*inode
,
1721 struct ceph_mds_session
*session
, bool wake
,
1722 u64
*oldest_flush_tid
)
1724 struct ceph_mds_client
*mdsc
= ceph_sb_to_client(inode
->i_sb
)->mdsc
;
1725 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1726 struct ceph_cap_flush
*cf
= NULL
;
1729 BUG_ON(ci
->i_dirty_caps
== 0);
1730 BUG_ON(list_empty(&ci
->i_dirty_item
));
1731 BUG_ON(!ci
->i_prealloc_cap_flush
);
1733 flushing
= ci
->i_dirty_caps
;
1734 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1735 ceph_cap_string(flushing
),
1736 ceph_cap_string(ci
->i_flushing_caps
),
1737 ceph_cap_string(ci
->i_flushing_caps
| flushing
));
1738 ci
->i_flushing_caps
|= flushing
;
1739 ci
->i_dirty_caps
= 0;
1740 dout(" inode %p now !dirty\n", inode
);
1742 swap(cf
, ci
->i_prealloc_cap_flush
);
1743 cf
->caps
= flushing
;
1746 spin_lock(&mdsc
->cap_dirty_lock
);
1747 list_del_init(&ci
->i_dirty_item
);
1749 cf
->tid
= ++mdsc
->last_cap_flush_tid
;
1750 list_add_tail(&cf
->g_list
, &mdsc
->cap_flush_list
);
1751 *oldest_flush_tid
= __get_oldest_flush_tid(mdsc
);
1753 if (list_empty(&ci
->i_flushing_item
)) {
1754 list_add_tail(&ci
->i_flushing_item
, &session
->s_cap_flushing
);
1755 mdsc
->num_cap_flushing
++;
1757 spin_unlock(&mdsc
->cap_dirty_lock
);
1759 list_add_tail(&cf
->i_list
, &ci
->i_cap_flush_list
);
1765 * try to invalidate mapping pages without blocking.
1767 static int try_nonblocking_invalidate(struct inode
*inode
)
1769 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1770 u32 invalidating_gen
= ci
->i_rdcache_gen
;
1772 spin_unlock(&ci
->i_ceph_lock
);
1773 invalidate_mapping_pages(&inode
->i_data
, 0, -1);
1774 spin_lock(&ci
->i_ceph_lock
);
1776 if (inode
->i_data
.nrpages
== 0 &&
1777 invalidating_gen
== ci
->i_rdcache_gen
) {
1779 dout("try_nonblocking_invalidate %p success\n", inode
);
1780 /* save any racing async invalidate some trouble */
1781 ci
->i_rdcache_revoking
= ci
->i_rdcache_gen
- 1;
1784 dout("try_nonblocking_invalidate %p failed\n", inode
);
1788 bool __ceph_should_report_size(struct ceph_inode_info
*ci
)
1790 loff_t size
= ci
->vfs_inode
.i_size
;
1791 /* mds will adjust max size according to the reported size */
1792 if (ci
->i_flushing_caps
& CEPH_CAP_FILE_WR
)
1794 if (size
>= ci
->i_max_size
)
1796 /* half of previous max_size increment has been used */
1797 if (ci
->i_max_size
> ci
->i_reported_size
&&
1798 (size
<< 1) >= ci
->i_max_size
+ ci
->i_reported_size
)
1804 * Swiss army knife function to examine currently used and wanted
1805 * versus held caps. Release, flush, ack revoked caps to mds as
1808 * CHECK_CAPS_NODELAY - caller is delayed work and we should not delay
1809 * cap release further.
1810 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1811 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1814 void ceph_check_caps(struct ceph_inode_info
*ci
, int flags
,
1815 struct ceph_mds_session
*session
)
1817 struct ceph_fs_client
*fsc
= ceph_inode_to_client(&ci
->vfs_inode
);
1818 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
1819 struct inode
*inode
= &ci
->vfs_inode
;
1820 struct ceph_cap
*cap
;
1821 u64 flush_tid
, oldest_flush_tid
;
1822 int file_wanted
, used
, cap_used
;
1823 int took_snap_rwsem
= 0; /* true if mdsc->snap_rwsem held */
1824 int issued
, implemented
, want
, retain
, revoking
, flushing
= 0;
1825 int mds
= -1; /* keep track of how far we've gone through i_caps list
1826 to avoid an infinite loop on retry */
1828 int delayed
= 0, sent
= 0;
1829 bool no_delay
= flags
& CHECK_CAPS_NODELAY
;
1830 bool queue_invalidate
= false;
1831 bool tried_invalidate
= false;
1833 /* if we are unmounting, flush any unused caps immediately. */
1837 spin_lock(&ci
->i_ceph_lock
);
1839 if (ci
->i_ceph_flags
& CEPH_I_FLUSH
)
1840 flags
|= CHECK_CAPS_FLUSH
;
1842 if (!(flags
& CHECK_CAPS_AUTHONLY
) ||
1843 (ci
->i_auth_cap
&& __ceph_is_single_caps(ci
)))
1844 __cap_delay_cancel(mdsc
, ci
);
1848 spin_lock(&ci
->i_ceph_lock
);
1850 file_wanted
= __ceph_caps_file_wanted(ci
);
1851 used
= __ceph_caps_used(ci
);
1852 issued
= __ceph_caps_issued(ci
, &implemented
);
1853 revoking
= implemented
& ~issued
;
1856 retain
= file_wanted
| used
| CEPH_CAP_PIN
;
1857 if (!mdsc
->stopping
&& inode
->i_nlink
> 0) {
1859 retain
|= CEPH_CAP_ANY
; /* be greedy */
1860 } else if (S_ISDIR(inode
->i_mode
) &&
1861 (issued
& CEPH_CAP_FILE_SHARED
) &&
1862 __ceph_dir_is_complete(ci
)) {
1864 * If a directory is complete, we want to keep
1865 * the exclusive cap. So that MDS does not end up
1866 * revoking the shared cap on every create/unlink
1869 if (IS_RDONLY(inode
))
1870 want
= CEPH_CAP_ANY_SHARED
;
1872 want
= CEPH_CAP_ANY_SHARED
| CEPH_CAP_FILE_EXCL
;
1876 retain
|= CEPH_CAP_ANY_SHARED
;
1878 * keep RD only if we didn't have the file open RW,
1879 * because then the mds would revoke it anyway to
1880 * journal max_size=0.
1882 if (ci
->i_max_size
== 0)
1883 retain
|= CEPH_CAP_ANY_RD
;
1887 dout("check_caps %p file_want %s used %s dirty %s flushing %s"
1888 " issued %s revoking %s retain %s %s%s%s\n", inode
,
1889 ceph_cap_string(file_wanted
),
1890 ceph_cap_string(used
), ceph_cap_string(ci
->i_dirty_caps
),
1891 ceph_cap_string(ci
->i_flushing_caps
),
1892 ceph_cap_string(issued
), ceph_cap_string(revoking
),
1893 ceph_cap_string(retain
),
1894 (flags
& CHECK_CAPS_AUTHONLY
) ? " AUTHONLY" : "",
1895 (flags
& CHECK_CAPS_NODELAY
) ? " NODELAY" : "",
1896 (flags
& CHECK_CAPS_FLUSH
) ? " FLUSH" : "");
1899 * If we no longer need to hold onto old our caps, and we may
1900 * have cached pages, but don't want them, then try to invalidate.
1901 * If we fail, it's because pages are locked.... try again later.
1903 if ((!no_delay
|| mdsc
->stopping
) &&
1904 !S_ISDIR(inode
->i_mode
) && /* ignore readdir cache */
1905 !(ci
->i_wb_ref
|| ci
->i_wrbuffer_ref
) && /* no dirty pages... */
1906 inode
->i_data
.nrpages
&& /* have cached pages */
1907 (revoking
& (CEPH_CAP_FILE_CACHE
|
1908 CEPH_CAP_FILE_LAZYIO
)) && /* or revoking cache */
1909 !tried_invalidate
) {
1910 dout("check_caps trying to invalidate on %p\n", inode
);
1911 if (try_nonblocking_invalidate(inode
) < 0) {
1912 dout("check_caps queuing invalidate\n");
1913 queue_invalidate
= true;
1914 ci
->i_rdcache_revoking
= ci
->i_rdcache_gen
;
1916 tried_invalidate
= true;
1920 for (p
= rb_first(&ci
->i_caps
); p
; p
= rb_next(p
)) {
1921 cap
= rb_entry(p
, struct ceph_cap
, ci_node
);
1923 /* avoid looping forever */
1924 if (mds
>= cap
->mds
||
1925 ((flags
& CHECK_CAPS_AUTHONLY
) && cap
!= ci
->i_auth_cap
))
1928 /* NOTE: no side-effects allowed, until we take s_mutex */
1931 if (ci
->i_auth_cap
&& cap
!= ci
->i_auth_cap
)
1932 cap_used
&= ~ci
->i_auth_cap
->issued
;
1934 revoking
= cap
->implemented
& ~cap
->issued
;
1935 dout(" mds%d cap %p used %s issued %s implemented %s revoking %s\n",
1936 cap
->mds
, cap
, ceph_cap_string(cap_used
),
1937 ceph_cap_string(cap
->issued
),
1938 ceph_cap_string(cap
->implemented
),
1939 ceph_cap_string(revoking
));
1941 if (cap
== ci
->i_auth_cap
&&
1942 (cap
->issued
& CEPH_CAP_FILE_WR
)) {
1943 /* request larger max_size from MDS? */
1944 if (ci
->i_wanted_max_size
> ci
->i_max_size
&&
1945 ci
->i_wanted_max_size
> ci
->i_requested_max_size
) {
1946 dout("requesting new max_size\n");
1950 /* approaching file_max? */
1951 if (__ceph_should_report_size(ci
)) {
1952 dout("i_size approaching max_size\n");
1956 /* flush anything dirty? */
1957 if (cap
== ci
->i_auth_cap
) {
1958 if ((flags
& CHECK_CAPS_FLUSH
) && ci
->i_dirty_caps
) {
1959 dout("flushing dirty caps\n");
1962 if (ci
->i_ceph_flags
& CEPH_I_FLUSH_SNAPS
) {
1963 dout("flushing snap caps\n");
1968 /* completed revocation? going down and there are no caps? */
1969 if (revoking
&& (revoking
& cap_used
) == 0) {
1970 dout("completed revocation of %s\n",
1971 ceph_cap_string(cap
->implemented
& ~cap
->issued
));
1975 /* want more caps from mds? */
1976 if (want
& ~(cap
->mds_wanted
| cap
->issued
))
1979 /* things we might delay */
1980 if ((cap
->issued
& ~retain
) == 0)
1981 continue; /* nope, all good */
1987 if ((ci
->i_ceph_flags
& CEPH_I_NODELAY
) == 0 &&
1988 time_before(jiffies
, ci
->i_hold_caps_max
)) {
1989 dout(" delaying issued %s -> %s, wanted %s -> %s\n",
1990 ceph_cap_string(cap
->issued
),
1991 ceph_cap_string(cap
->issued
& retain
),
1992 ceph_cap_string(cap
->mds_wanted
),
1993 ceph_cap_string(want
));
1999 if (session
&& session
!= cap
->session
) {
2000 dout("oops, wrong session %p mutex\n", session
);
2001 mutex_unlock(&session
->s_mutex
);
2005 session
= cap
->session
;
2006 if (mutex_trylock(&session
->s_mutex
) == 0) {
2007 dout("inverting session/ino locks on %p\n",
2009 spin_unlock(&ci
->i_ceph_lock
);
2010 if (took_snap_rwsem
) {
2011 up_read(&mdsc
->snap_rwsem
);
2012 took_snap_rwsem
= 0;
2014 mutex_lock(&session
->s_mutex
);
2019 /* kick flushing and flush snaps before sending normal
2021 if (cap
== ci
->i_auth_cap
&&
2023 (CEPH_I_KICK_FLUSH
| CEPH_I_FLUSH_SNAPS
))) {
2024 if (ci
->i_ceph_flags
& CEPH_I_KICK_FLUSH
)
2025 __kick_flushing_caps(mdsc
, session
, ci
, 0);
2026 if (ci
->i_ceph_flags
& CEPH_I_FLUSH_SNAPS
)
2027 __ceph_flush_snaps(ci
, session
);
2032 /* take snap_rwsem after session mutex */
2033 if (!took_snap_rwsem
) {
2034 if (down_read_trylock(&mdsc
->snap_rwsem
) == 0) {
2035 dout("inverting snap/in locks on %p\n",
2037 spin_unlock(&ci
->i_ceph_lock
);
2038 down_read(&mdsc
->snap_rwsem
);
2039 took_snap_rwsem
= 1;
2042 took_snap_rwsem
= 1;
2045 if (cap
== ci
->i_auth_cap
&& ci
->i_dirty_caps
) {
2046 flushing
= ci
->i_dirty_caps
;
2047 flush_tid
= __mark_caps_flushing(inode
, session
, false,
2052 spin_lock(&mdsc
->cap_dirty_lock
);
2053 oldest_flush_tid
= __get_oldest_flush_tid(mdsc
);
2054 spin_unlock(&mdsc
->cap_dirty_lock
);
2057 mds
= cap
->mds
; /* remember mds, so we don't repeat */
2060 /* __send_cap drops i_ceph_lock */
2061 delayed
+= __send_cap(mdsc
, cap
, CEPH_CAP_OP_UPDATE
, 0,
2062 cap_used
, want
, retain
, flushing
,
2063 flush_tid
, oldest_flush_tid
);
2064 goto retry
; /* retake i_ceph_lock and restart our cap scan. */
2067 /* Reschedule delayed caps release if we delayed anything */
2069 __cap_delay_requeue(mdsc
, ci
, false);
2071 spin_unlock(&ci
->i_ceph_lock
);
2073 if (queue_invalidate
)
2074 ceph_queue_invalidate(inode
);
2077 mutex_unlock(&session
->s_mutex
);
2078 if (took_snap_rwsem
)
2079 up_read(&mdsc
->snap_rwsem
);
2083 * Try to flush dirty caps back to the auth mds.
2085 static int try_flush_caps(struct inode
*inode
, u64
*ptid
)
2087 struct ceph_mds_client
*mdsc
= ceph_sb_to_client(inode
->i_sb
)->mdsc
;
2088 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2089 struct ceph_mds_session
*session
= NULL
;
2091 u64 flush_tid
= 0, oldest_flush_tid
= 0;
2094 spin_lock(&ci
->i_ceph_lock
);
2096 if (ci
->i_dirty_caps
&& ci
->i_auth_cap
) {
2097 struct ceph_cap
*cap
= ci
->i_auth_cap
;
2100 if (session
!= cap
->session
) {
2101 spin_unlock(&ci
->i_ceph_lock
);
2103 mutex_unlock(&session
->s_mutex
);
2104 session
= cap
->session
;
2105 mutex_lock(&session
->s_mutex
);
2108 if (cap
->session
->s_state
< CEPH_MDS_SESSION_OPEN
) {
2109 spin_unlock(&ci
->i_ceph_lock
);
2113 if (ci
->i_ceph_flags
&
2114 (CEPH_I_KICK_FLUSH
| CEPH_I_FLUSH_SNAPS
)) {
2115 if (ci
->i_ceph_flags
& CEPH_I_KICK_FLUSH
)
2116 __kick_flushing_caps(mdsc
, session
, ci
, 0);
2117 if (ci
->i_ceph_flags
& CEPH_I_FLUSH_SNAPS
)
2118 __ceph_flush_snaps(ci
, session
);
2122 flushing
= ci
->i_dirty_caps
;
2123 flush_tid
= __mark_caps_flushing(inode
, session
, true,
2126 /* __send_cap drops i_ceph_lock */
2127 delayed
= __send_cap(mdsc
, cap
, CEPH_CAP_OP_FLUSH
,
2128 CEPH_CLIENT_CAPS_SYNC
,
2129 __ceph_caps_used(ci
),
2130 __ceph_caps_wanted(ci
),
2131 (cap
->issued
| cap
->implemented
),
2132 flushing
, flush_tid
, oldest_flush_tid
);
2135 spin_lock(&ci
->i_ceph_lock
);
2136 __cap_delay_requeue(mdsc
, ci
, true);
2137 spin_unlock(&ci
->i_ceph_lock
);
2140 if (!list_empty(&ci
->i_cap_flush_list
)) {
2141 struct ceph_cap_flush
*cf
=
2142 list_last_entry(&ci
->i_cap_flush_list
,
2143 struct ceph_cap_flush
, i_list
);
2145 flush_tid
= cf
->tid
;
2147 flushing
= ci
->i_flushing_caps
;
2148 spin_unlock(&ci
->i_ceph_lock
);
2152 mutex_unlock(&session
->s_mutex
);
2159 * Return true if we've flushed caps through the given flush_tid.
2161 static int caps_are_flushed(struct inode
*inode
, u64 flush_tid
)
2163 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2166 spin_lock(&ci
->i_ceph_lock
);
2167 if (!list_empty(&ci
->i_cap_flush_list
)) {
2168 struct ceph_cap_flush
* cf
=
2169 list_first_entry(&ci
->i_cap_flush_list
,
2170 struct ceph_cap_flush
, i_list
);
2171 if (cf
->tid
<= flush_tid
)
2174 spin_unlock(&ci
->i_ceph_lock
);
2179 * wait for any unsafe requests to complete.
2181 static int unsafe_request_wait(struct inode
*inode
)
2183 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2184 struct ceph_mds_request
*req1
= NULL
, *req2
= NULL
;
2187 spin_lock(&ci
->i_unsafe_lock
);
2188 if (S_ISDIR(inode
->i_mode
) && !list_empty(&ci
->i_unsafe_dirops
)) {
2189 req1
= list_last_entry(&ci
->i_unsafe_dirops
,
2190 struct ceph_mds_request
,
2192 ceph_mdsc_get_request(req1
);
2194 if (!list_empty(&ci
->i_unsafe_iops
)) {
2195 req2
= list_last_entry(&ci
->i_unsafe_iops
,
2196 struct ceph_mds_request
,
2197 r_unsafe_target_item
);
2198 ceph_mdsc_get_request(req2
);
2200 spin_unlock(&ci
->i_unsafe_lock
);
2202 dout("unsafe_request_wait %p wait on tid %llu %llu\n",
2203 inode
, req1
? req1
->r_tid
: 0ULL, req2
? req2
->r_tid
: 0ULL);
2205 ret
= !wait_for_completion_timeout(&req1
->r_safe_completion
,
2206 ceph_timeout_jiffies(req1
->r_timeout
));
2209 ceph_mdsc_put_request(req1
);
2212 ret
= !wait_for_completion_timeout(&req2
->r_safe_completion
,
2213 ceph_timeout_jiffies(req2
->r_timeout
));
2216 ceph_mdsc_put_request(req2
);
2221 int ceph_fsync(struct file
*file
, loff_t start
, loff_t end
, int datasync
)
2223 struct ceph_file_info
*fi
= file
->private_data
;
2224 struct inode
*inode
= file
->f_mapping
->host
;
2225 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2230 dout("fsync %p%s\n", inode
, datasync
? " datasync" : "");
2232 ret
= file_write_and_wait_range(file
, start
, end
);
2236 dirty
= try_flush_caps(inode
, &flush_tid
);
2237 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty
));
2239 err
= unsafe_request_wait(inode
);
2242 * only wait on non-file metadata writeback (the mds
2243 * can recover size and mtime, so we don't need to
2246 if (!err
&& (dirty
& ~CEPH_CAP_ANY_FILE_WR
)) {
2247 err
= wait_event_interruptible(ci
->i_cap_wq
,
2248 caps_are_flushed(inode
, flush_tid
));
2254 if (errseq_check(&ci
->i_meta_err
, READ_ONCE(fi
->meta_err
))) {
2255 spin_lock(&file
->f_lock
);
2256 err
= errseq_check_and_advance(&ci
->i_meta_err
,
2258 spin_unlock(&file
->f_lock
);
2263 dout("fsync %p%s result=%d\n", inode
, datasync
? " datasync" : "", ret
);
2268 * Flush any dirty caps back to the mds. If we aren't asked to wait,
2269 * queue inode for flush but don't do so immediately, because we can
2270 * get by with fewer MDS messages if we wait for data writeback to
2273 int ceph_write_inode(struct inode
*inode
, struct writeback_control
*wbc
)
2275 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2279 int wait
= (wbc
->sync_mode
== WB_SYNC_ALL
&& !wbc
->for_sync
);
2281 dout("write_inode %p wait=%d\n", inode
, wait
);
2283 dirty
= try_flush_caps(inode
, &flush_tid
);
2285 err
= wait_event_interruptible(ci
->i_cap_wq
,
2286 caps_are_flushed(inode
, flush_tid
));
2288 struct ceph_mds_client
*mdsc
=
2289 ceph_sb_to_client(inode
->i_sb
)->mdsc
;
2291 spin_lock(&ci
->i_ceph_lock
);
2292 if (__ceph_caps_dirty(ci
))
2293 __cap_delay_requeue_front(mdsc
, ci
);
2294 spin_unlock(&ci
->i_ceph_lock
);
2299 static void __kick_flushing_caps(struct ceph_mds_client
*mdsc
,
2300 struct ceph_mds_session
*session
,
2301 struct ceph_inode_info
*ci
,
2302 u64 oldest_flush_tid
)
2303 __releases(ci
->i_ceph_lock
)
2304 __acquires(ci
->i_ceph_lock
)
2306 struct inode
*inode
= &ci
->vfs_inode
;
2307 struct ceph_cap
*cap
;
2308 struct ceph_cap_flush
*cf
;
2311 u64 last_snap_flush
= 0;
2313 ci
->i_ceph_flags
&= ~CEPH_I_KICK_FLUSH
;
2315 list_for_each_entry_reverse(cf
, &ci
->i_cap_flush_list
, i_list
) {
2317 last_snap_flush
= cf
->tid
;
2322 list_for_each_entry(cf
, &ci
->i_cap_flush_list
, i_list
) {
2323 if (cf
->tid
< first_tid
)
2326 cap
= ci
->i_auth_cap
;
2327 if (!(cap
&& cap
->session
== session
)) {
2328 pr_err("%p auth cap %p not mds%d ???\n",
2329 inode
, cap
, session
->s_mds
);
2333 first_tid
= cf
->tid
+ 1;
2336 dout("kick_flushing_caps %p cap %p tid %llu %s\n",
2337 inode
, cap
, cf
->tid
, ceph_cap_string(cf
->caps
));
2338 ci
->i_ceph_flags
|= CEPH_I_NODELAY
;
2340 ret
= __send_cap(mdsc
, cap
, CEPH_CAP_OP_FLUSH
,
2341 (cf
->tid
< last_snap_flush
?
2342 CEPH_CLIENT_CAPS_PENDING_CAPSNAP
: 0),
2343 __ceph_caps_used(ci
),
2344 __ceph_caps_wanted(ci
),
2345 (cap
->issued
| cap
->implemented
),
2346 cf
->caps
, cf
->tid
, oldest_flush_tid
);
2348 pr_err("kick_flushing_caps: error sending "
2349 "cap flush, ino (%llx.%llx) "
2350 "tid %llu flushing %s\n",
2351 ceph_vinop(inode
), cf
->tid
,
2352 ceph_cap_string(cf
->caps
));
2355 struct ceph_cap_snap
*capsnap
=
2356 container_of(cf
, struct ceph_cap_snap
,
2358 dout("kick_flushing_caps %p capsnap %p tid %llu %s\n",
2359 inode
, capsnap
, cf
->tid
,
2360 ceph_cap_string(capsnap
->dirty
));
2362 refcount_inc(&capsnap
->nref
);
2363 spin_unlock(&ci
->i_ceph_lock
);
2365 ret
= __send_flush_snap(inode
, session
, capsnap
, cap
->mseq
,
2368 pr_err("kick_flushing_caps: error sending "
2369 "cap flushsnap, ino (%llx.%llx) "
2370 "tid %llu follows %llu\n",
2371 ceph_vinop(inode
), cf
->tid
,
2375 ceph_put_cap_snap(capsnap
);
2378 spin_lock(&ci
->i_ceph_lock
);
2382 void ceph_early_kick_flushing_caps(struct ceph_mds_client
*mdsc
,
2383 struct ceph_mds_session
*session
)
2385 struct ceph_inode_info
*ci
;
2386 struct ceph_cap
*cap
;
2387 u64 oldest_flush_tid
;
2389 dout("early_kick_flushing_caps mds%d\n", session
->s_mds
);
2391 spin_lock(&mdsc
->cap_dirty_lock
);
2392 oldest_flush_tid
= __get_oldest_flush_tid(mdsc
);
2393 spin_unlock(&mdsc
->cap_dirty_lock
);
2395 list_for_each_entry(ci
, &session
->s_cap_flushing
, i_flushing_item
) {
2396 spin_lock(&ci
->i_ceph_lock
);
2397 cap
= ci
->i_auth_cap
;
2398 if (!(cap
&& cap
->session
== session
)) {
2399 pr_err("%p auth cap %p not mds%d ???\n",
2400 &ci
->vfs_inode
, cap
, session
->s_mds
);
2401 spin_unlock(&ci
->i_ceph_lock
);
2407 * if flushing caps were revoked, we re-send the cap flush
2408 * in client reconnect stage. This guarantees MDS * processes
2409 * the cap flush message before issuing the flushing caps to
2412 if ((cap
->issued
& ci
->i_flushing_caps
) !=
2413 ci
->i_flushing_caps
) {
2414 /* encode_caps_cb() also will reset these sequence
2415 * numbers. make sure sequence numbers in cap flush
2416 * message match later reconnect message */
2420 __kick_flushing_caps(mdsc
, session
, ci
,
2423 ci
->i_ceph_flags
|= CEPH_I_KICK_FLUSH
;
2426 spin_unlock(&ci
->i_ceph_lock
);
2430 void ceph_kick_flushing_caps(struct ceph_mds_client
*mdsc
,
2431 struct ceph_mds_session
*session
)
2433 struct ceph_inode_info
*ci
;
2434 struct ceph_cap
*cap
;
2435 u64 oldest_flush_tid
;
2437 dout("kick_flushing_caps mds%d\n", session
->s_mds
);
2439 spin_lock(&mdsc
->cap_dirty_lock
);
2440 oldest_flush_tid
= __get_oldest_flush_tid(mdsc
);
2441 spin_unlock(&mdsc
->cap_dirty_lock
);
2443 list_for_each_entry(ci
, &session
->s_cap_flushing
, i_flushing_item
) {
2444 spin_lock(&ci
->i_ceph_lock
);
2445 cap
= ci
->i_auth_cap
;
2446 if (!(cap
&& cap
->session
== session
)) {
2447 pr_err("%p auth cap %p not mds%d ???\n",
2448 &ci
->vfs_inode
, cap
, session
->s_mds
);
2449 spin_unlock(&ci
->i_ceph_lock
);
2452 if (ci
->i_ceph_flags
& CEPH_I_KICK_FLUSH
) {
2453 __kick_flushing_caps(mdsc
, session
, ci
,
2456 spin_unlock(&ci
->i_ceph_lock
);
2460 static void kick_flushing_inode_caps(struct ceph_mds_client
*mdsc
,
2461 struct ceph_mds_session
*session
,
2462 struct inode
*inode
)
2463 __releases(ci
->i_ceph_lock
)
2465 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2466 struct ceph_cap
*cap
;
2468 cap
= ci
->i_auth_cap
;
2469 dout("kick_flushing_inode_caps %p flushing %s\n", inode
,
2470 ceph_cap_string(ci
->i_flushing_caps
));
2472 if (!list_empty(&ci
->i_cap_flush_list
)) {
2473 u64 oldest_flush_tid
;
2474 spin_lock(&mdsc
->cap_dirty_lock
);
2475 list_move_tail(&ci
->i_flushing_item
,
2476 &cap
->session
->s_cap_flushing
);
2477 oldest_flush_tid
= __get_oldest_flush_tid(mdsc
);
2478 spin_unlock(&mdsc
->cap_dirty_lock
);
2480 __kick_flushing_caps(mdsc
, session
, ci
, oldest_flush_tid
);
2481 spin_unlock(&ci
->i_ceph_lock
);
2483 spin_unlock(&ci
->i_ceph_lock
);
2489 * Take references to capabilities we hold, so that we don't release
2490 * them to the MDS prematurely.
2492 * Protected by i_ceph_lock.
2494 static void __take_cap_refs(struct ceph_inode_info
*ci
, int got
,
2495 bool snap_rwsem_locked
)
2497 if (got
& CEPH_CAP_PIN
)
2499 if (got
& CEPH_CAP_FILE_RD
)
2501 if (got
& CEPH_CAP_FILE_CACHE
)
2502 ci
->i_rdcache_ref
++;
2503 if (got
& CEPH_CAP_FILE_WR
) {
2504 if (ci
->i_wr_ref
== 0 && !ci
->i_head_snapc
) {
2505 BUG_ON(!snap_rwsem_locked
);
2506 ci
->i_head_snapc
= ceph_get_snap_context(
2507 ci
->i_snap_realm
->cached_context
);
2511 if (got
& CEPH_CAP_FILE_BUFFER
) {
2512 if (ci
->i_wb_ref
== 0)
2513 ihold(&ci
->vfs_inode
);
2515 dout("__take_cap_refs %p wb %d -> %d (?)\n",
2516 &ci
->vfs_inode
, ci
->i_wb_ref
-1, ci
->i_wb_ref
);
2521 * Try to grab cap references. Specify those refs we @want, and the
2522 * minimal set we @need. Also include the larger offset we are writing
2523 * to (when applicable), and check against max_size here as well.
2524 * Note that caller is responsible for ensuring max_size increases are
2525 * requested from the MDS.
2527 * Returns 0 if caps were not able to be acquired (yet), a 1 if they were,
2528 * or a negative error code.
2530 * FIXME: how does a 0 return differ from -EAGAIN?
2537 static int try_get_cap_refs(struct inode
*inode
, int need
, int want
,
2538 loff_t endoff
, int flags
, int *got
)
2540 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2541 struct ceph_mds_client
*mdsc
= ceph_inode_to_client(inode
)->mdsc
;
2543 int have
, implemented
;
2545 bool snap_rwsem_locked
= false;
2547 dout("get_cap_refs %p need %s want %s\n", inode
,
2548 ceph_cap_string(need
), ceph_cap_string(want
));
2551 spin_lock(&ci
->i_ceph_lock
);
2553 if ((flags
& CHECK_FILELOCK
) &&
2554 (ci
->i_ceph_flags
& CEPH_I_ERROR_FILELOCK
)) {
2555 dout("try_get_cap_refs %p error filelock\n", inode
);
2560 /* make sure file is actually open */
2561 file_wanted
= __ceph_caps_file_wanted(ci
);
2562 if ((file_wanted
& need
) != need
) {
2563 dout("try_get_cap_refs need %s file_wanted %s, EBADF\n",
2564 ceph_cap_string(need
), ceph_cap_string(file_wanted
));
2569 /* finish pending truncate */
2570 while (ci
->i_truncate_pending
) {
2571 spin_unlock(&ci
->i_ceph_lock
);
2572 if (snap_rwsem_locked
) {
2573 up_read(&mdsc
->snap_rwsem
);
2574 snap_rwsem_locked
= false;
2576 __ceph_do_pending_vmtruncate(inode
);
2577 spin_lock(&ci
->i_ceph_lock
);
2580 have
= __ceph_caps_issued(ci
, &implemented
);
2582 if (have
& need
& CEPH_CAP_FILE_WR
) {
2583 if (endoff
>= 0 && endoff
> (loff_t
)ci
->i_max_size
) {
2584 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2585 inode
, endoff
, ci
->i_max_size
);
2586 if (endoff
> ci
->i_requested_max_size
)
2591 * If a sync write is in progress, we must wait, so that we
2592 * can get a final snapshot value for size+mtime.
2594 if (__ceph_have_pending_cap_snap(ci
)) {
2595 dout("get_cap_refs %p cap_snap_pending\n", inode
);
2600 if ((have
& need
) == need
) {
2602 * Look at (implemented & ~have & not) so that we keep waiting
2603 * on transition from wanted -> needed caps. This is needed
2604 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2605 * going before a prior buffered writeback happens.
2607 int not = want
& ~(have
& need
);
2608 int revoking
= implemented
& ~have
;
2609 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2610 inode
, ceph_cap_string(have
), ceph_cap_string(not),
2611 ceph_cap_string(revoking
));
2612 if ((revoking
& not) == 0) {
2613 if (!snap_rwsem_locked
&&
2614 !ci
->i_head_snapc
&&
2615 (need
& CEPH_CAP_FILE_WR
)) {
2616 if (!down_read_trylock(&mdsc
->snap_rwsem
)) {
2618 * we can not call down_read() when
2619 * task isn't in TASK_RUNNING state
2621 if (flags
& NON_BLOCKING
) {
2626 spin_unlock(&ci
->i_ceph_lock
);
2627 down_read(&mdsc
->snap_rwsem
);
2628 snap_rwsem_locked
= true;
2631 snap_rwsem_locked
= true;
2633 *got
= need
| (have
& want
);
2634 if ((need
& CEPH_CAP_FILE_RD
) &&
2635 !(*got
& CEPH_CAP_FILE_CACHE
))
2636 ceph_disable_fscache_readpage(ci
);
2637 __take_cap_refs(ci
, *got
, true);
2641 int session_readonly
= false;
2642 if ((need
& CEPH_CAP_FILE_WR
) && ci
->i_auth_cap
) {
2643 struct ceph_mds_session
*s
= ci
->i_auth_cap
->session
;
2644 spin_lock(&s
->s_cap_lock
);
2645 session_readonly
= s
->s_readonly
;
2646 spin_unlock(&s
->s_cap_lock
);
2648 if (session_readonly
) {
2649 dout("get_cap_refs %p needed %s but mds%d readonly\n",
2650 inode
, ceph_cap_string(need
), ci
->i_auth_cap
->mds
);
2655 if (ci
->i_ceph_flags
& CEPH_I_CAP_DROPPED
) {
2657 if (READ_ONCE(mdsc
->fsc
->mount_state
) ==
2658 CEPH_MOUNT_SHUTDOWN
) {
2659 dout("get_cap_refs %p forced umount\n", inode
);
2663 mds_wanted
= __ceph_caps_mds_wanted(ci
, false);
2664 if (need
& ~(mds_wanted
& need
)) {
2665 dout("get_cap_refs %p caps were dropped"
2666 " (session killed?)\n", inode
);
2670 if (!(file_wanted
& ~mds_wanted
))
2671 ci
->i_ceph_flags
&= ~CEPH_I_CAP_DROPPED
;
2674 dout("get_cap_refs %p have %s needed %s\n", inode
,
2675 ceph_cap_string(have
), ceph_cap_string(need
));
2678 spin_unlock(&ci
->i_ceph_lock
);
2679 if (snap_rwsem_locked
)
2680 up_read(&mdsc
->snap_rwsem
);
2682 dout("get_cap_refs %p ret %d got %s\n", inode
,
2683 ret
, ceph_cap_string(*got
));
2688 * Check the offset we are writing up to against our current
2689 * max_size. If necessary, tell the MDS we want to write to
2692 static void check_max_size(struct inode
*inode
, loff_t endoff
)
2694 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2697 /* do we need to explicitly request a larger max_size? */
2698 spin_lock(&ci
->i_ceph_lock
);
2699 if (endoff
>= ci
->i_max_size
&& endoff
> ci
->i_wanted_max_size
) {
2700 dout("write %p at large endoff %llu, req max_size\n",
2702 ci
->i_wanted_max_size
= endoff
;
2704 /* duplicate ceph_check_caps()'s logic */
2705 if (ci
->i_auth_cap
&&
2706 (ci
->i_auth_cap
->issued
& CEPH_CAP_FILE_WR
) &&
2707 ci
->i_wanted_max_size
> ci
->i_max_size
&&
2708 ci
->i_wanted_max_size
> ci
->i_requested_max_size
)
2710 spin_unlock(&ci
->i_ceph_lock
);
2712 ceph_check_caps(ci
, CHECK_CAPS_AUTHONLY
, NULL
);
2715 int ceph_try_get_caps(struct inode
*inode
, int need
, int want
,
2716 bool nonblock
, int *got
)
2720 BUG_ON(need
& ~CEPH_CAP_FILE_RD
);
2721 BUG_ON(want
& ~(CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_LAZYIO
|CEPH_CAP_FILE_SHARED
));
2722 ret
= ceph_pool_perm_check(inode
, need
);
2726 ret
= try_get_cap_refs(inode
, need
, want
, 0,
2727 (nonblock
? NON_BLOCKING
: 0), got
);
2728 return ret
== -EAGAIN
? 0 : ret
;
2732 * Wait for caps, and take cap references. If we can't get a WR cap
2733 * due to a small max_size, make sure we check_max_size (and possibly
2734 * ask the mds) so we don't get hung up indefinitely.
2736 int ceph_get_caps(struct file
*filp
, int need
, int want
,
2737 loff_t endoff
, int *got
, struct page
**pinned_page
)
2739 struct ceph_file_info
*fi
= filp
->private_data
;
2740 struct inode
*inode
= file_inode(filp
);
2741 struct ceph_inode_info
*ci
= ceph_inode(inode
);
2742 struct ceph_fs_client
*fsc
= ceph_inode_to_client(inode
);
2743 int ret
, _got
, flags
;
2745 ret
= ceph_pool_perm_check(inode
, need
);
2749 if ((fi
->fmode
& CEPH_FILE_MODE_WR
) &&
2750 fi
->filp_gen
!= READ_ONCE(fsc
->filp_gen
))
2755 check_max_size(inode
, endoff
);
2757 flags
= atomic_read(&fi
->num_locks
) ? CHECK_FILELOCK
: 0;
2759 ret
= try_get_cap_refs(inode
, need
, want
, endoff
,
2764 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
2766 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
2768 cw
.ino
= inode
->i_ino
;
2769 cw
.tgid
= current
->tgid
;
2773 spin_lock(&mdsc
->caps_list_lock
);
2774 list_add(&cw
.list
, &mdsc
->cap_wait_list
);
2775 spin_unlock(&mdsc
->caps_list_lock
);
2777 add_wait_queue(&ci
->i_cap_wq
, &wait
);
2779 flags
|= NON_BLOCKING
;
2780 while (!(ret
= try_get_cap_refs(inode
, need
, want
,
2781 endoff
, flags
, &_got
))) {
2782 if (signal_pending(current
)) {
2786 wait_woken(&wait
, TASK_INTERRUPTIBLE
, MAX_SCHEDULE_TIMEOUT
);
2789 remove_wait_queue(&ci
->i_cap_wq
, &wait
);
2791 spin_lock(&mdsc
->caps_list_lock
);
2793 spin_unlock(&mdsc
->caps_list_lock
);
2799 if ((fi
->fmode
& CEPH_FILE_MODE_WR
) &&
2800 fi
->filp_gen
!= READ_ONCE(fsc
->filp_gen
)) {
2801 if (ret
>= 0 && _got
)
2802 ceph_put_cap_refs(ci
, _got
);
2807 if (ret
== -ESTALE
) {
2808 /* session was killed, try renew caps */
2809 ret
= ceph_renew_caps(inode
);
2816 if (ci
->i_inline_version
!= CEPH_INLINE_NONE
&&
2817 (_got
& (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_LAZYIO
)) &&
2818 i_size_read(inode
) > 0) {
2820 find_get_page(inode
->i_mapping
, 0);
2822 if (PageUptodate(page
)) {
2823 *pinned_page
= page
;
2829 * drop cap refs first because getattr while
2830 * holding * caps refs can cause deadlock.
2832 ceph_put_cap_refs(ci
, _got
);
2836 * getattr request will bring inline data into
2839 ret
= __ceph_do_getattr(inode
, NULL
,
2840 CEPH_STAT_CAP_INLINE_DATA
,
2849 if ((_got
& CEPH_CAP_FILE_RD
) && (_got
& CEPH_CAP_FILE_CACHE
))
2850 ceph_fscache_revalidate_cookie(ci
);
2857 * Take cap refs. Caller must already know we hold at least one ref
2858 * on the caps in question or we don't know this is safe.
2860 void ceph_get_cap_refs(struct ceph_inode_info
*ci
, int caps
)
2862 spin_lock(&ci
->i_ceph_lock
);
2863 __take_cap_refs(ci
, caps
, false);
2864 spin_unlock(&ci
->i_ceph_lock
);
2869 * drop cap_snap that is not associated with any snapshot.
2870 * we don't need to send FLUSHSNAP message for it.
2872 static int ceph_try_drop_cap_snap(struct ceph_inode_info
*ci
,
2873 struct ceph_cap_snap
*capsnap
)
2875 if (!capsnap
->need_flush
&&
2876 !capsnap
->writing
&& !capsnap
->dirty_pages
) {
2877 dout("dropping cap_snap %p follows %llu\n",
2878 capsnap
, capsnap
->follows
);
2879 BUG_ON(capsnap
->cap_flush
.tid
> 0);
2880 ceph_put_snap_context(capsnap
->context
);
2881 if (!list_is_last(&capsnap
->ci_item
, &ci
->i_cap_snaps
))
2882 ci
->i_ceph_flags
|= CEPH_I_FLUSH_SNAPS
;
2884 list_del(&capsnap
->ci_item
);
2885 ceph_put_cap_snap(capsnap
);
2894 * If we released the last ref on any given cap, call ceph_check_caps
2895 * to release (or schedule a release).
2897 * If we are releasing a WR cap (from a sync write), finalize any affected
2898 * cap_snap, and wake up any waiters.
2900 void ceph_put_cap_refs(struct ceph_inode_info
*ci
, int had
)
2902 struct inode
*inode
= &ci
->vfs_inode
;
2903 int last
= 0, put
= 0, flushsnaps
= 0, wake
= 0;
2905 spin_lock(&ci
->i_ceph_lock
);
2906 if (had
& CEPH_CAP_PIN
)
2908 if (had
& CEPH_CAP_FILE_RD
)
2909 if (--ci
->i_rd_ref
== 0)
2911 if (had
& CEPH_CAP_FILE_CACHE
)
2912 if (--ci
->i_rdcache_ref
== 0)
2914 if (had
& CEPH_CAP_FILE_BUFFER
) {
2915 if (--ci
->i_wb_ref
== 0) {
2919 dout("put_cap_refs %p wb %d -> %d (?)\n",
2920 inode
, ci
->i_wb_ref
+1, ci
->i_wb_ref
);
2922 if (had
& CEPH_CAP_FILE_WR
)
2923 if (--ci
->i_wr_ref
== 0) {
2925 if (__ceph_have_pending_cap_snap(ci
)) {
2926 struct ceph_cap_snap
*capsnap
=
2927 list_last_entry(&ci
->i_cap_snaps
,
2928 struct ceph_cap_snap
,
2930 capsnap
->writing
= 0;
2931 if (ceph_try_drop_cap_snap(ci
, capsnap
))
2933 else if (__ceph_finish_cap_snap(ci
, capsnap
))
2937 if (ci
->i_wrbuffer_ref_head
== 0 &&
2938 ci
->i_dirty_caps
== 0 &&
2939 ci
->i_flushing_caps
== 0) {
2940 BUG_ON(!ci
->i_head_snapc
);
2941 ceph_put_snap_context(ci
->i_head_snapc
);
2942 ci
->i_head_snapc
= NULL
;
2944 /* see comment in __ceph_remove_cap() */
2945 if (!__ceph_is_any_real_caps(ci
) && ci
->i_snap_realm
)
2946 drop_inode_snap_realm(ci
);
2948 spin_unlock(&ci
->i_ceph_lock
);
2950 dout("put_cap_refs %p had %s%s%s\n", inode
, ceph_cap_string(had
),
2951 last
? " last" : "", put
? " put" : "");
2953 if (last
&& !flushsnaps
)
2954 ceph_check_caps(ci
, 0, NULL
);
2955 else if (flushsnaps
)
2956 ceph_flush_snaps(ci
, NULL
);
2958 wake_up_all(&ci
->i_cap_wq
);
2964 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
2965 * context. Adjust per-snap dirty page accounting as appropriate.
2966 * Once all dirty data for a cap_snap is flushed, flush snapped file
2967 * metadata back to the MDS. If we dropped the last ref, call
2970 void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info
*ci
, int nr
,
2971 struct ceph_snap_context
*snapc
)
2973 struct inode
*inode
= &ci
->vfs_inode
;
2974 struct ceph_cap_snap
*capsnap
= NULL
;
2978 bool flush_snaps
= false;
2979 bool complete_capsnap
= false;
2981 spin_lock(&ci
->i_ceph_lock
);
2982 ci
->i_wrbuffer_ref
-= nr
;
2983 if (ci
->i_wrbuffer_ref
== 0) {
2988 if (ci
->i_head_snapc
== snapc
) {
2989 ci
->i_wrbuffer_ref_head
-= nr
;
2990 if (ci
->i_wrbuffer_ref_head
== 0 &&
2991 ci
->i_wr_ref
== 0 &&
2992 ci
->i_dirty_caps
== 0 &&
2993 ci
->i_flushing_caps
== 0) {
2994 BUG_ON(!ci
->i_head_snapc
);
2995 ceph_put_snap_context(ci
->i_head_snapc
);
2996 ci
->i_head_snapc
= NULL
;
2998 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
3000 ci
->i_wrbuffer_ref
+nr
, ci
->i_wrbuffer_ref_head
+nr
,
3001 ci
->i_wrbuffer_ref
, ci
->i_wrbuffer_ref_head
,
3002 last
? " LAST" : "");
3004 list_for_each_entry(capsnap
, &ci
->i_cap_snaps
, ci_item
) {
3005 if (capsnap
->context
== snapc
) {
3011 capsnap
->dirty_pages
-= nr
;
3012 if (capsnap
->dirty_pages
== 0) {
3013 complete_capsnap
= true;
3014 if (!capsnap
->writing
) {
3015 if (ceph_try_drop_cap_snap(ci
, capsnap
)) {
3018 ci
->i_ceph_flags
|= CEPH_I_FLUSH_SNAPS
;
3023 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
3024 " snap %lld %d/%d -> %d/%d %s%s\n",
3025 inode
, capsnap
, capsnap
->context
->seq
,
3026 ci
->i_wrbuffer_ref
+nr
, capsnap
->dirty_pages
+ nr
,
3027 ci
->i_wrbuffer_ref
, capsnap
->dirty_pages
,
3028 last
? " (wrbuffer last)" : "",
3029 complete_capsnap
? " (complete capsnap)" : "");
3032 spin_unlock(&ci
->i_ceph_lock
);
3035 ceph_check_caps(ci
, CHECK_CAPS_AUTHONLY
, NULL
);
3036 } else if (flush_snaps
) {
3037 ceph_flush_snaps(ci
, NULL
);
3039 if (complete_capsnap
)
3040 wake_up_all(&ci
->i_cap_wq
);
3042 /* avoid calling iput_final() in osd dispatch threads */
3043 ceph_async_iput(inode
);
3048 * Invalidate unlinked inode's aliases, so we can drop the inode ASAP.
3050 static void invalidate_aliases(struct inode
*inode
)
3052 struct dentry
*dn
, *prev
= NULL
;
3054 dout("invalidate_aliases inode %p\n", inode
);
3055 d_prune_aliases(inode
);
3057 * For non-directory inode, d_find_alias() only returns
3058 * hashed dentry. After calling d_invalidate(), the
3059 * dentry becomes unhashed.
3061 * For directory inode, d_find_alias() can return
3062 * unhashed dentry. But directory inode should have
3063 * one alias at most.
3065 while ((dn
= d_find_alias(inode
))) {
3079 struct cap_extra_info
{
3080 struct ceph_string
*pool_ns
;
3090 /* currently issued */
3092 struct timespec64 btime
;
3096 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
3097 * actually be a revocation if it specifies a smaller cap set.)
3099 * caller holds s_mutex and i_ceph_lock, we drop both.
3101 static void handle_cap_grant(struct inode
*inode
,
3102 struct ceph_mds_session
*session
,
3103 struct ceph_cap
*cap
,
3104 struct ceph_mds_caps
*grant
,
3105 struct ceph_buffer
*xattr_buf
,
3106 struct cap_extra_info
*extra_info
)
3107 __releases(ci
->i_ceph_lock
)
3108 __releases(session
->s_mdsc
->snap_rwsem
)
3110 struct ceph_inode_info
*ci
= ceph_inode(inode
);
3111 int seq
= le32_to_cpu(grant
->seq
);
3112 int newcaps
= le32_to_cpu(grant
->caps
);
3113 int used
, wanted
, dirty
;
3114 u64 size
= le64_to_cpu(grant
->size
);
3115 u64 max_size
= le64_to_cpu(grant
->max_size
);
3116 unsigned char check_caps
= 0;
3117 bool was_stale
= cap
->cap_gen
< session
->s_cap_gen
;
3119 bool writeback
= false;
3120 bool queue_trunc
= false;
3121 bool queue_invalidate
= false;
3122 bool deleted_inode
= false;
3123 bool fill_inline
= false;
3125 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
3126 inode
, cap
, session
->s_mds
, seq
, ceph_cap_string(newcaps
));
3127 dout(" size %llu max_size %llu, i_size %llu\n", size
, max_size
,
3132 * If CACHE is being revoked, and we have no dirty buffers,
3133 * try to invalidate (once). (If there are dirty buffers, we
3134 * will invalidate _after_ writeback.)
3136 if (!S_ISDIR(inode
->i_mode
) && /* don't invalidate readdir cache */
3137 ((cap
->issued
& ~newcaps
) & CEPH_CAP_FILE_CACHE
) &&
3138 (newcaps
& CEPH_CAP_FILE_LAZYIO
) == 0 &&
3139 !(ci
->i_wrbuffer_ref
|| ci
->i_wb_ref
)) {
3140 if (try_nonblocking_invalidate(inode
)) {
3141 /* there were locked pages.. invalidate later
3142 in a separate thread. */
3143 if (ci
->i_rdcache_revoking
!= ci
->i_rdcache_gen
) {
3144 queue_invalidate
= true;
3145 ci
->i_rdcache_revoking
= ci
->i_rdcache_gen
;
3151 cap
->issued
= cap
->implemented
= CEPH_CAP_PIN
;
3154 * auth mds of the inode changed. we received the cap export message,
3155 * but still haven't received the cap import message. handle_cap_export
3156 * updated the new auth MDS' cap.
3158 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing a message
3159 * that was sent before the cap import message. So don't remove caps.
3161 if (ceph_seq_cmp(seq
, cap
->seq
) <= 0) {
3162 WARN_ON(cap
!= ci
->i_auth_cap
);
3163 WARN_ON(cap
->cap_id
!= le64_to_cpu(grant
->cap_id
));
3165 newcaps
|= cap
->issued
;
3168 /* side effects now are allowed */
3169 cap
->cap_gen
= session
->s_cap_gen
;
3172 __check_cap_issue(ci
, cap
, newcaps
);
3174 inode_set_max_iversion_raw(inode
, extra_info
->change_attr
);
3176 if ((newcaps
& CEPH_CAP_AUTH_SHARED
) &&
3177 (extra_info
->issued
& CEPH_CAP_AUTH_EXCL
) == 0) {
3178 inode
->i_mode
= le32_to_cpu(grant
->mode
);
3179 inode
->i_uid
= make_kuid(&init_user_ns
, le32_to_cpu(grant
->uid
));
3180 inode
->i_gid
= make_kgid(&init_user_ns
, le32_to_cpu(grant
->gid
));
3181 ci
->i_btime
= extra_info
->btime
;
3182 dout("%p mode 0%o uid.gid %d.%d\n", inode
, inode
->i_mode
,
3183 from_kuid(&init_user_ns
, inode
->i_uid
),
3184 from_kgid(&init_user_ns
, inode
->i_gid
));
3187 if ((newcaps
& CEPH_CAP_LINK_SHARED
) &&
3188 (extra_info
->issued
& CEPH_CAP_LINK_EXCL
) == 0) {
3189 set_nlink(inode
, le32_to_cpu(grant
->nlink
));
3190 if (inode
->i_nlink
== 0 &&
3191 (newcaps
& (CEPH_CAP_LINK_SHARED
| CEPH_CAP_LINK_EXCL
)))
3192 deleted_inode
= true;
3195 if ((extra_info
->issued
& CEPH_CAP_XATTR_EXCL
) == 0 &&
3197 int len
= le32_to_cpu(grant
->xattr_len
);
3198 u64 version
= le64_to_cpu(grant
->xattr_version
);
3200 if (version
> ci
->i_xattrs
.version
) {
3201 dout(" got new xattrs v%llu on %p len %d\n",
3202 version
, inode
, len
);
3203 if (ci
->i_xattrs
.blob
)
3204 ceph_buffer_put(ci
->i_xattrs
.blob
);
3205 ci
->i_xattrs
.blob
= ceph_buffer_get(xattr_buf
);
3206 ci
->i_xattrs
.version
= version
;
3207 ceph_forget_all_cached_acls(inode
);
3208 ceph_security_invalidate_secctx(inode
);
3212 if (newcaps
& CEPH_CAP_ANY_RD
) {
3213 struct timespec64 mtime
, atime
, ctime
;
3214 /* ctime/mtime/atime? */
3215 ceph_decode_timespec64(&mtime
, &grant
->mtime
);
3216 ceph_decode_timespec64(&atime
, &grant
->atime
);
3217 ceph_decode_timespec64(&ctime
, &grant
->ctime
);
3218 ceph_fill_file_time(inode
, extra_info
->issued
,
3219 le32_to_cpu(grant
->time_warp_seq
),
3220 &ctime
, &mtime
, &atime
);
3223 if ((newcaps
& CEPH_CAP_FILE_SHARED
) && extra_info
->dirstat_valid
) {
3224 ci
->i_files
= extra_info
->nfiles
;
3225 ci
->i_subdirs
= extra_info
->nsubdirs
;
3228 if (newcaps
& (CEPH_CAP_ANY_FILE_RD
| CEPH_CAP_ANY_FILE_WR
)) {
3229 /* file layout may have changed */
3230 s64 old_pool
= ci
->i_layout
.pool_id
;
3231 struct ceph_string
*old_ns
;
3233 ceph_file_layout_from_legacy(&ci
->i_layout
, &grant
->layout
);
3234 old_ns
= rcu_dereference_protected(ci
->i_layout
.pool_ns
,
3235 lockdep_is_held(&ci
->i_ceph_lock
));
3236 rcu_assign_pointer(ci
->i_layout
.pool_ns
, extra_info
->pool_ns
);
3238 if (ci
->i_layout
.pool_id
!= old_pool
||
3239 extra_info
->pool_ns
!= old_ns
)
3240 ci
->i_ceph_flags
&= ~CEPH_I_POOL_PERM
;
3242 extra_info
->pool_ns
= old_ns
;
3244 /* size/truncate_seq? */
3245 queue_trunc
= ceph_fill_file_size(inode
, extra_info
->issued
,
3246 le32_to_cpu(grant
->truncate_seq
),
3247 le64_to_cpu(grant
->truncate_size
),
3251 if (ci
->i_auth_cap
== cap
&& (newcaps
& CEPH_CAP_ANY_FILE_WR
)) {
3252 if (max_size
!= ci
->i_max_size
) {
3253 dout("max_size %lld -> %llu\n",
3254 ci
->i_max_size
, max_size
);
3255 ci
->i_max_size
= max_size
;
3256 if (max_size
>= ci
->i_wanted_max_size
) {
3257 ci
->i_wanted_max_size
= 0; /* reset */
3258 ci
->i_requested_max_size
= 0;
3261 } else if (ci
->i_wanted_max_size
> ci
->i_max_size
&&
3262 ci
->i_wanted_max_size
> ci
->i_requested_max_size
) {
3263 /* CEPH_CAP_OP_IMPORT */
3268 /* check cap bits */
3269 wanted
= __ceph_caps_wanted(ci
);
3270 used
= __ceph_caps_used(ci
);
3271 dirty
= __ceph_caps_dirty(ci
);
3272 dout(" my wanted = %s, used = %s, dirty %s\n",
3273 ceph_cap_string(wanted
),
3274 ceph_cap_string(used
),
3275 ceph_cap_string(dirty
));
3277 if ((was_stale
|| le32_to_cpu(grant
->op
) == CEPH_CAP_OP_IMPORT
) &&
3278 (wanted
& ~(cap
->mds_wanted
| newcaps
))) {
3280 * If mds is importing cap, prior cap messages that update
3281 * 'wanted' may get dropped by mds (migrate seq mismatch).
3283 * We don't send cap message to update 'wanted' if what we
3284 * want are already issued. If mds revokes caps, cap message
3285 * that releases caps also tells mds what we want. But if
3286 * caps got revoked by mds forcedly (session stale). We may
3287 * haven't told mds what we want.
3292 /* revocation, grant, or no-op? */
3293 if (cap
->issued
& ~newcaps
) {
3294 int revoking
= cap
->issued
& ~newcaps
;
3296 dout("revocation: %s -> %s (revoking %s)\n",
3297 ceph_cap_string(cap
->issued
),
3298 ceph_cap_string(newcaps
),
3299 ceph_cap_string(revoking
));
3300 if (revoking
& used
& CEPH_CAP_FILE_BUFFER
)
3301 writeback
= true; /* initiate writeback; will delay ack */
3302 else if (revoking
== CEPH_CAP_FILE_CACHE
&&
3303 (newcaps
& CEPH_CAP_FILE_LAZYIO
) == 0 &&
3305 ; /* do nothing yet, invalidation will be queued */
3306 else if (cap
== ci
->i_auth_cap
)
3307 check_caps
= 1; /* check auth cap only */
3309 check_caps
= 2; /* check all caps */
3310 cap
->issued
= newcaps
;
3311 cap
->implemented
|= newcaps
;
3312 } else if (cap
->issued
== newcaps
) {
3313 dout("caps unchanged: %s -> %s\n",
3314 ceph_cap_string(cap
->issued
), ceph_cap_string(newcaps
));
3316 dout("grant: %s -> %s\n", ceph_cap_string(cap
->issued
),
3317 ceph_cap_string(newcaps
));
3318 /* non-auth MDS is revoking the newly grant caps ? */
3319 if (cap
== ci
->i_auth_cap
&&
3320 __ceph_caps_revoking_other(ci
, cap
, newcaps
))
3323 cap
->issued
= newcaps
;
3324 cap
->implemented
|= newcaps
; /* add bits only, to
3325 * avoid stepping on a
3326 * pending revocation */
3329 BUG_ON(cap
->issued
& ~cap
->implemented
);
3331 if (extra_info
->inline_version
> 0 &&
3332 extra_info
->inline_version
>= ci
->i_inline_version
) {
3333 ci
->i_inline_version
= extra_info
->inline_version
;
3334 if (ci
->i_inline_version
!= CEPH_INLINE_NONE
&&
3335 (newcaps
& (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_LAZYIO
)))
3339 if (le32_to_cpu(grant
->op
) == CEPH_CAP_OP_IMPORT
) {
3340 if (newcaps
& ~extra_info
->issued
)
3342 kick_flushing_inode_caps(session
->s_mdsc
, session
, inode
);
3343 up_read(&session
->s_mdsc
->snap_rwsem
);
3345 spin_unlock(&ci
->i_ceph_lock
);
3349 ceph_fill_inline_data(inode
, NULL
, extra_info
->inline_data
,
3350 extra_info
->inline_len
);
3353 ceph_queue_vmtruncate(inode
);
3357 * queue inode for writeback: we can't actually call
3358 * filemap_write_and_wait, etc. from message handler
3361 ceph_queue_writeback(inode
);
3362 if (queue_invalidate
)
3363 ceph_queue_invalidate(inode
);
3365 invalidate_aliases(inode
);
3367 wake_up_all(&ci
->i_cap_wq
);
3369 if (check_caps
== 1)
3370 ceph_check_caps(ci
, CHECK_CAPS_NODELAY
|CHECK_CAPS_AUTHONLY
,
3372 else if (check_caps
== 2)
3373 ceph_check_caps(ci
, CHECK_CAPS_NODELAY
, session
);
3375 mutex_unlock(&session
->s_mutex
);
3379 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
3380 * MDS has been safely committed.
3382 static void handle_cap_flush_ack(struct inode
*inode
, u64 flush_tid
,
3383 struct ceph_mds_caps
*m
,
3384 struct ceph_mds_session
*session
,
3385 struct ceph_cap
*cap
)
3386 __releases(ci
->i_ceph_lock
)
3388 struct ceph_inode_info
*ci
= ceph_inode(inode
);
3389 struct ceph_mds_client
*mdsc
= ceph_sb_to_client(inode
->i_sb
)->mdsc
;
3390 struct ceph_cap_flush
*cf
, *tmp_cf
;
3391 LIST_HEAD(to_remove
);
3392 unsigned seq
= le32_to_cpu(m
->seq
);
3393 int dirty
= le32_to_cpu(m
->dirty
);
3396 bool wake_ci
= false;
3397 bool wake_mdsc
= false;
3399 list_for_each_entry_safe(cf
, tmp_cf
, &ci
->i_cap_flush_list
, i_list
) {
3400 if (cf
->tid
== flush_tid
)
3402 if (cf
->caps
== 0) /* capsnap */
3404 if (cf
->tid
<= flush_tid
) {
3405 if (__finish_cap_flush(NULL
, ci
, cf
))
3407 list_add_tail(&cf
->i_list
, &to_remove
);
3409 cleaned
&= ~cf
->caps
;
3415 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
3416 " flushing %s -> %s\n",
3417 inode
, session
->s_mds
, seq
, ceph_cap_string(dirty
),
3418 ceph_cap_string(cleaned
), ceph_cap_string(ci
->i_flushing_caps
),
3419 ceph_cap_string(ci
->i_flushing_caps
& ~cleaned
));
3421 if (list_empty(&to_remove
) && !cleaned
)
3424 ci
->i_flushing_caps
&= ~cleaned
;
3426 spin_lock(&mdsc
->cap_dirty_lock
);
3428 list_for_each_entry(cf
, &to_remove
, i_list
) {
3429 if (__finish_cap_flush(mdsc
, NULL
, cf
))
3433 if (ci
->i_flushing_caps
== 0) {
3434 if (list_empty(&ci
->i_cap_flush_list
)) {
3435 list_del_init(&ci
->i_flushing_item
);
3436 if (!list_empty(&session
->s_cap_flushing
)) {
3437 dout(" mds%d still flushing cap on %p\n",
3439 &list_first_entry(&session
->s_cap_flushing
,
3440 struct ceph_inode_info
,
3441 i_flushing_item
)->vfs_inode
);
3444 mdsc
->num_cap_flushing
--;
3445 dout(" inode %p now !flushing\n", inode
);
3447 if (ci
->i_dirty_caps
== 0) {
3448 dout(" inode %p now clean\n", inode
);
3449 BUG_ON(!list_empty(&ci
->i_dirty_item
));
3451 if (ci
->i_wr_ref
== 0 &&
3452 ci
->i_wrbuffer_ref_head
== 0) {
3453 BUG_ON(!ci
->i_head_snapc
);
3454 ceph_put_snap_context(ci
->i_head_snapc
);
3455 ci
->i_head_snapc
= NULL
;
3458 BUG_ON(list_empty(&ci
->i_dirty_item
));
3461 spin_unlock(&mdsc
->cap_dirty_lock
);
3464 spin_unlock(&ci
->i_ceph_lock
);
3466 while (!list_empty(&to_remove
)) {
3467 cf
= list_first_entry(&to_remove
,
3468 struct ceph_cap_flush
, i_list
);
3469 list_del(&cf
->i_list
);
3470 ceph_free_cap_flush(cf
);
3474 wake_up_all(&ci
->i_cap_wq
);
3476 wake_up_all(&mdsc
->cap_flushing_wq
);
3482 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
3483 * throw away our cap_snap.
3485 * Caller hold s_mutex.
3487 static void handle_cap_flushsnap_ack(struct inode
*inode
, u64 flush_tid
,
3488 struct ceph_mds_caps
*m
,
3489 struct ceph_mds_session
*session
)
3491 struct ceph_inode_info
*ci
= ceph_inode(inode
);
3492 struct ceph_mds_client
*mdsc
= ceph_sb_to_client(inode
->i_sb
)->mdsc
;
3493 u64 follows
= le64_to_cpu(m
->snap_follows
);
3494 struct ceph_cap_snap
*capsnap
;
3495 bool flushed
= false;
3496 bool wake_ci
= false;
3497 bool wake_mdsc
= false;
3499 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
3500 inode
, ci
, session
->s_mds
, follows
);
3502 spin_lock(&ci
->i_ceph_lock
);
3503 list_for_each_entry(capsnap
, &ci
->i_cap_snaps
, ci_item
) {
3504 if (capsnap
->follows
== follows
) {
3505 if (capsnap
->cap_flush
.tid
!= flush_tid
) {
3506 dout(" cap_snap %p follows %lld tid %lld !="
3507 " %lld\n", capsnap
, follows
,
3508 flush_tid
, capsnap
->cap_flush
.tid
);
3514 dout(" skipping cap_snap %p follows %lld\n",
3515 capsnap
, capsnap
->follows
);
3519 WARN_ON(capsnap
->dirty_pages
|| capsnap
->writing
);
3520 dout(" removing %p cap_snap %p follows %lld\n",
3521 inode
, capsnap
, follows
);
3522 list_del(&capsnap
->ci_item
);
3523 if (__finish_cap_flush(NULL
, ci
, &capsnap
->cap_flush
))
3526 spin_lock(&mdsc
->cap_dirty_lock
);
3528 if (list_empty(&ci
->i_cap_flush_list
))
3529 list_del_init(&ci
->i_flushing_item
);
3531 if (__finish_cap_flush(mdsc
, NULL
, &capsnap
->cap_flush
))
3534 spin_unlock(&mdsc
->cap_dirty_lock
);
3536 spin_unlock(&ci
->i_ceph_lock
);
3538 ceph_put_snap_context(capsnap
->context
);
3539 ceph_put_cap_snap(capsnap
);
3541 wake_up_all(&ci
->i_cap_wq
);
3543 wake_up_all(&mdsc
->cap_flushing_wq
);
3549 * Handle TRUNC from MDS, indicating file truncation.
3551 * caller hold s_mutex.
3553 static void handle_cap_trunc(struct inode
*inode
,
3554 struct ceph_mds_caps
*trunc
,
3555 struct ceph_mds_session
*session
)
3556 __releases(ci
->i_ceph_lock
)
3558 struct ceph_inode_info
*ci
= ceph_inode(inode
);
3559 int mds
= session
->s_mds
;
3560 int seq
= le32_to_cpu(trunc
->seq
);
3561 u32 truncate_seq
= le32_to_cpu(trunc
->truncate_seq
);
3562 u64 truncate_size
= le64_to_cpu(trunc
->truncate_size
);
3563 u64 size
= le64_to_cpu(trunc
->size
);
3564 int implemented
= 0;
3565 int dirty
= __ceph_caps_dirty(ci
);
3566 int issued
= __ceph_caps_issued(ceph_inode(inode
), &implemented
);
3567 int queue_trunc
= 0;
3569 issued
|= implemented
| dirty
;
3571 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
3572 inode
, mds
, seq
, truncate_size
, truncate_seq
);
3573 queue_trunc
= ceph_fill_file_size(inode
, issued
,
3574 truncate_seq
, truncate_size
, size
);
3575 spin_unlock(&ci
->i_ceph_lock
);
3578 ceph_queue_vmtruncate(inode
);
3582 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
3583 * different one. If we are the most recent migration we've seen (as
3584 * indicated by mseq), make note of the migrating cap bits for the
3585 * duration (until we see the corresponding IMPORT).
3587 * caller holds s_mutex
3589 static void handle_cap_export(struct inode
*inode
, struct ceph_mds_caps
*ex
,
3590 struct ceph_mds_cap_peer
*ph
,
3591 struct ceph_mds_session
*session
)
3593 struct ceph_mds_client
*mdsc
= ceph_inode_to_client(inode
)->mdsc
;
3594 struct ceph_mds_session
*tsession
= NULL
;
3595 struct ceph_cap
*cap
, *tcap
, *new_cap
= NULL
;
3596 struct ceph_inode_info
*ci
= ceph_inode(inode
);
3598 unsigned mseq
= le32_to_cpu(ex
->migrate_seq
);
3599 unsigned t_seq
, t_mseq
;
3601 int mds
= session
->s_mds
;
3604 t_cap_id
= le64_to_cpu(ph
->cap_id
);
3605 t_seq
= le32_to_cpu(ph
->seq
);
3606 t_mseq
= le32_to_cpu(ph
->mseq
);
3607 target
= le32_to_cpu(ph
->mds
);
3609 t_cap_id
= t_seq
= t_mseq
= 0;
3613 dout("handle_cap_export inode %p ci %p mds%d mseq %d target %d\n",
3614 inode
, ci
, mds
, mseq
, target
);
3616 spin_lock(&ci
->i_ceph_lock
);
3617 cap
= __get_cap_for_mds(ci
, mds
);
3618 if (!cap
|| cap
->cap_id
!= le64_to_cpu(ex
->cap_id
))
3622 if (cap
->mds_wanted
| cap
->issued
)
3623 ci
->i_ceph_flags
|= CEPH_I_CAP_DROPPED
;
3624 __ceph_remove_cap(cap
, false);
3629 * now we know we haven't received the cap import message yet
3630 * because the exported cap still exist.
3633 issued
= cap
->issued
;
3634 if (issued
!= cap
->implemented
)
3635 pr_err_ratelimited("handle_cap_export: issued != implemented: "
3636 "ino (%llx.%llx) mds%d seq %d mseq %d "
3637 "issued %s implemented %s\n",
3638 ceph_vinop(inode
), mds
, cap
->seq
, cap
->mseq
,
3639 ceph_cap_string(issued
),
3640 ceph_cap_string(cap
->implemented
));
3643 tcap
= __get_cap_for_mds(ci
, target
);
3645 /* already have caps from the target */
3646 if (tcap
->cap_id
== t_cap_id
&&
3647 ceph_seq_cmp(tcap
->seq
, t_seq
) < 0) {
3648 dout(" updating import cap %p mds%d\n", tcap
, target
);
3649 tcap
->cap_id
= t_cap_id
;
3650 tcap
->seq
= t_seq
- 1;
3651 tcap
->issue_seq
= t_seq
- 1;
3652 tcap
->issued
|= issued
;
3653 tcap
->implemented
|= issued
;
3654 if (cap
== ci
->i_auth_cap
)
3655 ci
->i_auth_cap
= tcap
;
3657 if (!list_empty(&ci
->i_cap_flush_list
) &&
3658 ci
->i_auth_cap
== tcap
) {
3659 spin_lock(&mdsc
->cap_dirty_lock
);
3660 list_move_tail(&ci
->i_flushing_item
,
3661 &tcap
->session
->s_cap_flushing
);
3662 spin_unlock(&mdsc
->cap_dirty_lock
);
3665 __ceph_remove_cap(cap
, false);
3667 } else if (tsession
) {
3668 /* add placeholder for the export tagert */
3669 int flag
= (cap
== ci
->i_auth_cap
) ? CEPH_CAP_FLAG_AUTH
: 0;
3671 ceph_add_cap(inode
, tsession
, t_cap_id
, -1, issued
, 0,
3672 t_seq
- 1, t_mseq
, (u64
)-1, flag
, &new_cap
);
3674 if (!list_empty(&ci
->i_cap_flush_list
) &&
3675 ci
->i_auth_cap
== tcap
) {
3676 spin_lock(&mdsc
->cap_dirty_lock
);
3677 list_move_tail(&ci
->i_flushing_item
,
3678 &tcap
->session
->s_cap_flushing
);
3679 spin_unlock(&mdsc
->cap_dirty_lock
);
3682 __ceph_remove_cap(cap
, false);
3686 spin_unlock(&ci
->i_ceph_lock
);
3687 mutex_unlock(&session
->s_mutex
);
3689 /* open target session */
3690 tsession
= ceph_mdsc_open_export_target_session(mdsc
, target
);
3691 if (!IS_ERR(tsession
)) {
3693 mutex_lock(&session
->s_mutex
);
3694 mutex_lock_nested(&tsession
->s_mutex
,
3695 SINGLE_DEPTH_NESTING
);
3697 mutex_lock(&tsession
->s_mutex
);
3698 mutex_lock_nested(&session
->s_mutex
,
3699 SINGLE_DEPTH_NESTING
);
3701 new_cap
= ceph_get_cap(mdsc
, NULL
);
3710 spin_unlock(&ci
->i_ceph_lock
);
3711 mutex_unlock(&session
->s_mutex
);
3713 mutex_unlock(&tsession
->s_mutex
);
3714 ceph_put_mds_session(tsession
);
3717 ceph_put_cap(mdsc
, new_cap
);
3721 * Handle cap IMPORT.
3723 * caller holds s_mutex. acquires i_ceph_lock
3725 static void handle_cap_import(struct ceph_mds_client
*mdsc
,
3726 struct inode
*inode
, struct ceph_mds_caps
*im
,
3727 struct ceph_mds_cap_peer
*ph
,
3728 struct ceph_mds_session
*session
,
3729 struct ceph_cap
**target_cap
, int *old_issued
)
3730 __acquires(ci
->i_ceph_lock
)
3732 struct ceph_inode_info
*ci
= ceph_inode(inode
);
3733 struct ceph_cap
*cap
, *ocap
, *new_cap
= NULL
;
3734 int mds
= session
->s_mds
;
3736 unsigned caps
= le32_to_cpu(im
->caps
);
3737 unsigned wanted
= le32_to_cpu(im
->wanted
);
3738 unsigned seq
= le32_to_cpu(im
->seq
);
3739 unsigned mseq
= le32_to_cpu(im
->migrate_seq
);
3740 u64 realmino
= le64_to_cpu(im
->realm
);
3741 u64 cap_id
= le64_to_cpu(im
->cap_id
);
3746 p_cap_id
= le64_to_cpu(ph
->cap_id
);
3747 peer
= le32_to_cpu(ph
->mds
);
3753 dout("handle_cap_import inode %p ci %p mds%d mseq %d peer %d\n",
3754 inode
, ci
, mds
, mseq
, peer
);
3757 spin_lock(&ci
->i_ceph_lock
);
3758 cap
= __get_cap_for_mds(ci
, mds
);
3761 spin_unlock(&ci
->i_ceph_lock
);
3762 new_cap
= ceph_get_cap(mdsc
, NULL
);
3768 ceph_put_cap(mdsc
, new_cap
);
3773 __ceph_caps_issued(ci
, &issued
);
3774 issued
|= __ceph_caps_dirty(ci
);
3776 ceph_add_cap(inode
, session
, cap_id
, -1, caps
, wanted
, seq
, mseq
,
3777 realmino
, CEPH_CAP_FLAG_AUTH
, &new_cap
);
3779 ocap
= peer
>= 0 ? __get_cap_for_mds(ci
, peer
) : NULL
;
3780 if (ocap
&& ocap
->cap_id
== p_cap_id
) {
3781 dout(" remove export cap %p mds%d flags %d\n",
3782 ocap
, peer
, ph
->flags
);
3783 if ((ph
->flags
& CEPH_CAP_FLAG_AUTH
) &&
3784 (ocap
->seq
!= le32_to_cpu(ph
->seq
) ||
3785 ocap
->mseq
!= le32_to_cpu(ph
->mseq
))) {
3786 pr_err_ratelimited("handle_cap_import: "
3787 "mismatched seq/mseq: ino (%llx.%llx) "
3788 "mds%d seq %d mseq %d importer mds%d "
3789 "has peer seq %d mseq %d\n",
3790 ceph_vinop(inode
), peer
, ocap
->seq
,
3791 ocap
->mseq
, mds
, le32_to_cpu(ph
->seq
),
3792 le32_to_cpu(ph
->mseq
));
3794 __ceph_remove_cap(ocap
, (ph
->flags
& CEPH_CAP_FLAG_RELEASE
));
3797 /* make sure we re-request max_size, if necessary */
3798 ci
->i_requested_max_size
= 0;
3800 *old_issued
= issued
;
3805 * Handle a caps message from the MDS.
3807 * Identify the appropriate session, inode, and call the right handler
3808 * based on the cap op.
3810 void ceph_handle_caps(struct ceph_mds_session
*session
,
3811 struct ceph_msg
*msg
)
3813 struct ceph_mds_client
*mdsc
= session
->s_mdsc
;
3814 struct inode
*inode
;
3815 struct ceph_inode_info
*ci
;
3816 struct ceph_cap
*cap
;
3817 struct ceph_mds_caps
*h
;
3818 struct ceph_mds_cap_peer
*peer
= NULL
;
3819 struct ceph_snap_realm
*realm
= NULL
;
3821 int msg_version
= le16_to_cpu(msg
->hdr
.version
);
3823 struct ceph_vino vino
;
3825 size_t snaptrace_len
;
3827 struct cap_extra_info extra_info
= {};
3829 dout("handle_caps from mds%d\n", session
->s_mds
);
3832 end
= msg
->front
.iov_base
+ msg
->front
.iov_len
;
3833 if (msg
->front
.iov_len
< sizeof(*h
))
3835 h
= msg
->front
.iov_base
;
3836 op
= le32_to_cpu(h
->op
);
3837 vino
.ino
= le64_to_cpu(h
->ino
);
3838 vino
.snap
= CEPH_NOSNAP
;
3839 seq
= le32_to_cpu(h
->seq
);
3840 mseq
= le32_to_cpu(h
->migrate_seq
);
3843 snaptrace_len
= le32_to_cpu(h
->snap_trace_len
);
3844 p
= snaptrace
+ snaptrace_len
;
3846 if (msg_version
>= 2) {
3848 ceph_decode_32_safe(&p
, end
, flock_len
, bad
);
3849 if (p
+ flock_len
> end
)
3854 if (msg_version
>= 3) {
3855 if (op
== CEPH_CAP_OP_IMPORT
) {
3856 if (p
+ sizeof(*peer
) > end
)
3860 } else if (op
== CEPH_CAP_OP_EXPORT
) {
3861 /* recorded in unused fields */
3862 peer
= (void *)&h
->size
;
3866 if (msg_version
>= 4) {
3867 ceph_decode_64_safe(&p
, end
, extra_info
.inline_version
, bad
);
3868 ceph_decode_32_safe(&p
, end
, extra_info
.inline_len
, bad
);
3869 if (p
+ extra_info
.inline_len
> end
)
3871 extra_info
.inline_data
= p
;
3872 p
+= extra_info
.inline_len
;
3875 if (msg_version
>= 5) {
3876 struct ceph_osd_client
*osdc
= &mdsc
->fsc
->client
->osdc
;
3879 ceph_decode_32_safe(&p
, end
, epoch_barrier
, bad
);
3880 ceph_osdc_update_epoch_barrier(osdc
, epoch_barrier
);
3883 if (msg_version
>= 8) {
3885 u32 caller_uid
, caller_gid
;
3889 ceph_decode_64_safe(&p
, end
, flush_tid
, bad
);
3891 ceph_decode_32_safe(&p
, end
, caller_uid
, bad
);
3892 ceph_decode_32_safe(&p
, end
, caller_gid
, bad
);
3894 ceph_decode_32_safe(&p
, end
, pool_ns_len
, bad
);
3895 if (pool_ns_len
> 0) {
3896 ceph_decode_need(&p
, end
, pool_ns_len
, bad
);
3897 extra_info
.pool_ns
=
3898 ceph_find_or_create_string(p
, pool_ns_len
);
3903 if (msg_version
>= 9) {
3904 struct ceph_timespec
*btime
;
3906 if (p
+ sizeof(*btime
) > end
)
3909 ceph_decode_timespec64(&extra_info
.btime
, btime
);
3910 p
+= sizeof(*btime
);
3911 ceph_decode_64_safe(&p
, end
, extra_info
.change_attr
, bad
);
3914 if (msg_version
>= 11) {
3917 ceph_decode_32_safe(&p
, end
, flags
, bad
);
3919 extra_info
.dirstat_valid
= true;
3920 ceph_decode_64_safe(&p
, end
, extra_info
.nfiles
, bad
);
3921 ceph_decode_64_safe(&p
, end
, extra_info
.nsubdirs
, bad
);
3925 inode
= ceph_find_inode(mdsc
->fsc
->sb
, vino
);
3926 ci
= ceph_inode(inode
);
3927 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op
), vino
.ino
,
3930 mutex_lock(&session
->s_mutex
);
3932 dout(" mds%d seq %lld cap seq %u\n", session
->s_mds
, session
->s_seq
,
3936 dout(" i don't have ino %llx\n", vino
.ino
);
3938 if (op
== CEPH_CAP_OP_IMPORT
) {
3939 cap
= ceph_get_cap(mdsc
, NULL
);
3940 cap
->cap_ino
= vino
.ino
;
3941 cap
->queue_release
= 1;
3942 cap
->cap_id
= le64_to_cpu(h
->cap_id
);
3945 cap
->issue_seq
= seq
;
3946 spin_lock(&session
->s_cap_lock
);
3947 __ceph_queue_cap_release(session
, cap
);
3948 spin_unlock(&session
->s_cap_lock
);
3953 /* these will work even if we don't have a cap yet */
3955 case CEPH_CAP_OP_FLUSHSNAP_ACK
:
3956 handle_cap_flushsnap_ack(inode
, le64_to_cpu(msg
->hdr
.tid
),
3960 case CEPH_CAP_OP_EXPORT
:
3961 handle_cap_export(inode
, h
, peer
, session
);
3964 case CEPH_CAP_OP_IMPORT
:
3966 if (snaptrace_len
) {
3967 down_write(&mdsc
->snap_rwsem
);
3968 ceph_update_snap_trace(mdsc
, snaptrace
,
3969 snaptrace
+ snaptrace_len
,
3971 downgrade_write(&mdsc
->snap_rwsem
);
3973 down_read(&mdsc
->snap_rwsem
);
3975 handle_cap_import(mdsc
, inode
, h
, peer
, session
,
3976 &cap
, &extra_info
.issued
);
3977 handle_cap_grant(inode
, session
, cap
,
3978 h
, msg
->middle
, &extra_info
);
3980 ceph_put_snap_realm(mdsc
, realm
);
3984 /* the rest require a cap */
3985 spin_lock(&ci
->i_ceph_lock
);
3986 cap
= __get_cap_for_mds(ceph_inode(inode
), session
->s_mds
);
3988 dout(" no cap on %p ino %llx.%llx from mds%d\n",
3989 inode
, ceph_ino(inode
), ceph_snap(inode
),
3991 spin_unlock(&ci
->i_ceph_lock
);
3992 goto flush_cap_releases
;
3995 /* note that each of these drops i_ceph_lock for us */
3997 case CEPH_CAP_OP_REVOKE
:
3998 case CEPH_CAP_OP_GRANT
:
3999 __ceph_caps_issued(ci
, &extra_info
.issued
);
4000 extra_info
.issued
|= __ceph_caps_dirty(ci
);
4001 handle_cap_grant(inode
, session
, cap
,
4002 h
, msg
->middle
, &extra_info
);
4005 case CEPH_CAP_OP_FLUSH_ACK
:
4006 handle_cap_flush_ack(inode
, le64_to_cpu(msg
->hdr
.tid
),
4010 case CEPH_CAP_OP_TRUNC
:
4011 handle_cap_trunc(inode
, h
, session
);
4015 spin_unlock(&ci
->i_ceph_lock
);
4016 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op
,
4017 ceph_cap_op_name(op
));
4021 mutex_unlock(&session
->s_mutex
);
4023 ceph_put_string(extra_info
.pool_ns
);
4024 /* avoid calling iput_final() in mds dispatch threads */
4025 ceph_async_iput(inode
);
4030 * send any cap release message to try to move things
4031 * along for the mds (who clearly thinks we still have this
4034 ceph_flush_cap_releases(mdsc
, session
);
4038 pr_err("ceph_handle_caps: corrupt message\n");
4044 * Delayed work handler to process end of delayed cap release LRU list.
4046 void ceph_check_delayed_caps(struct ceph_mds_client
*mdsc
)
4048 struct inode
*inode
;
4049 struct ceph_inode_info
*ci
;
4050 int flags
= CHECK_CAPS_NODELAY
;
4052 dout("check_delayed_caps\n");
4054 spin_lock(&mdsc
->cap_delay_lock
);
4055 if (list_empty(&mdsc
->cap_delay_list
))
4057 ci
= list_first_entry(&mdsc
->cap_delay_list
,
4058 struct ceph_inode_info
,
4060 if ((ci
->i_ceph_flags
& CEPH_I_FLUSH
) == 0 &&
4061 time_before(jiffies
, ci
->i_hold_caps_max
))
4063 list_del_init(&ci
->i_cap_delay_list
);
4065 inode
= igrab(&ci
->vfs_inode
);
4066 spin_unlock(&mdsc
->cap_delay_lock
);
4069 dout("check_delayed_caps on %p\n", inode
);
4070 ceph_check_caps(ci
, flags
, NULL
);
4071 /* avoid calling iput_final() in tick thread */
4072 ceph_async_iput(inode
);
4075 spin_unlock(&mdsc
->cap_delay_lock
);
4079 * Flush all dirty caps to the mds
4081 void ceph_flush_dirty_caps(struct ceph_mds_client
*mdsc
)
4083 struct ceph_inode_info
*ci
;
4084 struct inode
*inode
;
4086 dout("flush_dirty_caps\n");
4087 spin_lock(&mdsc
->cap_dirty_lock
);
4088 while (!list_empty(&mdsc
->cap_dirty
)) {
4089 ci
= list_first_entry(&mdsc
->cap_dirty
, struct ceph_inode_info
,
4091 inode
= &ci
->vfs_inode
;
4093 dout("flush_dirty_caps %p\n", inode
);
4094 spin_unlock(&mdsc
->cap_dirty_lock
);
4095 ceph_check_caps(ci
, CHECK_CAPS_NODELAY
|CHECK_CAPS_FLUSH
, NULL
);
4097 spin_lock(&mdsc
->cap_dirty_lock
);
4099 spin_unlock(&mdsc
->cap_dirty_lock
);
4100 dout("flush_dirty_caps done\n");
4103 void __ceph_get_fmode(struct ceph_inode_info
*ci
, int fmode
)
4106 int bits
= (fmode
<< 1) | 1;
4107 for (i
= 0; i
< CEPH_FILE_MODE_BITS
; i
++) {
4108 if (bits
& (1 << i
))
4109 ci
->i_nr_by_mode
[i
]++;
4114 * Drop open file reference. If we were the last open file,
4115 * we may need to release capabilities to the MDS (or schedule
4116 * their delayed release).
4118 void ceph_put_fmode(struct ceph_inode_info
*ci
, int fmode
)
4121 int bits
= (fmode
<< 1) | 1;
4122 spin_lock(&ci
->i_ceph_lock
);
4123 for (i
= 0; i
< CEPH_FILE_MODE_BITS
; i
++) {
4124 if (bits
& (1 << i
)) {
4125 BUG_ON(ci
->i_nr_by_mode
[i
] == 0);
4126 if (--ci
->i_nr_by_mode
[i
] == 0)
4130 dout("put_fmode %p fmode %d {%d,%d,%d,%d}\n",
4131 &ci
->vfs_inode
, fmode
,
4132 ci
->i_nr_by_mode
[0], ci
->i_nr_by_mode
[1],
4133 ci
->i_nr_by_mode
[2], ci
->i_nr_by_mode
[3]);
4134 spin_unlock(&ci
->i_ceph_lock
);
4136 if (last
&& ci
->i_vino
.snap
== CEPH_NOSNAP
)
4137 ceph_check_caps(ci
, 0, NULL
);
4141 * For a soon-to-be unlinked file, drop the LINK caps. If it
4142 * looks like the link count will hit 0, drop any other caps (other
4143 * than PIN) we don't specifically want (due to the file still being
4146 int ceph_drop_caps_for_unlink(struct inode
*inode
)
4148 struct ceph_inode_info
*ci
= ceph_inode(inode
);
4149 int drop
= CEPH_CAP_LINK_SHARED
| CEPH_CAP_LINK_EXCL
;
4151 spin_lock(&ci
->i_ceph_lock
);
4152 if (inode
->i_nlink
== 1) {
4153 drop
|= ~(__ceph_caps_wanted(ci
) | CEPH_CAP_PIN
);
4155 ci
->i_ceph_flags
|= CEPH_I_NODELAY
;
4156 if (__ceph_caps_dirty(ci
)) {
4157 struct ceph_mds_client
*mdsc
=
4158 ceph_inode_to_client(inode
)->mdsc
;
4159 __cap_delay_requeue_front(mdsc
, ci
);
4162 spin_unlock(&ci
->i_ceph_lock
);
4167 * Helpers for embedding cap and dentry lease releases into mds
4170 * @force is used by dentry_release (below) to force inclusion of a
4171 * record for the directory inode, even when there aren't any caps to
4174 int ceph_encode_inode_release(void **p
, struct inode
*inode
,
4175 int mds
, int drop
, int unless
, int force
)
4177 struct ceph_inode_info
*ci
= ceph_inode(inode
);
4178 struct ceph_cap
*cap
;
4179 struct ceph_mds_request_release
*rel
= *p
;
4183 spin_lock(&ci
->i_ceph_lock
);
4184 used
= __ceph_caps_used(ci
);
4185 dirty
= __ceph_caps_dirty(ci
);
4187 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
4188 inode
, mds
, ceph_cap_string(used
|dirty
), ceph_cap_string(drop
),
4189 ceph_cap_string(unless
));
4191 /* only drop unused, clean caps */
4192 drop
&= ~(used
| dirty
);
4194 cap
= __get_cap_for_mds(ci
, mds
);
4195 if (cap
&& __cap_is_valid(cap
)) {
4196 unless
&= cap
->issued
;
4198 if (unless
& CEPH_CAP_AUTH_EXCL
)
4199 drop
&= ~CEPH_CAP_AUTH_SHARED
;
4200 if (unless
& CEPH_CAP_LINK_EXCL
)
4201 drop
&= ~CEPH_CAP_LINK_SHARED
;
4202 if (unless
& CEPH_CAP_XATTR_EXCL
)
4203 drop
&= ~CEPH_CAP_XATTR_SHARED
;
4204 if (unless
& CEPH_CAP_FILE_EXCL
)
4205 drop
&= ~CEPH_CAP_FILE_SHARED
;
4208 if (force
|| (cap
->issued
& drop
)) {
4209 if (cap
->issued
& drop
) {
4210 int wanted
= __ceph_caps_wanted(ci
);
4211 if ((ci
->i_ceph_flags
& CEPH_I_NODELAY
) == 0)
4212 wanted
|= cap
->mds_wanted
;
4213 dout("encode_inode_release %p cap %p "
4214 "%s -> %s, wanted %s -> %s\n", inode
, cap
,
4215 ceph_cap_string(cap
->issued
),
4216 ceph_cap_string(cap
->issued
& ~drop
),
4217 ceph_cap_string(cap
->mds_wanted
),
4218 ceph_cap_string(wanted
));
4220 cap
->issued
&= ~drop
;
4221 cap
->implemented
&= ~drop
;
4222 cap
->mds_wanted
= wanted
;
4224 dout("encode_inode_release %p cap %p %s"
4225 " (force)\n", inode
, cap
,
4226 ceph_cap_string(cap
->issued
));
4229 rel
->ino
= cpu_to_le64(ceph_ino(inode
));
4230 rel
->cap_id
= cpu_to_le64(cap
->cap_id
);
4231 rel
->seq
= cpu_to_le32(cap
->seq
);
4232 rel
->issue_seq
= cpu_to_le32(cap
->issue_seq
);
4233 rel
->mseq
= cpu_to_le32(cap
->mseq
);
4234 rel
->caps
= cpu_to_le32(cap
->implemented
);
4235 rel
->wanted
= cpu_to_le32(cap
->mds_wanted
);
4241 dout("encode_inode_release %p cap %p %s (noop)\n",
4242 inode
, cap
, ceph_cap_string(cap
->issued
));
4245 spin_unlock(&ci
->i_ceph_lock
);
4249 int ceph_encode_dentry_release(void **p
, struct dentry
*dentry
,
4251 int mds
, int drop
, int unless
)
4253 struct dentry
*parent
= NULL
;
4254 struct ceph_mds_request_release
*rel
= *p
;
4255 struct ceph_dentry_info
*di
= ceph_dentry(dentry
);
4260 * force an record for the directory caps if we have a dentry lease.
4261 * this is racy (can't take i_ceph_lock and d_lock together), but it
4262 * doesn't have to be perfect; the mds will revoke anything we don't
4265 spin_lock(&dentry
->d_lock
);
4266 if (di
->lease_session
&& di
->lease_session
->s_mds
== mds
)
4269 parent
= dget(dentry
->d_parent
);
4270 dir
= d_inode(parent
);
4272 spin_unlock(&dentry
->d_lock
);
4274 ret
= ceph_encode_inode_release(p
, dir
, mds
, drop
, unless
, force
);
4277 spin_lock(&dentry
->d_lock
);
4278 if (ret
&& di
->lease_session
&& di
->lease_session
->s_mds
== mds
) {
4279 dout("encode_dentry_release %p mds%d seq %d\n",
4280 dentry
, mds
, (int)di
->lease_seq
);
4281 rel
->dname_len
= cpu_to_le32(dentry
->d_name
.len
);
4282 memcpy(*p
, dentry
->d_name
.name
, dentry
->d_name
.len
);
4283 *p
+= dentry
->d_name
.len
;
4284 rel
->dname_seq
= cpu_to_le32(di
->lease_seq
);
4285 __ceph_mdsc_drop_dentry_lease(dentry
);
4287 spin_unlock(&dentry
->d_lock
);