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>
12 #include <linux/filelock.h>
15 #include "mds_client.h"
17 #include <linux/ceph/decode.h>
18 #include <linux/ceph/messenger.h>
21 * Capability management
23 * The Ceph metadata servers control client access to inode metadata
24 * and file data by issuing capabilities, granting clients permission
25 * to read and/or write both inode field and file data to OSDs
26 * (storage nodes). Each capability consists of a set of bits
27 * indicating which operations are allowed.
29 * If the client holds a *_SHARED cap, the client has a coherent value
30 * that can be safely read from the cached inode.
32 * In the case of a *_EXCL (exclusive) or FILE_WR capabilities, the
33 * client is allowed to change inode attributes (e.g., file size,
34 * mtime), note its dirty state in the ceph_cap, and asynchronously
35 * flush that metadata change to the MDS.
37 * In the event of a conflicting operation (perhaps by another
38 * client), the MDS will revoke the conflicting client capabilities.
40 * In order for a client to cache an inode, it must hold a capability
41 * with at least one MDS server. When inodes are released, release
42 * notifications are batched and periodically sent en masse to the MDS
43 * cluster to release server state.
46 static u64 __get_oldest_flush_tid(struct ceph_mds_client *mdsc);
47 static void __kick_flushing_caps(struct ceph_mds_client *mdsc,
48 struct ceph_mds_session *session,
49 struct ceph_inode_info *ci,
50 u64 oldest_flush_tid);
53 * Generate readable cap strings for debugging output.
55 #define MAX_CAP_STR 20
56 static char cap_str[MAX_CAP_STR][40];
57 static DEFINE_SPINLOCK(cap_str_lock);
58 static int last_cap_str;
60 static char *gcap_string(char *s, int c)
62 if (c & CEPH_CAP_GSHARED)
64 if (c & CEPH_CAP_GEXCL)
66 if (c & CEPH_CAP_GCACHE)
72 if (c & CEPH_CAP_GBUFFER)
74 if (c & CEPH_CAP_GWREXTEND)
76 if (c & CEPH_CAP_GLAZYIO)
81 const char *ceph_cap_string(int caps)
87 spin_lock(&cap_str_lock);
89 if (last_cap_str == MAX_CAP_STR)
91 spin_unlock(&cap_str_lock);
95 if (caps & CEPH_CAP_PIN)
98 c = (caps >> CEPH_CAP_SAUTH) & 3;
101 s = gcap_string(s, c);
104 c = (caps >> CEPH_CAP_SLINK) & 3;
107 s = gcap_string(s, c);
110 c = (caps >> CEPH_CAP_SXATTR) & 3;
113 s = gcap_string(s, c);
116 c = caps >> CEPH_CAP_SFILE;
119 s = gcap_string(s, c);
128 void ceph_caps_init(struct ceph_mds_client *mdsc)
130 INIT_LIST_HEAD(&mdsc->caps_list);
131 spin_lock_init(&mdsc->caps_list_lock);
134 void ceph_caps_finalize(struct ceph_mds_client *mdsc)
136 struct ceph_cap *cap;
138 spin_lock(&mdsc->caps_list_lock);
139 while (!list_empty(&mdsc->caps_list)) {
140 cap = list_first_entry(&mdsc->caps_list,
141 struct ceph_cap, caps_item);
142 list_del(&cap->caps_item);
143 kmem_cache_free(ceph_cap_cachep, cap);
145 mdsc->caps_total_count = 0;
146 mdsc->caps_avail_count = 0;
147 mdsc->caps_use_count = 0;
148 mdsc->caps_reserve_count = 0;
149 mdsc->caps_min_count = 0;
150 spin_unlock(&mdsc->caps_list_lock);
153 void ceph_adjust_caps_max_min(struct ceph_mds_client *mdsc,
154 struct ceph_mount_options *fsopt)
156 spin_lock(&mdsc->caps_list_lock);
157 mdsc->caps_min_count = fsopt->max_readdir;
158 if (mdsc->caps_min_count < 1024)
159 mdsc->caps_min_count = 1024;
160 mdsc->caps_use_max = fsopt->caps_max;
161 if (mdsc->caps_use_max > 0 &&
162 mdsc->caps_use_max < mdsc->caps_min_count)
163 mdsc->caps_use_max = mdsc->caps_min_count;
164 spin_unlock(&mdsc->caps_list_lock);
167 static void __ceph_unreserve_caps(struct ceph_mds_client *mdsc, int nr_caps)
169 struct ceph_cap *cap;
173 BUG_ON(mdsc->caps_reserve_count < nr_caps);
174 mdsc->caps_reserve_count -= nr_caps;
175 if (mdsc->caps_avail_count >=
176 mdsc->caps_reserve_count + mdsc->caps_min_count) {
177 mdsc->caps_total_count -= nr_caps;
178 for (i = 0; i < nr_caps; i++) {
179 cap = list_first_entry(&mdsc->caps_list,
180 struct ceph_cap, caps_item);
181 list_del(&cap->caps_item);
182 kmem_cache_free(ceph_cap_cachep, cap);
185 mdsc->caps_avail_count += nr_caps;
188 dout("%s: caps %d = %d used + %d resv + %d avail\n",
190 mdsc->caps_total_count, mdsc->caps_use_count,
191 mdsc->caps_reserve_count, mdsc->caps_avail_count);
192 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
193 mdsc->caps_reserve_count +
194 mdsc->caps_avail_count);
199 * Called under mdsc->mutex.
201 int ceph_reserve_caps(struct ceph_mds_client *mdsc,
202 struct ceph_cap_reservation *ctx, int need)
205 struct ceph_cap *cap;
210 bool trimmed = false;
211 struct ceph_mds_session *s;
214 dout("reserve caps ctx=%p need=%d\n", ctx, need);
216 /* first reserve any caps that are already allocated */
217 spin_lock(&mdsc->caps_list_lock);
218 if (mdsc->caps_avail_count >= need)
221 have = mdsc->caps_avail_count;
222 mdsc->caps_avail_count -= have;
223 mdsc->caps_reserve_count += have;
224 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
225 mdsc->caps_reserve_count +
226 mdsc->caps_avail_count);
227 spin_unlock(&mdsc->caps_list_lock);
229 for (i = have; i < need; ) {
230 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
232 list_add(&cap->caps_item, &newcaps);
239 for (j = 0; j < mdsc->max_sessions; j++) {
240 s = __ceph_lookup_mds_session(mdsc, j);
243 mutex_unlock(&mdsc->mutex);
245 mutex_lock(&s->s_mutex);
246 max_caps = s->s_nr_caps - (need - i);
247 ceph_trim_caps(mdsc, s, max_caps);
248 mutex_unlock(&s->s_mutex);
250 ceph_put_mds_session(s);
251 mutex_lock(&mdsc->mutex);
255 spin_lock(&mdsc->caps_list_lock);
256 if (mdsc->caps_avail_count) {
258 if (mdsc->caps_avail_count >= need - i)
259 more_have = need - i;
261 more_have = mdsc->caps_avail_count;
265 mdsc->caps_avail_count -= more_have;
266 mdsc->caps_reserve_count += more_have;
269 spin_unlock(&mdsc->caps_list_lock);
274 pr_warn("reserve caps ctx=%p ENOMEM need=%d got=%d\n",
275 ctx, need, have + alloc);
281 BUG_ON(have + alloc != need);
286 spin_lock(&mdsc->caps_list_lock);
287 mdsc->caps_total_count += alloc;
288 mdsc->caps_reserve_count += alloc;
289 list_splice(&newcaps, &mdsc->caps_list);
291 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
292 mdsc->caps_reserve_count +
293 mdsc->caps_avail_count);
296 __ceph_unreserve_caps(mdsc, have + alloc);
298 spin_unlock(&mdsc->caps_list_lock);
300 dout("reserve caps ctx=%p %d = %d used + %d resv + %d avail\n",
301 ctx, mdsc->caps_total_count, mdsc->caps_use_count,
302 mdsc->caps_reserve_count, mdsc->caps_avail_count);
306 void ceph_unreserve_caps(struct ceph_mds_client *mdsc,
307 struct ceph_cap_reservation *ctx)
309 bool reclaim = false;
313 dout("unreserve caps ctx=%p count=%d\n", ctx, ctx->count);
314 spin_lock(&mdsc->caps_list_lock);
315 __ceph_unreserve_caps(mdsc, ctx->count);
318 if (mdsc->caps_use_max > 0 &&
319 mdsc->caps_use_count > mdsc->caps_use_max)
321 spin_unlock(&mdsc->caps_list_lock);
324 ceph_reclaim_caps_nr(mdsc, ctx->used);
327 struct ceph_cap *ceph_get_cap(struct ceph_mds_client *mdsc,
328 struct ceph_cap_reservation *ctx)
330 struct ceph_cap *cap = NULL;
332 /* temporary, until we do something about cap import/export */
334 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
336 spin_lock(&mdsc->caps_list_lock);
337 mdsc->caps_use_count++;
338 mdsc->caps_total_count++;
339 spin_unlock(&mdsc->caps_list_lock);
341 spin_lock(&mdsc->caps_list_lock);
342 if (mdsc->caps_avail_count) {
343 BUG_ON(list_empty(&mdsc->caps_list));
345 mdsc->caps_avail_count--;
346 mdsc->caps_use_count++;
347 cap = list_first_entry(&mdsc->caps_list,
348 struct ceph_cap, caps_item);
349 list_del(&cap->caps_item);
351 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
352 mdsc->caps_reserve_count + mdsc->caps_avail_count);
354 spin_unlock(&mdsc->caps_list_lock);
360 spin_lock(&mdsc->caps_list_lock);
361 dout("get_cap ctx=%p (%d) %d = %d used + %d resv + %d avail\n",
362 ctx, ctx->count, mdsc->caps_total_count, mdsc->caps_use_count,
363 mdsc->caps_reserve_count, mdsc->caps_avail_count);
365 BUG_ON(ctx->count > mdsc->caps_reserve_count);
366 BUG_ON(list_empty(&mdsc->caps_list));
370 mdsc->caps_reserve_count--;
371 mdsc->caps_use_count++;
373 cap = list_first_entry(&mdsc->caps_list, struct ceph_cap, caps_item);
374 list_del(&cap->caps_item);
376 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
377 mdsc->caps_reserve_count + mdsc->caps_avail_count);
378 spin_unlock(&mdsc->caps_list_lock);
382 void ceph_put_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap)
384 spin_lock(&mdsc->caps_list_lock);
385 dout("put_cap %p %d = %d used + %d resv + %d avail\n",
386 cap, mdsc->caps_total_count, mdsc->caps_use_count,
387 mdsc->caps_reserve_count, mdsc->caps_avail_count);
388 mdsc->caps_use_count--;
390 * Keep some preallocated caps around (ceph_min_count), to
391 * avoid lots of free/alloc churn.
393 if (mdsc->caps_avail_count >= mdsc->caps_reserve_count +
394 mdsc->caps_min_count) {
395 mdsc->caps_total_count--;
396 kmem_cache_free(ceph_cap_cachep, cap);
398 mdsc->caps_avail_count++;
399 list_add(&cap->caps_item, &mdsc->caps_list);
402 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
403 mdsc->caps_reserve_count + mdsc->caps_avail_count);
404 spin_unlock(&mdsc->caps_list_lock);
407 void ceph_reservation_status(struct ceph_fs_client *fsc,
408 int *total, int *avail, int *used, int *reserved,
411 struct ceph_mds_client *mdsc = fsc->mdsc;
413 spin_lock(&mdsc->caps_list_lock);
416 *total = mdsc->caps_total_count;
418 *avail = mdsc->caps_avail_count;
420 *used = mdsc->caps_use_count;
422 *reserved = mdsc->caps_reserve_count;
424 *min = mdsc->caps_min_count;
426 spin_unlock(&mdsc->caps_list_lock);
430 * Find ceph_cap for given mds, if any.
432 * Called with i_ceph_lock held.
434 struct ceph_cap *__get_cap_for_mds(struct ceph_inode_info *ci, int mds)
436 struct ceph_cap *cap;
437 struct rb_node *n = ci->i_caps.rb_node;
440 cap = rb_entry(n, struct ceph_cap, ci_node);
443 else if (mds > cap->mds)
451 struct ceph_cap *ceph_get_cap_for_mds(struct ceph_inode_info *ci, int mds)
453 struct ceph_cap *cap;
455 spin_lock(&ci->i_ceph_lock);
456 cap = __get_cap_for_mds(ci, mds);
457 spin_unlock(&ci->i_ceph_lock);
462 * Called under i_ceph_lock.
464 static void __insert_cap_node(struct ceph_inode_info *ci,
465 struct ceph_cap *new)
467 struct rb_node **p = &ci->i_caps.rb_node;
468 struct rb_node *parent = NULL;
469 struct ceph_cap *cap = NULL;
473 cap = rb_entry(parent, struct ceph_cap, ci_node);
474 if (new->mds < cap->mds)
476 else if (new->mds > cap->mds)
482 rb_link_node(&new->ci_node, parent, p);
483 rb_insert_color(&new->ci_node, &ci->i_caps);
487 * (re)set cap hold timeouts, which control the delayed release
488 * of unused caps back to the MDS. Should be called on cap use.
490 static void __cap_set_timeouts(struct ceph_mds_client *mdsc,
491 struct ceph_inode_info *ci)
493 struct ceph_mount_options *opt = mdsc->fsc->mount_options;
494 ci->i_hold_caps_max = round_jiffies(jiffies +
495 opt->caps_wanted_delay_max * HZ);
496 dout("__cap_set_timeouts %p %lu\n", &ci->netfs.inode,
497 ci->i_hold_caps_max - jiffies);
501 * (Re)queue cap at the end of the delayed cap release list.
503 * If I_FLUSH is set, leave the inode at the front of the list.
505 * Caller holds i_ceph_lock
506 * -> we take mdsc->cap_delay_lock
508 static void __cap_delay_requeue(struct ceph_mds_client *mdsc,
509 struct ceph_inode_info *ci)
511 dout("__cap_delay_requeue %p flags 0x%lx at %lu\n", &ci->netfs.inode,
512 ci->i_ceph_flags, ci->i_hold_caps_max);
513 if (!mdsc->stopping) {
514 spin_lock(&mdsc->cap_delay_lock);
515 if (!list_empty(&ci->i_cap_delay_list)) {
516 if (ci->i_ceph_flags & CEPH_I_FLUSH)
518 list_del_init(&ci->i_cap_delay_list);
520 __cap_set_timeouts(mdsc, ci);
521 list_add_tail(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
523 spin_unlock(&mdsc->cap_delay_lock);
528 * Queue an inode for immediate writeback. Mark inode with I_FLUSH,
529 * indicating we should send a cap message to flush dirty metadata
530 * asap, and move to the front of the delayed cap list.
532 static void __cap_delay_requeue_front(struct ceph_mds_client *mdsc,
533 struct ceph_inode_info *ci)
535 dout("__cap_delay_requeue_front %p\n", &ci->netfs.inode);
536 spin_lock(&mdsc->cap_delay_lock);
537 ci->i_ceph_flags |= CEPH_I_FLUSH;
538 if (!list_empty(&ci->i_cap_delay_list))
539 list_del_init(&ci->i_cap_delay_list);
540 list_add(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
541 spin_unlock(&mdsc->cap_delay_lock);
545 * Cancel delayed work on cap.
547 * Caller must hold i_ceph_lock.
549 static void __cap_delay_cancel(struct ceph_mds_client *mdsc,
550 struct ceph_inode_info *ci)
552 dout("__cap_delay_cancel %p\n", &ci->netfs.inode);
553 if (list_empty(&ci->i_cap_delay_list))
555 spin_lock(&mdsc->cap_delay_lock);
556 list_del_init(&ci->i_cap_delay_list);
557 spin_unlock(&mdsc->cap_delay_lock);
560 /* Common issue checks for add_cap, handle_cap_grant. */
561 static void __check_cap_issue(struct ceph_inode_info *ci, struct ceph_cap *cap,
564 unsigned had = __ceph_caps_issued(ci, NULL);
566 lockdep_assert_held(&ci->i_ceph_lock);
569 * Each time we receive FILE_CACHE anew, we increment
572 if (S_ISREG(ci->netfs.inode.i_mode) &&
573 (issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
574 (had & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0) {
579 * If FILE_SHARED is newly issued, mark dir not complete. We don't
580 * know what happened to this directory while we didn't have the cap.
581 * If FILE_SHARED is being revoked, also mark dir not complete. It
582 * stops on-going cached readdir.
584 if ((issued & CEPH_CAP_FILE_SHARED) != (had & CEPH_CAP_FILE_SHARED)) {
585 if (issued & CEPH_CAP_FILE_SHARED)
586 atomic_inc(&ci->i_shared_gen);
587 if (S_ISDIR(ci->netfs.inode.i_mode)) {
588 dout(" marking %p NOT complete\n", &ci->netfs.inode);
589 __ceph_dir_clear_complete(ci);
593 /* Wipe saved layout if we're losing DIR_CREATE caps */
594 if (S_ISDIR(ci->netfs.inode.i_mode) && (had & CEPH_CAP_DIR_CREATE) &&
595 !(issued & CEPH_CAP_DIR_CREATE)) {
596 ceph_put_string(rcu_dereference_raw(ci->i_cached_layout.pool_ns));
597 memset(&ci->i_cached_layout, 0, sizeof(ci->i_cached_layout));
602 * change_auth_cap_ses - move inode to appropriate lists when auth caps change
603 * @ci: inode to be moved
604 * @session: new auth caps session
606 void change_auth_cap_ses(struct ceph_inode_info *ci,
607 struct ceph_mds_session *session)
609 lockdep_assert_held(&ci->i_ceph_lock);
611 if (list_empty(&ci->i_dirty_item) && list_empty(&ci->i_flushing_item))
614 spin_lock(&session->s_mdsc->cap_dirty_lock);
615 if (!list_empty(&ci->i_dirty_item))
616 list_move(&ci->i_dirty_item, &session->s_cap_dirty);
617 if (!list_empty(&ci->i_flushing_item))
618 list_move_tail(&ci->i_flushing_item, &session->s_cap_flushing);
619 spin_unlock(&session->s_mdsc->cap_dirty_lock);
623 * Add a capability under the given MDS session.
625 * Caller should hold session snap_rwsem (read) and ci->i_ceph_lock
627 * @fmode is the open file mode, if we are opening a file, otherwise
628 * it is < 0. (This is so we can atomically add the cap and add an
629 * open file reference to it.)
631 void ceph_add_cap(struct inode *inode,
632 struct ceph_mds_session *session, u64 cap_id,
633 unsigned issued, unsigned wanted,
634 unsigned seq, unsigned mseq, u64 realmino, int flags,
635 struct ceph_cap **new_cap)
637 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
638 struct ceph_inode_info *ci = ceph_inode(inode);
639 struct ceph_cap *cap;
640 int mds = session->s_mds;
644 lockdep_assert_held(&ci->i_ceph_lock);
646 dout("add_cap %p mds%d cap %llx %s seq %d\n", inode,
647 session->s_mds, cap_id, ceph_cap_string(issued), seq);
649 gen = atomic_read(&session->s_cap_gen);
651 cap = __get_cap_for_mds(ci, mds);
657 cap->implemented = 0;
663 __insert_cap_node(ci, cap);
665 /* add to session cap list */
666 cap->session = session;
667 spin_lock(&session->s_cap_lock);
668 list_add_tail(&cap->session_caps, &session->s_caps);
669 session->s_nr_caps++;
670 atomic64_inc(&mdsc->metric.total_caps);
671 spin_unlock(&session->s_cap_lock);
673 spin_lock(&session->s_cap_lock);
674 list_move_tail(&cap->session_caps, &session->s_caps);
675 spin_unlock(&session->s_cap_lock);
677 if (cap->cap_gen < gen)
678 cap->issued = cap->implemented = CEPH_CAP_PIN;
681 * auth mds of the inode changed. we received the cap export
682 * message, but still haven't received the cap import message.
683 * handle_cap_export() updated the new auth MDS' cap.
685 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing
686 * a message that was send before the cap import message. So
689 if (ceph_seq_cmp(seq, cap->seq) <= 0) {
690 WARN_ON(cap != ci->i_auth_cap);
691 WARN_ON(cap->cap_id != cap_id);
694 issued |= cap->issued;
695 flags |= CEPH_CAP_FLAG_AUTH;
699 if (!ci->i_snap_realm ||
700 ((flags & CEPH_CAP_FLAG_AUTH) &&
701 realmino != (u64)-1 && ci->i_snap_realm->ino != realmino)) {
703 * add this inode to the appropriate snap realm
705 struct ceph_snap_realm *realm = ceph_lookup_snap_realm(mdsc,
708 ceph_change_snap_realm(inode, realm);
710 WARN(1, "%s: couldn't find snap realm 0x%llx (ino 0x%llx oldrealm 0x%llx)\n",
711 __func__, realmino, ci->i_vino.ino,
712 ci->i_snap_realm ? ci->i_snap_realm->ino : 0);
715 __check_cap_issue(ci, cap, issued);
718 * If we are issued caps we don't want, or the mds' wanted
719 * value appears to be off, queue a check so we'll release
720 * later and/or update the mds wanted value.
722 actual_wanted = __ceph_caps_wanted(ci);
723 if ((wanted & ~actual_wanted) ||
724 (issued & ~actual_wanted & CEPH_CAP_ANY_WR)) {
725 dout(" issued %s, mds wanted %s, actual %s, queueing\n",
726 ceph_cap_string(issued), ceph_cap_string(wanted),
727 ceph_cap_string(actual_wanted));
728 __cap_delay_requeue(mdsc, ci);
731 if (flags & CEPH_CAP_FLAG_AUTH) {
732 if (!ci->i_auth_cap ||
733 ceph_seq_cmp(ci->i_auth_cap->mseq, mseq) < 0) {
734 if (ci->i_auth_cap &&
735 ci->i_auth_cap->session != cap->session)
736 change_auth_cap_ses(ci, cap->session);
737 ci->i_auth_cap = cap;
738 cap->mds_wanted = wanted;
741 WARN_ON(ci->i_auth_cap == cap);
744 dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
745 inode, ceph_vinop(inode), cap, ceph_cap_string(issued),
746 ceph_cap_string(issued|cap->issued), seq, mds);
747 cap->cap_id = cap_id;
748 cap->issued = issued;
749 cap->implemented |= issued;
750 if (ceph_seq_cmp(mseq, cap->mseq) > 0)
751 cap->mds_wanted = wanted;
753 cap->mds_wanted |= wanted;
755 cap->issue_seq = seq;
758 wake_up_all(&ci->i_cap_wq);
762 * Return true if cap has not timed out and belongs to the current
763 * generation of the MDS session (i.e. has not gone 'stale' due to
764 * us losing touch with the mds).
766 static int __cap_is_valid(struct ceph_cap *cap)
771 gen = atomic_read(&cap->session->s_cap_gen);
772 ttl = cap->session->s_cap_ttl;
774 if (cap->cap_gen < gen || time_after_eq(jiffies, ttl)) {
775 dout("__cap_is_valid %p cap %p issued %s "
776 "but STALE (gen %u vs %u)\n", &cap->ci->netfs.inode,
777 cap, ceph_cap_string(cap->issued), cap->cap_gen, gen);
785 * Return set of valid cap bits issued to us. Note that caps time
786 * out, and may be invalidated in bulk if the client session times out
787 * and session->s_cap_gen is bumped.
789 int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented)
791 int have = ci->i_snap_caps;
792 struct ceph_cap *cap;
797 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
798 cap = rb_entry(p, struct ceph_cap, ci_node);
799 if (!__cap_is_valid(cap))
801 dout("__ceph_caps_issued %p cap %p issued %s\n",
802 &ci->netfs.inode, cap, ceph_cap_string(cap->issued));
805 *implemented |= cap->implemented;
808 * exclude caps issued by non-auth MDS, but are been revoking
809 * by the auth MDS. The non-auth MDS should be revoking/exporting
810 * these caps, but the message is delayed.
812 if (ci->i_auth_cap) {
813 cap = ci->i_auth_cap;
814 have &= ~cap->implemented | cap->issued;
820 * Get cap bits issued by caps other than @ocap
822 int __ceph_caps_issued_other(struct ceph_inode_info *ci, struct ceph_cap *ocap)
824 int have = ci->i_snap_caps;
825 struct ceph_cap *cap;
828 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
829 cap = rb_entry(p, struct ceph_cap, ci_node);
832 if (!__cap_is_valid(cap))
840 * Move a cap to the end of the LRU (oldest caps at list head, newest
843 static void __touch_cap(struct ceph_cap *cap)
845 struct ceph_mds_session *s = cap->session;
847 spin_lock(&s->s_cap_lock);
848 if (!s->s_cap_iterator) {
849 dout("__touch_cap %p cap %p mds%d\n", &cap->ci->netfs.inode, cap,
851 list_move_tail(&cap->session_caps, &s->s_caps);
853 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
854 &cap->ci->netfs.inode, cap, s->s_mds);
856 spin_unlock(&s->s_cap_lock);
860 * Check if we hold the given mask. If so, move the cap(s) to the
861 * front of their respective LRUs. (This is the preferred way for
862 * callers to check for caps they want.)
864 int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int touch)
866 struct ceph_cap *cap;
868 int have = ci->i_snap_caps;
870 if ((have & mask) == mask) {
871 dout("__ceph_caps_issued_mask ino 0x%llx snap issued %s"
872 " (mask %s)\n", ceph_ino(&ci->netfs.inode),
873 ceph_cap_string(have),
874 ceph_cap_string(mask));
878 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
879 cap = rb_entry(p, struct ceph_cap, ci_node);
880 if (!__cap_is_valid(cap))
882 if ((cap->issued & mask) == mask) {
883 dout("__ceph_caps_issued_mask ino 0x%llx cap %p issued %s"
884 " (mask %s)\n", ceph_ino(&ci->netfs.inode), cap,
885 ceph_cap_string(cap->issued),
886 ceph_cap_string(mask));
892 /* does a combination of caps satisfy mask? */
894 if ((have & mask) == mask) {
895 dout("__ceph_caps_issued_mask ino 0x%llx combo issued %s"
896 " (mask %s)\n", ceph_ino(&ci->netfs.inode),
897 ceph_cap_string(cap->issued),
898 ceph_cap_string(mask));
902 /* touch this + preceding caps */
904 for (q = rb_first(&ci->i_caps); q != p;
906 cap = rb_entry(q, struct ceph_cap,
908 if (!__cap_is_valid(cap))
910 if (cap->issued & mask)
921 int __ceph_caps_issued_mask_metric(struct ceph_inode_info *ci, int mask,
924 struct ceph_fs_client *fsc = ceph_sb_to_client(ci->netfs.inode.i_sb);
927 r = __ceph_caps_issued_mask(ci, mask, touch);
929 ceph_update_cap_hit(&fsc->mdsc->metric);
931 ceph_update_cap_mis(&fsc->mdsc->metric);
936 * Return true if mask caps are currently being revoked by an MDS.
938 int __ceph_caps_revoking_other(struct ceph_inode_info *ci,
939 struct ceph_cap *ocap, int mask)
941 struct ceph_cap *cap;
944 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
945 cap = rb_entry(p, struct ceph_cap, ci_node);
947 (cap->implemented & ~cap->issued & mask))
953 int ceph_caps_revoking(struct ceph_inode_info *ci, int mask)
955 struct inode *inode = &ci->netfs.inode;
958 spin_lock(&ci->i_ceph_lock);
959 ret = __ceph_caps_revoking_other(ci, NULL, mask);
960 spin_unlock(&ci->i_ceph_lock);
961 dout("ceph_caps_revoking %p %s = %d\n", inode,
962 ceph_cap_string(mask), ret);
966 int __ceph_caps_used(struct ceph_inode_info *ci)
970 used |= CEPH_CAP_PIN;
972 used |= CEPH_CAP_FILE_RD;
973 if (ci->i_rdcache_ref ||
974 (S_ISREG(ci->netfs.inode.i_mode) &&
975 ci->netfs.inode.i_data.nrpages))
976 used |= CEPH_CAP_FILE_CACHE;
978 used |= CEPH_CAP_FILE_WR;
979 if (ci->i_wb_ref || ci->i_wrbuffer_ref)
980 used |= CEPH_CAP_FILE_BUFFER;
982 used |= CEPH_CAP_FILE_EXCL;
986 #define FMODE_WAIT_BIAS 1000
989 * wanted, by virtue of open file modes
991 int __ceph_caps_file_wanted(struct ceph_inode_info *ci)
993 const int PIN_SHIFT = ffs(CEPH_FILE_MODE_PIN);
994 const int RD_SHIFT = ffs(CEPH_FILE_MODE_RD);
995 const int WR_SHIFT = ffs(CEPH_FILE_MODE_WR);
996 const int LAZY_SHIFT = ffs(CEPH_FILE_MODE_LAZY);
997 struct ceph_mount_options *opt =
998 ceph_inode_to_client(&ci->netfs.inode)->mount_options;
999 unsigned long used_cutoff = jiffies - opt->caps_wanted_delay_max * HZ;
1000 unsigned long idle_cutoff = jiffies - opt->caps_wanted_delay_min * HZ;
1002 if (S_ISDIR(ci->netfs.inode.i_mode)) {
1005 /* use used_cutoff here, to keep dir's wanted caps longer */
1006 if (ci->i_nr_by_mode[RD_SHIFT] > 0 ||
1007 time_after(ci->i_last_rd, used_cutoff))
1008 want |= CEPH_CAP_ANY_SHARED;
1010 if (ci->i_nr_by_mode[WR_SHIFT] > 0 ||
1011 time_after(ci->i_last_wr, used_cutoff)) {
1012 want |= CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL;
1013 if (opt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS)
1014 want |= CEPH_CAP_ANY_DIR_OPS;
1017 if (want || ci->i_nr_by_mode[PIN_SHIFT] > 0)
1018 want |= CEPH_CAP_PIN;
1024 if (ci->i_nr_by_mode[RD_SHIFT] > 0) {
1025 if (ci->i_nr_by_mode[RD_SHIFT] >= FMODE_WAIT_BIAS ||
1026 time_after(ci->i_last_rd, used_cutoff))
1027 bits |= 1 << RD_SHIFT;
1028 } else if (time_after(ci->i_last_rd, idle_cutoff)) {
1029 bits |= 1 << RD_SHIFT;
1032 if (ci->i_nr_by_mode[WR_SHIFT] > 0) {
1033 if (ci->i_nr_by_mode[WR_SHIFT] >= FMODE_WAIT_BIAS ||
1034 time_after(ci->i_last_wr, used_cutoff))
1035 bits |= 1 << WR_SHIFT;
1036 } else if (time_after(ci->i_last_wr, idle_cutoff)) {
1037 bits |= 1 << WR_SHIFT;
1040 /* check lazyio only when read/write is wanted */
1041 if ((bits & (CEPH_FILE_MODE_RDWR << 1)) &&
1042 ci->i_nr_by_mode[LAZY_SHIFT] > 0)
1043 bits |= 1 << LAZY_SHIFT;
1045 return bits ? ceph_caps_for_mode(bits >> 1) : 0;
1050 * wanted, by virtue of open file modes AND cap refs (buffered/cached data)
1052 int __ceph_caps_wanted(struct ceph_inode_info *ci)
1054 int w = __ceph_caps_file_wanted(ci) | __ceph_caps_used(ci);
1055 if (S_ISDIR(ci->netfs.inode.i_mode)) {
1056 /* we want EXCL if holding caps of dir ops */
1057 if (w & CEPH_CAP_ANY_DIR_OPS)
1058 w |= CEPH_CAP_FILE_EXCL;
1060 /* we want EXCL if dirty data */
1061 if (w & CEPH_CAP_FILE_BUFFER)
1062 w |= CEPH_CAP_FILE_EXCL;
1068 * Return caps we have registered with the MDS(s) as 'wanted'.
1070 int __ceph_caps_mds_wanted(struct ceph_inode_info *ci, bool check)
1072 struct ceph_cap *cap;
1076 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1077 cap = rb_entry(p, struct ceph_cap, ci_node);
1078 if (check && !__cap_is_valid(cap))
1080 if (cap == ci->i_auth_cap)
1081 mds_wanted |= cap->mds_wanted;
1083 mds_wanted |= (cap->mds_wanted & ~CEPH_CAP_ANY_FILE_WR);
1088 int ceph_is_any_caps(struct inode *inode)
1090 struct ceph_inode_info *ci = ceph_inode(inode);
1093 spin_lock(&ci->i_ceph_lock);
1094 ret = __ceph_is_any_real_caps(ci);
1095 spin_unlock(&ci->i_ceph_lock);
1101 * Remove a cap. Take steps to deal with a racing iterate_session_caps.
1103 * caller should hold i_ceph_lock.
1104 * caller will not hold session s_mutex if called from destroy_inode.
1106 void __ceph_remove_cap(struct ceph_cap *cap, bool queue_release)
1108 struct ceph_mds_session *session = cap->session;
1109 struct ceph_inode_info *ci = cap->ci;
1110 struct ceph_mds_client *mdsc;
1113 /* 'ci' being NULL means the remove have already occurred */
1115 dout("%s: cap inode is NULL\n", __func__);
1119 lockdep_assert_held(&ci->i_ceph_lock);
1121 dout("__ceph_remove_cap %p from %p\n", cap, &ci->netfs.inode);
1123 mdsc = ceph_inode_to_client(&ci->netfs.inode)->mdsc;
1125 /* remove from inode's cap rbtree, and clear auth cap */
1126 rb_erase(&cap->ci_node, &ci->i_caps);
1127 if (ci->i_auth_cap == cap)
1128 ci->i_auth_cap = NULL;
1130 /* remove from session list */
1131 spin_lock(&session->s_cap_lock);
1132 if (session->s_cap_iterator == cap) {
1133 /* not yet, we are iterating over this very cap */
1134 dout("__ceph_remove_cap delaying %p removal from session %p\n",
1137 list_del_init(&cap->session_caps);
1138 session->s_nr_caps--;
1139 atomic64_dec(&mdsc->metric.total_caps);
1140 cap->session = NULL;
1143 /* protect backpointer with s_cap_lock: see iterate_session_caps */
1147 * s_cap_reconnect is protected by s_cap_lock. no one changes
1148 * s_cap_gen while session is in the reconnect state.
1150 if (queue_release &&
1151 (!session->s_cap_reconnect ||
1152 cap->cap_gen == atomic_read(&session->s_cap_gen))) {
1153 cap->queue_release = 1;
1155 __ceph_queue_cap_release(session, cap);
1159 cap->queue_release = 0;
1161 cap->cap_ino = ci->i_vino.ino;
1163 spin_unlock(&session->s_cap_lock);
1166 ceph_put_cap(mdsc, cap);
1168 if (!__ceph_is_any_real_caps(ci)) {
1169 /* when reconnect denied, we remove session caps forcibly,
1170 * i_wr_ref can be non-zero. If there are ongoing write,
1171 * keep i_snap_realm.
1173 if (ci->i_wr_ref == 0 && ci->i_snap_realm)
1174 ceph_change_snap_realm(&ci->netfs.inode, NULL);
1176 __cap_delay_cancel(mdsc, ci);
1180 void ceph_remove_cap(struct ceph_cap *cap, bool queue_release)
1182 struct ceph_inode_info *ci = cap->ci;
1183 struct ceph_fs_client *fsc;
1185 /* 'ci' being NULL means the remove have already occurred */
1187 dout("%s: cap inode is NULL\n", __func__);
1191 lockdep_assert_held(&ci->i_ceph_lock);
1193 fsc = ceph_inode_to_client(&ci->netfs.inode);
1194 WARN_ON_ONCE(ci->i_auth_cap == cap &&
1195 !list_empty(&ci->i_dirty_item) &&
1196 !fsc->blocklisted &&
1197 !ceph_inode_is_shutdown(&ci->netfs.inode));
1199 __ceph_remove_cap(cap, queue_release);
1202 struct cap_msg_args {
1203 struct ceph_mds_session *session;
1204 u64 ino, cid, follows;
1205 u64 flush_tid, oldest_flush_tid, size, max_size;
1208 struct ceph_buffer *xattr_buf;
1209 struct ceph_buffer *old_xattr_buf;
1210 struct timespec64 atime, mtime, ctime, btime;
1211 int op, caps, wanted, dirty;
1212 u32 seq, issue_seq, mseq, time_warp_seq;
1222 * cap struct size + flock buffer size + inline version + inline data size +
1223 * osd_epoch_barrier + oldest_flush_tid
1225 #define CAP_MSG_SIZE (sizeof(struct ceph_mds_caps) + \
1226 4 + 8 + 4 + 4 + 8 + 4 + 4 + 4 + 8 + 8 + 4)
1228 /* Marshal up the cap msg to the MDS */
1229 static void encode_cap_msg(struct ceph_msg *msg, struct cap_msg_args *arg)
1231 struct ceph_mds_caps *fc;
1233 struct ceph_osd_client *osdc = &arg->session->s_mdsc->fsc->client->osdc;
1235 dout("%s %s %llx %llx caps %s wanted %s dirty %s seq %u/%u tid %llu/%llu mseq %u follows %lld size %llu/%llu xattr_ver %llu xattr_len %d\n",
1236 __func__, ceph_cap_op_name(arg->op), arg->cid, arg->ino,
1237 ceph_cap_string(arg->caps), ceph_cap_string(arg->wanted),
1238 ceph_cap_string(arg->dirty), arg->seq, arg->issue_seq,
1239 arg->flush_tid, arg->oldest_flush_tid, arg->mseq, arg->follows,
1240 arg->size, arg->max_size, arg->xattr_version,
1241 arg->xattr_buf ? (int)arg->xattr_buf->vec.iov_len : 0);
1243 msg->hdr.version = cpu_to_le16(10);
1244 msg->hdr.tid = cpu_to_le64(arg->flush_tid);
1246 fc = msg->front.iov_base;
1247 memset(fc, 0, sizeof(*fc));
1249 fc->cap_id = cpu_to_le64(arg->cid);
1250 fc->op = cpu_to_le32(arg->op);
1251 fc->seq = cpu_to_le32(arg->seq);
1252 fc->issue_seq = cpu_to_le32(arg->issue_seq);
1253 fc->migrate_seq = cpu_to_le32(arg->mseq);
1254 fc->caps = cpu_to_le32(arg->caps);
1255 fc->wanted = cpu_to_le32(arg->wanted);
1256 fc->dirty = cpu_to_le32(arg->dirty);
1257 fc->ino = cpu_to_le64(arg->ino);
1258 fc->snap_follows = cpu_to_le64(arg->follows);
1260 fc->size = cpu_to_le64(arg->size);
1261 fc->max_size = cpu_to_le64(arg->max_size);
1262 ceph_encode_timespec64(&fc->mtime, &arg->mtime);
1263 ceph_encode_timespec64(&fc->atime, &arg->atime);
1264 ceph_encode_timespec64(&fc->ctime, &arg->ctime);
1265 fc->time_warp_seq = cpu_to_le32(arg->time_warp_seq);
1267 fc->uid = cpu_to_le32(from_kuid(&init_user_ns, arg->uid));
1268 fc->gid = cpu_to_le32(from_kgid(&init_user_ns, arg->gid));
1269 fc->mode = cpu_to_le32(arg->mode);
1271 fc->xattr_version = cpu_to_le64(arg->xattr_version);
1272 if (arg->xattr_buf) {
1273 msg->middle = ceph_buffer_get(arg->xattr_buf);
1274 fc->xattr_len = cpu_to_le32(arg->xattr_buf->vec.iov_len);
1275 msg->hdr.middle_len = cpu_to_le32(arg->xattr_buf->vec.iov_len);
1279 /* flock buffer size (version 2) */
1280 ceph_encode_32(&p, 0);
1281 /* inline version (version 4) */
1282 ceph_encode_64(&p, arg->inline_data ? 0 : CEPH_INLINE_NONE);
1283 /* inline data size */
1284 ceph_encode_32(&p, 0);
1286 * osd_epoch_barrier (version 5)
1287 * The epoch_barrier is protected osdc->lock, so READ_ONCE here in
1288 * case it was recently changed
1290 ceph_encode_32(&p, READ_ONCE(osdc->epoch_barrier));
1291 /* oldest_flush_tid (version 6) */
1292 ceph_encode_64(&p, arg->oldest_flush_tid);
1295 * caller_uid/caller_gid (version 7)
1297 * Currently, we don't properly track which caller dirtied the caps
1298 * last, and force a flush of them when there is a conflict. For now,
1299 * just set this to 0:0, to emulate how the MDS has worked up to now.
1301 ceph_encode_32(&p, 0);
1302 ceph_encode_32(&p, 0);
1304 /* pool namespace (version 8) (mds always ignores this) */
1305 ceph_encode_32(&p, 0);
1307 /* btime and change_attr (version 9) */
1308 ceph_encode_timespec64(p, &arg->btime);
1309 p += sizeof(struct ceph_timespec);
1310 ceph_encode_64(&p, arg->change_attr);
1312 /* Advisory flags (version 10) */
1313 ceph_encode_32(&p, arg->flags);
1317 * Queue cap releases when an inode is dropped from our cache.
1319 void __ceph_remove_caps(struct ceph_inode_info *ci)
1323 /* lock i_ceph_lock, because ceph_d_revalidate(..., LOOKUP_RCU)
1324 * may call __ceph_caps_issued_mask() on a freeing inode. */
1325 spin_lock(&ci->i_ceph_lock);
1326 p = rb_first(&ci->i_caps);
1328 struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
1330 ceph_remove_cap(cap, true);
1332 spin_unlock(&ci->i_ceph_lock);
1336 * Prepare to send a cap message to an MDS. Update the cap state, and populate
1337 * the arg struct with the parameters that will need to be sent. This should
1338 * be done under the i_ceph_lock to guard against changes to cap state.
1340 * Make note of max_size reported/requested from mds, revoked caps
1341 * that have now been implemented.
1343 static void __prep_cap(struct cap_msg_args *arg, struct ceph_cap *cap,
1344 int op, int flags, int used, int want, int retain,
1345 int flushing, u64 flush_tid, u64 oldest_flush_tid)
1347 struct ceph_inode_info *ci = cap->ci;
1348 struct inode *inode = &ci->netfs.inode;
1351 lockdep_assert_held(&ci->i_ceph_lock);
1353 held = cap->issued | cap->implemented;
1354 revoking = cap->implemented & ~cap->issued;
1355 retain &= ~revoking;
1357 dout("%s %p cap %p session %p %s -> %s (revoking %s)\n",
1358 __func__, inode, cap, cap->session,
1359 ceph_cap_string(held), ceph_cap_string(held & retain),
1360 ceph_cap_string(revoking));
1361 BUG_ON((retain & CEPH_CAP_PIN) == 0);
1363 ci->i_ceph_flags &= ~CEPH_I_FLUSH;
1365 cap->issued &= retain; /* drop bits we don't want */
1367 * Wake up any waiters on wanted -> needed transition. This is due to
1368 * the weird transition from buffered to sync IO... we need to flush
1369 * dirty pages _before_ allowing sync writes to avoid reordering.
1371 arg->wake = cap->implemented & ~cap->issued;
1372 cap->implemented &= cap->issued | used;
1373 cap->mds_wanted = want;
1375 arg->session = cap->session;
1376 arg->ino = ceph_vino(inode).ino;
1377 arg->cid = cap->cap_id;
1378 arg->follows = flushing ? ci->i_head_snapc->seq : 0;
1379 arg->flush_tid = flush_tid;
1380 arg->oldest_flush_tid = oldest_flush_tid;
1382 arg->size = i_size_read(inode);
1383 ci->i_reported_size = arg->size;
1384 arg->max_size = ci->i_wanted_max_size;
1385 if (cap == ci->i_auth_cap) {
1386 if (want & CEPH_CAP_ANY_FILE_WR)
1387 ci->i_requested_max_size = arg->max_size;
1389 ci->i_requested_max_size = 0;
1392 if (flushing & CEPH_CAP_XATTR_EXCL) {
1393 arg->old_xattr_buf = __ceph_build_xattrs_blob(ci);
1394 arg->xattr_version = ci->i_xattrs.version;
1395 arg->xattr_buf = ci->i_xattrs.blob;
1397 arg->xattr_buf = NULL;
1398 arg->old_xattr_buf = NULL;
1401 arg->mtime = inode->i_mtime;
1402 arg->atime = inode->i_atime;
1403 arg->ctime = inode->i_ctime;
1404 arg->btime = ci->i_btime;
1405 arg->change_attr = inode_peek_iversion_raw(inode);
1408 arg->caps = cap->implemented;
1410 arg->dirty = flushing;
1412 arg->seq = cap->seq;
1413 arg->issue_seq = cap->issue_seq;
1414 arg->mseq = cap->mseq;
1415 arg->time_warp_seq = ci->i_time_warp_seq;
1417 arg->uid = inode->i_uid;
1418 arg->gid = inode->i_gid;
1419 arg->mode = inode->i_mode;
1421 arg->inline_data = ci->i_inline_version != CEPH_INLINE_NONE;
1422 if (!(flags & CEPH_CLIENT_CAPS_PENDING_CAPSNAP) &&
1423 !list_empty(&ci->i_cap_snaps)) {
1424 struct ceph_cap_snap *capsnap;
1425 list_for_each_entry_reverse(capsnap, &ci->i_cap_snaps, ci_item) {
1426 if (capsnap->cap_flush.tid)
1428 if (capsnap->need_flush) {
1429 flags |= CEPH_CLIENT_CAPS_PENDING_CAPSNAP;
1438 * Send a cap msg on the given inode.
1440 * Caller should hold snap_rwsem (read), s_mutex.
1442 static void __send_cap(struct cap_msg_args *arg, struct ceph_inode_info *ci)
1444 struct ceph_msg *msg;
1445 struct inode *inode = &ci->netfs.inode;
1447 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, CAP_MSG_SIZE, GFP_NOFS, false);
1449 pr_err("error allocating cap msg: ino (%llx.%llx) flushing %s tid %llu, requeuing cap.\n",
1450 ceph_vinop(inode), ceph_cap_string(arg->dirty),
1452 spin_lock(&ci->i_ceph_lock);
1453 __cap_delay_requeue(arg->session->s_mdsc, ci);
1454 spin_unlock(&ci->i_ceph_lock);
1458 encode_cap_msg(msg, arg);
1459 ceph_con_send(&arg->session->s_con, msg);
1460 ceph_buffer_put(arg->old_xattr_buf);
1462 wake_up_all(&ci->i_cap_wq);
1465 static inline int __send_flush_snap(struct inode *inode,
1466 struct ceph_mds_session *session,
1467 struct ceph_cap_snap *capsnap,
1468 u32 mseq, u64 oldest_flush_tid)
1470 struct cap_msg_args arg;
1471 struct ceph_msg *msg;
1473 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, CAP_MSG_SIZE, GFP_NOFS, false);
1477 arg.session = session;
1478 arg.ino = ceph_vino(inode).ino;
1480 arg.follows = capsnap->follows;
1481 arg.flush_tid = capsnap->cap_flush.tid;
1482 arg.oldest_flush_tid = oldest_flush_tid;
1484 arg.size = capsnap->size;
1486 arg.xattr_version = capsnap->xattr_version;
1487 arg.xattr_buf = capsnap->xattr_blob;
1488 arg.old_xattr_buf = NULL;
1490 arg.atime = capsnap->atime;
1491 arg.mtime = capsnap->mtime;
1492 arg.ctime = capsnap->ctime;
1493 arg.btime = capsnap->btime;
1494 arg.change_attr = capsnap->change_attr;
1496 arg.op = CEPH_CAP_OP_FLUSHSNAP;
1497 arg.caps = capsnap->issued;
1499 arg.dirty = capsnap->dirty;
1504 arg.time_warp_seq = capsnap->time_warp_seq;
1506 arg.uid = capsnap->uid;
1507 arg.gid = capsnap->gid;
1508 arg.mode = capsnap->mode;
1510 arg.inline_data = capsnap->inline_data;
1514 encode_cap_msg(msg, &arg);
1515 ceph_con_send(&arg.session->s_con, msg);
1520 * When a snapshot is taken, clients accumulate dirty metadata on
1521 * inodes with capabilities in ceph_cap_snaps to describe the file
1522 * state at the time the snapshot was taken. This must be flushed
1523 * asynchronously back to the MDS once sync writes complete and dirty
1524 * data is written out.
1526 * Called under i_ceph_lock.
1528 static void __ceph_flush_snaps(struct ceph_inode_info *ci,
1529 struct ceph_mds_session *session)
1530 __releases(ci->i_ceph_lock)
1531 __acquires(ci->i_ceph_lock)
1533 struct inode *inode = &ci->netfs.inode;
1534 struct ceph_mds_client *mdsc = session->s_mdsc;
1535 struct ceph_cap_snap *capsnap;
1536 u64 oldest_flush_tid = 0;
1537 u64 first_tid = 1, last_tid = 0;
1539 dout("__flush_snaps %p session %p\n", inode, session);
1541 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
1543 * we need to wait for sync writes to complete and for dirty
1544 * pages to be written out.
1546 if (capsnap->dirty_pages || capsnap->writing)
1549 /* should be removed by ceph_try_drop_cap_snap() */
1550 BUG_ON(!capsnap->need_flush);
1552 /* only flush each capsnap once */
1553 if (capsnap->cap_flush.tid > 0) {
1554 dout(" already flushed %p, skipping\n", capsnap);
1558 spin_lock(&mdsc->cap_dirty_lock);
1559 capsnap->cap_flush.tid = ++mdsc->last_cap_flush_tid;
1560 list_add_tail(&capsnap->cap_flush.g_list,
1561 &mdsc->cap_flush_list);
1562 if (oldest_flush_tid == 0)
1563 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
1564 if (list_empty(&ci->i_flushing_item)) {
1565 list_add_tail(&ci->i_flushing_item,
1566 &session->s_cap_flushing);
1568 spin_unlock(&mdsc->cap_dirty_lock);
1570 list_add_tail(&capsnap->cap_flush.i_list,
1571 &ci->i_cap_flush_list);
1574 first_tid = capsnap->cap_flush.tid;
1575 last_tid = capsnap->cap_flush.tid;
1578 ci->i_ceph_flags &= ~CEPH_I_FLUSH_SNAPS;
1580 while (first_tid <= last_tid) {
1581 struct ceph_cap *cap = ci->i_auth_cap;
1582 struct ceph_cap_flush *cf = NULL, *iter;
1585 if (!(cap && cap->session == session)) {
1586 dout("__flush_snaps %p auth cap %p not mds%d, "
1587 "stop\n", inode, cap, session->s_mds);
1592 list_for_each_entry(iter, &ci->i_cap_flush_list, i_list) {
1593 if (iter->tid >= first_tid) {
1602 first_tid = cf->tid + 1;
1604 capsnap = container_of(cf, struct ceph_cap_snap, cap_flush);
1605 refcount_inc(&capsnap->nref);
1606 spin_unlock(&ci->i_ceph_lock);
1608 dout("__flush_snaps %p capsnap %p tid %llu %s\n",
1609 inode, capsnap, cf->tid, ceph_cap_string(capsnap->dirty));
1611 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
1614 pr_err("__flush_snaps: error sending cap flushsnap, "
1615 "ino (%llx.%llx) tid %llu follows %llu\n",
1616 ceph_vinop(inode), cf->tid, capsnap->follows);
1619 ceph_put_cap_snap(capsnap);
1620 spin_lock(&ci->i_ceph_lock);
1624 void ceph_flush_snaps(struct ceph_inode_info *ci,
1625 struct ceph_mds_session **psession)
1627 struct inode *inode = &ci->netfs.inode;
1628 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
1629 struct ceph_mds_session *session = NULL;
1630 bool need_put = false;
1633 dout("ceph_flush_snaps %p\n", inode);
1635 session = *psession;
1637 spin_lock(&ci->i_ceph_lock);
1638 if (!(ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)) {
1639 dout(" no capsnap needs flush, doing nothing\n");
1642 if (!ci->i_auth_cap) {
1643 dout(" no auth cap (migrating?), doing nothing\n");
1647 mds = ci->i_auth_cap->session->s_mds;
1648 if (session && session->s_mds != mds) {
1649 dout(" oops, wrong session %p mutex\n", session);
1650 ceph_put_mds_session(session);
1654 spin_unlock(&ci->i_ceph_lock);
1655 mutex_lock(&mdsc->mutex);
1656 session = __ceph_lookup_mds_session(mdsc, mds);
1657 mutex_unlock(&mdsc->mutex);
1661 // make sure flushsnap messages are sent in proper order.
1662 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
1663 __kick_flushing_caps(mdsc, session, ci, 0);
1665 __ceph_flush_snaps(ci, session);
1667 spin_unlock(&ci->i_ceph_lock);
1670 *psession = session;
1672 ceph_put_mds_session(session);
1673 /* we flushed them all; remove this inode from the queue */
1674 spin_lock(&mdsc->snap_flush_lock);
1675 if (!list_empty(&ci->i_snap_flush_item))
1677 list_del_init(&ci->i_snap_flush_item);
1678 spin_unlock(&mdsc->snap_flush_lock);
1685 * Mark caps dirty. If inode is newly dirty, return the dirty flags.
1686 * Caller is then responsible for calling __mark_inode_dirty with the
1687 * returned flags value.
1689 int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask,
1690 struct ceph_cap_flush **pcf)
1692 struct ceph_mds_client *mdsc =
1693 ceph_sb_to_client(ci->netfs.inode.i_sb)->mdsc;
1694 struct inode *inode = &ci->netfs.inode;
1695 int was = ci->i_dirty_caps;
1698 lockdep_assert_held(&ci->i_ceph_lock);
1700 if (!ci->i_auth_cap) {
1701 pr_warn("__mark_dirty_caps %p %llx mask %s, "
1702 "but no auth cap (session was closed?)\n",
1703 inode, ceph_ino(inode), ceph_cap_string(mask));
1707 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci->netfs.inode,
1708 ceph_cap_string(mask), ceph_cap_string(was),
1709 ceph_cap_string(was | mask));
1710 ci->i_dirty_caps |= mask;
1712 struct ceph_mds_session *session = ci->i_auth_cap->session;
1714 WARN_ON_ONCE(ci->i_prealloc_cap_flush);
1715 swap(ci->i_prealloc_cap_flush, *pcf);
1717 if (!ci->i_head_snapc) {
1718 WARN_ON_ONCE(!rwsem_is_locked(&mdsc->snap_rwsem));
1719 ci->i_head_snapc = ceph_get_snap_context(
1720 ci->i_snap_realm->cached_context);
1722 dout(" inode %p now dirty snapc %p auth cap %p\n",
1723 &ci->netfs.inode, ci->i_head_snapc, ci->i_auth_cap);
1724 BUG_ON(!list_empty(&ci->i_dirty_item));
1725 spin_lock(&mdsc->cap_dirty_lock);
1726 list_add(&ci->i_dirty_item, &session->s_cap_dirty);
1727 spin_unlock(&mdsc->cap_dirty_lock);
1728 if (ci->i_flushing_caps == 0) {
1730 dirty |= I_DIRTY_SYNC;
1733 WARN_ON_ONCE(!ci->i_prealloc_cap_flush);
1735 BUG_ON(list_empty(&ci->i_dirty_item));
1736 if (((was | ci->i_flushing_caps) & CEPH_CAP_FILE_BUFFER) &&
1737 (mask & CEPH_CAP_FILE_BUFFER))
1738 dirty |= I_DIRTY_DATASYNC;
1739 __cap_delay_requeue(mdsc, ci);
1743 struct ceph_cap_flush *ceph_alloc_cap_flush(void)
1745 struct ceph_cap_flush *cf;
1747 cf = kmem_cache_alloc(ceph_cap_flush_cachep, GFP_KERNEL);
1751 cf->is_capsnap = false;
1755 void ceph_free_cap_flush(struct ceph_cap_flush *cf)
1758 kmem_cache_free(ceph_cap_flush_cachep, cf);
1761 static u64 __get_oldest_flush_tid(struct ceph_mds_client *mdsc)
1763 if (!list_empty(&mdsc->cap_flush_list)) {
1764 struct ceph_cap_flush *cf =
1765 list_first_entry(&mdsc->cap_flush_list,
1766 struct ceph_cap_flush, g_list);
1773 * Remove cap_flush from the mdsc's or inode's flushing cap list.
1774 * Return true if caller needs to wake up flush waiters.
1776 static bool __detach_cap_flush_from_mdsc(struct ceph_mds_client *mdsc,
1777 struct ceph_cap_flush *cf)
1779 struct ceph_cap_flush *prev;
1780 bool wake = cf->wake;
1782 if (wake && cf->g_list.prev != &mdsc->cap_flush_list) {
1783 prev = list_prev_entry(cf, g_list);
1787 list_del_init(&cf->g_list);
1791 static bool __detach_cap_flush_from_ci(struct ceph_inode_info *ci,
1792 struct ceph_cap_flush *cf)
1794 struct ceph_cap_flush *prev;
1795 bool wake = cf->wake;
1797 if (wake && cf->i_list.prev != &ci->i_cap_flush_list) {
1798 prev = list_prev_entry(cf, i_list);
1802 list_del_init(&cf->i_list);
1807 * Add dirty inode to the flushing list. Assigned a seq number so we
1808 * can wait for caps to flush without starving.
1810 * Called under i_ceph_lock. Returns the flush tid.
1812 static u64 __mark_caps_flushing(struct inode *inode,
1813 struct ceph_mds_session *session, bool wake,
1814 u64 *oldest_flush_tid)
1816 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
1817 struct ceph_inode_info *ci = ceph_inode(inode);
1818 struct ceph_cap_flush *cf = NULL;
1821 lockdep_assert_held(&ci->i_ceph_lock);
1822 BUG_ON(ci->i_dirty_caps == 0);
1823 BUG_ON(list_empty(&ci->i_dirty_item));
1824 BUG_ON(!ci->i_prealloc_cap_flush);
1826 flushing = ci->i_dirty_caps;
1827 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1828 ceph_cap_string(flushing),
1829 ceph_cap_string(ci->i_flushing_caps),
1830 ceph_cap_string(ci->i_flushing_caps | flushing));
1831 ci->i_flushing_caps |= flushing;
1832 ci->i_dirty_caps = 0;
1833 dout(" inode %p now !dirty\n", inode);
1835 swap(cf, ci->i_prealloc_cap_flush);
1836 cf->caps = flushing;
1839 spin_lock(&mdsc->cap_dirty_lock);
1840 list_del_init(&ci->i_dirty_item);
1842 cf->tid = ++mdsc->last_cap_flush_tid;
1843 list_add_tail(&cf->g_list, &mdsc->cap_flush_list);
1844 *oldest_flush_tid = __get_oldest_flush_tid(mdsc);
1846 if (list_empty(&ci->i_flushing_item)) {
1847 list_add_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1848 mdsc->num_cap_flushing++;
1850 spin_unlock(&mdsc->cap_dirty_lock);
1852 list_add_tail(&cf->i_list, &ci->i_cap_flush_list);
1858 * try to invalidate mapping pages without blocking.
1860 static int try_nonblocking_invalidate(struct inode *inode)
1861 __releases(ci->i_ceph_lock)
1862 __acquires(ci->i_ceph_lock)
1864 struct ceph_inode_info *ci = ceph_inode(inode);
1865 u32 invalidating_gen = ci->i_rdcache_gen;
1867 spin_unlock(&ci->i_ceph_lock);
1868 ceph_fscache_invalidate(inode, false);
1869 invalidate_mapping_pages(&inode->i_data, 0, -1);
1870 spin_lock(&ci->i_ceph_lock);
1872 if (inode->i_data.nrpages == 0 &&
1873 invalidating_gen == ci->i_rdcache_gen) {
1875 dout("try_nonblocking_invalidate %p success\n", inode);
1876 /* save any racing async invalidate some trouble */
1877 ci->i_rdcache_revoking = ci->i_rdcache_gen - 1;
1880 dout("try_nonblocking_invalidate %p failed\n", inode);
1884 bool __ceph_should_report_size(struct ceph_inode_info *ci)
1886 loff_t size = i_size_read(&ci->netfs.inode);
1887 /* mds will adjust max size according to the reported size */
1888 if (ci->i_flushing_caps & CEPH_CAP_FILE_WR)
1890 if (size >= ci->i_max_size)
1892 /* half of previous max_size increment has been used */
1893 if (ci->i_max_size > ci->i_reported_size &&
1894 (size << 1) >= ci->i_max_size + ci->i_reported_size)
1900 * Swiss army knife function to examine currently used and wanted
1901 * versus held caps. Release, flush, ack revoked caps to mds as
1904 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1905 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1908 void ceph_check_caps(struct ceph_inode_info *ci, int flags)
1910 struct inode *inode = &ci->netfs.inode;
1911 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
1912 struct ceph_cap *cap;
1913 u64 flush_tid, oldest_flush_tid;
1914 int file_wanted, used, cap_used;
1915 int issued, implemented, want, retain, revoking, flushing = 0;
1916 int mds = -1; /* keep track of how far we've gone through i_caps list
1917 to avoid an infinite loop on retry */
1919 bool queue_invalidate = false;
1920 bool tried_invalidate = false;
1921 bool queue_writeback = false;
1922 struct ceph_mds_session *session = NULL;
1924 spin_lock(&ci->i_ceph_lock);
1925 if (ci->i_ceph_flags & CEPH_I_ASYNC_CREATE) {
1926 ci->i_ceph_flags |= CEPH_I_ASYNC_CHECK_CAPS;
1928 /* Don't send messages until we get async create reply */
1929 spin_unlock(&ci->i_ceph_lock);
1933 if (ci->i_ceph_flags & CEPH_I_FLUSH)
1934 flags |= CHECK_CAPS_FLUSH;
1936 /* Caps wanted by virtue of active open files. */
1937 file_wanted = __ceph_caps_file_wanted(ci);
1939 /* Caps which have active references against them */
1940 used = __ceph_caps_used(ci);
1943 * "issued" represents the current caps that the MDS wants us to have.
1944 * "implemented" is the set that we have been granted, and includes the
1945 * ones that have not yet been returned to the MDS (the "revoking" set,
1946 * usually because they have outstanding references).
1948 issued = __ceph_caps_issued(ci, &implemented);
1949 revoking = implemented & ~issued;
1953 /* The ones we currently want to retain (may be adjusted below) */
1954 retain = file_wanted | used | CEPH_CAP_PIN;
1955 if (!mdsc->stopping && inode->i_nlink > 0) {
1957 retain |= CEPH_CAP_ANY; /* be greedy */
1958 } else if (S_ISDIR(inode->i_mode) &&
1959 (issued & CEPH_CAP_FILE_SHARED) &&
1960 __ceph_dir_is_complete(ci)) {
1962 * If a directory is complete, we want to keep
1963 * the exclusive cap. So that MDS does not end up
1964 * revoking the shared cap on every create/unlink
1967 if (IS_RDONLY(inode)) {
1968 want = CEPH_CAP_ANY_SHARED;
1970 want |= CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL;
1975 retain |= CEPH_CAP_ANY_SHARED;
1977 * keep RD only if we didn't have the file open RW,
1978 * because then the mds would revoke it anyway to
1979 * journal max_size=0.
1981 if (ci->i_max_size == 0)
1982 retain |= CEPH_CAP_ANY_RD;
1986 dout("check_caps %llx.%llx file_want %s used %s dirty %s flushing %s"
1987 " issued %s revoking %s retain %s %s%s%s\n", ceph_vinop(inode),
1988 ceph_cap_string(file_wanted),
1989 ceph_cap_string(used), ceph_cap_string(ci->i_dirty_caps),
1990 ceph_cap_string(ci->i_flushing_caps),
1991 ceph_cap_string(issued), ceph_cap_string(revoking),
1992 ceph_cap_string(retain),
1993 (flags & CHECK_CAPS_AUTHONLY) ? " AUTHONLY" : "",
1994 (flags & CHECK_CAPS_FLUSH) ? " FLUSH" : "",
1995 (flags & CHECK_CAPS_NOINVAL) ? " NOINVAL" : "");
1998 * If we no longer need to hold onto old our caps, and we may
1999 * have cached pages, but don't want them, then try to invalidate.
2000 * If we fail, it's because pages are locked.... try again later.
2002 if ((!(flags & CHECK_CAPS_NOINVAL) || mdsc->stopping) &&
2003 S_ISREG(inode->i_mode) &&
2004 !(ci->i_wb_ref || ci->i_wrbuffer_ref) && /* no dirty pages... */
2005 inode->i_data.nrpages && /* have cached pages */
2006 (revoking & (CEPH_CAP_FILE_CACHE|
2007 CEPH_CAP_FILE_LAZYIO)) && /* or revoking cache */
2008 !tried_invalidate) {
2009 dout("check_caps trying to invalidate on %llx.%llx\n",
2011 if (try_nonblocking_invalidate(inode) < 0) {
2012 dout("check_caps queuing invalidate\n");
2013 queue_invalidate = true;
2014 ci->i_rdcache_revoking = ci->i_rdcache_gen;
2016 tried_invalidate = true;
2020 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
2022 struct cap_msg_args arg;
2024 cap = rb_entry(p, struct ceph_cap, ci_node);
2026 /* avoid looping forever */
2027 if (mds >= cap->mds ||
2028 ((flags & CHECK_CAPS_AUTHONLY) && cap != ci->i_auth_cap))
2032 * If we have an auth cap, we don't need to consider any
2033 * overlapping caps as used.
2036 if (ci->i_auth_cap && cap != ci->i_auth_cap)
2037 cap_used &= ~ci->i_auth_cap->issued;
2039 revoking = cap->implemented & ~cap->issued;
2040 dout(" mds%d cap %p used %s issued %s implemented %s revoking %s\n",
2041 cap->mds, cap, ceph_cap_string(cap_used),
2042 ceph_cap_string(cap->issued),
2043 ceph_cap_string(cap->implemented),
2044 ceph_cap_string(revoking));
2046 if (cap == ci->i_auth_cap &&
2047 (cap->issued & CEPH_CAP_FILE_WR)) {
2048 /* request larger max_size from MDS? */
2049 if (ci->i_wanted_max_size > ci->i_max_size &&
2050 ci->i_wanted_max_size > ci->i_requested_max_size) {
2051 dout("requesting new max_size\n");
2055 /* approaching file_max? */
2056 if (__ceph_should_report_size(ci)) {
2057 dout("i_size approaching max_size\n");
2061 /* flush anything dirty? */
2062 if (cap == ci->i_auth_cap) {
2063 if ((flags & CHECK_CAPS_FLUSH) && ci->i_dirty_caps) {
2064 dout("flushing dirty caps\n");
2067 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS) {
2068 dout("flushing snap caps\n");
2073 /* completed revocation? going down and there are no caps? */
2075 if ((revoking & cap_used) == 0) {
2076 dout("completed revocation of %s\n",
2077 ceph_cap_string(cap->implemented & ~cap->issued));
2082 * If the "i_wrbuffer_ref" was increased by mmap or generic
2083 * cache write just before the ceph_check_caps() is called,
2084 * the Fb capability revoking will fail this time. Then we
2085 * must wait for the BDI's delayed work to flush the dirty
2086 * pages and to release the "i_wrbuffer_ref", which will cost
2087 * at most 5 seconds. That means the MDS needs to wait at
2088 * most 5 seconds to finished the Fb capability's revocation.
2090 * Let's queue a writeback for it.
2092 if (S_ISREG(inode->i_mode) && ci->i_wrbuffer_ref &&
2093 (revoking & CEPH_CAP_FILE_BUFFER))
2094 queue_writeback = true;
2097 /* want more caps from mds? */
2098 if (want & ~cap->mds_wanted) {
2099 if (want & ~(cap->mds_wanted | cap->issued))
2101 if (!__cap_is_valid(cap))
2105 /* things we might delay */
2106 if ((cap->issued & ~retain) == 0)
2107 continue; /* nope, all good */
2110 ceph_put_mds_session(session);
2111 session = ceph_get_mds_session(cap->session);
2113 /* kick flushing and flush snaps before sending normal
2115 if (cap == ci->i_auth_cap &&
2117 (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS))) {
2118 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
2119 __kick_flushing_caps(mdsc, session, ci, 0);
2120 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
2121 __ceph_flush_snaps(ci, session);
2126 if (cap == ci->i_auth_cap && ci->i_dirty_caps) {
2127 flushing = ci->i_dirty_caps;
2128 flush_tid = __mark_caps_flushing(inode, session, false,
2130 if (flags & CHECK_CAPS_FLUSH &&
2131 list_empty(&session->s_cap_dirty))
2132 mflags |= CEPH_CLIENT_CAPS_SYNC;
2136 spin_lock(&mdsc->cap_dirty_lock);
2137 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2138 spin_unlock(&mdsc->cap_dirty_lock);
2141 mds = cap->mds; /* remember mds, so we don't repeat */
2143 __prep_cap(&arg, cap, CEPH_CAP_OP_UPDATE, mflags, cap_used,
2144 want, retain, flushing, flush_tid, oldest_flush_tid);
2146 spin_unlock(&ci->i_ceph_lock);
2147 __send_cap(&arg, ci);
2148 spin_lock(&ci->i_ceph_lock);
2150 goto retry; /* retake i_ceph_lock and restart our cap scan. */
2153 /* periodically re-calculate caps wanted by open files */
2154 if (__ceph_is_any_real_caps(ci) &&
2155 list_empty(&ci->i_cap_delay_list) &&
2156 (file_wanted & ~CEPH_CAP_PIN) &&
2157 !(used & (CEPH_CAP_FILE_RD | CEPH_CAP_ANY_FILE_WR))) {
2158 __cap_delay_requeue(mdsc, ci);
2161 spin_unlock(&ci->i_ceph_lock);
2163 ceph_put_mds_session(session);
2164 if (queue_writeback)
2165 ceph_queue_writeback(inode);
2166 if (queue_invalidate)
2167 ceph_queue_invalidate(inode);
2171 * Try to flush dirty caps back to the auth mds.
2173 static int try_flush_caps(struct inode *inode, u64 *ptid)
2175 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
2176 struct ceph_inode_info *ci = ceph_inode(inode);
2178 u64 flush_tid = 0, oldest_flush_tid = 0;
2180 spin_lock(&ci->i_ceph_lock);
2182 if (ci->i_dirty_caps && ci->i_auth_cap) {
2183 struct ceph_cap *cap = ci->i_auth_cap;
2184 struct cap_msg_args arg;
2185 struct ceph_mds_session *session = cap->session;
2187 if (session->s_state < CEPH_MDS_SESSION_OPEN) {
2188 spin_unlock(&ci->i_ceph_lock);
2192 if (ci->i_ceph_flags &
2193 (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS)) {
2194 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
2195 __kick_flushing_caps(mdsc, session, ci, 0);
2196 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
2197 __ceph_flush_snaps(ci, session);
2201 flushing = ci->i_dirty_caps;
2202 flush_tid = __mark_caps_flushing(inode, session, true,
2205 __prep_cap(&arg, cap, CEPH_CAP_OP_FLUSH, CEPH_CLIENT_CAPS_SYNC,
2206 __ceph_caps_used(ci), __ceph_caps_wanted(ci),
2207 (cap->issued | cap->implemented),
2208 flushing, flush_tid, oldest_flush_tid);
2209 spin_unlock(&ci->i_ceph_lock);
2211 __send_cap(&arg, ci);
2213 if (!list_empty(&ci->i_cap_flush_list)) {
2214 struct ceph_cap_flush *cf =
2215 list_last_entry(&ci->i_cap_flush_list,
2216 struct ceph_cap_flush, i_list);
2218 flush_tid = cf->tid;
2220 flushing = ci->i_flushing_caps;
2221 spin_unlock(&ci->i_ceph_lock);
2229 * Return true if we've flushed caps through the given flush_tid.
2231 static int caps_are_flushed(struct inode *inode, u64 flush_tid)
2233 struct ceph_inode_info *ci = ceph_inode(inode);
2236 spin_lock(&ci->i_ceph_lock);
2237 if (!list_empty(&ci->i_cap_flush_list)) {
2238 struct ceph_cap_flush * cf =
2239 list_first_entry(&ci->i_cap_flush_list,
2240 struct ceph_cap_flush, i_list);
2241 if (cf->tid <= flush_tid)
2244 spin_unlock(&ci->i_ceph_lock);
2249 * flush the mdlog and wait for any unsafe requests to complete.
2251 static int flush_mdlog_and_wait_inode_unsafe_requests(struct inode *inode)
2253 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
2254 struct ceph_inode_info *ci = ceph_inode(inode);
2255 struct ceph_mds_request *req1 = NULL, *req2 = NULL;
2258 spin_lock(&ci->i_unsafe_lock);
2259 if (S_ISDIR(inode->i_mode) && !list_empty(&ci->i_unsafe_dirops)) {
2260 req1 = list_last_entry(&ci->i_unsafe_dirops,
2261 struct ceph_mds_request,
2263 ceph_mdsc_get_request(req1);
2265 if (!list_empty(&ci->i_unsafe_iops)) {
2266 req2 = list_last_entry(&ci->i_unsafe_iops,
2267 struct ceph_mds_request,
2268 r_unsafe_target_item);
2269 ceph_mdsc_get_request(req2);
2271 spin_unlock(&ci->i_unsafe_lock);
2274 * Trigger to flush the journal logs in all the relevant MDSes
2275 * manually, or in the worst case we must wait at most 5 seconds
2276 * to wait the journal logs to be flushed by the MDSes periodically.
2279 struct ceph_mds_request *req;
2280 struct ceph_mds_session **sessions;
2281 struct ceph_mds_session *s;
2282 unsigned int max_sessions;
2285 mutex_lock(&mdsc->mutex);
2286 max_sessions = mdsc->max_sessions;
2288 sessions = kcalloc(max_sessions, sizeof(s), GFP_KERNEL);
2290 mutex_unlock(&mdsc->mutex);
2295 spin_lock(&ci->i_unsafe_lock);
2297 list_for_each_entry(req, &ci->i_unsafe_dirops,
2298 r_unsafe_dir_item) {
2302 if (!sessions[s->s_mds]) {
2303 s = ceph_get_mds_session(s);
2304 sessions[s->s_mds] = s;
2309 list_for_each_entry(req, &ci->i_unsafe_iops,
2310 r_unsafe_target_item) {
2314 if (!sessions[s->s_mds]) {
2315 s = ceph_get_mds_session(s);
2316 sessions[s->s_mds] = s;
2320 spin_unlock(&ci->i_unsafe_lock);
2323 spin_lock(&ci->i_ceph_lock);
2324 if (ci->i_auth_cap) {
2325 s = ci->i_auth_cap->session;
2326 if (!sessions[s->s_mds])
2327 sessions[s->s_mds] = ceph_get_mds_session(s);
2329 spin_unlock(&ci->i_ceph_lock);
2330 mutex_unlock(&mdsc->mutex);
2332 /* send flush mdlog request to MDSes */
2333 for (i = 0; i < max_sessions; i++) {
2336 send_flush_mdlog(s);
2337 ceph_put_mds_session(s);
2343 dout("%s %p wait on tid %llu %llu\n", __func__,
2344 inode, req1 ? req1->r_tid : 0ULL, req2 ? req2->r_tid : 0ULL);
2346 ret = !wait_for_completion_timeout(&req1->r_safe_completion,
2347 ceph_timeout_jiffies(req1->r_timeout));
2352 ret = !wait_for_completion_timeout(&req2->r_safe_completion,
2353 ceph_timeout_jiffies(req2->r_timeout));
2360 ceph_mdsc_put_request(req1);
2362 ceph_mdsc_put_request(req2);
2366 int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync)
2368 struct inode *inode = file->f_mapping->host;
2369 struct ceph_inode_info *ci = ceph_inode(inode);
2374 dout("fsync %p%s\n", inode, datasync ? " datasync" : "");
2376 ret = file_write_and_wait_range(file, start, end);
2380 ret = ceph_wait_on_async_create(inode);
2384 dirty = try_flush_caps(inode, &flush_tid);
2385 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty));
2387 err = flush_mdlog_and_wait_inode_unsafe_requests(inode);
2390 * only wait on non-file metadata writeback (the mds
2391 * can recover size and mtime, so we don't need to
2394 if (!err && (dirty & ~CEPH_CAP_ANY_FILE_WR)) {
2395 err = wait_event_interruptible(ci->i_cap_wq,
2396 caps_are_flushed(inode, flush_tid));
2402 err = file_check_and_advance_wb_err(file);
2406 dout("fsync %p%s result=%d\n", inode, datasync ? " datasync" : "", ret);
2411 * Flush any dirty caps back to the mds. If we aren't asked to wait,
2412 * queue inode for flush but don't do so immediately, because we can
2413 * get by with fewer MDS messages if we wait for data writeback to
2416 int ceph_write_inode(struct inode *inode, struct writeback_control *wbc)
2418 struct ceph_inode_info *ci = ceph_inode(inode);
2422 int wait = (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync);
2424 dout("write_inode %p wait=%d\n", inode, wait);
2425 ceph_fscache_unpin_writeback(inode, wbc);
2427 err = ceph_wait_on_async_create(inode);
2430 dirty = try_flush_caps(inode, &flush_tid);
2432 err = wait_event_interruptible(ci->i_cap_wq,
2433 caps_are_flushed(inode, flush_tid));
2435 struct ceph_mds_client *mdsc =
2436 ceph_sb_to_client(inode->i_sb)->mdsc;
2438 spin_lock(&ci->i_ceph_lock);
2439 if (__ceph_caps_dirty(ci))
2440 __cap_delay_requeue_front(mdsc, ci);
2441 spin_unlock(&ci->i_ceph_lock);
2446 static void __kick_flushing_caps(struct ceph_mds_client *mdsc,
2447 struct ceph_mds_session *session,
2448 struct ceph_inode_info *ci,
2449 u64 oldest_flush_tid)
2450 __releases(ci->i_ceph_lock)
2451 __acquires(ci->i_ceph_lock)
2453 struct inode *inode = &ci->netfs.inode;
2454 struct ceph_cap *cap;
2455 struct ceph_cap_flush *cf;
2458 u64 last_snap_flush = 0;
2460 /* Don't do anything until create reply comes in */
2461 if (ci->i_ceph_flags & CEPH_I_ASYNC_CREATE)
2464 ci->i_ceph_flags &= ~CEPH_I_KICK_FLUSH;
2466 list_for_each_entry_reverse(cf, &ci->i_cap_flush_list, i_list) {
2467 if (cf->is_capsnap) {
2468 last_snap_flush = cf->tid;
2473 list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
2474 if (cf->tid < first_tid)
2477 cap = ci->i_auth_cap;
2478 if (!(cap && cap->session == session)) {
2479 pr_err("%p auth cap %p not mds%d ???\n",
2480 inode, cap, session->s_mds);
2484 first_tid = cf->tid + 1;
2486 if (!cf->is_capsnap) {
2487 struct cap_msg_args arg;
2489 dout("kick_flushing_caps %p cap %p tid %llu %s\n",
2490 inode, cap, cf->tid, ceph_cap_string(cf->caps));
2491 __prep_cap(&arg, cap, CEPH_CAP_OP_FLUSH,
2492 (cf->tid < last_snap_flush ?
2493 CEPH_CLIENT_CAPS_PENDING_CAPSNAP : 0),
2494 __ceph_caps_used(ci),
2495 __ceph_caps_wanted(ci),
2496 (cap->issued | cap->implemented),
2497 cf->caps, cf->tid, oldest_flush_tid);
2498 spin_unlock(&ci->i_ceph_lock);
2499 __send_cap(&arg, ci);
2501 struct ceph_cap_snap *capsnap =
2502 container_of(cf, struct ceph_cap_snap,
2504 dout("kick_flushing_caps %p capsnap %p tid %llu %s\n",
2505 inode, capsnap, cf->tid,
2506 ceph_cap_string(capsnap->dirty));
2508 refcount_inc(&capsnap->nref);
2509 spin_unlock(&ci->i_ceph_lock);
2511 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
2514 pr_err("kick_flushing_caps: error sending "
2515 "cap flushsnap, ino (%llx.%llx) "
2516 "tid %llu follows %llu\n",
2517 ceph_vinop(inode), cf->tid,
2521 ceph_put_cap_snap(capsnap);
2524 spin_lock(&ci->i_ceph_lock);
2528 void ceph_early_kick_flushing_caps(struct ceph_mds_client *mdsc,
2529 struct ceph_mds_session *session)
2531 struct ceph_inode_info *ci;
2532 struct ceph_cap *cap;
2533 u64 oldest_flush_tid;
2535 dout("early_kick_flushing_caps mds%d\n", session->s_mds);
2537 spin_lock(&mdsc->cap_dirty_lock);
2538 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2539 spin_unlock(&mdsc->cap_dirty_lock);
2541 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
2542 spin_lock(&ci->i_ceph_lock);
2543 cap = ci->i_auth_cap;
2544 if (!(cap && cap->session == session)) {
2545 pr_err("%p auth cap %p not mds%d ???\n",
2546 &ci->netfs.inode, cap, session->s_mds);
2547 spin_unlock(&ci->i_ceph_lock);
2553 * if flushing caps were revoked, we re-send the cap flush
2554 * in client reconnect stage. This guarantees MDS * processes
2555 * the cap flush message before issuing the flushing caps to
2558 if ((cap->issued & ci->i_flushing_caps) !=
2559 ci->i_flushing_caps) {
2560 /* encode_caps_cb() also will reset these sequence
2561 * numbers. make sure sequence numbers in cap flush
2562 * message match later reconnect message */
2566 __kick_flushing_caps(mdsc, session, ci,
2569 ci->i_ceph_flags |= CEPH_I_KICK_FLUSH;
2572 spin_unlock(&ci->i_ceph_lock);
2576 void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
2577 struct ceph_mds_session *session)
2579 struct ceph_inode_info *ci;
2580 struct ceph_cap *cap;
2581 u64 oldest_flush_tid;
2583 lockdep_assert_held(&session->s_mutex);
2585 dout("kick_flushing_caps mds%d\n", session->s_mds);
2587 spin_lock(&mdsc->cap_dirty_lock);
2588 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2589 spin_unlock(&mdsc->cap_dirty_lock);
2591 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
2592 spin_lock(&ci->i_ceph_lock);
2593 cap = ci->i_auth_cap;
2594 if (!(cap && cap->session == session)) {
2595 pr_err("%p auth cap %p not mds%d ???\n",
2596 &ci->netfs.inode, cap, session->s_mds);
2597 spin_unlock(&ci->i_ceph_lock);
2600 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH) {
2601 __kick_flushing_caps(mdsc, session, ci,
2604 spin_unlock(&ci->i_ceph_lock);
2608 void ceph_kick_flushing_inode_caps(struct ceph_mds_session *session,
2609 struct ceph_inode_info *ci)
2611 struct ceph_mds_client *mdsc = session->s_mdsc;
2612 struct ceph_cap *cap = ci->i_auth_cap;
2614 lockdep_assert_held(&ci->i_ceph_lock);
2616 dout("%s %p flushing %s\n", __func__, &ci->netfs.inode,
2617 ceph_cap_string(ci->i_flushing_caps));
2619 if (!list_empty(&ci->i_cap_flush_list)) {
2620 u64 oldest_flush_tid;
2621 spin_lock(&mdsc->cap_dirty_lock);
2622 list_move_tail(&ci->i_flushing_item,
2623 &cap->session->s_cap_flushing);
2624 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2625 spin_unlock(&mdsc->cap_dirty_lock);
2627 __kick_flushing_caps(mdsc, session, ci, oldest_flush_tid);
2633 * Take references to capabilities we hold, so that we don't release
2634 * them to the MDS prematurely.
2636 void ceph_take_cap_refs(struct ceph_inode_info *ci, int got,
2637 bool snap_rwsem_locked)
2639 lockdep_assert_held(&ci->i_ceph_lock);
2641 if (got & CEPH_CAP_PIN)
2643 if (got & CEPH_CAP_FILE_RD)
2645 if (got & CEPH_CAP_FILE_CACHE)
2646 ci->i_rdcache_ref++;
2647 if (got & CEPH_CAP_FILE_EXCL)
2649 if (got & CEPH_CAP_FILE_WR) {
2650 if (ci->i_wr_ref == 0 && !ci->i_head_snapc) {
2651 BUG_ON(!snap_rwsem_locked);
2652 ci->i_head_snapc = ceph_get_snap_context(
2653 ci->i_snap_realm->cached_context);
2657 if (got & CEPH_CAP_FILE_BUFFER) {
2658 if (ci->i_wb_ref == 0)
2659 ihold(&ci->netfs.inode);
2661 dout("%s %p wb %d -> %d (?)\n", __func__,
2662 &ci->netfs.inode, ci->i_wb_ref-1, ci->i_wb_ref);
2667 * Try to grab cap references. Specify those refs we @want, and the
2668 * minimal set we @need. Also include the larger offset we are writing
2669 * to (when applicable), and check against max_size here as well.
2670 * Note that caller is responsible for ensuring max_size increases are
2671 * requested from the MDS.
2673 * Returns 0 if caps were not able to be acquired (yet), 1 if succeed,
2674 * or a negative error code. There are 3 speical error codes:
2675 * -EAGAIN: need to sleep but non-blocking is specified
2676 * -EFBIG: ask caller to call check_max_size() and try again.
2677 * -EUCLEAN: ask caller to call ceph_renew_caps() and try again.
2680 /* first 8 bits are reserved for CEPH_FILE_MODE_FOO */
2681 NON_BLOCKING = (1 << 8),
2682 CHECK_FILELOCK = (1 << 9),
2685 static int try_get_cap_refs(struct inode *inode, int need, int want,
2686 loff_t endoff, int flags, int *got)
2688 struct ceph_inode_info *ci = ceph_inode(inode);
2689 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
2691 int have, implemented;
2692 bool snap_rwsem_locked = false;
2694 dout("get_cap_refs %p need %s want %s\n", inode,
2695 ceph_cap_string(need), ceph_cap_string(want));
2698 spin_lock(&ci->i_ceph_lock);
2700 if ((flags & CHECK_FILELOCK) &&
2701 (ci->i_ceph_flags & CEPH_I_ERROR_FILELOCK)) {
2702 dout("try_get_cap_refs %p error filelock\n", inode);
2707 /* finish pending truncate */
2708 while (ci->i_truncate_pending) {
2709 spin_unlock(&ci->i_ceph_lock);
2710 if (snap_rwsem_locked) {
2711 up_read(&mdsc->snap_rwsem);
2712 snap_rwsem_locked = false;
2714 __ceph_do_pending_vmtruncate(inode);
2715 spin_lock(&ci->i_ceph_lock);
2718 have = __ceph_caps_issued(ci, &implemented);
2720 if (have & need & CEPH_CAP_FILE_WR) {
2721 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2722 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2723 inode, endoff, ci->i_max_size);
2724 if (endoff > ci->i_requested_max_size)
2725 ret = ci->i_auth_cap ? -EFBIG : -EUCLEAN;
2729 * If a sync write is in progress, we must wait, so that we
2730 * can get a final snapshot value for size+mtime.
2732 if (__ceph_have_pending_cap_snap(ci)) {
2733 dout("get_cap_refs %p cap_snap_pending\n", inode);
2738 if ((have & need) == need) {
2740 * Look at (implemented & ~have & not) so that we keep waiting
2741 * on transition from wanted -> needed caps. This is needed
2742 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2743 * going before a prior buffered writeback happens.
2745 * For RDCACHE|RD -> RD, there is not need to wait and we can
2746 * just exclude the revoking caps and force to sync read.
2748 int not = want & ~(have & need);
2749 int revoking = implemented & ~have;
2750 int exclude = revoking & not;
2751 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2752 inode, ceph_cap_string(have), ceph_cap_string(not),
2753 ceph_cap_string(revoking));
2754 if (!exclude || !(exclude & CEPH_CAP_FILE_BUFFER)) {
2755 if (!snap_rwsem_locked &&
2756 !ci->i_head_snapc &&
2757 (need & CEPH_CAP_FILE_WR)) {
2758 if (!down_read_trylock(&mdsc->snap_rwsem)) {
2760 * we can not call down_read() when
2761 * task isn't in TASK_RUNNING state
2763 if (flags & NON_BLOCKING) {
2768 spin_unlock(&ci->i_ceph_lock);
2769 down_read(&mdsc->snap_rwsem);
2770 snap_rwsem_locked = true;
2773 snap_rwsem_locked = true;
2775 if ((have & want) == want)
2776 *got = need | (want & ~exclude);
2779 ceph_take_cap_refs(ci, *got, true);
2783 int session_readonly = false;
2785 if (ci->i_auth_cap &&
2786 (need & (CEPH_CAP_FILE_WR | CEPH_CAP_FILE_EXCL))) {
2787 struct ceph_mds_session *s = ci->i_auth_cap->session;
2788 spin_lock(&s->s_cap_lock);
2789 session_readonly = s->s_readonly;
2790 spin_unlock(&s->s_cap_lock);
2792 if (session_readonly) {
2793 dout("get_cap_refs %p need %s but mds%d readonly\n",
2794 inode, ceph_cap_string(need), ci->i_auth_cap->mds);
2799 if (ceph_inode_is_shutdown(inode)) {
2800 dout("get_cap_refs %p inode is shutdown\n", inode);
2804 mds_wanted = __ceph_caps_mds_wanted(ci, false);
2805 if (need & ~mds_wanted) {
2806 dout("get_cap_refs %p need %s > mds_wanted %s\n",
2807 inode, ceph_cap_string(need),
2808 ceph_cap_string(mds_wanted));
2813 dout("get_cap_refs %p have %s need %s\n", inode,
2814 ceph_cap_string(have), ceph_cap_string(need));
2818 __ceph_touch_fmode(ci, mdsc, flags);
2820 spin_unlock(&ci->i_ceph_lock);
2821 if (snap_rwsem_locked)
2822 up_read(&mdsc->snap_rwsem);
2825 ceph_update_cap_mis(&mdsc->metric);
2827 ceph_update_cap_hit(&mdsc->metric);
2829 dout("get_cap_refs %p ret %d got %s\n", inode,
2830 ret, ceph_cap_string(*got));
2835 * Check the offset we are writing up to against our current
2836 * max_size. If necessary, tell the MDS we want to write to
2839 static void check_max_size(struct inode *inode, loff_t endoff)
2841 struct ceph_inode_info *ci = ceph_inode(inode);
2844 /* do we need to explicitly request a larger max_size? */
2845 spin_lock(&ci->i_ceph_lock);
2846 if (endoff >= ci->i_max_size && endoff > ci->i_wanted_max_size) {
2847 dout("write %p at large endoff %llu, req max_size\n",
2849 ci->i_wanted_max_size = endoff;
2851 /* duplicate ceph_check_caps()'s logic */
2852 if (ci->i_auth_cap &&
2853 (ci->i_auth_cap->issued & CEPH_CAP_FILE_WR) &&
2854 ci->i_wanted_max_size > ci->i_max_size &&
2855 ci->i_wanted_max_size > ci->i_requested_max_size)
2857 spin_unlock(&ci->i_ceph_lock);
2859 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY);
2862 static inline int get_used_fmode(int caps)
2865 if (caps & CEPH_CAP_FILE_RD)
2866 fmode |= CEPH_FILE_MODE_RD;
2867 if (caps & CEPH_CAP_FILE_WR)
2868 fmode |= CEPH_FILE_MODE_WR;
2872 int ceph_try_get_caps(struct inode *inode, int need, int want,
2873 bool nonblock, int *got)
2877 BUG_ON(need & ~CEPH_CAP_FILE_RD);
2878 BUG_ON(want & ~(CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO |
2879 CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL |
2880 CEPH_CAP_ANY_DIR_OPS));
2882 ret = ceph_pool_perm_check(inode, need);
2887 flags = get_used_fmode(need | want);
2889 flags |= NON_BLOCKING;
2891 ret = try_get_cap_refs(inode, need, want, 0, flags, got);
2892 /* three special error codes */
2893 if (ret == -EAGAIN || ret == -EFBIG || ret == -EUCLEAN)
2899 * Wait for caps, and take cap references. If we can't get a WR cap
2900 * due to a small max_size, make sure we check_max_size (and possibly
2901 * ask the mds) so we don't get hung up indefinitely.
2903 int ceph_get_caps(struct file *filp, int need, int want, loff_t endoff, int *got)
2905 struct ceph_file_info *fi = filp->private_data;
2906 struct inode *inode = file_inode(filp);
2907 struct ceph_inode_info *ci = ceph_inode(inode);
2908 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
2909 int ret, _got, flags;
2911 ret = ceph_pool_perm_check(inode, need);
2915 if ((fi->fmode & CEPH_FILE_MODE_WR) &&
2916 fi->filp_gen != READ_ONCE(fsc->filp_gen))
2919 flags = get_used_fmode(need | want);
2922 flags &= CEPH_FILE_MODE_MASK;
2923 if (vfs_inode_has_locks(inode))
2924 flags |= CHECK_FILELOCK;
2926 ret = try_get_cap_refs(inode, need, want, endoff,
2928 WARN_ON_ONCE(ret == -EAGAIN);
2930 struct ceph_mds_client *mdsc = fsc->mdsc;
2932 DEFINE_WAIT_FUNC(wait, woken_wake_function);
2934 cw.ino = ceph_ino(inode);
2935 cw.tgid = current->tgid;
2939 spin_lock(&mdsc->caps_list_lock);
2940 list_add(&cw.list, &mdsc->cap_wait_list);
2941 spin_unlock(&mdsc->caps_list_lock);
2943 /* make sure used fmode not timeout */
2944 ceph_get_fmode(ci, flags, FMODE_WAIT_BIAS);
2945 add_wait_queue(&ci->i_cap_wq, &wait);
2947 flags |= NON_BLOCKING;
2948 while (!(ret = try_get_cap_refs(inode, need, want,
2949 endoff, flags, &_got))) {
2950 if (signal_pending(current)) {
2954 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
2957 remove_wait_queue(&ci->i_cap_wq, &wait);
2958 ceph_put_fmode(ci, flags, FMODE_WAIT_BIAS);
2960 spin_lock(&mdsc->caps_list_lock);
2962 spin_unlock(&mdsc->caps_list_lock);
2968 if ((fi->fmode & CEPH_FILE_MODE_WR) &&
2969 fi->filp_gen != READ_ONCE(fsc->filp_gen)) {
2970 if (ret >= 0 && _got)
2971 ceph_put_cap_refs(ci, _got);
2976 if (ret == -EFBIG || ret == -EUCLEAN) {
2977 int ret2 = ceph_wait_on_async_create(inode);
2981 if (ret == -EFBIG) {
2982 check_max_size(inode, endoff);
2985 if (ret == -EUCLEAN) {
2986 /* session was killed, try renew caps */
2987 ret = ceph_renew_caps(inode, flags);
2994 if (S_ISREG(ci->netfs.inode.i_mode) &&
2995 ceph_has_inline_data(ci) &&
2996 (_got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
2997 i_size_read(inode) > 0) {
2999 find_get_page(inode->i_mapping, 0);
3001 bool uptodate = PageUptodate(page);
3008 * drop cap refs first because getattr while
3009 * holding * caps refs can cause deadlock.
3011 ceph_put_cap_refs(ci, _got);
3015 * getattr request will bring inline data into
3018 ret = __ceph_do_getattr(inode, NULL,
3019 CEPH_STAT_CAP_INLINE_DATA,
3032 * Take cap refs. Caller must already know we hold at least one ref
3033 * on the caps in question or we don't know this is safe.
3035 void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
3037 spin_lock(&ci->i_ceph_lock);
3038 ceph_take_cap_refs(ci, caps, false);
3039 spin_unlock(&ci->i_ceph_lock);
3044 * drop cap_snap that is not associated with any snapshot.
3045 * we don't need to send FLUSHSNAP message for it.
3047 static int ceph_try_drop_cap_snap(struct ceph_inode_info *ci,
3048 struct ceph_cap_snap *capsnap)
3050 if (!capsnap->need_flush &&
3051 !capsnap->writing && !capsnap->dirty_pages) {
3052 dout("dropping cap_snap %p follows %llu\n",
3053 capsnap, capsnap->follows);
3054 BUG_ON(capsnap->cap_flush.tid > 0);
3055 ceph_put_snap_context(capsnap->context);
3056 if (!list_is_last(&capsnap->ci_item, &ci->i_cap_snaps))
3057 ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
3059 list_del(&capsnap->ci_item);
3060 ceph_put_cap_snap(capsnap);
3066 enum put_cap_refs_mode {
3067 PUT_CAP_REFS_SYNC = 0,
3068 PUT_CAP_REFS_NO_CHECK,
3075 * If we released the last ref on any given cap, call ceph_check_caps
3076 * to release (or schedule a release).
3078 * If we are releasing a WR cap (from a sync write), finalize any affected
3079 * cap_snap, and wake up any waiters.
3081 static void __ceph_put_cap_refs(struct ceph_inode_info *ci, int had,
3082 enum put_cap_refs_mode mode)
3084 struct inode *inode = &ci->netfs.inode;
3085 int last = 0, put = 0, flushsnaps = 0, wake = 0;
3086 bool check_flushsnaps = false;
3088 spin_lock(&ci->i_ceph_lock);
3089 if (had & CEPH_CAP_PIN)
3091 if (had & CEPH_CAP_FILE_RD)
3092 if (--ci->i_rd_ref == 0)
3094 if (had & CEPH_CAP_FILE_CACHE)
3095 if (--ci->i_rdcache_ref == 0)
3097 if (had & CEPH_CAP_FILE_EXCL)
3098 if (--ci->i_fx_ref == 0)
3100 if (had & CEPH_CAP_FILE_BUFFER) {
3101 if (--ci->i_wb_ref == 0) {
3103 /* put the ref held by ceph_take_cap_refs() */
3105 check_flushsnaps = true;
3107 dout("put_cap_refs %p wb %d -> %d (?)\n",
3108 inode, ci->i_wb_ref+1, ci->i_wb_ref);
3110 if (had & CEPH_CAP_FILE_WR) {
3111 if (--ci->i_wr_ref == 0) {
3113 check_flushsnaps = true;
3114 if (ci->i_wrbuffer_ref_head == 0 &&
3115 ci->i_dirty_caps == 0 &&
3116 ci->i_flushing_caps == 0) {
3117 BUG_ON(!ci->i_head_snapc);
3118 ceph_put_snap_context(ci->i_head_snapc);
3119 ci->i_head_snapc = NULL;
3121 /* see comment in __ceph_remove_cap() */
3122 if (!__ceph_is_any_real_caps(ci) && ci->i_snap_realm)
3123 ceph_change_snap_realm(inode, NULL);
3126 if (check_flushsnaps && __ceph_have_pending_cap_snap(ci)) {
3127 struct ceph_cap_snap *capsnap =
3128 list_last_entry(&ci->i_cap_snaps,
3129 struct ceph_cap_snap,
3132 capsnap->writing = 0;
3133 if (ceph_try_drop_cap_snap(ci, capsnap))
3134 /* put the ref held by ceph_queue_cap_snap() */
3136 else if (__ceph_finish_cap_snap(ci, capsnap))
3140 spin_unlock(&ci->i_ceph_lock);
3142 dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
3143 last ? " last" : "", put ? " put" : "");
3146 case PUT_CAP_REFS_SYNC:
3148 ceph_check_caps(ci, 0);
3149 else if (flushsnaps)
3150 ceph_flush_snaps(ci, NULL);
3152 case PUT_CAP_REFS_ASYNC:
3154 ceph_queue_check_caps(inode);
3155 else if (flushsnaps)
3156 ceph_queue_flush_snaps(inode);
3162 wake_up_all(&ci->i_cap_wq);
3167 void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
3169 __ceph_put_cap_refs(ci, had, PUT_CAP_REFS_SYNC);
3172 void ceph_put_cap_refs_async(struct ceph_inode_info *ci, int had)
3174 __ceph_put_cap_refs(ci, had, PUT_CAP_REFS_ASYNC);
3177 void ceph_put_cap_refs_no_check_caps(struct ceph_inode_info *ci, int had)
3179 __ceph_put_cap_refs(ci, had, PUT_CAP_REFS_NO_CHECK);
3183 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
3184 * context. Adjust per-snap dirty page accounting as appropriate.
3185 * Once all dirty data for a cap_snap is flushed, flush snapped file
3186 * metadata back to the MDS. If we dropped the last ref, call
3189 void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
3190 struct ceph_snap_context *snapc)
3192 struct inode *inode = &ci->netfs.inode;
3193 struct ceph_cap_snap *capsnap = NULL, *iter;
3196 bool flush_snaps = false;
3197 bool complete_capsnap = false;
3199 spin_lock(&ci->i_ceph_lock);
3200 ci->i_wrbuffer_ref -= nr;
3201 if (ci->i_wrbuffer_ref == 0) {
3206 if (ci->i_head_snapc == snapc) {
3207 ci->i_wrbuffer_ref_head -= nr;
3208 if (ci->i_wrbuffer_ref_head == 0 &&
3209 ci->i_wr_ref == 0 &&
3210 ci->i_dirty_caps == 0 &&
3211 ci->i_flushing_caps == 0) {
3212 BUG_ON(!ci->i_head_snapc);
3213 ceph_put_snap_context(ci->i_head_snapc);
3214 ci->i_head_snapc = NULL;
3216 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
3218 ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
3219 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
3220 last ? " LAST" : "");
3222 list_for_each_entry(iter, &ci->i_cap_snaps, ci_item) {
3223 if (iter->context == snapc) {
3231 * The capsnap should already be removed when removing
3232 * auth cap in the case of a forced unmount.
3234 WARN_ON_ONCE(ci->i_auth_cap);
3238 capsnap->dirty_pages -= nr;
3239 if (capsnap->dirty_pages == 0) {
3240 complete_capsnap = true;
3241 if (!capsnap->writing) {
3242 if (ceph_try_drop_cap_snap(ci, capsnap)) {
3245 ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
3250 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
3251 " snap %lld %d/%d -> %d/%d %s%s\n",
3252 inode, capsnap, capsnap->context->seq,
3253 ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
3254 ci->i_wrbuffer_ref, capsnap->dirty_pages,
3255 last ? " (wrbuffer last)" : "",
3256 complete_capsnap ? " (complete capsnap)" : "");
3260 spin_unlock(&ci->i_ceph_lock);
3263 ceph_check_caps(ci, 0);
3264 } else if (flush_snaps) {
3265 ceph_flush_snaps(ci, NULL);
3267 if (complete_capsnap)
3268 wake_up_all(&ci->i_cap_wq);
3275 * Invalidate unlinked inode's aliases, so we can drop the inode ASAP.
3277 static void invalidate_aliases(struct inode *inode)
3279 struct dentry *dn, *prev = NULL;
3281 dout("invalidate_aliases inode %p\n", inode);
3282 d_prune_aliases(inode);
3284 * For non-directory inode, d_find_alias() only returns
3285 * hashed dentry. After calling d_invalidate(), the
3286 * dentry becomes unhashed.
3288 * For directory inode, d_find_alias() can return
3289 * unhashed dentry. But directory inode should have
3290 * one alias at most.
3292 while ((dn = d_find_alias(inode))) {
3306 struct cap_extra_info {
3307 struct ceph_string *pool_ns;
3317 /* currently issued */
3319 struct timespec64 btime;
3323 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
3324 * actually be a revocation if it specifies a smaller cap set.)
3326 * caller holds s_mutex and i_ceph_lock, we drop both.
3328 static void handle_cap_grant(struct inode *inode,
3329 struct ceph_mds_session *session,
3330 struct ceph_cap *cap,
3331 struct ceph_mds_caps *grant,
3332 struct ceph_buffer *xattr_buf,
3333 struct cap_extra_info *extra_info)
3334 __releases(ci->i_ceph_lock)
3335 __releases(session->s_mdsc->snap_rwsem)
3337 struct ceph_inode_info *ci = ceph_inode(inode);
3338 int seq = le32_to_cpu(grant->seq);
3339 int newcaps = le32_to_cpu(grant->caps);
3340 int used, wanted, dirty;
3341 u64 size = le64_to_cpu(grant->size);
3342 u64 max_size = le64_to_cpu(grant->max_size);
3343 unsigned char check_caps = 0;
3344 bool was_stale = cap->cap_gen < atomic_read(&session->s_cap_gen);
3346 bool writeback = false;
3347 bool queue_trunc = false;
3348 bool queue_invalidate = false;
3349 bool deleted_inode = false;
3350 bool fill_inline = false;
3352 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
3353 inode, cap, session->s_mds, seq, ceph_cap_string(newcaps));
3354 dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
3355 i_size_read(inode));
3359 * If CACHE is being revoked, and we have no dirty buffers,
3360 * try to invalidate (once). (If there are dirty buffers, we
3361 * will invalidate _after_ writeback.)
3363 if (S_ISREG(inode->i_mode) && /* don't invalidate readdir cache */
3364 ((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
3365 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
3366 !(ci->i_wrbuffer_ref || ci->i_wb_ref)) {
3367 if (try_nonblocking_invalidate(inode)) {
3368 /* there were locked pages.. invalidate later
3369 in a separate thread. */
3370 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
3371 queue_invalidate = true;
3372 ci->i_rdcache_revoking = ci->i_rdcache_gen;
3378 cap->issued = cap->implemented = CEPH_CAP_PIN;
3381 * auth mds of the inode changed. we received the cap export message,
3382 * but still haven't received the cap import message. handle_cap_export
3383 * updated the new auth MDS' cap.
3385 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing a message
3386 * that was sent before the cap import message. So don't remove caps.
3388 if (ceph_seq_cmp(seq, cap->seq) <= 0) {
3389 WARN_ON(cap != ci->i_auth_cap);
3390 WARN_ON(cap->cap_id != le64_to_cpu(grant->cap_id));
3392 newcaps |= cap->issued;
3395 /* side effects now are allowed */
3396 cap->cap_gen = atomic_read(&session->s_cap_gen);
3399 __check_cap_issue(ci, cap, newcaps);
3401 inode_set_max_iversion_raw(inode, extra_info->change_attr);
3403 if ((newcaps & CEPH_CAP_AUTH_SHARED) &&
3404 (extra_info->issued & CEPH_CAP_AUTH_EXCL) == 0) {
3405 umode_t mode = le32_to_cpu(grant->mode);
3407 if (inode_wrong_type(inode, mode))
3408 pr_warn_once("inode type changed! (ino %llx.%llx is 0%o, mds says 0%o)\n",
3409 ceph_vinop(inode), inode->i_mode, mode);
3411 inode->i_mode = mode;
3412 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(grant->uid));
3413 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(grant->gid));
3414 ci->i_btime = extra_info->btime;
3415 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
3416 from_kuid(&init_user_ns, inode->i_uid),
3417 from_kgid(&init_user_ns, inode->i_gid));
3420 if ((newcaps & CEPH_CAP_LINK_SHARED) &&
3421 (extra_info->issued & CEPH_CAP_LINK_EXCL) == 0) {
3422 set_nlink(inode, le32_to_cpu(grant->nlink));
3423 if (inode->i_nlink == 0)
3424 deleted_inode = true;
3427 if ((extra_info->issued & CEPH_CAP_XATTR_EXCL) == 0 &&
3429 int len = le32_to_cpu(grant->xattr_len);
3430 u64 version = le64_to_cpu(grant->xattr_version);
3432 if (version > ci->i_xattrs.version) {
3433 dout(" got new xattrs v%llu on %p len %d\n",
3434 version, inode, len);
3435 if (ci->i_xattrs.blob)
3436 ceph_buffer_put(ci->i_xattrs.blob);
3437 ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
3438 ci->i_xattrs.version = version;
3439 ceph_forget_all_cached_acls(inode);
3440 ceph_security_invalidate_secctx(inode);
3444 if (newcaps & CEPH_CAP_ANY_RD) {
3445 struct timespec64 mtime, atime, ctime;
3446 /* ctime/mtime/atime? */
3447 ceph_decode_timespec64(&mtime, &grant->mtime);
3448 ceph_decode_timespec64(&atime, &grant->atime);
3449 ceph_decode_timespec64(&ctime, &grant->ctime);
3450 ceph_fill_file_time(inode, extra_info->issued,
3451 le32_to_cpu(grant->time_warp_seq),
3452 &ctime, &mtime, &atime);
3455 if ((newcaps & CEPH_CAP_FILE_SHARED) && extra_info->dirstat_valid) {
3456 ci->i_files = extra_info->nfiles;
3457 ci->i_subdirs = extra_info->nsubdirs;
3460 if (newcaps & (CEPH_CAP_ANY_FILE_RD | CEPH_CAP_ANY_FILE_WR)) {
3461 /* file layout may have changed */
3462 s64 old_pool = ci->i_layout.pool_id;
3463 struct ceph_string *old_ns;
3465 ceph_file_layout_from_legacy(&ci->i_layout, &grant->layout);
3466 old_ns = rcu_dereference_protected(ci->i_layout.pool_ns,
3467 lockdep_is_held(&ci->i_ceph_lock));
3468 rcu_assign_pointer(ci->i_layout.pool_ns, extra_info->pool_ns);
3470 if (ci->i_layout.pool_id != old_pool ||
3471 extra_info->pool_ns != old_ns)
3472 ci->i_ceph_flags &= ~CEPH_I_POOL_PERM;
3474 extra_info->pool_ns = old_ns;
3476 /* size/truncate_seq? */
3477 queue_trunc = ceph_fill_file_size(inode, extra_info->issued,
3478 le32_to_cpu(grant->truncate_seq),
3479 le64_to_cpu(grant->truncate_size),
3483 if (ci->i_auth_cap == cap && (newcaps & CEPH_CAP_ANY_FILE_WR)) {
3484 if (max_size != ci->i_max_size) {
3485 dout("max_size %lld -> %llu\n",
3486 ci->i_max_size, max_size);
3487 ci->i_max_size = max_size;
3488 if (max_size >= ci->i_wanted_max_size) {
3489 ci->i_wanted_max_size = 0; /* reset */
3490 ci->i_requested_max_size = 0;
3496 /* check cap bits */
3497 wanted = __ceph_caps_wanted(ci);
3498 used = __ceph_caps_used(ci);
3499 dirty = __ceph_caps_dirty(ci);
3500 dout(" my wanted = %s, used = %s, dirty %s\n",
3501 ceph_cap_string(wanted),
3502 ceph_cap_string(used),
3503 ceph_cap_string(dirty));
3505 if ((was_stale || le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) &&
3506 (wanted & ~(cap->mds_wanted | newcaps))) {
3508 * If mds is importing cap, prior cap messages that update
3509 * 'wanted' may get dropped by mds (migrate seq mismatch).
3511 * We don't send cap message to update 'wanted' if what we
3512 * want are already issued. If mds revokes caps, cap message
3513 * that releases caps also tells mds what we want. But if
3514 * caps got revoked by mds forcedly (session stale). We may
3515 * haven't told mds what we want.
3520 /* revocation, grant, or no-op? */
3521 if (cap->issued & ~newcaps) {
3522 int revoking = cap->issued & ~newcaps;
3524 dout("revocation: %s -> %s (revoking %s)\n",
3525 ceph_cap_string(cap->issued),
3526 ceph_cap_string(newcaps),
3527 ceph_cap_string(revoking));
3528 if (S_ISREG(inode->i_mode) &&
3529 (revoking & used & CEPH_CAP_FILE_BUFFER))
3530 writeback = true; /* initiate writeback; will delay ack */
3531 else if (queue_invalidate &&
3532 revoking == CEPH_CAP_FILE_CACHE &&
3533 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0)
3534 ; /* do nothing yet, invalidation will be queued */
3535 else if (cap == ci->i_auth_cap)
3536 check_caps = 1; /* check auth cap only */
3538 check_caps = 2; /* check all caps */
3539 /* If there is new caps, try to wake up the waiters */
3540 if (~cap->issued & newcaps)
3542 cap->issued = newcaps;
3543 cap->implemented |= newcaps;
3544 } else if (cap->issued == newcaps) {
3545 dout("caps unchanged: %s -> %s\n",
3546 ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
3548 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
3549 ceph_cap_string(newcaps));
3550 /* non-auth MDS is revoking the newly grant caps ? */
3551 if (cap == ci->i_auth_cap &&
3552 __ceph_caps_revoking_other(ci, cap, newcaps))
3555 cap->issued = newcaps;
3556 cap->implemented |= newcaps; /* add bits only, to
3557 * avoid stepping on a
3558 * pending revocation */
3561 BUG_ON(cap->issued & ~cap->implemented);
3563 if (extra_info->inline_version > 0 &&
3564 extra_info->inline_version >= ci->i_inline_version) {
3565 ci->i_inline_version = extra_info->inline_version;
3566 if (ci->i_inline_version != CEPH_INLINE_NONE &&
3567 (newcaps & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)))
3571 if (le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) {
3572 if (ci->i_auth_cap == cap) {
3573 if (newcaps & ~extra_info->issued)
3576 if (ci->i_requested_max_size > max_size ||
3577 !(le32_to_cpu(grant->wanted) & CEPH_CAP_ANY_FILE_WR)) {
3578 /* re-request max_size if necessary */
3579 ci->i_requested_max_size = 0;
3583 ceph_kick_flushing_inode_caps(session, ci);
3585 up_read(&session->s_mdsc->snap_rwsem);
3587 spin_unlock(&ci->i_ceph_lock);
3590 ceph_fill_inline_data(inode, NULL, extra_info->inline_data,
3591 extra_info->inline_len);
3594 ceph_queue_vmtruncate(inode);
3598 * queue inode for writeback: we can't actually call
3599 * filemap_write_and_wait, etc. from message handler
3602 ceph_queue_writeback(inode);
3603 if (queue_invalidate)
3604 ceph_queue_invalidate(inode);
3606 invalidate_aliases(inode);
3608 wake_up_all(&ci->i_cap_wq);
3610 mutex_unlock(&session->s_mutex);
3611 if (check_caps == 1)
3612 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY | CHECK_CAPS_NOINVAL);
3613 else if (check_caps == 2)
3614 ceph_check_caps(ci, CHECK_CAPS_NOINVAL);
3618 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
3619 * MDS has been safely committed.
3621 static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
3622 struct ceph_mds_caps *m,
3623 struct ceph_mds_session *session,
3624 struct ceph_cap *cap)
3625 __releases(ci->i_ceph_lock)
3627 struct ceph_inode_info *ci = ceph_inode(inode);
3628 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
3629 struct ceph_cap_flush *cf, *tmp_cf;
3630 LIST_HEAD(to_remove);
3631 unsigned seq = le32_to_cpu(m->seq);
3632 int dirty = le32_to_cpu(m->dirty);
3635 bool wake_ci = false;
3636 bool wake_mdsc = false;
3638 list_for_each_entry_safe(cf, tmp_cf, &ci->i_cap_flush_list, i_list) {
3639 /* Is this the one that was flushed? */
3640 if (cf->tid == flush_tid)
3643 /* Is this a capsnap? */
3647 if (cf->tid <= flush_tid) {
3649 * An earlier or current tid. The FLUSH_ACK should
3650 * represent a superset of this flush's caps.
3652 wake_ci |= __detach_cap_flush_from_ci(ci, cf);
3653 list_add_tail(&cf->i_list, &to_remove);
3656 * This is a later one. Any caps in it are still dirty
3657 * so don't count them as cleaned.
3659 cleaned &= ~cf->caps;
3665 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
3666 " flushing %s -> %s\n",
3667 inode, session->s_mds, seq, ceph_cap_string(dirty),
3668 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
3669 ceph_cap_string(ci->i_flushing_caps & ~cleaned));
3671 if (list_empty(&to_remove) && !cleaned)
3674 ci->i_flushing_caps &= ~cleaned;
3676 spin_lock(&mdsc->cap_dirty_lock);
3678 list_for_each_entry(cf, &to_remove, i_list)
3679 wake_mdsc |= __detach_cap_flush_from_mdsc(mdsc, cf);
3681 if (ci->i_flushing_caps == 0) {
3682 if (list_empty(&ci->i_cap_flush_list)) {
3683 list_del_init(&ci->i_flushing_item);
3684 if (!list_empty(&session->s_cap_flushing)) {
3685 dout(" mds%d still flushing cap on %p\n",
3687 &list_first_entry(&session->s_cap_flushing,
3688 struct ceph_inode_info,
3689 i_flushing_item)->netfs.inode);
3692 mdsc->num_cap_flushing--;
3693 dout(" inode %p now !flushing\n", inode);
3695 if (ci->i_dirty_caps == 0) {
3696 dout(" inode %p now clean\n", inode);
3697 BUG_ON(!list_empty(&ci->i_dirty_item));
3699 if (ci->i_wr_ref == 0 &&
3700 ci->i_wrbuffer_ref_head == 0) {
3701 BUG_ON(!ci->i_head_snapc);
3702 ceph_put_snap_context(ci->i_head_snapc);
3703 ci->i_head_snapc = NULL;
3706 BUG_ON(list_empty(&ci->i_dirty_item));
3709 spin_unlock(&mdsc->cap_dirty_lock);
3712 spin_unlock(&ci->i_ceph_lock);
3714 while (!list_empty(&to_remove)) {
3715 cf = list_first_entry(&to_remove,
3716 struct ceph_cap_flush, i_list);
3717 list_del_init(&cf->i_list);
3718 if (!cf->is_capsnap)
3719 ceph_free_cap_flush(cf);
3723 wake_up_all(&ci->i_cap_wq);
3725 wake_up_all(&mdsc->cap_flushing_wq);
3730 void __ceph_remove_capsnap(struct inode *inode, struct ceph_cap_snap *capsnap,
3731 bool *wake_ci, bool *wake_mdsc)
3733 struct ceph_inode_info *ci = ceph_inode(inode);
3734 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
3737 lockdep_assert_held(&ci->i_ceph_lock);
3739 dout("removing capsnap %p, inode %p ci %p\n", capsnap, inode, ci);
3741 list_del_init(&capsnap->ci_item);
3742 ret = __detach_cap_flush_from_ci(ci, &capsnap->cap_flush);
3746 spin_lock(&mdsc->cap_dirty_lock);
3747 if (list_empty(&ci->i_cap_flush_list))
3748 list_del_init(&ci->i_flushing_item);
3750 ret = __detach_cap_flush_from_mdsc(mdsc, &capsnap->cap_flush);
3753 spin_unlock(&mdsc->cap_dirty_lock);
3756 void ceph_remove_capsnap(struct inode *inode, struct ceph_cap_snap *capsnap,
3757 bool *wake_ci, bool *wake_mdsc)
3759 struct ceph_inode_info *ci = ceph_inode(inode);
3761 lockdep_assert_held(&ci->i_ceph_lock);
3763 WARN_ON_ONCE(capsnap->dirty_pages || capsnap->writing);
3764 __ceph_remove_capsnap(inode, capsnap, wake_ci, wake_mdsc);
3768 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
3769 * throw away our cap_snap.
3771 * Caller hold s_mutex.
3773 static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
3774 struct ceph_mds_caps *m,
3775 struct ceph_mds_session *session)
3777 struct ceph_inode_info *ci = ceph_inode(inode);
3778 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
3779 u64 follows = le64_to_cpu(m->snap_follows);
3780 struct ceph_cap_snap *capsnap = NULL, *iter;
3781 bool wake_ci = false;
3782 bool wake_mdsc = false;
3784 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
3785 inode, ci, session->s_mds, follows);
3787 spin_lock(&ci->i_ceph_lock);
3788 list_for_each_entry(iter, &ci->i_cap_snaps, ci_item) {
3789 if (iter->follows == follows) {
3790 if (iter->cap_flush.tid != flush_tid) {
3791 dout(" cap_snap %p follows %lld tid %lld !="
3792 " %lld\n", iter, follows,
3793 flush_tid, iter->cap_flush.tid);
3799 dout(" skipping cap_snap %p follows %lld\n",
3800 iter, iter->follows);
3804 ceph_remove_capsnap(inode, capsnap, &wake_ci, &wake_mdsc);
3805 spin_unlock(&ci->i_ceph_lock);
3808 ceph_put_snap_context(capsnap->context);
3809 ceph_put_cap_snap(capsnap);
3811 wake_up_all(&ci->i_cap_wq);
3813 wake_up_all(&mdsc->cap_flushing_wq);
3819 * Handle TRUNC from MDS, indicating file truncation.
3821 * caller hold s_mutex.
3823 static bool handle_cap_trunc(struct inode *inode,
3824 struct ceph_mds_caps *trunc,
3825 struct ceph_mds_session *session)
3827 struct ceph_inode_info *ci = ceph_inode(inode);
3828 int mds = session->s_mds;
3829 int seq = le32_to_cpu(trunc->seq);
3830 u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
3831 u64 truncate_size = le64_to_cpu(trunc->truncate_size);
3832 u64 size = le64_to_cpu(trunc->size);
3833 int implemented = 0;
3834 int dirty = __ceph_caps_dirty(ci);
3835 int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
3836 bool queue_trunc = false;
3838 lockdep_assert_held(&ci->i_ceph_lock);
3840 issued |= implemented | dirty;
3842 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
3843 inode, mds, seq, truncate_size, truncate_seq);
3844 queue_trunc = ceph_fill_file_size(inode, issued,
3845 truncate_seq, truncate_size, size);
3850 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
3851 * different one. If we are the most recent migration we've seen (as
3852 * indicated by mseq), make note of the migrating cap bits for the
3853 * duration (until we see the corresponding IMPORT).
3855 * caller holds s_mutex
3857 static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
3858 struct ceph_mds_cap_peer *ph,
3859 struct ceph_mds_session *session)
3861 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
3862 struct ceph_mds_session *tsession = NULL;
3863 struct ceph_cap *cap, *tcap, *new_cap = NULL;
3864 struct ceph_inode_info *ci = ceph_inode(inode);
3866 unsigned mseq = le32_to_cpu(ex->migrate_seq);
3867 unsigned t_seq, t_mseq;
3869 int mds = session->s_mds;
3872 t_cap_id = le64_to_cpu(ph->cap_id);
3873 t_seq = le32_to_cpu(ph->seq);
3874 t_mseq = le32_to_cpu(ph->mseq);
3875 target = le32_to_cpu(ph->mds);
3877 t_cap_id = t_seq = t_mseq = 0;
3881 dout("handle_cap_export inode %p ci %p mds%d mseq %d target %d\n",
3882 inode, ci, mds, mseq, target);
3884 down_read(&mdsc->snap_rwsem);
3885 spin_lock(&ci->i_ceph_lock);
3886 cap = __get_cap_for_mds(ci, mds);
3887 if (!cap || cap->cap_id != le64_to_cpu(ex->cap_id))
3891 ceph_remove_cap(cap, false);
3896 * now we know we haven't received the cap import message yet
3897 * because the exported cap still exist.
3900 issued = cap->issued;
3901 if (issued != cap->implemented)
3902 pr_err_ratelimited("handle_cap_export: issued != implemented: "
3903 "ino (%llx.%llx) mds%d seq %d mseq %d "
3904 "issued %s implemented %s\n",
3905 ceph_vinop(inode), mds, cap->seq, cap->mseq,
3906 ceph_cap_string(issued),
3907 ceph_cap_string(cap->implemented));
3910 tcap = __get_cap_for_mds(ci, target);
3912 /* already have caps from the target */
3913 if (tcap->cap_id == t_cap_id &&
3914 ceph_seq_cmp(tcap->seq, t_seq) < 0) {
3915 dout(" updating import cap %p mds%d\n", tcap, target);
3916 tcap->cap_id = t_cap_id;
3917 tcap->seq = t_seq - 1;
3918 tcap->issue_seq = t_seq - 1;
3919 tcap->issued |= issued;
3920 tcap->implemented |= issued;
3921 if (cap == ci->i_auth_cap) {
3922 ci->i_auth_cap = tcap;
3923 change_auth_cap_ses(ci, tcap->session);
3926 ceph_remove_cap(cap, false);
3928 } else if (tsession) {
3929 /* add placeholder for the export tagert */
3930 int flag = (cap == ci->i_auth_cap) ? CEPH_CAP_FLAG_AUTH : 0;
3932 ceph_add_cap(inode, tsession, t_cap_id, issued, 0,
3933 t_seq - 1, t_mseq, (u64)-1, flag, &new_cap);
3935 if (!list_empty(&ci->i_cap_flush_list) &&
3936 ci->i_auth_cap == tcap) {
3937 spin_lock(&mdsc->cap_dirty_lock);
3938 list_move_tail(&ci->i_flushing_item,
3939 &tcap->session->s_cap_flushing);
3940 spin_unlock(&mdsc->cap_dirty_lock);
3943 ceph_remove_cap(cap, false);
3947 spin_unlock(&ci->i_ceph_lock);
3948 up_read(&mdsc->snap_rwsem);
3949 mutex_unlock(&session->s_mutex);
3951 /* open target session */
3952 tsession = ceph_mdsc_open_export_target_session(mdsc, target);
3953 if (!IS_ERR(tsession)) {
3955 mutex_lock(&session->s_mutex);
3956 mutex_lock_nested(&tsession->s_mutex,
3957 SINGLE_DEPTH_NESTING);
3959 mutex_lock(&tsession->s_mutex);
3960 mutex_lock_nested(&session->s_mutex,
3961 SINGLE_DEPTH_NESTING);
3963 new_cap = ceph_get_cap(mdsc, NULL);
3968 mutex_lock(&session->s_mutex);
3973 spin_unlock(&ci->i_ceph_lock);
3974 up_read(&mdsc->snap_rwsem);
3975 mutex_unlock(&session->s_mutex);
3977 mutex_unlock(&tsession->s_mutex);
3978 ceph_put_mds_session(tsession);
3981 ceph_put_cap(mdsc, new_cap);
3985 * Handle cap IMPORT.
3987 * caller holds s_mutex. acquires i_ceph_lock
3989 static void handle_cap_import(struct ceph_mds_client *mdsc,
3990 struct inode *inode, struct ceph_mds_caps *im,
3991 struct ceph_mds_cap_peer *ph,
3992 struct ceph_mds_session *session,
3993 struct ceph_cap **target_cap, int *old_issued)
3995 struct ceph_inode_info *ci = ceph_inode(inode);
3996 struct ceph_cap *cap, *ocap, *new_cap = NULL;
3997 int mds = session->s_mds;
3999 unsigned caps = le32_to_cpu(im->caps);
4000 unsigned wanted = le32_to_cpu(im->wanted);
4001 unsigned seq = le32_to_cpu(im->seq);
4002 unsigned mseq = le32_to_cpu(im->migrate_seq);
4003 u64 realmino = le64_to_cpu(im->realm);
4004 u64 cap_id = le64_to_cpu(im->cap_id);
4009 p_cap_id = le64_to_cpu(ph->cap_id);
4010 peer = le32_to_cpu(ph->mds);
4016 dout("handle_cap_import inode %p ci %p mds%d mseq %d peer %d\n",
4017 inode, ci, mds, mseq, peer);
4019 cap = __get_cap_for_mds(ci, mds);
4022 spin_unlock(&ci->i_ceph_lock);
4023 new_cap = ceph_get_cap(mdsc, NULL);
4024 spin_lock(&ci->i_ceph_lock);
4030 ceph_put_cap(mdsc, new_cap);
4035 __ceph_caps_issued(ci, &issued);
4036 issued |= __ceph_caps_dirty(ci);
4038 ceph_add_cap(inode, session, cap_id, caps, wanted, seq, mseq,
4039 realmino, CEPH_CAP_FLAG_AUTH, &new_cap);
4041 ocap = peer >= 0 ? __get_cap_for_mds(ci, peer) : NULL;
4042 if (ocap && ocap->cap_id == p_cap_id) {
4043 dout(" remove export cap %p mds%d flags %d\n",
4044 ocap, peer, ph->flags);
4045 if ((ph->flags & CEPH_CAP_FLAG_AUTH) &&
4046 (ocap->seq != le32_to_cpu(ph->seq) ||
4047 ocap->mseq != le32_to_cpu(ph->mseq))) {
4048 pr_err_ratelimited("handle_cap_import: "
4049 "mismatched seq/mseq: ino (%llx.%llx) "
4050 "mds%d seq %d mseq %d importer mds%d "
4051 "has peer seq %d mseq %d\n",
4052 ceph_vinop(inode), peer, ocap->seq,
4053 ocap->mseq, mds, le32_to_cpu(ph->seq),
4054 le32_to_cpu(ph->mseq));
4056 ceph_remove_cap(ocap, (ph->flags & CEPH_CAP_FLAG_RELEASE));
4059 *old_issued = issued;
4064 * Handle a caps message from the MDS.
4066 * Identify the appropriate session, inode, and call the right handler
4067 * based on the cap op.
4069 void ceph_handle_caps(struct ceph_mds_session *session,
4070 struct ceph_msg *msg)
4072 struct ceph_mds_client *mdsc = session->s_mdsc;
4073 struct inode *inode;
4074 struct ceph_inode_info *ci;
4075 struct ceph_cap *cap;
4076 struct ceph_mds_caps *h;
4077 struct ceph_mds_cap_peer *peer = NULL;
4078 struct ceph_snap_realm *realm = NULL;
4080 int msg_version = le16_to_cpu(msg->hdr.version);
4082 struct ceph_vino vino;
4084 size_t snaptrace_len;
4086 struct cap_extra_info extra_info = {};
4088 bool close_sessions = false;
4090 dout("handle_caps from mds%d\n", session->s_mds);
4093 end = msg->front.iov_base + msg->front.iov_len;
4094 if (msg->front.iov_len < sizeof(*h))
4096 h = msg->front.iov_base;
4097 op = le32_to_cpu(h->op);
4098 vino.ino = le64_to_cpu(h->ino);
4099 vino.snap = CEPH_NOSNAP;
4100 seq = le32_to_cpu(h->seq);
4101 mseq = le32_to_cpu(h->migrate_seq);
4104 snaptrace_len = le32_to_cpu(h->snap_trace_len);
4105 p = snaptrace + snaptrace_len;
4107 if (msg_version >= 2) {
4109 ceph_decode_32_safe(&p, end, flock_len, bad);
4110 if (p + flock_len > end)
4115 if (msg_version >= 3) {
4116 if (op == CEPH_CAP_OP_IMPORT) {
4117 if (p + sizeof(*peer) > end)
4121 } else if (op == CEPH_CAP_OP_EXPORT) {
4122 /* recorded in unused fields */
4123 peer = (void *)&h->size;
4127 if (msg_version >= 4) {
4128 ceph_decode_64_safe(&p, end, extra_info.inline_version, bad);
4129 ceph_decode_32_safe(&p, end, extra_info.inline_len, bad);
4130 if (p + extra_info.inline_len > end)
4132 extra_info.inline_data = p;
4133 p += extra_info.inline_len;
4136 if (msg_version >= 5) {
4137 struct ceph_osd_client *osdc = &mdsc->fsc->client->osdc;
4140 ceph_decode_32_safe(&p, end, epoch_barrier, bad);
4141 ceph_osdc_update_epoch_barrier(osdc, epoch_barrier);
4144 if (msg_version >= 8) {
4148 ceph_decode_skip_64(&p, end, bad); // flush_tid
4150 ceph_decode_skip_32(&p, end, bad); // caller_uid
4151 ceph_decode_skip_32(&p, end, bad); // caller_gid
4153 ceph_decode_32_safe(&p, end, pool_ns_len, bad);
4154 if (pool_ns_len > 0) {
4155 ceph_decode_need(&p, end, pool_ns_len, bad);
4156 extra_info.pool_ns =
4157 ceph_find_or_create_string(p, pool_ns_len);
4162 if (msg_version >= 9) {
4163 struct ceph_timespec *btime;
4165 if (p + sizeof(*btime) > end)
4168 ceph_decode_timespec64(&extra_info.btime, btime);
4169 p += sizeof(*btime);
4170 ceph_decode_64_safe(&p, end, extra_info.change_attr, bad);
4173 if (msg_version >= 11) {
4175 ceph_decode_skip_32(&p, end, bad); // flags
4177 extra_info.dirstat_valid = true;
4178 ceph_decode_64_safe(&p, end, extra_info.nfiles, bad);
4179 ceph_decode_64_safe(&p, end, extra_info.nsubdirs, bad);
4183 inode = ceph_find_inode(mdsc->fsc->sb, vino);
4184 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
4187 mutex_lock(&session->s_mutex);
4188 inc_session_sequence(session);
4189 dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
4193 dout(" i don't have ino %llx\n", vino.ino);
4195 if (op == CEPH_CAP_OP_IMPORT) {
4196 cap = ceph_get_cap(mdsc, NULL);
4197 cap->cap_ino = vino.ino;
4198 cap->queue_release = 1;
4199 cap->cap_id = le64_to_cpu(h->cap_id);
4202 cap->issue_seq = seq;
4203 spin_lock(&session->s_cap_lock);
4204 __ceph_queue_cap_release(session, cap);
4205 spin_unlock(&session->s_cap_lock);
4207 goto flush_cap_releases;
4209 ci = ceph_inode(inode);
4211 /* these will work even if we don't have a cap yet */
4213 case CEPH_CAP_OP_FLUSHSNAP_ACK:
4214 handle_cap_flushsnap_ack(inode, le64_to_cpu(msg->hdr.tid),
4218 case CEPH_CAP_OP_EXPORT:
4219 handle_cap_export(inode, h, peer, session);
4222 case CEPH_CAP_OP_IMPORT:
4224 if (snaptrace_len) {
4225 down_write(&mdsc->snap_rwsem);
4226 if (ceph_update_snap_trace(mdsc, snaptrace,
4227 snaptrace + snaptrace_len,
4229 up_write(&mdsc->snap_rwsem);
4230 close_sessions = true;
4233 downgrade_write(&mdsc->snap_rwsem);
4235 down_read(&mdsc->snap_rwsem);
4237 spin_lock(&ci->i_ceph_lock);
4238 handle_cap_import(mdsc, inode, h, peer, session,
4239 &cap, &extra_info.issued);
4240 handle_cap_grant(inode, session, cap,
4241 h, msg->middle, &extra_info);
4243 ceph_put_snap_realm(mdsc, realm);
4247 /* the rest require a cap */
4248 spin_lock(&ci->i_ceph_lock);
4249 cap = __get_cap_for_mds(ceph_inode(inode), session->s_mds);
4251 dout(" no cap on %p ino %llx.%llx from mds%d\n",
4252 inode, ceph_ino(inode), ceph_snap(inode),
4254 spin_unlock(&ci->i_ceph_lock);
4255 goto flush_cap_releases;
4258 /* note that each of these drops i_ceph_lock for us */
4260 case CEPH_CAP_OP_REVOKE:
4261 case CEPH_CAP_OP_GRANT:
4262 __ceph_caps_issued(ci, &extra_info.issued);
4263 extra_info.issued |= __ceph_caps_dirty(ci);
4264 handle_cap_grant(inode, session, cap,
4265 h, msg->middle, &extra_info);
4268 case CEPH_CAP_OP_FLUSH_ACK:
4269 handle_cap_flush_ack(inode, le64_to_cpu(msg->hdr.tid),
4273 case CEPH_CAP_OP_TRUNC:
4274 queue_trunc = handle_cap_trunc(inode, h, session);
4275 spin_unlock(&ci->i_ceph_lock);
4277 ceph_queue_vmtruncate(inode);
4281 spin_unlock(&ci->i_ceph_lock);
4282 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
4283 ceph_cap_op_name(op));
4287 mutex_unlock(&session->s_mutex);
4291 ceph_put_string(extra_info.pool_ns);
4293 /* Defer closing the sessions after s_mutex lock being released */
4295 ceph_mdsc_close_sessions(mdsc);
4301 * send any cap release message to try to move things
4302 * along for the mds (who clearly thinks we still have this
4305 ceph_flush_cap_releases(mdsc, session);
4309 pr_err("ceph_handle_caps: corrupt message\n");
4315 * Delayed work handler to process end of delayed cap release LRU list.
4317 * If new caps are added to the list while processing it, these won't get
4318 * processed in this run. In this case, the ci->i_hold_caps_max will be
4319 * returned so that the work can be scheduled accordingly.
4321 unsigned long ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
4323 struct inode *inode;
4324 struct ceph_inode_info *ci;
4325 struct ceph_mount_options *opt = mdsc->fsc->mount_options;
4326 unsigned long delay_max = opt->caps_wanted_delay_max * HZ;
4327 unsigned long loop_start = jiffies;
4328 unsigned long delay = 0;
4330 dout("check_delayed_caps\n");
4331 spin_lock(&mdsc->cap_delay_lock);
4332 while (!list_empty(&mdsc->cap_delay_list)) {
4333 ci = list_first_entry(&mdsc->cap_delay_list,
4334 struct ceph_inode_info,
4336 if (time_before(loop_start, ci->i_hold_caps_max - delay_max)) {
4337 dout("%s caps added recently. Exiting loop", __func__);
4338 delay = ci->i_hold_caps_max;
4341 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
4342 time_before(jiffies, ci->i_hold_caps_max))
4344 list_del_init(&ci->i_cap_delay_list);
4346 inode = igrab(&ci->netfs.inode);
4348 spin_unlock(&mdsc->cap_delay_lock);
4349 dout("check_delayed_caps on %p\n", inode);
4350 ceph_check_caps(ci, 0);
4352 spin_lock(&mdsc->cap_delay_lock);
4355 spin_unlock(&mdsc->cap_delay_lock);
4361 * Flush all dirty caps to the mds
4363 static void flush_dirty_session_caps(struct ceph_mds_session *s)
4365 struct ceph_mds_client *mdsc = s->s_mdsc;
4366 struct ceph_inode_info *ci;
4367 struct inode *inode;
4369 dout("flush_dirty_caps\n");
4370 spin_lock(&mdsc->cap_dirty_lock);
4371 while (!list_empty(&s->s_cap_dirty)) {
4372 ci = list_first_entry(&s->s_cap_dirty, struct ceph_inode_info,
4374 inode = &ci->netfs.inode;
4376 dout("flush_dirty_caps %llx.%llx\n", ceph_vinop(inode));
4377 spin_unlock(&mdsc->cap_dirty_lock);
4378 ceph_wait_on_async_create(inode);
4379 ceph_check_caps(ci, CHECK_CAPS_FLUSH);
4381 spin_lock(&mdsc->cap_dirty_lock);
4383 spin_unlock(&mdsc->cap_dirty_lock);
4384 dout("flush_dirty_caps done\n");
4387 void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
4389 ceph_mdsc_iterate_sessions(mdsc, flush_dirty_session_caps, true);
4392 void __ceph_touch_fmode(struct ceph_inode_info *ci,
4393 struct ceph_mds_client *mdsc, int fmode)
4395 unsigned long now = jiffies;
4396 if (fmode & CEPH_FILE_MODE_RD)
4397 ci->i_last_rd = now;
4398 if (fmode & CEPH_FILE_MODE_WR)
4399 ci->i_last_wr = now;
4400 /* queue periodic check */
4402 __ceph_is_any_real_caps(ci) &&
4403 list_empty(&ci->i_cap_delay_list))
4404 __cap_delay_requeue(mdsc, ci);
4407 void ceph_get_fmode(struct ceph_inode_info *ci, int fmode, int count)
4409 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(ci->netfs.inode.i_sb);
4410 int bits = (fmode << 1) | 1;
4411 bool already_opened = false;
4415 atomic64_inc(&mdsc->metric.opened_files);
4417 spin_lock(&ci->i_ceph_lock);
4418 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
4420 * If any of the mode ref is larger than 0,
4421 * that means it has been already opened by
4422 * others. Just skip checking the PIN ref.
4424 if (i && ci->i_nr_by_mode[i])
4425 already_opened = true;
4427 if (bits & (1 << i))
4428 ci->i_nr_by_mode[i] += count;
4431 if (!already_opened)
4432 percpu_counter_inc(&mdsc->metric.opened_inodes);
4433 spin_unlock(&ci->i_ceph_lock);
4437 * Drop open file reference. If we were the last open file,
4438 * we may need to release capabilities to the MDS (or schedule
4439 * their delayed release).
4441 void ceph_put_fmode(struct ceph_inode_info *ci, int fmode, int count)
4443 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(ci->netfs.inode.i_sb);
4444 int bits = (fmode << 1) | 1;
4445 bool is_closed = true;
4449 atomic64_dec(&mdsc->metric.opened_files);
4451 spin_lock(&ci->i_ceph_lock);
4452 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
4453 if (bits & (1 << i)) {
4454 BUG_ON(ci->i_nr_by_mode[i] < count);
4455 ci->i_nr_by_mode[i] -= count;
4459 * If any of the mode ref is not 0 after
4460 * decreased, that means it is still opened
4461 * by others. Just skip checking the PIN ref.
4463 if (i && ci->i_nr_by_mode[i])
4468 percpu_counter_dec(&mdsc->metric.opened_inodes);
4469 spin_unlock(&ci->i_ceph_lock);
4473 * For a soon-to-be unlinked file, drop the LINK caps. If it
4474 * looks like the link count will hit 0, drop any other caps (other
4475 * than PIN) we don't specifically want (due to the file still being
4478 int ceph_drop_caps_for_unlink(struct inode *inode)
4480 struct ceph_inode_info *ci = ceph_inode(inode);
4481 int drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
4483 spin_lock(&ci->i_ceph_lock);
4484 if (inode->i_nlink == 1) {
4485 drop |= ~(__ceph_caps_wanted(ci) | CEPH_CAP_PIN);
4487 if (__ceph_caps_dirty(ci)) {
4488 struct ceph_mds_client *mdsc =
4489 ceph_inode_to_client(inode)->mdsc;
4490 __cap_delay_requeue_front(mdsc, ci);
4493 spin_unlock(&ci->i_ceph_lock);
4498 * Helpers for embedding cap and dentry lease releases into mds
4501 * @force is used by dentry_release (below) to force inclusion of a
4502 * record for the directory inode, even when there aren't any caps to
4505 int ceph_encode_inode_release(void **p, struct inode *inode,
4506 int mds, int drop, int unless, int force)
4508 struct ceph_inode_info *ci = ceph_inode(inode);
4509 struct ceph_cap *cap;
4510 struct ceph_mds_request_release *rel = *p;
4514 spin_lock(&ci->i_ceph_lock);
4515 used = __ceph_caps_used(ci);
4516 dirty = __ceph_caps_dirty(ci);
4518 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
4519 inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
4520 ceph_cap_string(unless));
4522 /* only drop unused, clean caps */
4523 drop &= ~(used | dirty);
4525 cap = __get_cap_for_mds(ci, mds);
4526 if (cap && __cap_is_valid(cap)) {
4527 unless &= cap->issued;
4529 if (unless & CEPH_CAP_AUTH_EXCL)
4530 drop &= ~CEPH_CAP_AUTH_SHARED;
4531 if (unless & CEPH_CAP_LINK_EXCL)
4532 drop &= ~CEPH_CAP_LINK_SHARED;
4533 if (unless & CEPH_CAP_XATTR_EXCL)
4534 drop &= ~CEPH_CAP_XATTR_SHARED;
4535 if (unless & CEPH_CAP_FILE_EXCL)
4536 drop &= ~CEPH_CAP_FILE_SHARED;
4539 if (force || (cap->issued & drop)) {
4540 if (cap->issued & drop) {
4541 int wanted = __ceph_caps_wanted(ci);
4542 dout("encode_inode_release %p cap %p "
4543 "%s -> %s, wanted %s -> %s\n", inode, cap,
4544 ceph_cap_string(cap->issued),
4545 ceph_cap_string(cap->issued & ~drop),
4546 ceph_cap_string(cap->mds_wanted),
4547 ceph_cap_string(wanted));
4549 cap->issued &= ~drop;
4550 cap->implemented &= ~drop;
4551 cap->mds_wanted = wanted;
4552 if (cap == ci->i_auth_cap &&
4553 !(wanted & CEPH_CAP_ANY_FILE_WR))
4554 ci->i_requested_max_size = 0;
4556 dout("encode_inode_release %p cap %p %s"
4557 " (force)\n", inode, cap,
4558 ceph_cap_string(cap->issued));
4561 rel->ino = cpu_to_le64(ceph_ino(inode));
4562 rel->cap_id = cpu_to_le64(cap->cap_id);
4563 rel->seq = cpu_to_le32(cap->seq);
4564 rel->issue_seq = cpu_to_le32(cap->issue_seq);
4565 rel->mseq = cpu_to_le32(cap->mseq);
4566 rel->caps = cpu_to_le32(cap->implemented);
4567 rel->wanted = cpu_to_le32(cap->mds_wanted);
4573 dout("encode_inode_release %p cap %p %s (noop)\n",
4574 inode, cap, ceph_cap_string(cap->issued));
4577 spin_unlock(&ci->i_ceph_lock);
4581 int ceph_encode_dentry_release(void **p, struct dentry *dentry,
4583 int mds, int drop, int unless)
4585 struct dentry *parent = NULL;
4586 struct ceph_mds_request_release *rel = *p;
4587 struct ceph_dentry_info *di = ceph_dentry(dentry);
4592 * force an record for the directory caps if we have a dentry lease.
4593 * this is racy (can't take i_ceph_lock and d_lock together), but it
4594 * doesn't have to be perfect; the mds will revoke anything we don't
4597 spin_lock(&dentry->d_lock);
4598 if (di->lease_session && di->lease_session->s_mds == mds)
4601 parent = dget(dentry->d_parent);
4602 dir = d_inode(parent);
4604 spin_unlock(&dentry->d_lock);
4606 ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
4609 spin_lock(&dentry->d_lock);
4610 if (ret && di->lease_session && di->lease_session->s_mds == mds) {
4611 dout("encode_dentry_release %p mds%d seq %d\n",
4612 dentry, mds, (int)di->lease_seq);
4613 rel->dname_len = cpu_to_le32(dentry->d_name.len);
4614 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
4615 *p += dentry->d_name.len;
4616 rel->dname_seq = cpu_to_le32(di->lease_seq);
4617 __ceph_mdsc_drop_dentry_lease(dentry);
4619 spin_unlock(&dentry->d_lock);
4623 static int remove_capsnaps(struct ceph_mds_client *mdsc, struct inode *inode)
4625 struct ceph_inode_info *ci = ceph_inode(inode);
4626 struct ceph_cap_snap *capsnap;
4627 int capsnap_release = 0;
4629 lockdep_assert_held(&ci->i_ceph_lock);
4631 dout("removing capsnaps, ci is %p, inode is %p\n", ci, inode);
4633 while (!list_empty(&ci->i_cap_snaps)) {
4634 capsnap = list_first_entry(&ci->i_cap_snaps,
4635 struct ceph_cap_snap, ci_item);
4636 __ceph_remove_capsnap(inode, capsnap, NULL, NULL);
4637 ceph_put_snap_context(capsnap->context);
4638 ceph_put_cap_snap(capsnap);
4641 wake_up_all(&ci->i_cap_wq);
4642 wake_up_all(&mdsc->cap_flushing_wq);
4643 return capsnap_release;
4646 int ceph_purge_inode_cap(struct inode *inode, struct ceph_cap *cap, bool *invalidate)
4648 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
4649 struct ceph_mds_client *mdsc = fsc->mdsc;
4650 struct ceph_inode_info *ci = ceph_inode(inode);
4652 bool dirty_dropped = false;
4655 lockdep_assert_held(&ci->i_ceph_lock);
4657 dout("removing cap %p, ci is %p, inode is %p\n",
4658 cap, ci, &ci->netfs.inode);
4660 is_auth = (cap == ci->i_auth_cap);
4661 __ceph_remove_cap(cap, false);
4663 struct ceph_cap_flush *cf;
4665 if (ceph_inode_is_shutdown(inode)) {
4666 if (inode->i_data.nrpages > 0)
4668 if (ci->i_wrbuffer_ref > 0)
4669 mapping_set_error(&inode->i_data, -EIO);
4672 spin_lock(&mdsc->cap_dirty_lock);
4674 /* trash all of the cap flushes for this inode */
4675 while (!list_empty(&ci->i_cap_flush_list)) {
4676 cf = list_first_entry(&ci->i_cap_flush_list,
4677 struct ceph_cap_flush, i_list);
4678 list_del_init(&cf->g_list);
4679 list_del_init(&cf->i_list);
4680 if (!cf->is_capsnap)
4681 ceph_free_cap_flush(cf);
4684 if (!list_empty(&ci->i_dirty_item)) {
4685 pr_warn_ratelimited(
4686 " dropping dirty %s state for %p %lld\n",
4687 ceph_cap_string(ci->i_dirty_caps),
4688 inode, ceph_ino(inode));
4689 ci->i_dirty_caps = 0;
4690 list_del_init(&ci->i_dirty_item);
4691 dirty_dropped = true;
4693 if (!list_empty(&ci->i_flushing_item)) {
4694 pr_warn_ratelimited(
4695 " dropping dirty+flushing %s state for %p %lld\n",
4696 ceph_cap_string(ci->i_flushing_caps),
4697 inode, ceph_ino(inode));
4698 ci->i_flushing_caps = 0;
4699 list_del_init(&ci->i_flushing_item);
4700 mdsc->num_cap_flushing--;
4701 dirty_dropped = true;
4703 spin_unlock(&mdsc->cap_dirty_lock);
4705 if (dirty_dropped) {
4706 mapping_set_error(inode->i_mapping, -EIO);
4708 if (ci->i_wrbuffer_ref_head == 0 &&
4709 ci->i_wr_ref == 0 &&
4710 ci->i_dirty_caps == 0 &&
4711 ci->i_flushing_caps == 0) {
4712 ceph_put_snap_context(ci->i_head_snapc);
4713 ci->i_head_snapc = NULL;
4717 if (atomic_read(&ci->i_filelock_ref) > 0) {
4718 /* make further file lock syscall return -EIO */
4719 ci->i_ceph_flags |= CEPH_I_ERROR_FILELOCK;
4720 pr_warn_ratelimited(" dropping file locks for %p %lld\n",
4721 inode, ceph_ino(inode));
4724 if (!ci->i_dirty_caps && ci->i_prealloc_cap_flush) {
4725 cf = ci->i_prealloc_cap_flush;
4726 ci->i_prealloc_cap_flush = NULL;
4727 if (!cf->is_capsnap)
4728 ceph_free_cap_flush(cf);
4731 if (!list_empty(&ci->i_cap_snaps))
4732 iputs = remove_capsnaps(mdsc, inode);