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 * Return id of any MDS with a cap, preferably FILE_WR|BUFFER|EXCL, else -1.
463 static int __ceph_get_cap_mds(struct ceph_inode_info *ci)
465 struct ceph_cap *cap;
469 /* prefer mds with WR|BUFFER|EXCL caps */
470 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
471 cap = rb_entry(p, struct ceph_cap, ci_node);
473 if (cap->issued & (CEPH_CAP_FILE_WR |
474 CEPH_CAP_FILE_BUFFER |
481 int ceph_get_cap_mds(struct inode *inode)
483 struct ceph_inode_info *ci = ceph_inode(inode);
485 spin_lock(&ci->i_ceph_lock);
486 mds = __ceph_get_cap_mds(ceph_inode(inode));
487 spin_unlock(&ci->i_ceph_lock);
492 * Called under i_ceph_lock.
494 static void __insert_cap_node(struct ceph_inode_info *ci,
495 struct ceph_cap *new)
497 struct rb_node **p = &ci->i_caps.rb_node;
498 struct rb_node *parent = NULL;
499 struct ceph_cap *cap = NULL;
503 cap = rb_entry(parent, struct ceph_cap, ci_node);
504 if (new->mds < cap->mds)
506 else if (new->mds > cap->mds)
512 rb_link_node(&new->ci_node, parent, p);
513 rb_insert_color(&new->ci_node, &ci->i_caps);
517 * (re)set cap hold timeouts, which control the delayed release
518 * of unused caps back to the MDS. Should be called on cap use.
520 static void __cap_set_timeouts(struct ceph_mds_client *mdsc,
521 struct ceph_inode_info *ci)
523 struct ceph_mount_options *opt = mdsc->fsc->mount_options;
525 ci->i_hold_caps_min = round_jiffies(jiffies +
526 opt->caps_wanted_delay_min * HZ);
527 ci->i_hold_caps_max = round_jiffies(jiffies +
528 opt->caps_wanted_delay_max * HZ);
529 dout("__cap_set_timeouts %p min %lu max %lu\n", &ci->vfs_inode,
530 ci->i_hold_caps_min - jiffies, ci->i_hold_caps_max - jiffies);
534 * (Re)queue cap at the end of the delayed cap release list.
536 * If I_FLUSH is set, leave the inode at the front of the list.
538 * Caller holds i_ceph_lock
539 * -> we take mdsc->cap_delay_lock
541 static void __cap_delay_requeue(struct ceph_mds_client *mdsc,
542 struct ceph_inode_info *ci,
545 dout("__cap_delay_requeue %p flags %d at %lu\n", &ci->vfs_inode,
546 ci->i_ceph_flags, ci->i_hold_caps_max);
547 if (!mdsc->stopping) {
548 spin_lock(&mdsc->cap_delay_lock);
549 if (!list_empty(&ci->i_cap_delay_list)) {
550 if (ci->i_ceph_flags & CEPH_I_FLUSH)
552 list_del_init(&ci->i_cap_delay_list);
555 __cap_set_timeouts(mdsc, ci);
556 list_add_tail(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
558 spin_unlock(&mdsc->cap_delay_lock);
563 * Queue an inode for immediate writeback. Mark inode with I_FLUSH,
564 * indicating we should send a cap message to flush dirty metadata
565 * asap, and move to the front of the delayed cap list.
567 static void __cap_delay_requeue_front(struct ceph_mds_client *mdsc,
568 struct ceph_inode_info *ci)
570 dout("__cap_delay_requeue_front %p\n", &ci->vfs_inode);
571 spin_lock(&mdsc->cap_delay_lock);
572 ci->i_ceph_flags |= CEPH_I_FLUSH;
573 if (!list_empty(&ci->i_cap_delay_list))
574 list_del_init(&ci->i_cap_delay_list);
575 list_add(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
576 spin_unlock(&mdsc->cap_delay_lock);
580 * Cancel delayed work on cap.
582 * Caller must hold i_ceph_lock.
584 static void __cap_delay_cancel(struct ceph_mds_client *mdsc,
585 struct ceph_inode_info *ci)
587 dout("__cap_delay_cancel %p\n", &ci->vfs_inode);
588 if (list_empty(&ci->i_cap_delay_list))
590 spin_lock(&mdsc->cap_delay_lock);
591 list_del_init(&ci->i_cap_delay_list);
592 spin_unlock(&mdsc->cap_delay_lock);
596 * Common issue checks for add_cap, handle_cap_grant.
598 static void __check_cap_issue(struct ceph_inode_info *ci, struct ceph_cap *cap,
601 unsigned had = __ceph_caps_issued(ci, NULL);
604 * Each time we receive FILE_CACHE anew, we increment
607 if ((issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
608 (had & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0) {
613 * If FILE_SHARED is newly issued, mark dir not complete. We don't
614 * know what happened to this directory while we didn't have the cap.
615 * If FILE_SHARED is being revoked, also mark dir not complete. It
616 * stops on-going cached readdir.
618 if ((issued & CEPH_CAP_FILE_SHARED) != (had & CEPH_CAP_FILE_SHARED)) {
619 if (issued & CEPH_CAP_FILE_SHARED)
620 atomic_inc(&ci->i_shared_gen);
621 if (S_ISDIR(ci->vfs_inode.i_mode)) {
622 dout(" marking %p NOT complete\n", &ci->vfs_inode);
623 __ceph_dir_clear_complete(ci);
629 * Add a capability under the given MDS session.
631 * Caller should hold session snap_rwsem (read) and s_mutex.
633 * @fmode is the open file mode, if we are opening a file, otherwise
634 * it is < 0. (This is so we can atomically add the cap and add an
635 * open file reference to it.)
637 void ceph_add_cap(struct inode *inode,
638 struct ceph_mds_session *session, u64 cap_id,
639 int fmode, unsigned issued, unsigned wanted,
640 unsigned seq, unsigned mseq, u64 realmino, int flags,
641 struct ceph_cap **new_cap)
643 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
644 struct ceph_inode_info *ci = ceph_inode(inode);
645 struct ceph_cap *cap;
646 int mds = session->s_mds;
649 dout("add_cap %p mds%d cap %llx %s seq %d\n", inode,
650 session->s_mds, cap_id, ceph_cap_string(issued), seq);
653 * If we are opening the file, include file mode wanted bits
657 wanted |= ceph_caps_for_mode(fmode);
659 cap = __get_cap_for_mds(ci, mds);
665 cap->implemented = 0;
671 __insert_cap_node(ci, cap);
673 /* add to session cap list */
674 cap->session = session;
675 spin_lock(&session->s_cap_lock);
676 list_add_tail(&cap->session_caps, &session->s_caps);
677 session->s_nr_caps++;
678 spin_unlock(&session->s_cap_lock);
680 spin_lock(&session->s_cap_lock);
681 list_move_tail(&cap->session_caps, &session->s_caps);
682 spin_unlock(&session->s_cap_lock);
684 if (cap->cap_gen < session->s_cap_gen)
685 cap->issued = cap->implemented = CEPH_CAP_PIN;
688 * auth mds of the inode changed. we received the cap export
689 * message, but still haven't received the cap import message.
690 * handle_cap_export() updated the new auth MDS' cap.
692 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing
693 * a message that was send before the cap import message. So
696 if (ceph_seq_cmp(seq, cap->seq) <= 0) {
697 WARN_ON(cap != ci->i_auth_cap);
698 WARN_ON(cap->cap_id != cap_id);
701 issued |= cap->issued;
702 flags |= CEPH_CAP_FLAG_AUTH;
706 if (!ci->i_snap_realm ||
707 ((flags & CEPH_CAP_FLAG_AUTH) &&
708 realmino != (u64)-1 && ci->i_snap_realm->ino != realmino)) {
710 * add this inode to the appropriate snap realm
712 struct ceph_snap_realm *realm = ceph_lookup_snap_realm(mdsc,
715 struct ceph_snap_realm *oldrealm = ci->i_snap_realm;
717 spin_lock(&oldrealm->inodes_with_caps_lock);
718 list_del_init(&ci->i_snap_realm_item);
719 spin_unlock(&oldrealm->inodes_with_caps_lock);
722 spin_lock(&realm->inodes_with_caps_lock);
723 list_add(&ci->i_snap_realm_item,
724 &realm->inodes_with_caps);
725 ci->i_snap_realm = realm;
726 if (realm->ino == ci->i_vino.ino)
727 realm->inode = inode;
728 spin_unlock(&realm->inodes_with_caps_lock);
731 ceph_put_snap_realm(mdsc, oldrealm);
733 pr_err("ceph_add_cap: couldn't find snap realm %llx\n",
739 __check_cap_issue(ci, cap, issued);
742 * If we are issued caps we don't want, or the mds' wanted
743 * value appears to be off, queue a check so we'll release
744 * later and/or update the mds wanted value.
746 actual_wanted = __ceph_caps_wanted(ci);
747 if ((wanted & ~actual_wanted) ||
748 (issued & ~actual_wanted & CEPH_CAP_ANY_WR)) {
749 dout(" issued %s, mds wanted %s, actual %s, queueing\n",
750 ceph_cap_string(issued), ceph_cap_string(wanted),
751 ceph_cap_string(actual_wanted));
752 __cap_delay_requeue(mdsc, ci, true);
755 if (flags & CEPH_CAP_FLAG_AUTH) {
756 if (!ci->i_auth_cap ||
757 ceph_seq_cmp(ci->i_auth_cap->mseq, mseq) < 0) {
758 ci->i_auth_cap = cap;
759 cap->mds_wanted = wanted;
762 WARN_ON(ci->i_auth_cap == cap);
765 dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
766 inode, ceph_vinop(inode), cap, ceph_cap_string(issued),
767 ceph_cap_string(issued|cap->issued), seq, mds);
768 cap->cap_id = cap_id;
769 cap->issued = issued;
770 cap->implemented |= issued;
771 if (ceph_seq_cmp(mseq, cap->mseq) > 0)
772 cap->mds_wanted = wanted;
774 cap->mds_wanted |= wanted;
776 cap->issue_seq = seq;
778 cap->cap_gen = session->s_cap_gen;
781 __ceph_get_fmode(ci, fmode);
785 * Return true if cap has not timed out and belongs to the current
786 * generation of the MDS session (i.e. has not gone 'stale' due to
787 * us losing touch with the mds).
789 static int __cap_is_valid(struct ceph_cap *cap)
794 spin_lock(&cap->session->s_gen_ttl_lock);
795 gen = cap->session->s_cap_gen;
796 ttl = cap->session->s_cap_ttl;
797 spin_unlock(&cap->session->s_gen_ttl_lock);
799 if (cap->cap_gen < gen || time_after_eq(jiffies, ttl)) {
800 dout("__cap_is_valid %p cap %p issued %s "
801 "but STALE (gen %u vs %u)\n", &cap->ci->vfs_inode,
802 cap, ceph_cap_string(cap->issued), cap->cap_gen, gen);
810 * Return set of valid cap bits issued to us. Note that caps time
811 * out, and may be invalidated in bulk if the client session times out
812 * and session->s_cap_gen is bumped.
814 int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented)
816 int have = ci->i_snap_caps;
817 struct ceph_cap *cap;
822 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
823 cap = rb_entry(p, struct ceph_cap, ci_node);
824 if (!__cap_is_valid(cap))
826 dout("__ceph_caps_issued %p cap %p issued %s\n",
827 &ci->vfs_inode, cap, ceph_cap_string(cap->issued));
830 *implemented |= cap->implemented;
833 * exclude caps issued by non-auth MDS, but are been revoking
834 * by the auth MDS. The non-auth MDS should be revoking/exporting
835 * these caps, but the message is delayed.
837 if (ci->i_auth_cap) {
838 cap = ci->i_auth_cap;
839 have &= ~cap->implemented | cap->issued;
845 * Get cap bits issued by caps other than @ocap
847 int __ceph_caps_issued_other(struct ceph_inode_info *ci, struct ceph_cap *ocap)
849 int have = ci->i_snap_caps;
850 struct ceph_cap *cap;
853 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
854 cap = rb_entry(p, struct ceph_cap, ci_node);
857 if (!__cap_is_valid(cap))
865 * Move a cap to the end of the LRU (oldest caps at list head, newest
868 static void __touch_cap(struct ceph_cap *cap)
870 struct ceph_mds_session *s = cap->session;
872 spin_lock(&s->s_cap_lock);
873 if (!s->s_cap_iterator) {
874 dout("__touch_cap %p cap %p mds%d\n", &cap->ci->vfs_inode, cap,
876 list_move_tail(&cap->session_caps, &s->s_caps);
878 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
879 &cap->ci->vfs_inode, cap, s->s_mds);
881 spin_unlock(&s->s_cap_lock);
885 * Check if we hold the given mask. If so, move the cap(s) to the
886 * front of their respective LRUs. (This is the preferred way for
887 * callers to check for caps they want.)
889 int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int touch)
891 struct ceph_cap *cap;
893 int have = ci->i_snap_caps;
895 if ((have & mask) == mask) {
896 dout("__ceph_caps_issued_mask ino 0x%lx snap issued %s"
897 " (mask %s)\n", ci->vfs_inode.i_ino,
898 ceph_cap_string(have),
899 ceph_cap_string(mask));
903 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
904 cap = rb_entry(p, struct ceph_cap, ci_node);
905 if (!__cap_is_valid(cap))
907 if ((cap->issued & mask) == mask) {
908 dout("__ceph_caps_issued_mask ino 0x%lx cap %p issued %s"
909 " (mask %s)\n", ci->vfs_inode.i_ino, cap,
910 ceph_cap_string(cap->issued),
911 ceph_cap_string(mask));
917 /* does a combination of caps satisfy mask? */
919 if ((have & mask) == mask) {
920 dout("__ceph_caps_issued_mask ino 0x%lx combo issued %s"
921 " (mask %s)\n", ci->vfs_inode.i_ino,
922 ceph_cap_string(cap->issued),
923 ceph_cap_string(mask));
927 /* touch this + preceding caps */
929 for (q = rb_first(&ci->i_caps); q != p;
931 cap = rb_entry(q, struct ceph_cap,
933 if (!__cap_is_valid(cap))
946 * Return true if mask caps are currently being revoked by an MDS.
948 int __ceph_caps_revoking_other(struct ceph_inode_info *ci,
949 struct ceph_cap *ocap, int mask)
951 struct ceph_cap *cap;
954 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
955 cap = rb_entry(p, struct ceph_cap, ci_node);
957 (cap->implemented & ~cap->issued & mask))
963 int ceph_caps_revoking(struct ceph_inode_info *ci, int mask)
965 struct inode *inode = &ci->vfs_inode;
968 spin_lock(&ci->i_ceph_lock);
969 ret = __ceph_caps_revoking_other(ci, NULL, mask);
970 spin_unlock(&ci->i_ceph_lock);
971 dout("ceph_caps_revoking %p %s = %d\n", inode,
972 ceph_cap_string(mask), ret);
976 int __ceph_caps_used(struct ceph_inode_info *ci)
980 used |= CEPH_CAP_PIN;
982 used |= CEPH_CAP_FILE_RD;
983 if (ci->i_rdcache_ref ||
984 (!S_ISDIR(ci->vfs_inode.i_mode) && /* ignore readdir cache */
985 ci->vfs_inode.i_data.nrpages))
986 used |= CEPH_CAP_FILE_CACHE;
988 used |= CEPH_CAP_FILE_WR;
989 if (ci->i_wb_ref || ci->i_wrbuffer_ref)
990 used |= CEPH_CAP_FILE_BUFFER;
995 * wanted, by virtue of open file modes
997 int __ceph_caps_file_wanted(struct ceph_inode_info *ci)
1000 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
1001 if (ci->i_nr_by_mode[i])
1006 return ceph_caps_for_mode(bits >> 1);
1010 * Return caps we have registered with the MDS(s) as 'wanted'.
1012 int __ceph_caps_mds_wanted(struct ceph_inode_info *ci, bool check)
1014 struct ceph_cap *cap;
1018 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1019 cap = rb_entry(p, struct ceph_cap, ci_node);
1020 if (check && !__cap_is_valid(cap))
1022 if (cap == ci->i_auth_cap)
1023 mds_wanted |= cap->mds_wanted;
1025 mds_wanted |= (cap->mds_wanted & ~CEPH_CAP_ANY_FILE_WR);
1031 * called under i_ceph_lock
1033 static int __ceph_is_single_caps(struct ceph_inode_info *ci)
1035 return rb_first(&ci->i_caps) == rb_last(&ci->i_caps);
1038 static int __ceph_is_any_caps(struct ceph_inode_info *ci)
1040 return !RB_EMPTY_ROOT(&ci->i_caps);
1043 int ceph_is_any_caps(struct inode *inode)
1045 struct ceph_inode_info *ci = ceph_inode(inode);
1048 spin_lock(&ci->i_ceph_lock);
1049 ret = __ceph_is_any_caps(ci);
1050 spin_unlock(&ci->i_ceph_lock);
1055 static void drop_inode_snap_realm(struct ceph_inode_info *ci)
1057 struct ceph_snap_realm *realm = ci->i_snap_realm;
1058 spin_lock(&realm->inodes_with_caps_lock);
1059 list_del_init(&ci->i_snap_realm_item);
1060 ci->i_snap_realm_counter++;
1061 ci->i_snap_realm = NULL;
1062 if (realm->ino == ci->i_vino.ino)
1063 realm->inode = NULL;
1064 spin_unlock(&realm->inodes_with_caps_lock);
1065 ceph_put_snap_realm(ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc,
1070 * Remove a cap. Take steps to deal with a racing iterate_session_caps.
1072 * caller should hold i_ceph_lock.
1073 * caller will not hold session s_mutex if called from destroy_inode.
1075 void __ceph_remove_cap(struct ceph_cap *cap, bool queue_release)
1077 struct ceph_mds_session *session = cap->session;
1078 struct ceph_inode_info *ci = cap->ci;
1079 struct ceph_mds_client *mdsc =
1080 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
1083 dout("__ceph_remove_cap %p from %p\n", cap, &ci->vfs_inode);
1085 /* remove from session list */
1086 spin_lock(&session->s_cap_lock);
1087 if (session->s_cap_iterator == cap) {
1088 /* not yet, we are iterating over this very cap */
1089 dout("__ceph_remove_cap delaying %p removal from session %p\n",
1092 list_del_init(&cap->session_caps);
1093 session->s_nr_caps--;
1094 cap->session = NULL;
1097 /* protect backpointer with s_cap_lock: see iterate_session_caps */
1101 * s_cap_reconnect is protected by s_cap_lock. no one changes
1102 * s_cap_gen while session is in the reconnect state.
1104 if (queue_release &&
1105 (!session->s_cap_reconnect || cap->cap_gen == session->s_cap_gen)) {
1106 cap->queue_release = 1;
1108 __ceph_queue_cap_release(session, cap);
1112 cap->queue_release = 0;
1114 cap->cap_ino = ci->i_vino.ino;
1116 spin_unlock(&session->s_cap_lock);
1118 /* remove from inode list */
1119 rb_erase(&cap->ci_node, &ci->i_caps);
1120 if (ci->i_auth_cap == cap)
1121 ci->i_auth_cap = NULL;
1124 ceph_put_cap(mdsc, cap);
1126 /* when reconnect denied, we remove session caps forcibly,
1127 * i_wr_ref can be non-zero. If there are ongoing write,
1128 * keep i_snap_realm.
1130 if (!__ceph_is_any_caps(ci) && ci->i_wr_ref == 0 && ci->i_snap_realm)
1131 drop_inode_snap_realm(ci);
1133 if (!__ceph_is_any_real_caps(ci))
1134 __cap_delay_cancel(mdsc, ci);
1137 struct cap_msg_args {
1138 struct ceph_mds_session *session;
1139 u64 ino, cid, follows;
1140 u64 flush_tid, oldest_flush_tid, size, max_size;
1143 struct ceph_buffer *xattr_buf;
1144 struct timespec64 atime, mtime, ctime, btime;
1145 int op, caps, wanted, dirty;
1146 u32 seq, issue_seq, mseq, time_warp_seq;
1155 * Build and send a cap message to the given MDS.
1157 * Caller should be holding s_mutex.
1159 static int send_cap_msg(struct cap_msg_args *arg)
1161 struct ceph_mds_caps *fc;
1162 struct ceph_msg *msg;
1165 struct ceph_osd_client *osdc = &arg->session->s_mdsc->fsc->client->osdc;
1167 dout("send_cap_msg %s %llx %llx caps %s wanted %s dirty %s"
1168 " seq %u/%u tid %llu/%llu mseq %u follows %lld size %llu/%llu"
1169 " xattr_ver %llu xattr_len %d\n", ceph_cap_op_name(arg->op),
1170 arg->cid, arg->ino, ceph_cap_string(arg->caps),
1171 ceph_cap_string(arg->wanted), ceph_cap_string(arg->dirty),
1172 arg->seq, arg->issue_seq, arg->flush_tid, arg->oldest_flush_tid,
1173 arg->mseq, arg->follows, arg->size, arg->max_size,
1175 arg->xattr_buf ? (int)arg->xattr_buf->vec.iov_len : 0);
1177 /* flock buffer size + inline version + inline data size +
1178 * osd_epoch_barrier + oldest_flush_tid */
1179 extra_len = 4 + 8 + 4 + 4 + 8 + 4 + 4 + 4 + 8 + 8 + 4;
1180 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, sizeof(*fc) + extra_len,
1185 msg->hdr.version = cpu_to_le16(10);
1186 msg->hdr.tid = cpu_to_le64(arg->flush_tid);
1188 fc = msg->front.iov_base;
1189 memset(fc, 0, sizeof(*fc));
1191 fc->cap_id = cpu_to_le64(arg->cid);
1192 fc->op = cpu_to_le32(arg->op);
1193 fc->seq = cpu_to_le32(arg->seq);
1194 fc->issue_seq = cpu_to_le32(arg->issue_seq);
1195 fc->migrate_seq = cpu_to_le32(arg->mseq);
1196 fc->caps = cpu_to_le32(arg->caps);
1197 fc->wanted = cpu_to_le32(arg->wanted);
1198 fc->dirty = cpu_to_le32(arg->dirty);
1199 fc->ino = cpu_to_le64(arg->ino);
1200 fc->snap_follows = cpu_to_le64(arg->follows);
1202 fc->size = cpu_to_le64(arg->size);
1203 fc->max_size = cpu_to_le64(arg->max_size);
1204 ceph_encode_timespec64(&fc->mtime, &arg->mtime);
1205 ceph_encode_timespec64(&fc->atime, &arg->atime);
1206 ceph_encode_timespec64(&fc->ctime, &arg->ctime);
1207 fc->time_warp_seq = cpu_to_le32(arg->time_warp_seq);
1209 fc->uid = cpu_to_le32(from_kuid(&init_user_ns, arg->uid));
1210 fc->gid = cpu_to_le32(from_kgid(&init_user_ns, arg->gid));
1211 fc->mode = cpu_to_le32(arg->mode);
1213 fc->xattr_version = cpu_to_le64(arg->xattr_version);
1214 if (arg->xattr_buf) {
1215 msg->middle = ceph_buffer_get(arg->xattr_buf);
1216 fc->xattr_len = cpu_to_le32(arg->xattr_buf->vec.iov_len);
1217 msg->hdr.middle_len = cpu_to_le32(arg->xattr_buf->vec.iov_len);
1221 /* flock buffer size (version 2) */
1222 ceph_encode_32(&p, 0);
1223 /* inline version (version 4) */
1224 ceph_encode_64(&p, arg->inline_data ? 0 : CEPH_INLINE_NONE);
1225 /* inline data size */
1226 ceph_encode_32(&p, 0);
1228 * osd_epoch_barrier (version 5)
1229 * The epoch_barrier is protected osdc->lock, so READ_ONCE here in
1230 * case it was recently changed
1232 ceph_encode_32(&p, READ_ONCE(osdc->epoch_barrier));
1233 /* oldest_flush_tid (version 6) */
1234 ceph_encode_64(&p, arg->oldest_flush_tid);
1237 * caller_uid/caller_gid (version 7)
1239 * Currently, we don't properly track which caller dirtied the caps
1240 * last, and force a flush of them when there is a conflict. For now,
1241 * just set this to 0:0, to emulate how the MDS has worked up to now.
1243 ceph_encode_32(&p, 0);
1244 ceph_encode_32(&p, 0);
1246 /* pool namespace (version 8) (mds always ignores this) */
1247 ceph_encode_32(&p, 0);
1249 /* btime and change_attr (version 9) */
1250 ceph_encode_timespec64(p, &arg->btime);
1251 p += sizeof(struct ceph_timespec);
1252 ceph_encode_64(&p, arg->change_attr);
1254 /* Advisory flags (version 10) */
1255 ceph_encode_32(&p, arg->flags);
1257 ceph_con_send(&arg->session->s_con, msg);
1262 * Queue cap releases when an inode is dropped from our cache.
1264 void __ceph_remove_caps(struct ceph_inode_info *ci)
1268 /* lock i_ceph_lock, because ceph_d_revalidate(..., LOOKUP_RCU)
1269 * may call __ceph_caps_issued_mask() on a freeing inode. */
1270 spin_lock(&ci->i_ceph_lock);
1271 p = rb_first(&ci->i_caps);
1273 struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
1275 __ceph_remove_cap(cap, true);
1277 spin_unlock(&ci->i_ceph_lock);
1281 * Send a cap msg on the given inode. Update our caps state, then
1282 * drop i_ceph_lock and send the message.
1284 * Make note of max_size reported/requested from mds, revoked caps
1285 * that have now been implemented.
1287 * Make half-hearted attempt ot to invalidate page cache if we are
1288 * dropping RDCACHE. Note that this will leave behind locked pages
1289 * that we'll then need to deal with elsewhere.
1291 * Return non-zero if delayed release, or we experienced an error
1292 * such that the caller should requeue + retry later.
1294 * called with i_ceph_lock, then drops it.
1295 * caller should hold snap_rwsem (read), s_mutex.
1297 static int __send_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap,
1298 int op, int flags, int used, int want, int retain,
1299 int flushing, u64 flush_tid, u64 oldest_flush_tid)
1300 __releases(cap->ci->i_ceph_lock)
1302 struct ceph_inode_info *ci = cap->ci;
1303 struct inode *inode = &ci->vfs_inode;
1304 struct cap_msg_args arg;
1310 held = cap->issued | cap->implemented;
1311 revoking = cap->implemented & ~cap->issued;
1312 retain &= ~revoking;
1314 dout("__send_cap %p cap %p session %p %s -> %s (revoking %s)\n",
1315 inode, cap, cap->session,
1316 ceph_cap_string(held), ceph_cap_string(held & retain),
1317 ceph_cap_string(revoking));
1318 BUG_ON((retain & CEPH_CAP_PIN) == 0);
1320 arg.session = cap->session;
1322 /* don't release wanted unless we've waited a bit. */
1323 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1324 time_before(jiffies, ci->i_hold_caps_min)) {
1325 dout(" delaying issued %s -> %s, wanted %s -> %s on send\n",
1326 ceph_cap_string(cap->issued),
1327 ceph_cap_string(cap->issued & retain),
1328 ceph_cap_string(cap->mds_wanted),
1329 ceph_cap_string(want));
1330 want |= cap->mds_wanted;
1331 retain |= cap->issued;
1334 ci->i_ceph_flags &= ~(CEPH_I_NODELAY | CEPH_I_FLUSH);
1335 if (want & ~cap->mds_wanted) {
1336 /* user space may open/close single file frequently.
1337 * This avoids droping mds_wanted immediately after
1338 * requesting new mds_wanted.
1340 __cap_set_timeouts(mdsc, ci);
1343 cap->issued &= retain; /* drop bits we don't want */
1344 if (cap->implemented & ~cap->issued) {
1346 * Wake up any waiters on wanted -> needed transition.
1347 * This is due to the weird transition from buffered
1348 * to sync IO... we need to flush dirty pages _before_
1349 * allowing sync writes to avoid reordering.
1353 cap->implemented &= cap->issued | used;
1354 cap->mds_wanted = want;
1356 arg.ino = ceph_vino(inode).ino;
1357 arg.cid = cap->cap_id;
1358 arg.follows = flushing ? ci->i_head_snapc->seq : 0;
1359 arg.flush_tid = flush_tid;
1360 arg.oldest_flush_tid = oldest_flush_tid;
1362 arg.size = inode->i_size;
1363 ci->i_reported_size = arg.size;
1364 arg.max_size = ci->i_wanted_max_size;
1365 ci->i_requested_max_size = arg.max_size;
1367 if (flushing & CEPH_CAP_XATTR_EXCL) {
1368 __ceph_build_xattrs_blob(ci);
1369 arg.xattr_version = ci->i_xattrs.version;
1370 arg.xattr_buf = ci->i_xattrs.blob;
1372 arg.xattr_buf = NULL;
1375 arg.mtime = inode->i_mtime;
1376 arg.atime = inode->i_atime;
1377 arg.ctime = inode->i_ctime;
1378 arg.btime = ci->i_btime;
1379 arg.change_attr = inode_peek_iversion_raw(inode);
1382 arg.caps = cap->implemented;
1384 arg.dirty = flushing;
1387 arg.issue_seq = cap->issue_seq;
1388 arg.mseq = cap->mseq;
1389 arg.time_warp_seq = ci->i_time_warp_seq;
1391 arg.uid = inode->i_uid;
1392 arg.gid = inode->i_gid;
1393 arg.mode = inode->i_mode;
1395 arg.inline_data = ci->i_inline_version != CEPH_INLINE_NONE;
1396 if (!(flags & CEPH_CLIENT_CAPS_PENDING_CAPSNAP) &&
1397 !list_empty(&ci->i_cap_snaps)) {
1398 struct ceph_cap_snap *capsnap;
1399 list_for_each_entry_reverse(capsnap, &ci->i_cap_snaps, ci_item) {
1400 if (capsnap->cap_flush.tid)
1402 if (capsnap->need_flush) {
1403 flags |= CEPH_CLIENT_CAPS_PENDING_CAPSNAP;
1410 spin_unlock(&ci->i_ceph_lock);
1412 ret = send_cap_msg(&arg);
1414 dout("error sending cap msg, must requeue %p\n", inode);
1419 wake_up_all(&ci->i_cap_wq);
1424 static inline int __send_flush_snap(struct inode *inode,
1425 struct ceph_mds_session *session,
1426 struct ceph_cap_snap *capsnap,
1427 u32 mseq, u64 oldest_flush_tid)
1429 struct cap_msg_args arg;
1431 arg.session = session;
1432 arg.ino = ceph_vino(inode).ino;
1434 arg.follows = capsnap->follows;
1435 arg.flush_tid = capsnap->cap_flush.tid;
1436 arg.oldest_flush_tid = oldest_flush_tid;
1438 arg.size = capsnap->size;
1440 arg.xattr_version = capsnap->xattr_version;
1441 arg.xattr_buf = capsnap->xattr_blob;
1443 arg.atime = capsnap->atime;
1444 arg.mtime = capsnap->mtime;
1445 arg.ctime = capsnap->ctime;
1446 arg.btime = capsnap->btime;
1447 arg.change_attr = capsnap->change_attr;
1449 arg.op = CEPH_CAP_OP_FLUSHSNAP;
1450 arg.caps = capsnap->issued;
1452 arg.dirty = capsnap->dirty;
1457 arg.time_warp_seq = capsnap->time_warp_seq;
1459 arg.uid = capsnap->uid;
1460 arg.gid = capsnap->gid;
1461 arg.mode = capsnap->mode;
1463 arg.inline_data = capsnap->inline_data;
1466 return send_cap_msg(&arg);
1470 * When a snapshot is taken, clients accumulate dirty metadata on
1471 * inodes with capabilities in ceph_cap_snaps to describe the file
1472 * state at the time the snapshot was taken. This must be flushed
1473 * asynchronously back to the MDS once sync writes complete and dirty
1474 * data is written out.
1476 * Called under i_ceph_lock. Takes s_mutex as needed.
1478 static void __ceph_flush_snaps(struct ceph_inode_info *ci,
1479 struct ceph_mds_session *session)
1480 __releases(ci->i_ceph_lock)
1481 __acquires(ci->i_ceph_lock)
1483 struct inode *inode = &ci->vfs_inode;
1484 struct ceph_mds_client *mdsc = session->s_mdsc;
1485 struct ceph_cap_snap *capsnap;
1486 u64 oldest_flush_tid = 0;
1487 u64 first_tid = 1, last_tid = 0;
1489 dout("__flush_snaps %p session %p\n", inode, session);
1491 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
1493 * we need to wait for sync writes to complete and for dirty
1494 * pages to be written out.
1496 if (capsnap->dirty_pages || capsnap->writing)
1499 /* should be removed by ceph_try_drop_cap_snap() */
1500 BUG_ON(!capsnap->need_flush);
1502 /* only flush each capsnap once */
1503 if (capsnap->cap_flush.tid > 0) {
1504 dout(" already flushed %p, skipping\n", capsnap);
1508 spin_lock(&mdsc->cap_dirty_lock);
1509 capsnap->cap_flush.tid = ++mdsc->last_cap_flush_tid;
1510 list_add_tail(&capsnap->cap_flush.g_list,
1511 &mdsc->cap_flush_list);
1512 if (oldest_flush_tid == 0)
1513 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
1514 if (list_empty(&ci->i_flushing_item)) {
1515 list_add_tail(&ci->i_flushing_item,
1516 &session->s_cap_flushing);
1518 spin_unlock(&mdsc->cap_dirty_lock);
1520 list_add_tail(&capsnap->cap_flush.i_list,
1521 &ci->i_cap_flush_list);
1524 first_tid = capsnap->cap_flush.tid;
1525 last_tid = capsnap->cap_flush.tid;
1528 ci->i_ceph_flags &= ~CEPH_I_FLUSH_SNAPS;
1530 while (first_tid <= last_tid) {
1531 struct ceph_cap *cap = ci->i_auth_cap;
1532 struct ceph_cap_flush *cf;
1535 if (!(cap && cap->session == session)) {
1536 dout("__flush_snaps %p auth cap %p not mds%d, "
1537 "stop\n", inode, cap, session->s_mds);
1542 list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
1543 if (cf->tid >= first_tid) {
1551 first_tid = cf->tid + 1;
1553 capsnap = container_of(cf, struct ceph_cap_snap, cap_flush);
1554 refcount_inc(&capsnap->nref);
1555 spin_unlock(&ci->i_ceph_lock);
1557 dout("__flush_snaps %p capsnap %p tid %llu %s\n",
1558 inode, capsnap, cf->tid, ceph_cap_string(capsnap->dirty));
1560 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
1563 pr_err("__flush_snaps: error sending cap flushsnap, "
1564 "ino (%llx.%llx) tid %llu follows %llu\n",
1565 ceph_vinop(inode), cf->tid, capsnap->follows);
1568 ceph_put_cap_snap(capsnap);
1569 spin_lock(&ci->i_ceph_lock);
1573 void ceph_flush_snaps(struct ceph_inode_info *ci,
1574 struct ceph_mds_session **psession)
1576 struct inode *inode = &ci->vfs_inode;
1577 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
1578 struct ceph_mds_session *session = NULL;
1581 dout("ceph_flush_snaps %p\n", inode);
1583 session = *psession;
1585 spin_lock(&ci->i_ceph_lock);
1586 if (!(ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)) {
1587 dout(" no capsnap needs flush, doing nothing\n");
1590 if (!ci->i_auth_cap) {
1591 dout(" no auth cap (migrating?), doing nothing\n");
1595 mds = ci->i_auth_cap->session->s_mds;
1596 if (session && session->s_mds != mds) {
1597 dout(" oops, wrong session %p mutex\n", session);
1598 mutex_unlock(&session->s_mutex);
1599 ceph_put_mds_session(session);
1603 spin_unlock(&ci->i_ceph_lock);
1604 mutex_lock(&mdsc->mutex);
1605 session = __ceph_lookup_mds_session(mdsc, mds);
1606 mutex_unlock(&mdsc->mutex);
1608 dout(" inverting session/ino locks on %p\n", session);
1609 mutex_lock(&session->s_mutex);
1614 // make sure flushsnap messages are sent in proper order.
1615 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
1616 __kick_flushing_caps(mdsc, session, ci, 0);
1618 __ceph_flush_snaps(ci, session);
1620 spin_unlock(&ci->i_ceph_lock);
1623 *psession = session;
1624 } else if (session) {
1625 mutex_unlock(&session->s_mutex);
1626 ceph_put_mds_session(session);
1628 /* we flushed them all; remove this inode from the queue */
1629 spin_lock(&mdsc->snap_flush_lock);
1630 list_del_init(&ci->i_snap_flush_item);
1631 spin_unlock(&mdsc->snap_flush_lock);
1635 * Mark caps dirty. If inode is newly dirty, return the dirty flags.
1636 * Caller is then responsible for calling __mark_inode_dirty with the
1637 * returned flags value.
1639 int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask,
1640 struct ceph_cap_flush **pcf)
1642 struct ceph_mds_client *mdsc =
1643 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
1644 struct inode *inode = &ci->vfs_inode;
1645 int was = ci->i_dirty_caps;
1648 if (!ci->i_auth_cap) {
1649 pr_warn("__mark_dirty_caps %p %llx mask %s, "
1650 "but no auth cap (session was closed?)\n",
1651 inode, ceph_ino(inode), ceph_cap_string(mask));
1655 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci->vfs_inode,
1656 ceph_cap_string(mask), ceph_cap_string(was),
1657 ceph_cap_string(was | mask));
1658 ci->i_dirty_caps |= mask;
1660 WARN_ON_ONCE(ci->i_prealloc_cap_flush);
1661 swap(ci->i_prealloc_cap_flush, *pcf);
1663 if (!ci->i_head_snapc) {
1664 WARN_ON_ONCE(!rwsem_is_locked(&mdsc->snap_rwsem));
1665 ci->i_head_snapc = ceph_get_snap_context(
1666 ci->i_snap_realm->cached_context);
1668 dout(" inode %p now dirty snapc %p auth cap %p\n",
1669 &ci->vfs_inode, ci->i_head_snapc, ci->i_auth_cap);
1670 BUG_ON(!list_empty(&ci->i_dirty_item));
1671 spin_lock(&mdsc->cap_dirty_lock);
1672 list_add(&ci->i_dirty_item, &mdsc->cap_dirty);
1673 spin_unlock(&mdsc->cap_dirty_lock);
1674 if (ci->i_flushing_caps == 0) {
1676 dirty |= I_DIRTY_SYNC;
1679 WARN_ON_ONCE(!ci->i_prealloc_cap_flush);
1681 BUG_ON(list_empty(&ci->i_dirty_item));
1682 if (((was | ci->i_flushing_caps) & CEPH_CAP_FILE_BUFFER) &&
1683 (mask & CEPH_CAP_FILE_BUFFER))
1684 dirty |= I_DIRTY_DATASYNC;
1685 __cap_delay_requeue(mdsc, ci, true);
1689 struct ceph_cap_flush *ceph_alloc_cap_flush(void)
1691 return kmem_cache_alloc(ceph_cap_flush_cachep, GFP_KERNEL);
1694 void ceph_free_cap_flush(struct ceph_cap_flush *cf)
1697 kmem_cache_free(ceph_cap_flush_cachep, cf);
1700 static u64 __get_oldest_flush_tid(struct ceph_mds_client *mdsc)
1702 if (!list_empty(&mdsc->cap_flush_list)) {
1703 struct ceph_cap_flush *cf =
1704 list_first_entry(&mdsc->cap_flush_list,
1705 struct ceph_cap_flush, g_list);
1712 * Remove cap_flush from the mdsc's or inode's flushing cap list.
1713 * Return true if caller needs to wake up flush waiters.
1715 static bool __finish_cap_flush(struct ceph_mds_client *mdsc,
1716 struct ceph_inode_info *ci,
1717 struct ceph_cap_flush *cf)
1719 struct ceph_cap_flush *prev;
1720 bool wake = cf->wake;
1722 /* are there older pending cap flushes? */
1723 if (wake && cf->g_list.prev != &mdsc->cap_flush_list) {
1724 prev = list_prev_entry(cf, g_list);
1728 list_del(&cf->g_list);
1730 if (wake && cf->i_list.prev != &ci->i_cap_flush_list) {
1731 prev = list_prev_entry(cf, i_list);
1735 list_del(&cf->i_list);
1743 * Add dirty inode to the flushing list. Assigned a seq number so we
1744 * can wait for caps to flush without starving.
1746 * Called under i_ceph_lock.
1748 static int __mark_caps_flushing(struct inode *inode,
1749 struct ceph_mds_session *session, bool wake,
1750 u64 *flush_tid, u64 *oldest_flush_tid)
1752 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
1753 struct ceph_inode_info *ci = ceph_inode(inode);
1754 struct ceph_cap_flush *cf = NULL;
1757 BUG_ON(ci->i_dirty_caps == 0);
1758 BUG_ON(list_empty(&ci->i_dirty_item));
1759 BUG_ON(!ci->i_prealloc_cap_flush);
1761 flushing = ci->i_dirty_caps;
1762 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1763 ceph_cap_string(flushing),
1764 ceph_cap_string(ci->i_flushing_caps),
1765 ceph_cap_string(ci->i_flushing_caps | flushing));
1766 ci->i_flushing_caps |= flushing;
1767 ci->i_dirty_caps = 0;
1768 dout(" inode %p now !dirty\n", inode);
1770 swap(cf, ci->i_prealloc_cap_flush);
1771 cf->caps = flushing;
1774 spin_lock(&mdsc->cap_dirty_lock);
1775 list_del_init(&ci->i_dirty_item);
1777 cf->tid = ++mdsc->last_cap_flush_tid;
1778 list_add_tail(&cf->g_list, &mdsc->cap_flush_list);
1779 *oldest_flush_tid = __get_oldest_flush_tid(mdsc);
1781 if (list_empty(&ci->i_flushing_item)) {
1782 list_add_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1783 mdsc->num_cap_flushing++;
1785 spin_unlock(&mdsc->cap_dirty_lock);
1787 list_add_tail(&cf->i_list, &ci->i_cap_flush_list);
1789 *flush_tid = cf->tid;
1794 * try to invalidate mapping pages without blocking.
1796 static int try_nonblocking_invalidate(struct inode *inode)
1798 struct ceph_inode_info *ci = ceph_inode(inode);
1799 u32 invalidating_gen = ci->i_rdcache_gen;
1801 spin_unlock(&ci->i_ceph_lock);
1802 invalidate_mapping_pages(&inode->i_data, 0, -1);
1803 spin_lock(&ci->i_ceph_lock);
1805 if (inode->i_data.nrpages == 0 &&
1806 invalidating_gen == ci->i_rdcache_gen) {
1808 dout("try_nonblocking_invalidate %p success\n", inode);
1809 /* save any racing async invalidate some trouble */
1810 ci->i_rdcache_revoking = ci->i_rdcache_gen - 1;
1813 dout("try_nonblocking_invalidate %p failed\n", inode);
1817 bool __ceph_should_report_size(struct ceph_inode_info *ci)
1819 loff_t size = ci->vfs_inode.i_size;
1820 /* mds will adjust max size according to the reported size */
1821 if (ci->i_flushing_caps & CEPH_CAP_FILE_WR)
1823 if (size >= ci->i_max_size)
1825 /* half of previous max_size increment has been used */
1826 if (ci->i_max_size > ci->i_reported_size &&
1827 (size << 1) >= ci->i_max_size + ci->i_reported_size)
1833 * Swiss army knife function to examine currently used and wanted
1834 * versus held caps. Release, flush, ack revoked caps to mds as
1837 * CHECK_CAPS_NODELAY - caller is delayed work and we should not delay
1838 * cap release further.
1839 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1840 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1843 void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1844 struct ceph_mds_session *session)
1846 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1847 struct ceph_mds_client *mdsc = fsc->mdsc;
1848 struct inode *inode = &ci->vfs_inode;
1849 struct ceph_cap *cap;
1850 u64 flush_tid, oldest_flush_tid;
1851 int file_wanted, used, cap_used;
1852 int took_snap_rwsem = 0; /* true if mdsc->snap_rwsem held */
1853 int issued, implemented, want, retain, revoking, flushing = 0;
1854 int mds = -1; /* keep track of how far we've gone through i_caps list
1855 to avoid an infinite loop on retry */
1857 int delayed = 0, sent = 0;
1858 bool no_delay = flags & CHECK_CAPS_NODELAY;
1859 bool queue_invalidate = false;
1860 bool tried_invalidate = false;
1862 /* if we are unmounting, flush any unused caps immediately. */
1866 spin_lock(&ci->i_ceph_lock);
1868 if (ci->i_ceph_flags & CEPH_I_FLUSH)
1869 flags |= CHECK_CAPS_FLUSH;
1871 if (!(flags & CHECK_CAPS_AUTHONLY) ||
1872 (ci->i_auth_cap && __ceph_is_single_caps(ci)))
1873 __cap_delay_cancel(mdsc, ci);
1877 spin_lock(&ci->i_ceph_lock);
1879 file_wanted = __ceph_caps_file_wanted(ci);
1880 used = __ceph_caps_used(ci);
1881 issued = __ceph_caps_issued(ci, &implemented);
1882 revoking = implemented & ~issued;
1885 retain = file_wanted | used | CEPH_CAP_PIN;
1886 if (!mdsc->stopping && inode->i_nlink > 0) {
1888 retain |= CEPH_CAP_ANY; /* be greedy */
1889 } else if (S_ISDIR(inode->i_mode) &&
1890 (issued & CEPH_CAP_FILE_SHARED) &&
1891 __ceph_dir_is_complete(ci)) {
1893 * If a directory is complete, we want to keep
1894 * the exclusive cap. So that MDS does not end up
1895 * revoking the shared cap on every create/unlink
1898 if (IS_RDONLY(inode))
1899 want = CEPH_CAP_ANY_SHARED;
1901 want = CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL;
1905 retain |= CEPH_CAP_ANY_SHARED;
1907 * keep RD only if we didn't have the file open RW,
1908 * because then the mds would revoke it anyway to
1909 * journal max_size=0.
1911 if (ci->i_max_size == 0)
1912 retain |= CEPH_CAP_ANY_RD;
1916 dout("check_caps %p file_want %s used %s dirty %s flushing %s"
1917 " issued %s revoking %s retain %s %s%s%s\n", inode,
1918 ceph_cap_string(file_wanted),
1919 ceph_cap_string(used), ceph_cap_string(ci->i_dirty_caps),
1920 ceph_cap_string(ci->i_flushing_caps),
1921 ceph_cap_string(issued), ceph_cap_string(revoking),
1922 ceph_cap_string(retain),
1923 (flags & CHECK_CAPS_AUTHONLY) ? " AUTHONLY" : "",
1924 (flags & CHECK_CAPS_NODELAY) ? " NODELAY" : "",
1925 (flags & CHECK_CAPS_FLUSH) ? " FLUSH" : "");
1928 * If we no longer need to hold onto old our caps, and we may
1929 * have cached pages, but don't want them, then try to invalidate.
1930 * If we fail, it's because pages are locked.... try again later.
1932 if ((!no_delay || mdsc->stopping) &&
1933 !S_ISDIR(inode->i_mode) && /* ignore readdir cache */
1934 !(ci->i_wb_ref || ci->i_wrbuffer_ref) && /* no dirty pages... */
1935 inode->i_data.nrpages && /* have cached pages */
1936 (revoking & (CEPH_CAP_FILE_CACHE|
1937 CEPH_CAP_FILE_LAZYIO)) && /* or revoking cache */
1938 !tried_invalidate) {
1939 dout("check_caps trying to invalidate on %p\n", inode);
1940 if (try_nonblocking_invalidate(inode) < 0) {
1941 dout("check_caps queuing invalidate\n");
1942 queue_invalidate = true;
1943 ci->i_rdcache_revoking = ci->i_rdcache_gen;
1945 tried_invalidate = true;
1949 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1950 cap = rb_entry(p, struct ceph_cap, ci_node);
1952 /* avoid looping forever */
1953 if (mds >= cap->mds ||
1954 ((flags & CHECK_CAPS_AUTHONLY) && cap != ci->i_auth_cap))
1957 /* NOTE: no side-effects allowed, until we take s_mutex */
1960 if (ci->i_auth_cap && cap != ci->i_auth_cap)
1961 cap_used &= ~ci->i_auth_cap->issued;
1963 revoking = cap->implemented & ~cap->issued;
1964 dout(" mds%d cap %p used %s issued %s implemented %s revoking %s\n",
1965 cap->mds, cap, ceph_cap_string(cap_used),
1966 ceph_cap_string(cap->issued),
1967 ceph_cap_string(cap->implemented),
1968 ceph_cap_string(revoking));
1970 if (cap == ci->i_auth_cap &&
1971 (cap->issued & CEPH_CAP_FILE_WR)) {
1972 /* request larger max_size from MDS? */
1973 if (ci->i_wanted_max_size > ci->i_max_size &&
1974 ci->i_wanted_max_size > ci->i_requested_max_size) {
1975 dout("requesting new max_size\n");
1979 /* approaching file_max? */
1980 if (__ceph_should_report_size(ci)) {
1981 dout("i_size approaching max_size\n");
1985 /* flush anything dirty? */
1986 if (cap == ci->i_auth_cap) {
1987 if ((flags & CHECK_CAPS_FLUSH) && ci->i_dirty_caps) {
1988 dout("flushing dirty caps\n");
1991 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS) {
1992 dout("flushing snap caps\n");
1997 /* completed revocation? going down and there are no caps? */
1998 if (revoking && (revoking & cap_used) == 0) {
1999 dout("completed revocation of %s\n",
2000 ceph_cap_string(cap->implemented & ~cap->issued));
2004 /* want more caps from mds? */
2005 if (want & ~(cap->mds_wanted | cap->issued))
2008 /* things we might delay */
2009 if ((cap->issued & ~retain) == 0)
2010 continue; /* nope, all good */
2016 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
2017 time_before(jiffies, ci->i_hold_caps_max)) {
2018 dout(" delaying issued %s -> %s, wanted %s -> %s\n",
2019 ceph_cap_string(cap->issued),
2020 ceph_cap_string(cap->issued & retain),
2021 ceph_cap_string(cap->mds_wanted),
2022 ceph_cap_string(want));
2028 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
2029 dout(" skipping %p I_NOFLUSH set\n", inode);
2033 if (session && session != cap->session) {
2034 dout("oops, wrong session %p mutex\n", session);
2035 mutex_unlock(&session->s_mutex);
2039 session = cap->session;
2040 if (mutex_trylock(&session->s_mutex) == 0) {
2041 dout("inverting session/ino locks on %p\n",
2043 spin_unlock(&ci->i_ceph_lock);
2044 if (took_snap_rwsem) {
2045 up_read(&mdsc->snap_rwsem);
2046 took_snap_rwsem = 0;
2048 mutex_lock(&session->s_mutex);
2053 /* kick flushing and flush snaps before sending normal
2055 if (cap == ci->i_auth_cap &&
2057 (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS))) {
2058 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
2059 __kick_flushing_caps(mdsc, session, ci, 0);
2060 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
2061 __ceph_flush_snaps(ci, session);
2066 /* take snap_rwsem after session mutex */
2067 if (!took_snap_rwsem) {
2068 if (down_read_trylock(&mdsc->snap_rwsem) == 0) {
2069 dout("inverting snap/in locks on %p\n",
2071 spin_unlock(&ci->i_ceph_lock);
2072 down_read(&mdsc->snap_rwsem);
2073 took_snap_rwsem = 1;
2076 took_snap_rwsem = 1;
2079 if (cap == ci->i_auth_cap && ci->i_dirty_caps) {
2080 flushing = __mark_caps_flushing(inode, session, false,
2086 spin_lock(&mdsc->cap_dirty_lock);
2087 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2088 spin_unlock(&mdsc->cap_dirty_lock);
2091 mds = cap->mds; /* remember mds, so we don't repeat */
2094 /* __send_cap drops i_ceph_lock */
2095 delayed += __send_cap(mdsc, cap, CEPH_CAP_OP_UPDATE, 0,
2096 cap_used, want, retain, flushing,
2097 flush_tid, oldest_flush_tid);
2098 goto retry; /* retake i_ceph_lock and restart our cap scan. */
2101 /* Reschedule delayed caps release if we delayed anything */
2103 __cap_delay_requeue(mdsc, ci, false);
2105 spin_unlock(&ci->i_ceph_lock);
2107 if (queue_invalidate)
2108 ceph_queue_invalidate(inode);
2111 mutex_unlock(&session->s_mutex);
2112 if (took_snap_rwsem)
2113 up_read(&mdsc->snap_rwsem);
2117 * Try to flush dirty caps back to the auth mds.
2119 static int try_flush_caps(struct inode *inode, u64 *ptid)
2121 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
2122 struct ceph_inode_info *ci = ceph_inode(inode);
2123 struct ceph_mds_session *session = NULL;
2125 u64 flush_tid = 0, oldest_flush_tid = 0;
2128 spin_lock(&ci->i_ceph_lock);
2130 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
2131 spin_unlock(&ci->i_ceph_lock);
2132 dout("try_flush_caps skipping %p I_NOFLUSH set\n", inode);
2135 if (ci->i_dirty_caps && ci->i_auth_cap) {
2136 struct ceph_cap *cap = ci->i_auth_cap;
2139 if (!session || session != cap->session) {
2140 spin_unlock(&ci->i_ceph_lock);
2142 mutex_unlock(&session->s_mutex);
2143 session = cap->session;
2144 mutex_lock(&session->s_mutex);
2147 if (cap->session->s_state < CEPH_MDS_SESSION_OPEN) {
2148 spin_unlock(&ci->i_ceph_lock);
2152 if (ci->i_ceph_flags &
2153 (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS)) {
2154 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
2155 __kick_flushing_caps(mdsc, session, ci, 0);
2156 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
2157 __ceph_flush_snaps(ci, session);
2161 flushing = __mark_caps_flushing(inode, session, true,
2162 &flush_tid, &oldest_flush_tid);
2164 /* __send_cap drops i_ceph_lock */
2165 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
2166 CEPH_CLIENT_CAPS_SYNC,
2167 __ceph_caps_used(ci),
2168 __ceph_caps_wanted(ci),
2169 (cap->issued | cap->implemented),
2170 flushing, flush_tid, oldest_flush_tid);
2173 spin_lock(&ci->i_ceph_lock);
2174 __cap_delay_requeue(mdsc, ci, true);
2175 spin_unlock(&ci->i_ceph_lock);
2178 if (!list_empty(&ci->i_cap_flush_list)) {
2179 struct ceph_cap_flush *cf =
2180 list_last_entry(&ci->i_cap_flush_list,
2181 struct ceph_cap_flush, i_list);
2183 flush_tid = cf->tid;
2185 flushing = ci->i_flushing_caps;
2186 spin_unlock(&ci->i_ceph_lock);
2190 mutex_unlock(&session->s_mutex);
2197 * Return true if we've flushed caps through the given flush_tid.
2199 static int caps_are_flushed(struct inode *inode, u64 flush_tid)
2201 struct ceph_inode_info *ci = ceph_inode(inode);
2204 spin_lock(&ci->i_ceph_lock);
2205 if (!list_empty(&ci->i_cap_flush_list)) {
2206 struct ceph_cap_flush * cf =
2207 list_first_entry(&ci->i_cap_flush_list,
2208 struct ceph_cap_flush, i_list);
2209 if (cf->tid <= flush_tid)
2212 spin_unlock(&ci->i_ceph_lock);
2217 * wait for any unsafe requests to complete.
2219 static int unsafe_request_wait(struct inode *inode)
2221 struct ceph_inode_info *ci = ceph_inode(inode);
2222 struct ceph_mds_request *req1 = NULL, *req2 = NULL;
2225 spin_lock(&ci->i_unsafe_lock);
2226 if (S_ISDIR(inode->i_mode) && !list_empty(&ci->i_unsafe_dirops)) {
2227 req1 = list_last_entry(&ci->i_unsafe_dirops,
2228 struct ceph_mds_request,
2230 ceph_mdsc_get_request(req1);
2232 if (!list_empty(&ci->i_unsafe_iops)) {
2233 req2 = list_last_entry(&ci->i_unsafe_iops,
2234 struct ceph_mds_request,
2235 r_unsafe_target_item);
2236 ceph_mdsc_get_request(req2);
2238 spin_unlock(&ci->i_unsafe_lock);
2240 dout("unsafe_request_wait %p wait on tid %llu %llu\n",
2241 inode, req1 ? req1->r_tid : 0ULL, req2 ? req2->r_tid : 0ULL);
2243 ret = !wait_for_completion_timeout(&req1->r_safe_completion,
2244 ceph_timeout_jiffies(req1->r_timeout));
2247 ceph_mdsc_put_request(req1);
2250 ret = !wait_for_completion_timeout(&req2->r_safe_completion,
2251 ceph_timeout_jiffies(req2->r_timeout));
2254 ceph_mdsc_put_request(req2);
2259 int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync)
2261 struct inode *inode = file->f_mapping->host;
2262 struct ceph_inode_info *ci = ceph_inode(inode);
2267 dout("fsync %p%s\n", inode, datasync ? " datasync" : "");
2269 ret = file_write_and_wait_range(file, start, end);
2276 dirty = try_flush_caps(inode, &flush_tid);
2277 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty));
2279 ret = unsafe_request_wait(inode);
2282 * only wait on non-file metadata writeback (the mds
2283 * can recover size and mtime, so we don't need to
2286 if (!ret && (dirty & ~CEPH_CAP_ANY_FILE_WR)) {
2287 ret = wait_event_interruptible(ci->i_cap_wq,
2288 caps_are_flushed(inode, flush_tid));
2291 dout("fsync %p%s result=%d\n", inode, datasync ? " datasync" : "", ret);
2296 * Flush any dirty caps back to the mds. If we aren't asked to wait,
2297 * queue inode for flush but don't do so immediately, because we can
2298 * get by with fewer MDS messages if we wait for data writeback to
2301 int ceph_write_inode(struct inode *inode, struct writeback_control *wbc)
2303 struct ceph_inode_info *ci = ceph_inode(inode);
2307 int wait = (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync);
2309 dout("write_inode %p wait=%d\n", inode, wait);
2311 dirty = try_flush_caps(inode, &flush_tid);
2313 err = wait_event_interruptible(ci->i_cap_wq,
2314 caps_are_flushed(inode, flush_tid));
2316 struct ceph_mds_client *mdsc =
2317 ceph_sb_to_client(inode->i_sb)->mdsc;
2319 spin_lock(&ci->i_ceph_lock);
2320 if (__ceph_caps_dirty(ci))
2321 __cap_delay_requeue_front(mdsc, ci);
2322 spin_unlock(&ci->i_ceph_lock);
2327 static void __kick_flushing_caps(struct ceph_mds_client *mdsc,
2328 struct ceph_mds_session *session,
2329 struct ceph_inode_info *ci,
2330 u64 oldest_flush_tid)
2331 __releases(ci->i_ceph_lock)
2332 __acquires(ci->i_ceph_lock)
2334 struct inode *inode = &ci->vfs_inode;
2335 struct ceph_cap *cap;
2336 struct ceph_cap_flush *cf;
2339 u64 last_snap_flush = 0;
2341 ci->i_ceph_flags &= ~CEPH_I_KICK_FLUSH;
2343 list_for_each_entry_reverse(cf, &ci->i_cap_flush_list, i_list) {
2345 last_snap_flush = cf->tid;
2350 list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
2351 if (cf->tid < first_tid)
2354 cap = ci->i_auth_cap;
2355 if (!(cap && cap->session == session)) {
2356 pr_err("%p auth cap %p not mds%d ???\n",
2357 inode, cap, session->s_mds);
2361 first_tid = cf->tid + 1;
2364 dout("kick_flushing_caps %p cap %p tid %llu %s\n",
2365 inode, cap, cf->tid, ceph_cap_string(cf->caps));
2366 ci->i_ceph_flags |= CEPH_I_NODELAY;
2368 ret = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
2369 (cf->tid < last_snap_flush ?
2370 CEPH_CLIENT_CAPS_PENDING_CAPSNAP : 0),
2371 __ceph_caps_used(ci),
2372 __ceph_caps_wanted(ci),
2373 (cap->issued | cap->implemented),
2374 cf->caps, cf->tid, oldest_flush_tid);
2376 pr_err("kick_flushing_caps: error sending "
2377 "cap flush, ino (%llx.%llx) "
2378 "tid %llu flushing %s\n",
2379 ceph_vinop(inode), cf->tid,
2380 ceph_cap_string(cf->caps));
2383 struct ceph_cap_snap *capsnap =
2384 container_of(cf, struct ceph_cap_snap,
2386 dout("kick_flushing_caps %p capsnap %p tid %llu %s\n",
2387 inode, capsnap, cf->tid,
2388 ceph_cap_string(capsnap->dirty));
2390 refcount_inc(&capsnap->nref);
2391 spin_unlock(&ci->i_ceph_lock);
2393 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
2396 pr_err("kick_flushing_caps: error sending "
2397 "cap flushsnap, ino (%llx.%llx) "
2398 "tid %llu follows %llu\n",
2399 ceph_vinop(inode), cf->tid,
2403 ceph_put_cap_snap(capsnap);
2406 spin_lock(&ci->i_ceph_lock);
2410 void ceph_early_kick_flushing_caps(struct ceph_mds_client *mdsc,
2411 struct ceph_mds_session *session)
2413 struct ceph_inode_info *ci;
2414 struct ceph_cap *cap;
2415 u64 oldest_flush_tid;
2417 dout("early_kick_flushing_caps mds%d\n", session->s_mds);
2419 spin_lock(&mdsc->cap_dirty_lock);
2420 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2421 spin_unlock(&mdsc->cap_dirty_lock);
2423 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
2424 spin_lock(&ci->i_ceph_lock);
2425 cap = ci->i_auth_cap;
2426 if (!(cap && cap->session == session)) {
2427 pr_err("%p auth cap %p not mds%d ???\n",
2428 &ci->vfs_inode, cap, session->s_mds);
2429 spin_unlock(&ci->i_ceph_lock);
2435 * if flushing caps were revoked, we re-send the cap flush
2436 * in client reconnect stage. This guarantees MDS * processes
2437 * the cap flush message before issuing the flushing caps to
2440 if ((cap->issued & ci->i_flushing_caps) !=
2441 ci->i_flushing_caps) {
2442 /* encode_caps_cb() also will reset these sequence
2443 * numbers. make sure sequence numbers in cap flush
2444 * message match later reconnect message */
2448 __kick_flushing_caps(mdsc, session, ci,
2451 ci->i_ceph_flags |= CEPH_I_KICK_FLUSH;
2454 spin_unlock(&ci->i_ceph_lock);
2458 void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
2459 struct ceph_mds_session *session)
2461 struct ceph_inode_info *ci;
2462 struct ceph_cap *cap;
2463 u64 oldest_flush_tid;
2465 dout("kick_flushing_caps mds%d\n", session->s_mds);
2467 spin_lock(&mdsc->cap_dirty_lock);
2468 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2469 spin_unlock(&mdsc->cap_dirty_lock);
2471 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
2472 spin_lock(&ci->i_ceph_lock);
2473 cap = ci->i_auth_cap;
2474 if (!(cap && cap->session == session)) {
2475 pr_err("%p auth cap %p not mds%d ???\n",
2476 &ci->vfs_inode, cap, session->s_mds);
2477 spin_unlock(&ci->i_ceph_lock);
2480 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH) {
2481 __kick_flushing_caps(mdsc, session, ci,
2484 spin_unlock(&ci->i_ceph_lock);
2488 static void kick_flushing_inode_caps(struct ceph_mds_client *mdsc,
2489 struct ceph_mds_session *session,
2490 struct inode *inode)
2491 __releases(ci->i_ceph_lock)
2493 struct ceph_inode_info *ci = ceph_inode(inode);
2494 struct ceph_cap *cap;
2496 cap = ci->i_auth_cap;
2497 dout("kick_flushing_inode_caps %p flushing %s\n", inode,
2498 ceph_cap_string(ci->i_flushing_caps));
2500 if (!list_empty(&ci->i_cap_flush_list)) {
2501 u64 oldest_flush_tid;
2502 spin_lock(&mdsc->cap_dirty_lock);
2503 list_move_tail(&ci->i_flushing_item,
2504 &cap->session->s_cap_flushing);
2505 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2506 spin_unlock(&mdsc->cap_dirty_lock);
2508 __kick_flushing_caps(mdsc, session, ci, oldest_flush_tid);
2509 spin_unlock(&ci->i_ceph_lock);
2511 spin_unlock(&ci->i_ceph_lock);
2517 * Take references to capabilities we hold, so that we don't release
2518 * them to the MDS prematurely.
2520 * Protected by i_ceph_lock.
2522 static void __take_cap_refs(struct ceph_inode_info *ci, int got,
2523 bool snap_rwsem_locked)
2525 if (got & CEPH_CAP_PIN)
2527 if (got & CEPH_CAP_FILE_RD)
2529 if (got & CEPH_CAP_FILE_CACHE)
2530 ci->i_rdcache_ref++;
2531 if (got & CEPH_CAP_FILE_WR) {
2532 if (ci->i_wr_ref == 0 && !ci->i_head_snapc) {
2533 BUG_ON(!snap_rwsem_locked);
2534 ci->i_head_snapc = ceph_get_snap_context(
2535 ci->i_snap_realm->cached_context);
2539 if (got & CEPH_CAP_FILE_BUFFER) {
2540 if (ci->i_wb_ref == 0)
2541 ihold(&ci->vfs_inode);
2543 dout("__take_cap_refs %p wb %d -> %d (?)\n",
2544 &ci->vfs_inode, ci->i_wb_ref-1, ci->i_wb_ref);
2549 * Try to grab cap references. Specify those refs we @want, and the
2550 * minimal set we @need. Also include the larger offset we are writing
2551 * to (when applicable), and check against max_size here as well.
2552 * Note that caller is responsible for ensuring max_size increases are
2553 * requested from the MDS.
2555 * Returns 0 if caps were not able to be acquired (yet), a 1 if they were,
2556 * or a negative error code.
2558 * FIXME: how does a 0 return differ from -EAGAIN?
2560 static int try_get_cap_refs(struct ceph_inode_info *ci, int need, int want,
2561 loff_t endoff, bool nonblock, int *got)
2563 struct inode *inode = &ci->vfs_inode;
2564 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
2566 int have, implemented;
2568 bool snap_rwsem_locked = false;
2570 dout("get_cap_refs %p need %s want %s\n", inode,
2571 ceph_cap_string(need), ceph_cap_string(want));
2574 spin_lock(&ci->i_ceph_lock);
2576 /* make sure file is actually open */
2577 file_wanted = __ceph_caps_file_wanted(ci);
2578 if ((file_wanted & need) != need) {
2579 dout("try_get_cap_refs need %s file_wanted %s, EBADF\n",
2580 ceph_cap_string(need), ceph_cap_string(file_wanted));
2585 /* finish pending truncate */
2586 while (ci->i_truncate_pending) {
2587 spin_unlock(&ci->i_ceph_lock);
2588 if (snap_rwsem_locked) {
2589 up_read(&mdsc->snap_rwsem);
2590 snap_rwsem_locked = false;
2592 __ceph_do_pending_vmtruncate(inode);
2593 spin_lock(&ci->i_ceph_lock);
2596 have = __ceph_caps_issued(ci, &implemented);
2598 if (have & need & CEPH_CAP_FILE_WR) {
2599 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2600 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2601 inode, endoff, ci->i_max_size);
2602 if (endoff > ci->i_requested_max_size)
2607 * If a sync write is in progress, we must wait, so that we
2608 * can get a final snapshot value for size+mtime.
2610 if (__ceph_have_pending_cap_snap(ci)) {
2611 dout("get_cap_refs %p cap_snap_pending\n", inode);
2616 if ((have & need) == need) {
2618 * Look at (implemented & ~have & not) so that we keep waiting
2619 * on transition from wanted -> needed caps. This is needed
2620 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2621 * going before a prior buffered writeback happens.
2623 int not = want & ~(have & need);
2624 int revoking = implemented & ~have;
2625 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2626 inode, ceph_cap_string(have), ceph_cap_string(not),
2627 ceph_cap_string(revoking));
2628 if ((revoking & not) == 0) {
2629 if (!snap_rwsem_locked &&
2630 !ci->i_head_snapc &&
2631 (need & CEPH_CAP_FILE_WR)) {
2632 if (!down_read_trylock(&mdsc->snap_rwsem)) {
2634 * we can not call down_read() when
2635 * task isn't in TASK_RUNNING state
2642 spin_unlock(&ci->i_ceph_lock);
2643 down_read(&mdsc->snap_rwsem);
2644 snap_rwsem_locked = true;
2647 snap_rwsem_locked = true;
2649 *got = need | (have & want);
2650 if ((need & CEPH_CAP_FILE_RD) &&
2651 !(*got & CEPH_CAP_FILE_CACHE))
2652 ceph_disable_fscache_readpage(ci);
2653 __take_cap_refs(ci, *got, true);
2657 int session_readonly = false;
2658 if ((need & CEPH_CAP_FILE_WR) && ci->i_auth_cap) {
2659 struct ceph_mds_session *s = ci->i_auth_cap->session;
2660 spin_lock(&s->s_cap_lock);
2661 session_readonly = s->s_readonly;
2662 spin_unlock(&s->s_cap_lock);
2664 if (session_readonly) {
2665 dout("get_cap_refs %p needed %s but mds%d readonly\n",
2666 inode, ceph_cap_string(need), ci->i_auth_cap->mds);
2671 if (ci->i_ceph_flags & CEPH_I_CAP_DROPPED) {
2673 if (READ_ONCE(mdsc->fsc->mount_state) ==
2674 CEPH_MOUNT_SHUTDOWN) {
2675 dout("get_cap_refs %p forced umount\n", inode);
2679 mds_wanted = __ceph_caps_mds_wanted(ci, false);
2680 if (need & ~(mds_wanted & need)) {
2681 dout("get_cap_refs %p caps were dropped"
2682 " (session killed?)\n", inode);
2686 if (!(file_wanted & ~mds_wanted))
2687 ci->i_ceph_flags &= ~CEPH_I_CAP_DROPPED;
2690 dout("get_cap_refs %p have %s needed %s\n", inode,
2691 ceph_cap_string(have), ceph_cap_string(need));
2694 spin_unlock(&ci->i_ceph_lock);
2695 if (snap_rwsem_locked)
2696 up_read(&mdsc->snap_rwsem);
2698 dout("get_cap_refs %p ret %d got %s\n", inode,
2699 ret, ceph_cap_string(*got));
2704 * Check the offset we are writing up to against our current
2705 * max_size. If necessary, tell the MDS we want to write to
2708 static void check_max_size(struct inode *inode, loff_t endoff)
2710 struct ceph_inode_info *ci = ceph_inode(inode);
2713 /* do we need to explicitly request a larger max_size? */
2714 spin_lock(&ci->i_ceph_lock);
2715 if (endoff >= ci->i_max_size && endoff > ci->i_wanted_max_size) {
2716 dout("write %p at large endoff %llu, req max_size\n",
2718 ci->i_wanted_max_size = endoff;
2720 /* duplicate ceph_check_caps()'s logic */
2721 if (ci->i_auth_cap &&
2722 (ci->i_auth_cap->issued & CEPH_CAP_FILE_WR) &&
2723 ci->i_wanted_max_size > ci->i_max_size &&
2724 ci->i_wanted_max_size > ci->i_requested_max_size)
2726 spin_unlock(&ci->i_ceph_lock);
2728 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2731 int ceph_try_get_caps(struct ceph_inode_info *ci, int need, int want,
2732 bool nonblock, int *got)
2736 BUG_ON(need & ~CEPH_CAP_FILE_RD);
2737 BUG_ON(want & ~(CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO|CEPH_CAP_FILE_SHARED));
2738 ret = ceph_pool_perm_check(ci, need);
2742 ret = try_get_cap_refs(ci, need, want, 0, nonblock, got);
2743 return ret == -EAGAIN ? 0 : ret;
2747 * Wait for caps, and take cap references. If we can't get a WR cap
2748 * due to a small max_size, make sure we check_max_size (and possibly
2749 * ask the mds) so we don't get hung up indefinitely.
2751 int ceph_get_caps(struct ceph_inode_info *ci, int need, int want,
2752 loff_t endoff, int *got, struct page **pinned_page)
2756 ret = ceph_pool_perm_check(ci, need);
2762 check_max_size(&ci->vfs_inode, endoff);
2765 ret = try_get_cap_refs(ci, need, want, endoff,
2770 DEFINE_WAIT_FUNC(wait, woken_wake_function);
2771 add_wait_queue(&ci->i_cap_wq, &wait);
2773 while (!(ret = try_get_cap_refs(ci, need, want, endoff,
2775 if (signal_pending(current)) {
2779 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
2782 remove_wait_queue(&ci->i_cap_wq, &wait);
2787 if (ret == -ESTALE) {
2788 /* session was killed, try renew caps */
2789 ret = ceph_renew_caps(&ci->vfs_inode);
2796 if (ci->i_inline_version != CEPH_INLINE_NONE &&
2797 (_got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
2798 i_size_read(&ci->vfs_inode) > 0) {
2800 find_get_page(ci->vfs_inode.i_mapping, 0);
2802 if (PageUptodate(page)) {
2803 *pinned_page = page;
2809 * drop cap refs first because getattr while
2810 * holding * caps refs can cause deadlock.
2812 ceph_put_cap_refs(ci, _got);
2816 * getattr request will bring inline data into
2819 ret = __ceph_do_getattr(&ci->vfs_inode, NULL,
2820 CEPH_STAT_CAP_INLINE_DATA,
2829 if ((_got & CEPH_CAP_FILE_RD) && (_got & CEPH_CAP_FILE_CACHE))
2830 ceph_fscache_revalidate_cookie(ci);
2837 * Take cap refs. Caller must already know we hold at least one ref
2838 * on the caps in question or we don't know this is safe.
2840 void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
2842 spin_lock(&ci->i_ceph_lock);
2843 __take_cap_refs(ci, caps, false);
2844 spin_unlock(&ci->i_ceph_lock);
2849 * drop cap_snap that is not associated with any snapshot.
2850 * we don't need to send FLUSHSNAP message for it.
2852 static int ceph_try_drop_cap_snap(struct ceph_inode_info *ci,
2853 struct ceph_cap_snap *capsnap)
2855 if (!capsnap->need_flush &&
2856 !capsnap->writing && !capsnap->dirty_pages) {
2857 dout("dropping cap_snap %p follows %llu\n",
2858 capsnap, capsnap->follows);
2859 BUG_ON(capsnap->cap_flush.tid > 0);
2860 ceph_put_snap_context(capsnap->context);
2861 if (!list_is_last(&capsnap->ci_item, &ci->i_cap_snaps))
2862 ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
2864 list_del(&capsnap->ci_item);
2865 ceph_put_cap_snap(capsnap);
2874 * If we released the last ref on any given cap, call ceph_check_caps
2875 * to release (or schedule a release).
2877 * If we are releasing a WR cap (from a sync write), finalize any affected
2878 * cap_snap, and wake up any waiters.
2880 void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
2882 struct inode *inode = &ci->vfs_inode;
2883 int last = 0, put = 0, flushsnaps = 0, wake = 0;
2885 spin_lock(&ci->i_ceph_lock);
2886 if (had & CEPH_CAP_PIN)
2888 if (had & CEPH_CAP_FILE_RD)
2889 if (--ci->i_rd_ref == 0)
2891 if (had & CEPH_CAP_FILE_CACHE)
2892 if (--ci->i_rdcache_ref == 0)
2894 if (had & CEPH_CAP_FILE_BUFFER) {
2895 if (--ci->i_wb_ref == 0) {
2899 dout("put_cap_refs %p wb %d -> %d (?)\n",
2900 inode, ci->i_wb_ref+1, ci->i_wb_ref);
2902 if (had & CEPH_CAP_FILE_WR)
2903 if (--ci->i_wr_ref == 0) {
2905 if (__ceph_have_pending_cap_snap(ci)) {
2906 struct ceph_cap_snap *capsnap =
2907 list_last_entry(&ci->i_cap_snaps,
2908 struct ceph_cap_snap,
2910 capsnap->writing = 0;
2911 if (ceph_try_drop_cap_snap(ci, capsnap))
2913 else if (__ceph_finish_cap_snap(ci, capsnap))
2917 if (ci->i_wrbuffer_ref_head == 0 &&
2918 ci->i_dirty_caps == 0 &&
2919 ci->i_flushing_caps == 0) {
2920 BUG_ON(!ci->i_head_snapc);
2921 ceph_put_snap_context(ci->i_head_snapc);
2922 ci->i_head_snapc = NULL;
2924 /* see comment in __ceph_remove_cap() */
2925 if (!__ceph_is_any_caps(ci) && ci->i_snap_realm)
2926 drop_inode_snap_realm(ci);
2928 spin_unlock(&ci->i_ceph_lock);
2930 dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
2931 last ? " last" : "", put ? " put" : "");
2933 if (last && !flushsnaps)
2934 ceph_check_caps(ci, 0, NULL);
2935 else if (flushsnaps)
2936 ceph_flush_snaps(ci, NULL);
2938 wake_up_all(&ci->i_cap_wq);
2944 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
2945 * context. Adjust per-snap dirty page accounting as appropriate.
2946 * Once all dirty data for a cap_snap is flushed, flush snapped file
2947 * metadata back to the MDS. If we dropped the last ref, call
2950 void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
2951 struct ceph_snap_context *snapc)
2953 struct inode *inode = &ci->vfs_inode;
2954 struct ceph_cap_snap *capsnap = NULL;
2958 bool flush_snaps = false;
2959 bool complete_capsnap = false;
2961 spin_lock(&ci->i_ceph_lock);
2962 ci->i_wrbuffer_ref -= nr;
2963 if (ci->i_wrbuffer_ref == 0) {
2968 if (ci->i_head_snapc == snapc) {
2969 ci->i_wrbuffer_ref_head -= nr;
2970 if (ci->i_wrbuffer_ref_head == 0 &&
2971 ci->i_wr_ref == 0 &&
2972 ci->i_dirty_caps == 0 &&
2973 ci->i_flushing_caps == 0) {
2974 BUG_ON(!ci->i_head_snapc);
2975 ceph_put_snap_context(ci->i_head_snapc);
2976 ci->i_head_snapc = NULL;
2978 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
2980 ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
2981 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
2982 last ? " LAST" : "");
2984 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2985 if (capsnap->context == snapc) {
2991 capsnap->dirty_pages -= nr;
2992 if (capsnap->dirty_pages == 0) {
2993 complete_capsnap = true;
2994 if (!capsnap->writing) {
2995 if (ceph_try_drop_cap_snap(ci, capsnap)) {
2998 ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
3003 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
3004 " snap %lld %d/%d -> %d/%d %s%s\n",
3005 inode, capsnap, capsnap->context->seq,
3006 ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
3007 ci->i_wrbuffer_ref, capsnap->dirty_pages,
3008 last ? " (wrbuffer last)" : "",
3009 complete_capsnap ? " (complete capsnap)" : "");
3012 spin_unlock(&ci->i_ceph_lock);
3015 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
3016 } else if (flush_snaps) {
3017 ceph_flush_snaps(ci, NULL);
3019 if (complete_capsnap)
3020 wake_up_all(&ci->i_cap_wq);
3022 /* avoid calling iput_final() in osd dispatch threads */
3023 ceph_async_iput(inode);
3028 * Invalidate unlinked inode's aliases, so we can drop the inode ASAP.
3030 static void invalidate_aliases(struct inode *inode)
3032 struct dentry *dn, *prev = NULL;
3034 dout("invalidate_aliases inode %p\n", inode);
3035 d_prune_aliases(inode);
3037 * For non-directory inode, d_find_alias() only returns
3038 * hashed dentry. After calling d_invalidate(), the
3039 * dentry becomes unhashed.
3041 * For directory inode, d_find_alias() can return
3042 * unhashed dentry. But directory inode should have
3043 * one alias at most.
3045 while ((dn = d_find_alias(inode))) {
3059 struct cap_extra_info {
3060 struct ceph_string *pool_ns;
3070 /* currently issued */
3072 struct timespec64 btime;
3076 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
3077 * actually be a revocation if it specifies a smaller cap set.)
3079 * caller holds s_mutex and i_ceph_lock, we drop both.
3081 static void handle_cap_grant(struct inode *inode,
3082 struct ceph_mds_session *session,
3083 struct ceph_cap *cap,
3084 struct ceph_mds_caps *grant,
3085 struct ceph_buffer *xattr_buf,
3086 struct cap_extra_info *extra_info)
3087 __releases(ci->i_ceph_lock)
3088 __releases(session->s_mdsc->snap_rwsem)
3090 struct ceph_inode_info *ci = ceph_inode(inode);
3091 int seq = le32_to_cpu(grant->seq);
3092 int newcaps = le32_to_cpu(grant->caps);
3093 int used, wanted, dirty;
3094 u64 size = le64_to_cpu(grant->size);
3095 u64 max_size = le64_to_cpu(grant->max_size);
3096 unsigned char check_caps = 0;
3097 bool was_stale = cap->cap_gen < session->s_cap_gen;
3099 bool writeback = false;
3100 bool queue_trunc = false;
3101 bool queue_invalidate = false;
3102 bool deleted_inode = false;
3103 bool fill_inline = false;
3105 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
3106 inode, cap, session->s_mds, seq, ceph_cap_string(newcaps));
3107 dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
3112 * If CACHE is being revoked, and we have no dirty buffers,
3113 * try to invalidate (once). (If there are dirty buffers, we
3114 * will invalidate _after_ writeback.)
3116 if (!S_ISDIR(inode->i_mode) && /* don't invalidate readdir cache */
3117 ((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
3118 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
3119 !(ci->i_wrbuffer_ref || ci->i_wb_ref)) {
3120 if (try_nonblocking_invalidate(inode)) {
3121 /* there were locked pages.. invalidate later
3122 in a separate thread. */
3123 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
3124 queue_invalidate = true;
3125 ci->i_rdcache_revoking = ci->i_rdcache_gen;
3131 cap->issued = cap->implemented = CEPH_CAP_PIN;
3134 * auth mds of the inode changed. we received the cap export message,
3135 * but still haven't received the cap import message. handle_cap_export
3136 * updated the new auth MDS' cap.
3138 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing a message
3139 * that was sent before the cap import message. So don't remove caps.
3141 if (ceph_seq_cmp(seq, cap->seq) <= 0) {
3142 WARN_ON(cap != ci->i_auth_cap);
3143 WARN_ON(cap->cap_id != le64_to_cpu(grant->cap_id));
3145 newcaps |= cap->issued;
3148 /* side effects now are allowed */
3149 cap->cap_gen = session->s_cap_gen;
3152 __check_cap_issue(ci, cap, newcaps);
3154 inode_set_max_iversion_raw(inode, extra_info->change_attr);
3156 if ((newcaps & CEPH_CAP_AUTH_SHARED) &&
3157 (extra_info->issued & CEPH_CAP_AUTH_EXCL) == 0) {
3158 inode->i_mode = le32_to_cpu(grant->mode);
3159 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(grant->uid));
3160 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(grant->gid));
3161 ci->i_btime = extra_info->btime;
3162 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
3163 from_kuid(&init_user_ns, inode->i_uid),
3164 from_kgid(&init_user_ns, inode->i_gid));
3167 if ((newcaps & CEPH_CAP_LINK_SHARED) &&
3168 (extra_info->issued & CEPH_CAP_LINK_EXCL) == 0) {
3169 set_nlink(inode, le32_to_cpu(grant->nlink));
3170 if (inode->i_nlink == 0 &&
3171 (newcaps & (CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL)))
3172 deleted_inode = true;
3175 if ((extra_info->issued & CEPH_CAP_XATTR_EXCL) == 0 &&
3177 int len = le32_to_cpu(grant->xattr_len);
3178 u64 version = le64_to_cpu(grant->xattr_version);
3180 if (version > ci->i_xattrs.version) {
3181 dout(" got new xattrs v%llu on %p len %d\n",
3182 version, inode, len);
3183 if (ci->i_xattrs.blob)
3184 ceph_buffer_put(ci->i_xattrs.blob);
3185 ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
3186 ci->i_xattrs.version = version;
3187 ceph_forget_all_cached_acls(inode);
3188 ceph_security_invalidate_secctx(inode);
3192 if (newcaps & CEPH_CAP_ANY_RD) {
3193 struct timespec64 mtime, atime, ctime;
3194 /* ctime/mtime/atime? */
3195 ceph_decode_timespec64(&mtime, &grant->mtime);
3196 ceph_decode_timespec64(&atime, &grant->atime);
3197 ceph_decode_timespec64(&ctime, &grant->ctime);
3198 ceph_fill_file_time(inode, extra_info->issued,
3199 le32_to_cpu(grant->time_warp_seq),
3200 &ctime, &mtime, &atime);
3203 if ((newcaps & CEPH_CAP_FILE_SHARED) && extra_info->dirstat_valid) {
3204 ci->i_files = extra_info->nfiles;
3205 ci->i_subdirs = extra_info->nsubdirs;
3208 if (newcaps & (CEPH_CAP_ANY_FILE_RD | CEPH_CAP_ANY_FILE_WR)) {
3209 /* file layout may have changed */
3210 s64 old_pool = ci->i_layout.pool_id;
3211 struct ceph_string *old_ns;
3213 ceph_file_layout_from_legacy(&ci->i_layout, &grant->layout);
3214 old_ns = rcu_dereference_protected(ci->i_layout.pool_ns,
3215 lockdep_is_held(&ci->i_ceph_lock));
3216 rcu_assign_pointer(ci->i_layout.pool_ns, extra_info->pool_ns);
3218 if (ci->i_layout.pool_id != old_pool ||
3219 extra_info->pool_ns != old_ns)
3220 ci->i_ceph_flags &= ~CEPH_I_POOL_PERM;
3222 extra_info->pool_ns = old_ns;
3224 /* size/truncate_seq? */
3225 queue_trunc = ceph_fill_file_size(inode, extra_info->issued,
3226 le32_to_cpu(grant->truncate_seq),
3227 le64_to_cpu(grant->truncate_size),
3231 if (ci->i_auth_cap == cap && (newcaps & CEPH_CAP_ANY_FILE_WR)) {
3232 if (max_size != ci->i_max_size) {
3233 dout("max_size %lld -> %llu\n",
3234 ci->i_max_size, max_size);
3235 ci->i_max_size = max_size;
3236 if (max_size >= ci->i_wanted_max_size) {
3237 ci->i_wanted_max_size = 0; /* reset */
3238 ci->i_requested_max_size = 0;
3241 } else if (ci->i_wanted_max_size > ci->i_max_size &&
3242 ci->i_wanted_max_size > ci->i_requested_max_size) {
3243 /* CEPH_CAP_OP_IMPORT */
3248 /* check cap bits */
3249 wanted = __ceph_caps_wanted(ci);
3250 used = __ceph_caps_used(ci);
3251 dirty = __ceph_caps_dirty(ci);
3252 dout(" my wanted = %s, used = %s, dirty %s\n",
3253 ceph_cap_string(wanted),
3254 ceph_cap_string(used),
3255 ceph_cap_string(dirty));
3257 if ((was_stale || le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) &&
3258 (wanted & ~(cap->mds_wanted | newcaps))) {
3260 * If mds is importing cap, prior cap messages that update
3261 * 'wanted' may get dropped by mds (migrate seq mismatch).
3263 * We don't send cap message to update 'wanted' if what we
3264 * want are already issued. If mds revokes caps, cap message
3265 * that releases caps also tells mds what we want. But if
3266 * caps got revoked by mds forcedly (session stale). We may
3267 * haven't told mds what we want.
3272 /* revocation, grant, or no-op? */
3273 if (cap->issued & ~newcaps) {
3274 int revoking = cap->issued & ~newcaps;
3276 dout("revocation: %s -> %s (revoking %s)\n",
3277 ceph_cap_string(cap->issued),
3278 ceph_cap_string(newcaps),
3279 ceph_cap_string(revoking));
3280 if (revoking & used & CEPH_CAP_FILE_BUFFER)
3281 writeback = true; /* initiate writeback; will delay ack */
3282 else if (revoking == CEPH_CAP_FILE_CACHE &&
3283 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
3285 ; /* do nothing yet, invalidation will be queued */
3286 else if (cap == ci->i_auth_cap)
3287 check_caps = 1; /* check auth cap only */
3289 check_caps = 2; /* check all caps */
3290 cap->issued = newcaps;
3291 cap->implemented |= newcaps;
3292 } else if (cap->issued == newcaps) {
3293 dout("caps unchanged: %s -> %s\n",
3294 ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
3296 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
3297 ceph_cap_string(newcaps));
3298 /* non-auth MDS is revoking the newly grant caps ? */
3299 if (cap == ci->i_auth_cap &&
3300 __ceph_caps_revoking_other(ci, cap, newcaps))
3303 cap->issued = newcaps;
3304 cap->implemented |= newcaps; /* add bits only, to
3305 * avoid stepping on a
3306 * pending revocation */
3309 BUG_ON(cap->issued & ~cap->implemented);
3311 if (extra_info->inline_version > 0 &&
3312 extra_info->inline_version >= ci->i_inline_version) {
3313 ci->i_inline_version = extra_info->inline_version;
3314 if (ci->i_inline_version != CEPH_INLINE_NONE &&
3315 (newcaps & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)))
3319 if (le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) {
3320 if (newcaps & ~extra_info->issued)
3322 kick_flushing_inode_caps(session->s_mdsc, session, inode);
3323 up_read(&session->s_mdsc->snap_rwsem);
3325 spin_unlock(&ci->i_ceph_lock);
3329 ceph_fill_inline_data(inode, NULL, extra_info->inline_data,
3330 extra_info->inline_len);
3333 ceph_queue_vmtruncate(inode);
3337 * queue inode for writeback: we can't actually call
3338 * filemap_write_and_wait, etc. from message handler
3341 ceph_queue_writeback(inode);
3342 if (queue_invalidate)
3343 ceph_queue_invalidate(inode);
3345 invalidate_aliases(inode);
3347 wake_up_all(&ci->i_cap_wq);
3349 if (check_caps == 1)
3350 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_AUTHONLY,
3352 else if (check_caps == 2)
3353 ceph_check_caps(ci, CHECK_CAPS_NODELAY, session);
3355 mutex_unlock(&session->s_mutex);
3359 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
3360 * MDS has been safely committed.
3362 static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
3363 struct ceph_mds_caps *m,
3364 struct ceph_mds_session *session,
3365 struct ceph_cap *cap)
3366 __releases(ci->i_ceph_lock)
3368 struct ceph_inode_info *ci = ceph_inode(inode);
3369 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
3370 struct ceph_cap_flush *cf, *tmp_cf;
3371 LIST_HEAD(to_remove);
3372 unsigned seq = le32_to_cpu(m->seq);
3373 int dirty = le32_to_cpu(m->dirty);
3376 bool wake_ci = false;
3377 bool wake_mdsc = false;
3379 list_for_each_entry_safe(cf, tmp_cf, &ci->i_cap_flush_list, i_list) {
3380 if (cf->tid == flush_tid)
3382 if (cf->caps == 0) /* capsnap */
3384 if (cf->tid <= flush_tid) {
3385 if (__finish_cap_flush(NULL, ci, cf))
3387 list_add_tail(&cf->i_list, &to_remove);
3389 cleaned &= ~cf->caps;
3395 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
3396 " flushing %s -> %s\n",
3397 inode, session->s_mds, seq, ceph_cap_string(dirty),
3398 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
3399 ceph_cap_string(ci->i_flushing_caps & ~cleaned));
3401 if (list_empty(&to_remove) && !cleaned)
3404 ci->i_flushing_caps &= ~cleaned;
3406 spin_lock(&mdsc->cap_dirty_lock);
3408 list_for_each_entry(cf, &to_remove, i_list) {
3409 if (__finish_cap_flush(mdsc, NULL, cf))
3413 if (ci->i_flushing_caps == 0) {
3414 if (list_empty(&ci->i_cap_flush_list)) {
3415 list_del_init(&ci->i_flushing_item);
3416 if (!list_empty(&session->s_cap_flushing)) {
3417 dout(" mds%d still flushing cap on %p\n",
3419 &list_first_entry(&session->s_cap_flushing,
3420 struct ceph_inode_info,
3421 i_flushing_item)->vfs_inode);
3424 mdsc->num_cap_flushing--;
3425 dout(" inode %p now !flushing\n", inode);
3427 if (ci->i_dirty_caps == 0) {
3428 dout(" inode %p now clean\n", inode);
3429 BUG_ON(!list_empty(&ci->i_dirty_item));
3431 if (ci->i_wr_ref == 0 &&
3432 ci->i_wrbuffer_ref_head == 0) {
3433 BUG_ON(!ci->i_head_snapc);
3434 ceph_put_snap_context(ci->i_head_snapc);
3435 ci->i_head_snapc = NULL;
3438 BUG_ON(list_empty(&ci->i_dirty_item));
3441 spin_unlock(&mdsc->cap_dirty_lock);
3444 spin_unlock(&ci->i_ceph_lock);
3446 while (!list_empty(&to_remove)) {
3447 cf = list_first_entry(&to_remove,
3448 struct ceph_cap_flush, i_list);
3449 list_del(&cf->i_list);
3450 ceph_free_cap_flush(cf);
3454 wake_up_all(&ci->i_cap_wq);
3456 wake_up_all(&mdsc->cap_flushing_wq);
3462 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
3463 * throw away our cap_snap.
3465 * Caller hold s_mutex.
3467 static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
3468 struct ceph_mds_caps *m,
3469 struct ceph_mds_session *session)
3471 struct ceph_inode_info *ci = ceph_inode(inode);
3472 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
3473 u64 follows = le64_to_cpu(m->snap_follows);
3474 struct ceph_cap_snap *capsnap;
3475 bool flushed = false;
3476 bool wake_ci = false;
3477 bool wake_mdsc = false;
3479 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
3480 inode, ci, session->s_mds, follows);
3482 spin_lock(&ci->i_ceph_lock);
3483 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
3484 if (capsnap->follows == follows) {
3485 if (capsnap->cap_flush.tid != flush_tid) {
3486 dout(" cap_snap %p follows %lld tid %lld !="
3487 " %lld\n", capsnap, follows,
3488 flush_tid, capsnap->cap_flush.tid);
3494 dout(" skipping cap_snap %p follows %lld\n",
3495 capsnap, capsnap->follows);
3499 WARN_ON(capsnap->dirty_pages || capsnap->writing);
3500 dout(" removing %p cap_snap %p follows %lld\n",
3501 inode, capsnap, follows);
3502 list_del(&capsnap->ci_item);
3503 if (__finish_cap_flush(NULL, ci, &capsnap->cap_flush))
3506 spin_lock(&mdsc->cap_dirty_lock);
3508 if (list_empty(&ci->i_cap_flush_list))
3509 list_del_init(&ci->i_flushing_item);
3511 if (__finish_cap_flush(mdsc, NULL, &capsnap->cap_flush))
3514 spin_unlock(&mdsc->cap_dirty_lock);
3516 spin_unlock(&ci->i_ceph_lock);
3518 ceph_put_snap_context(capsnap->context);
3519 ceph_put_cap_snap(capsnap);
3521 wake_up_all(&ci->i_cap_wq);
3523 wake_up_all(&mdsc->cap_flushing_wq);
3529 * Handle TRUNC from MDS, indicating file truncation.
3531 * caller hold s_mutex.
3533 static void handle_cap_trunc(struct inode *inode,
3534 struct ceph_mds_caps *trunc,
3535 struct ceph_mds_session *session)
3536 __releases(ci->i_ceph_lock)
3538 struct ceph_inode_info *ci = ceph_inode(inode);
3539 int mds = session->s_mds;
3540 int seq = le32_to_cpu(trunc->seq);
3541 u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
3542 u64 truncate_size = le64_to_cpu(trunc->truncate_size);
3543 u64 size = le64_to_cpu(trunc->size);
3544 int implemented = 0;
3545 int dirty = __ceph_caps_dirty(ci);
3546 int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
3547 int queue_trunc = 0;
3549 issued |= implemented | dirty;
3551 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
3552 inode, mds, seq, truncate_size, truncate_seq);
3553 queue_trunc = ceph_fill_file_size(inode, issued,
3554 truncate_seq, truncate_size, size);
3555 spin_unlock(&ci->i_ceph_lock);
3558 ceph_queue_vmtruncate(inode);
3562 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
3563 * different one. If we are the most recent migration we've seen (as
3564 * indicated by mseq), make note of the migrating cap bits for the
3565 * duration (until we see the corresponding IMPORT).
3567 * caller holds s_mutex
3569 static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
3570 struct ceph_mds_cap_peer *ph,
3571 struct ceph_mds_session *session)
3573 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
3574 struct ceph_mds_session *tsession = NULL;
3575 struct ceph_cap *cap, *tcap, *new_cap = NULL;
3576 struct ceph_inode_info *ci = ceph_inode(inode);
3578 unsigned mseq = le32_to_cpu(ex->migrate_seq);
3579 unsigned t_seq, t_mseq;
3581 int mds = session->s_mds;
3584 t_cap_id = le64_to_cpu(ph->cap_id);
3585 t_seq = le32_to_cpu(ph->seq);
3586 t_mseq = le32_to_cpu(ph->mseq);
3587 target = le32_to_cpu(ph->mds);
3589 t_cap_id = t_seq = t_mseq = 0;
3593 dout("handle_cap_export inode %p ci %p mds%d mseq %d target %d\n",
3594 inode, ci, mds, mseq, target);
3596 spin_lock(&ci->i_ceph_lock);
3597 cap = __get_cap_for_mds(ci, mds);
3598 if (!cap || cap->cap_id != le64_to_cpu(ex->cap_id))
3602 if (cap->mds_wanted | cap->issued)
3603 ci->i_ceph_flags |= CEPH_I_CAP_DROPPED;
3604 __ceph_remove_cap(cap, false);
3609 * now we know we haven't received the cap import message yet
3610 * because the exported cap still exist.
3613 issued = cap->issued;
3614 if (issued != cap->implemented)
3615 pr_err_ratelimited("handle_cap_export: issued != implemented: "
3616 "ino (%llx.%llx) mds%d seq %d mseq %d "
3617 "issued %s implemented %s\n",
3618 ceph_vinop(inode), mds, cap->seq, cap->mseq,
3619 ceph_cap_string(issued),
3620 ceph_cap_string(cap->implemented));
3623 tcap = __get_cap_for_mds(ci, target);
3625 /* already have caps from the target */
3626 if (tcap->cap_id == t_cap_id &&
3627 ceph_seq_cmp(tcap->seq, t_seq) < 0) {
3628 dout(" updating import cap %p mds%d\n", tcap, target);
3629 tcap->cap_id = t_cap_id;
3630 tcap->seq = t_seq - 1;
3631 tcap->issue_seq = t_seq - 1;
3632 tcap->issued |= issued;
3633 tcap->implemented |= issued;
3634 if (cap == ci->i_auth_cap)
3635 ci->i_auth_cap = tcap;
3637 if (!list_empty(&ci->i_cap_flush_list) &&
3638 ci->i_auth_cap == tcap) {
3639 spin_lock(&mdsc->cap_dirty_lock);
3640 list_move_tail(&ci->i_flushing_item,
3641 &tcap->session->s_cap_flushing);
3642 spin_unlock(&mdsc->cap_dirty_lock);
3645 __ceph_remove_cap(cap, false);
3647 } else if (tsession) {
3648 /* add placeholder for the export tagert */
3649 int flag = (cap == ci->i_auth_cap) ? CEPH_CAP_FLAG_AUTH : 0;
3651 ceph_add_cap(inode, tsession, t_cap_id, -1, issued, 0,
3652 t_seq - 1, t_mseq, (u64)-1, flag, &new_cap);
3654 if (!list_empty(&ci->i_cap_flush_list) &&
3655 ci->i_auth_cap == tcap) {
3656 spin_lock(&mdsc->cap_dirty_lock);
3657 list_move_tail(&ci->i_flushing_item,
3658 &tcap->session->s_cap_flushing);
3659 spin_unlock(&mdsc->cap_dirty_lock);
3662 __ceph_remove_cap(cap, false);
3666 spin_unlock(&ci->i_ceph_lock);
3667 mutex_unlock(&session->s_mutex);
3669 /* open target session */
3670 tsession = ceph_mdsc_open_export_target_session(mdsc, target);
3671 if (!IS_ERR(tsession)) {
3673 mutex_lock(&session->s_mutex);
3674 mutex_lock_nested(&tsession->s_mutex,
3675 SINGLE_DEPTH_NESTING);
3677 mutex_lock(&tsession->s_mutex);
3678 mutex_lock_nested(&session->s_mutex,
3679 SINGLE_DEPTH_NESTING);
3681 new_cap = ceph_get_cap(mdsc, NULL);
3690 spin_unlock(&ci->i_ceph_lock);
3691 mutex_unlock(&session->s_mutex);
3693 mutex_unlock(&tsession->s_mutex);
3694 ceph_put_mds_session(tsession);
3697 ceph_put_cap(mdsc, new_cap);
3701 * Handle cap IMPORT.
3703 * caller holds s_mutex. acquires i_ceph_lock
3705 static void handle_cap_import(struct ceph_mds_client *mdsc,
3706 struct inode *inode, struct ceph_mds_caps *im,
3707 struct ceph_mds_cap_peer *ph,
3708 struct ceph_mds_session *session,
3709 struct ceph_cap **target_cap, int *old_issued)
3710 __acquires(ci->i_ceph_lock)
3712 struct ceph_inode_info *ci = ceph_inode(inode);
3713 struct ceph_cap *cap, *ocap, *new_cap = NULL;
3714 int mds = session->s_mds;
3716 unsigned caps = le32_to_cpu(im->caps);
3717 unsigned wanted = le32_to_cpu(im->wanted);
3718 unsigned seq = le32_to_cpu(im->seq);
3719 unsigned mseq = le32_to_cpu(im->migrate_seq);
3720 u64 realmino = le64_to_cpu(im->realm);
3721 u64 cap_id = le64_to_cpu(im->cap_id);
3726 p_cap_id = le64_to_cpu(ph->cap_id);
3727 peer = le32_to_cpu(ph->mds);
3733 dout("handle_cap_import inode %p ci %p mds%d mseq %d peer %d\n",
3734 inode, ci, mds, mseq, peer);
3737 spin_lock(&ci->i_ceph_lock);
3738 cap = __get_cap_for_mds(ci, mds);
3741 spin_unlock(&ci->i_ceph_lock);
3742 new_cap = ceph_get_cap(mdsc, NULL);
3748 ceph_put_cap(mdsc, new_cap);
3753 __ceph_caps_issued(ci, &issued);
3754 issued |= __ceph_caps_dirty(ci);
3756 ceph_add_cap(inode, session, cap_id, -1, caps, wanted, seq, mseq,
3757 realmino, CEPH_CAP_FLAG_AUTH, &new_cap);
3759 ocap = peer >= 0 ? __get_cap_for_mds(ci, peer) : NULL;
3760 if (ocap && ocap->cap_id == p_cap_id) {
3761 dout(" remove export cap %p mds%d flags %d\n",
3762 ocap, peer, ph->flags);
3763 if ((ph->flags & CEPH_CAP_FLAG_AUTH) &&
3764 (ocap->seq != le32_to_cpu(ph->seq) ||
3765 ocap->mseq != le32_to_cpu(ph->mseq))) {
3766 pr_err_ratelimited("handle_cap_import: "
3767 "mismatched seq/mseq: ino (%llx.%llx) "
3768 "mds%d seq %d mseq %d importer mds%d "
3769 "has peer seq %d mseq %d\n",
3770 ceph_vinop(inode), peer, ocap->seq,
3771 ocap->mseq, mds, le32_to_cpu(ph->seq),
3772 le32_to_cpu(ph->mseq));
3774 __ceph_remove_cap(ocap, (ph->flags & CEPH_CAP_FLAG_RELEASE));
3777 /* make sure we re-request max_size, if necessary */
3778 ci->i_requested_max_size = 0;
3780 *old_issued = issued;
3785 * Handle a caps message from the MDS.
3787 * Identify the appropriate session, inode, and call the right handler
3788 * based on the cap op.
3790 void ceph_handle_caps(struct ceph_mds_session *session,
3791 struct ceph_msg *msg)
3793 struct ceph_mds_client *mdsc = session->s_mdsc;
3794 struct inode *inode;
3795 struct ceph_inode_info *ci;
3796 struct ceph_cap *cap;
3797 struct ceph_mds_caps *h;
3798 struct ceph_mds_cap_peer *peer = NULL;
3799 struct ceph_snap_realm *realm = NULL;
3801 int msg_version = le16_to_cpu(msg->hdr.version);
3803 struct ceph_vino vino;
3805 size_t snaptrace_len;
3807 struct cap_extra_info extra_info = {};
3809 dout("handle_caps from mds%d\n", session->s_mds);
3812 end = msg->front.iov_base + msg->front.iov_len;
3813 if (msg->front.iov_len < sizeof(*h))
3815 h = msg->front.iov_base;
3816 op = le32_to_cpu(h->op);
3817 vino.ino = le64_to_cpu(h->ino);
3818 vino.snap = CEPH_NOSNAP;
3819 seq = le32_to_cpu(h->seq);
3820 mseq = le32_to_cpu(h->migrate_seq);
3823 snaptrace_len = le32_to_cpu(h->snap_trace_len);
3824 p = snaptrace + snaptrace_len;
3826 if (msg_version >= 2) {
3828 ceph_decode_32_safe(&p, end, flock_len, bad);
3829 if (p + flock_len > end)
3834 if (msg_version >= 3) {
3835 if (op == CEPH_CAP_OP_IMPORT) {
3836 if (p + sizeof(*peer) > end)
3840 } else if (op == CEPH_CAP_OP_EXPORT) {
3841 /* recorded in unused fields */
3842 peer = (void *)&h->size;
3846 if (msg_version >= 4) {
3847 ceph_decode_64_safe(&p, end, extra_info.inline_version, bad);
3848 ceph_decode_32_safe(&p, end, extra_info.inline_len, bad);
3849 if (p + extra_info.inline_len > end)
3851 extra_info.inline_data = p;
3852 p += extra_info.inline_len;
3855 if (msg_version >= 5) {
3856 struct ceph_osd_client *osdc = &mdsc->fsc->client->osdc;
3859 ceph_decode_32_safe(&p, end, epoch_barrier, bad);
3860 ceph_osdc_update_epoch_barrier(osdc, epoch_barrier);
3863 if (msg_version >= 8) {
3865 u32 caller_uid, caller_gid;
3869 ceph_decode_64_safe(&p, end, flush_tid, bad);
3871 ceph_decode_32_safe(&p, end, caller_uid, bad);
3872 ceph_decode_32_safe(&p, end, caller_gid, bad);
3874 ceph_decode_32_safe(&p, end, pool_ns_len, bad);
3875 if (pool_ns_len > 0) {
3876 ceph_decode_need(&p, end, pool_ns_len, bad);
3877 extra_info.pool_ns =
3878 ceph_find_or_create_string(p, pool_ns_len);
3883 if (msg_version >= 9) {
3884 struct ceph_timespec *btime;
3886 if (p + sizeof(*btime) > end)
3889 ceph_decode_timespec64(&extra_info.btime, btime);
3890 p += sizeof(*btime);
3891 ceph_decode_64_safe(&p, end, extra_info.change_attr, bad);
3894 if (msg_version >= 11) {
3897 ceph_decode_32_safe(&p, end, flags, bad);
3899 extra_info.dirstat_valid = true;
3900 ceph_decode_64_safe(&p, end, extra_info.nfiles, bad);
3901 ceph_decode_64_safe(&p, end, extra_info.nsubdirs, bad);
3905 inode = ceph_find_inode(mdsc->fsc->sb, vino);
3906 ci = ceph_inode(inode);
3907 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
3910 mutex_lock(&session->s_mutex);
3912 dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
3916 dout(" i don't have ino %llx\n", vino.ino);
3918 if (op == CEPH_CAP_OP_IMPORT) {
3919 cap = ceph_get_cap(mdsc, NULL);
3920 cap->cap_ino = vino.ino;
3921 cap->queue_release = 1;
3922 cap->cap_id = le64_to_cpu(h->cap_id);
3925 cap->issue_seq = seq;
3926 spin_lock(&session->s_cap_lock);
3927 __ceph_queue_cap_release(session, cap);
3928 spin_unlock(&session->s_cap_lock);
3933 /* these will work even if we don't have a cap yet */
3935 case CEPH_CAP_OP_FLUSHSNAP_ACK:
3936 handle_cap_flushsnap_ack(inode, le64_to_cpu(msg->hdr.tid),
3940 case CEPH_CAP_OP_EXPORT:
3941 handle_cap_export(inode, h, peer, session);
3944 case CEPH_CAP_OP_IMPORT:
3946 if (snaptrace_len) {
3947 down_write(&mdsc->snap_rwsem);
3948 ceph_update_snap_trace(mdsc, snaptrace,
3949 snaptrace + snaptrace_len,
3951 downgrade_write(&mdsc->snap_rwsem);
3953 down_read(&mdsc->snap_rwsem);
3955 handle_cap_import(mdsc, inode, h, peer, session,
3956 &cap, &extra_info.issued);
3957 handle_cap_grant(inode, session, cap,
3958 h, msg->middle, &extra_info);
3960 ceph_put_snap_realm(mdsc, realm);
3964 /* the rest require a cap */
3965 spin_lock(&ci->i_ceph_lock);
3966 cap = __get_cap_for_mds(ceph_inode(inode), session->s_mds);
3968 dout(" no cap on %p ino %llx.%llx from mds%d\n",
3969 inode, ceph_ino(inode), ceph_snap(inode),
3971 spin_unlock(&ci->i_ceph_lock);
3972 goto flush_cap_releases;
3975 /* note that each of these drops i_ceph_lock for us */
3977 case CEPH_CAP_OP_REVOKE:
3978 case CEPH_CAP_OP_GRANT:
3979 __ceph_caps_issued(ci, &extra_info.issued);
3980 extra_info.issued |= __ceph_caps_dirty(ci);
3981 handle_cap_grant(inode, session, cap,
3982 h, msg->middle, &extra_info);
3985 case CEPH_CAP_OP_FLUSH_ACK:
3986 handle_cap_flush_ack(inode, le64_to_cpu(msg->hdr.tid),
3990 case CEPH_CAP_OP_TRUNC:
3991 handle_cap_trunc(inode, h, session);
3995 spin_unlock(&ci->i_ceph_lock);
3996 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
3997 ceph_cap_op_name(op));
4001 mutex_unlock(&session->s_mutex);
4003 ceph_put_string(extra_info.pool_ns);
4004 /* avoid calling iput_final() in mds dispatch threads */
4005 ceph_async_iput(inode);
4010 * send any cap release message to try to move things
4011 * along for the mds (who clearly thinks we still have this
4014 ceph_flush_cap_releases(mdsc, session);
4018 pr_err("ceph_handle_caps: corrupt message\n");
4024 * Delayed work handler to process end of delayed cap release LRU list.
4026 void ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
4028 struct inode *inode;
4029 struct ceph_inode_info *ci;
4030 int flags = CHECK_CAPS_NODELAY;
4032 dout("check_delayed_caps\n");
4034 spin_lock(&mdsc->cap_delay_lock);
4035 if (list_empty(&mdsc->cap_delay_list))
4037 ci = list_first_entry(&mdsc->cap_delay_list,
4038 struct ceph_inode_info,
4040 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
4041 time_before(jiffies, ci->i_hold_caps_max))
4043 list_del_init(&ci->i_cap_delay_list);
4045 inode = igrab(&ci->vfs_inode);
4046 spin_unlock(&mdsc->cap_delay_lock);
4049 dout("check_delayed_caps on %p\n", inode);
4050 ceph_check_caps(ci, flags, NULL);
4051 /* avoid calling iput_final() in tick thread */
4052 ceph_async_iput(inode);
4055 spin_unlock(&mdsc->cap_delay_lock);
4059 * Flush all dirty caps to the mds
4061 void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
4063 struct ceph_inode_info *ci;
4064 struct inode *inode;
4066 dout("flush_dirty_caps\n");
4067 spin_lock(&mdsc->cap_dirty_lock);
4068 while (!list_empty(&mdsc->cap_dirty)) {
4069 ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info,
4071 inode = &ci->vfs_inode;
4073 dout("flush_dirty_caps %p\n", inode);
4074 spin_unlock(&mdsc->cap_dirty_lock);
4075 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_FLUSH, NULL);
4077 spin_lock(&mdsc->cap_dirty_lock);
4079 spin_unlock(&mdsc->cap_dirty_lock);
4080 dout("flush_dirty_caps done\n");
4083 void __ceph_get_fmode(struct ceph_inode_info *ci, int fmode)
4086 int bits = (fmode << 1) | 1;
4087 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
4088 if (bits & (1 << i))
4089 ci->i_nr_by_mode[i]++;
4094 * Drop open file reference. If we were the last open file,
4095 * we may need to release capabilities to the MDS (or schedule
4096 * their delayed release).
4098 void ceph_put_fmode(struct ceph_inode_info *ci, int fmode)
4101 int bits = (fmode << 1) | 1;
4102 spin_lock(&ci->i_ceph_lock);
4103 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
4104 if (bits & (1 << i)) {
4105 BUG_ON(ci->i_nr_by_mode[i] == 0);
4106 if (--ci->i_nr_by_mode[i] == 0)
4110 dout("put_fmode %p fmode %d {%d,%d,%d,%d}\n",
4111 &ci->vfs_inode, fmode,
4112 ci->i_nr_by_mode[0], ci->i_nr_by_mode[1],
4113 ci->i_nr_by_mode[2], ci->i_nr_by_mode[3]);
4114 spin_unlock(&ci->i_ceph_lock);
4116 if (last && ci->i_vino.snap == CEPH_NOSNAP)
4117 ceph_check_caps(ci, 0, NULL);
4121 * For a soon-to-be unlinked file, drop the LINK caps. If it
4122 * looks like the link count will hit 0, drop any other caps (other
4123 * than PIN) we don't specifically want (due to the file still being
4126 int ceph_drop_caps_for_unlink(struct inode *inode)
4128 struct ceph_inode_info *ci = ceph_inode(inode);
4129 int drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
4131 spin_lock(&ci->i_ceph_lock);
4132 if (inode->i_nlink == 1) {
4133 drop |= ~(__ceph_caps_wanted(ci) | CEPH_CAP_PIN);
4135 ci->i_ceph_flags |= CEPH_I_NODELAY;
4136 if (__ceph_caps_dirty(ci)) {
4137 struct ceph_mds_client *mdsc =
4138 ceph_inode_to_client(inode)->mdsc;
4139 __cap_delay_requeue_front(mdsc, ci);
4142 spin_unlock(&ci->i_ceph_lock);
4147 * Helpers for embedding cap and dentry lease releases into mds
4150 * @force is used by dentry_release (below) to force inclusion of a
4151 * record for the directory inode, even when there aren't any caps to
4154 int ceph_encode_inode_release(void **p, struct inode *inode,
4155 int mds, int drop, int unless, int force)
4157 struct ceph_inode_info *ci = ceph_inode(inode);
4158 struct ceph_cap *cap;
4159 struct ceph_mds_request_release *rel = *p;
4163 spin_lock(&ci->i_ceph_lock);
4164 used = __ceph_caps_used(ci);
4165 dirty = __ceph_caps_dirty(ci);
4167 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
4168 inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
4169 ceph_cap_string(unless));
4171 /* only drop unused, clean caps */
4172 drop &= ~(used | dirty);
4174 cap = __get_cap_for_mds(ci, mds);
4175 if (cap && __cap_is_valid(cap)) {
4176 unless &= cap->issued;
4178 if (unless & CEPH_CAP_AUTH_EXCL)
4179 drop &= ~CEPH_CAP_AUTH_SHARED;
4180 if (unless & CEPH_CAP_LINK_EXCL)
4181 drop &= ~CEPH_CAP_LINK_SHARED;
4182 if (unless & CEPH_CAP_XATTR_EXCL)
4183 drop &= ~CEPH_CAP_XATTR_SHARED;
4184 if (unless & CEPH_CAP_FILE_EXCL)
4185 drop &= ~CEPH_CAP_FILE_SHARED;
4188 if (force || (cap->issued & drop)) {
4189 if (cap->issued & drop) {
4190 int wanted = __ceph_caps_wanted(ci);
4191 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0)
4192 wanted |= cap->mds_wanted;
4193 dout("encode_inode_release %p cap %p "
4194 "%s -> %s, wanted %s -> %s\n", inode, cap,
4195 ceph_cap_string(cap->issued),
4196 ceph_cap_string(cap->issued & ~drop),
4197 ceph_cap_string(cap->mds_wanted),
4198 ceph_cap_string(wanted));
4200 cap->issued &= ~drop;
4201 cap->implemented &= ~drop;
4202 cap->mds_wanted = wanted;
4204 dout("encode_inode_release %p cap %p %s"
4205 " (force)\n", inode, cap,
4206 ceph_cap_string(cap->issued));
4209 rel->ino = cpu_to_le64(ceph_ino(inode));
4210 rel->cap_id = cpu_to_le64(cap->cap_id);
4211 rel->seq = cpu_to_le32(cap->seq);
4212 rel->issue_seq = cpu_to_le32(cap->issue_seq);
4213 rel->mseq = cpu_to_le32(cap->mseq);
4214 rel->caps = cpu_to_le32(cap->implemented);
4215 rel->wanted = cpu_to_le32(cap->mds_wanted);
4221 dout("encode_inode_release %p cap %p %s (noop)\n",
4222 inode, cap, ceph_cap_string(cap->issued));
4225 spin_unlock(&ci->i_ceph_lock);
4229 int ceph_encode_dentry_release(void **p, struct dentry *dentry,
4231 int mds, int drop, int unless)
4233 struct dentry *parent = NULL;
4234 struct ceph_mds_request_release *rel = *p;
4235 struct ceph_dentry_info *di = ceph_dentry(dentry);
4240 * force an record for the directory caps if we have a dentry lease.
4241 * this is racy (can't take i_ceph_lock and d_lock together), but it
4242 * doesn't have to be perfect; the mds will revoke anything we don't
4245 spin_lock(&dentry->d_lock);
4246 if (di->lease_session && di->lease_session->s_mds == mds)
4249 parent = dget(dentry->d_parent);
4250 dir = d_inode(parent);
4252 spin_unlock(&dentry->d_lock);
4254 ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
4257 spin_lock(&dentry->d_lock);
4258 if (ret && di->lease_session && di->lease_session->s_mds == mds) {
4259 dout("encode_dentry_release %p mds%d seq %d\n",
4260 dentry, mds, (int)di->lease_seq);
4261 rel->dname_len = cpu_to_le32(dentry->d_name.len);
4262 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
4263 *p += dentry->d_name.len;
4264 rel->dname_seq = cpu_to_le32(di->lease_seq);
4265 __ceph_mdsc_drop_dentry_lease(dentry);
4267 spin_unlock(&dentry->d_lock);