ceph: flush the mdlog before waiting on unsafe reqs
[linux-2.6-microblaze.git] / fs / ceph / caps.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
3
4 #include <linux/fs.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
13 #include "super.h"
14 #include "mds_client.h"
15 #include "cache.h"
16 #include <linux/ceph/decode.h>
17 #include <linux/ceph/messenger.h>
18
19 /*
20  * Capability management
21  *
22  * The Ceph metadata servers control client access to inode metadata
23  * and file data by issuing capabilities, granting clients permission
24  * to read and/or write both inode field and file data to OSDs
25  * (storage nodes).  Each capability consists of a set of bits
26  * indicating which operations are allowed.
27  *
28  * If the client holds a *_SHARED cap, the client has a coherent value
29  * that can be safely read from the cached inode.
30  *
31  * In the case of a *_EXCL (exclusive) or FILE_WR capabilities, the
32  * client is allowed to change inode attributes (e.g., file size,
33  * mtime), note its dirty state in the ceph_cap, and asynchronously
34  * flush that metadata change to the MDS.
35  *
36  * In the event of a conflicting operation (perhaps by another
37  * client), the MDS will revoke the conflicting client capabilities.
38  *
39  * In order for a client to cache an inode, it must hold a capability
40  * with at least one MDS server.  When inodes are released, release
41  * notifications are batched and periodically sent en masse to the MDS
42  * cluster to release server state.
43  */
44
45 static u64 __get_oldest_flush_tid(struct ceph_mds_client *mdsc);
46 static void __kick_flushing_caps(struct ceph_mds_client *mdsc,
47                                  struct ceph_mds_session *session,
48                                  struct ceph_inode_info *ci,
49                                  u64 oldest_flush_tid);
50
51 /*
52  * Generate readable cap strings for debugging output.
53  */
54 #define MAX_CAP_STR 20
55 static char cap_str[MAX_CAP_STR][40];
56 static DEFINE_SPINLOCK(cap_str_lock);
57 static int last_cap_str;
58
59 static char *gcap_string(char *s, int c)
60 {
61         if (c & CEPH_CAP_GSHARED)
62                 *s++ = 's';
63         if (c & CEPH_CAP_GEXCL)
64                 *s++ = 'x';
65         if (c & CEPH_CAP_GCACHE)
66                 *s++ = 'c';
67         if (c & CEPH_CAP_GRD)
68                 *s++ = 'r';
69         if (c & CEPH_CAP_GWR)
70                 *s++ = 'w';
71         if (c & CEPH_CAP_GBUFFER)
72                 *s++ = 'b';
73         if (c & CEPH_CAP_GWREXTEND)
74                 *s++ = 'a';
75         if (c & CEPH_CAP_GLAZYIO)
76                 *s++ = 'l';
77         return s;
78 }
79
80 const char *ceph_cap_string(int caps)
81 {
82         int i;
83         char *s;
84         int c;
85
86         spin_lock(&cap_str_lock);
87         i = last_cap_str++;
88         if (last_cap_str == MAX_CAP_STR)
89                 last_cap_str = 0;
90         spin_unlock(&cap_str_lock);
91
92         s = cap_str[i];
93
94         if (caps & CEPH_CAP_PIN)
95                 *s++ = 'p';
96
97         c = (caps >> CEPH_CAP_SAUTH) & 3;
98         if (c) {
99                 *s++ = 'A';
100                 s = gcap_string(s, c);
101         }
102
103         c = (caps >> CEPH_CAP_SLINK) & 3;
104         if (c) {
105                 *s++ = 'L';
106                 s = gcap_string(s, c);
107         }
108
109         c = (caps >> CEPH_CAP_SXATTR) & 3;
110         if (c) {
111                 *s++ = 'X';
112                 s = gcap_string(s, c);
113         }
114
115         c = caps >> CEPH_CAP_SFILE;
116         if (c) {
117                 *s++ = 'F';
118                 s = gcap_string(s, c);
119         }
120
121         if (s == cap_str[i])
122                 *s++ = '-';
123         *s = 0;
124         return cap_str[i];
125 }
126
127 void ceph_caps_init(struct ceph_mds_client *mdsc)
128 {
129         INIT_LIST_HEAD(&mdsc->caps_list);
130         spin_lock_init(&mdsc->caps_list_lock);
131 }
132
133 void ceph_caps_finalize(struct ceph_mds_client *mdsc)
134 {
135         struct ceph_cap *cap;
136
137         spin_lock(&mdsc->caps_list_lock);
138         while (!list_empty(&mdsc->caps_list)) {
139                 cap = list_first_entry(&mdsc->caps_list,
140                                        struct ceph_cap, caps_item);
141                 list_del(&cap->caps_item);
142                 kmem_cache_free(ceph_cap_cachep, cap);
143         }
144         mdsc->caps_total_count = 0;
145         mdsc->caps_avail_count = 0;
146         mdsc->caps_use_count = 0;
147         mdsc->caps_reserve_count = 0;
148         mdsc->caps_min_count = 0;
149         spin_unlock(&mdsc->caps_list_lock);
150 }
151
152 void ceph_adjust_caps_max_min(struct ceph_mds_client *mdsc,
153                               struct ceph_mount_options *fsopt)
154 {
155         spin_lock(&mdsc->caps_list_lock);
156         mdsc->caps_min_count = fsopt->max_readdir;
157         if (mdsc->caps_min_count < 1024)
158                 mdsc->caps_min_count = 1024;
159         mdsc->caps_use_max = fsopt->caps_max;
160         if (mdsc->caps_use_max > 0 &&
161             mdsc->caps_use_max < mdsc->caps_min_count)
162                 mdsc->caps_use_max = mdsc->caps_min_count;
163         spin_unlock(&mdsc->caps_list_lock);
164 }
165
166 static void __ceph_unreserve_caps(struct ceph_mds_client *mdsc, int nr_caps)
167 {
168         struct ceph_cap *cap;
169         int i;
170
171         if (nr_caps) {
172                 BUG_ON(mdsc->caps_reserve_count < nr_caps);
173                 mdsc->caps_reserve_count -= nr_caps;
174                 if (mdsc->caps_avail_count >=
175                     mdsc->caps_reserve_count + mdsc->caps_min_count) {
176                         mdsc->caps_total_count -= nr_caps;
177                         for (i = 0; i < nr_caps; i++) {
178                                 cap = list_first_entry(&mdsc->caps_list,
179                                         struct ceph_cap, caps_item);
180                                 list_del(&cap->caps_item);
181                                 kmem_cache_free(ceph_cap_cachep, cap);
182                         }
183                 } else {
184                         mdsc->caps_avail_count += nr_caps;
185                 }
186
187                 dout("%s: caps %d = %d used + %d resv + %d avail\n",
188                      __func__,
189                      mdsc->caps_total_count, mdsc->caps_use_count,
190                      mdsc->caps_reserve_count, mdsc->caps_avail_count);
191                 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
192                                                  mdsc->caps_reserve_count +
193                                                  mdsc->caps_avail_count);
194         }
195 }
196
197 /*
198  * Called under mdsc->mutex.
199  */
200 int ceph_reserve_caps(struct ceph_mds_client *mdsc,
201                       struct ceph_cap_reservation *ctx, int need)
202 {
203         int i, j;
204         struct ceph_cap *cap;
205         int have;
206         int alloc = 0;
207         int max_caps;
208         int err = 0;
209         bool trimmed = false;
210         struct ceph_mds_session *s;
211         LIST_HEAD(newcaps);
212
213         dout("reserve caps ctx=%p need=%d\n", ctx, need);
214
215         /* first reserve any caps that are already allocated */
216         spin_lock(&mdsc->caps_list_lock);
217         if (mdsc->caps_avail_count >= need)
218                 have = need;
219         else
220                 have = mdsc->caps_avail_count;
221         mdsc->caps_avail_count -= have;
222         mdsc->caps_reserve_count += have;
223         BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
224                                          mdsc->caps_reserve_count +
225                                          mdsc->caps_avail_count);
226         spin_unlock(&mdsc->caps_list_lock);
227
228         for (i = have; i < need; ) {
229                 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
230                 if (cap) {
231                         list_add(&cap->caps_item, &newcaps);
232                         alloc++;
233                         i++;
234                         continue;
235                 }
236
237                 if (!trimmed) {
238                         for (j = 0; j < mdsc->max_sessions; j++) {
239                                 s = __ceph_lookup_mds_session(mdsc, j);
240                                 if (!s)
241                                         continue;
242                                 mutex_unlock(&mdsc->mutex);
243
244                                 mutex_lock(&s->s_mutex);
245                                 max_caps = s->s_nr_caps - (need - i);
246                                 ceph_trim_caps(mdsc, s, max_caps);
247                                 mutex_unlock(&s->s_mutex);
248
249                                 ceph_put_mds_session(s);
250                                 mutex_lock(&mdsc->mutex);
251                         }
252                         trimmed = true;
253
254                         spin_lock(&mdsc->caps_list_lock);
255                         if (mdsc->caps_avail_count) {
256                                 int more_have;
257                                 if (mdsc->caps_avail_count >= need - i)
258                                         more_have = need - i;
259                                 else
260                                         more_have = mdsc->caps_avail_count;
261
262                                 i += more_have;
263                                 have += more_have;
264                                 mdsc->caps_avail_count -= more_have;
265                                 mdsc->caps_reserve_count += more_have;
266
267                         }
268                         spin_unlock(&mdsc->caps_list_lock);
269
270                         continue;
271                 }
272
273                 pr_warn("reserve caps ctx=%p ENOMEM need=%d got=%d\n",
274                         ctx, need, have + alloc);
275                 err = -ENOMEM;
276                 break;
277         }
278
279         if (!err) {
280                 BUG_ON(have + alloc != need);
281                 ctx->count = need;
282                 ctx->used = 0;
283         }
284
285         spin_lock(&mdsc->caps_list_lock);
286         mdsc->caps_total_count += alloc;
287         mdsc->caps_reserve_count += alloc;
288         list_splice(&newcaps, &mdsc->caps_list);
289
290         BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
291                                          mdsc->caps_reserve_count +
292                                          mdsc->caps_avail_count);
293
294         if (err)
295                 __ceph_unreserve_caps(mdsc, have + alloc);
296
297         spin_unlock(&mdsc->caps_list_lock);
298
299         dout("reserve caps ctx=%p %d = %d used + %d resv + %d avail\n",
300              ctx, mdsc->caps_total_count, mdsc->caps_use_count,
301              mdsc->caps_reserve_count, mdsc->caps_avail_count);
302         return err;
303 }
304
305 void ceph_unreserve_caps(struct ceph_mds_client *mdsc,
306                          struct ceph_cap_reservation *ctx)
307 {
308         bool reclaim = false;
309         if (!ctx->count)
310                 return;
311
312         dout("unreserve caps ctx=%p count=%d\n", ctx, ctx->count);
313         spin_lock(&mdsc->caps_list_lock);
314         __ceph_unreserve_caps(mdsc, ctx->count);
315         ctx->count = 0;
316
317         if (mdsc->caps_use_max > 0 &&
318             mdsc->caps_use_count > mdsc->caps_use_max)
319                 reclaim = true;
320         spin_unlock(&mdsc->caps_list_lock);
321
322         if (reclaim)
323                 ceph_reclaim_caps_nr(mdsc, ctx->used);
324 }
325
326 struct ceph_cap *ceph_get_cap(struct ceph_mds_client *mdsc,
327                               struct ceph_cap_reservation *ctx)
328 {
329         struct ceph_cap *cap = NULL;
330
331         /* temporary, until we do something about cap import/export */
332         if (!ctx) {
333                 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
334                 if (cap) {
335                         spin_lock(&mdsc->caps_list_lock);
336                         mdsc->caps_use_count++;
337                         mdsc->caps_total_count++;
338                         spin_unlock(&mdsc->caps_list_lock);
339                 } else {
340                         spin_lock(&mdsc->caps_list_lock);
341                         if (mdsc->caps_avail_count) {
342                                 BUG_ON(list_empty(&mdsc->caps_list));
343
344                                 mdsc->caps_avail_count--;
345                                 mdsc->caps_use_count++;
346                                 cap = list_first_entry(&mdsc->caps_list,
347                                                 struct ceph_cap, caps_item);
348                                 list_del(&cap->caps_item);
349
350                                 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
351                                        mdsc->caps_reserve_count + mdsc->caps_avail_count);
352                         }
353                         spin_unlock(&mdsc->caps_list_lock);
354                 }
355
356                 return cap;
357         }
358
359         spin_lock(&mdsc->caps_list_lock);
360         dout("get_cap ctx=%p (%d) %d = %d used + %d resv + %d avail\n",
361              ctx, ctx->count, mdsc->caps_total_count, mdsc->caps_use_count,
362              mdsc->caps_reserve_count, mdsc->caps_avail_count);
363         BUG_ON(!ctx->count);
364         BUG_ON(ctx->count > mdsc->caps_reserve_count);
365         BUG_ON(list_empty(&mdsc->caps_list));
366
367         ctx->count--;
368         ctx->used++;
369         mdsc->caps_reserve_count--;
370         mdsc->caps_use_count++;
371
372         cap = list_first_entry(&mdsc->caps_list, struct ceph_cap, caps_item);
373         list_del(&cap->caps_item);
374
375         BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
376                mdsc->caps_reserve_count + mdsc->caps_avail_count);
377         spin_unlock(&mdsc->caps_list_lock);
378         return cap;
379 }
380
381 void ceph_put_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap)
382 {
383         spin_lock(&mdsc->caps_list_lock);
384         dout("put_cap %p %d = %d used + %d resv + %d avail\n",
385              cap, mdsc->caps_total_count, mdsc->caps_use_count,
386              mdsc->caps_reserve_count, mdsc->caps_avail_count);
387         mdsc->caps_use_count--;
388         /*
389          * Keep some preallocated caps around (ceph_min_count), to
390          * avoid lots of free/alloc churn.
391          */
392         if (mdsc->caps_avail_count >= mdsc->caps_reserve_count +
393                                       mdsc->caps_min_count) {
394                 mdsc->caps_total_count--;
395                 kmem_cache_free(ceph_cap_cachep, cap);
396         } else {
397                 mdsc->caps_avail_count++;
398                 list_add(&cap->caps_item, &mdsc->caps_list);
399         }
400
401         BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
402                mdsc->caps_reserve_count + mdsc->caps_avail_count);
403         spin_unlock(&mdsc->caps_list_lock);
404 }
405
406 void ceph_reservation_status(struct ceph_fs_client *fsc,
407                              int *total, int *avail, int *used, int *reserved,
408                              int *min)
409 {
410         struct ceph_mds_client *mdsc = fsc->mdsc;
411
412         spin_lock(&mdsc->caps_list_lock);
413
414         if (total)
415                 *total = mdsc->caps_total_count;
416         if (avail)
417                 *avail = mdsc->caps_avail_count;
418         if (used)
419                 *used = mdsc->caps_use_count;
420         if (reserved)
421                 *reserved = mdsc->caps_reserve_count;
422         if (min)
423                 *min = mdsc->caps_min_count;
424
425         spin_unlock(&mdsc->caps_list_lock);
426 }
427
428 /*
429  * Find ceph_cap for given mds, if any.
430  *
431  * Called with i_ceph_lock held.
432  */
433 static struct ceph_cap *__get_cap_for_mds(struct ceph_inode_info *ci, int mds)
434 {
435         struct ceph_cap *cap;
436         struct rb_node *n = ci->i_caps.rb_node;
437
438         while (n) {
439                 cap = rb_entry(n, struct ceph_cap, ci_node);
440                 if (mds < cap->mds)
441                         n = n->rb_left;
442                 else if (mds > cap->mds)
443                         n = n->rb_right;
444                 else
445                         return cap;
446         }
447         return NULL;
448 }
449
450 struct ceph_cap *ceph_get_cap_for_mds(struct ceph_inode_info *ci, int mds)
451 {
452         struct ceph_cap *cap;
453
454         spin_lock(&ci->i_ceph_lock);
455         cap = __get_cap_for_mds(ci, mds);
456         spin_unlock(&ci->i_ceph_lock);
457         return cap;
458 }
459
460 /*
461  * Called under i_ceph_lock.
462  */
463 static void __insert_cap_node(struct ceph_inode_info *ci,
464                               struct ceph_cap *new)
465 {
466         struct rb_node **p = &ci->i_caps.rb_node;
467         struct rb_node *parent = NULL;
468         struct ceph_cap *cap = NULL;
469
470         while (*p) {
471                 parent = *p;
472                 cap = rb_entry(parent, struct ceph_cap, ci_node);
473                 if (new->mds < cap->mds)
474                         p = &(*p)->rb_left;
475                 else if (new->mds > cap->mds)
476                         p = &(*p)->rb_right;
477                 else
478                         BUG();
479         }
480
481         rb_link_node(&new->ci_node, parent, p);
482         rb_insert_color(&new->ci_node, &ci->i_caps);
483 }
484
485 /*
486  * (re)set cap hold timeouts, which control the delayed release
487  * of unused caps back to the MDS.  Should be called on cap use.
488  */
489 static void __cap_set_timeouts(struct ceph_mds_client *mdsc,
490                                struct ceph_inode_info *ci)
491 {
492         struct ceph_mount_options *opt = mdsc->fsc->mount_options;
493         ci->i_hold_caps_max = round_jiffies(jiffies +
494                                             opt->caps_wanted_delay_max * HZ);
495         dout("__cap_set_timeouts %p %lu\n", &ci->vfs_inode,
496              ci->i_hold_caps_max - jiffies);
497 }
498
499 /*
500  * (Re)queue cap at the end of the delayed cap release list.
501  *
502  * If I_FLUSH is set, leave the inode at the front of the list.
503  *
504  * Caller holds i_ceph_lock
505  *    -> we take mdsc->cap_delay_lock
506  */
507 static void __cap_delay_requeue(struct ceph_mds_client *mdsc,
508                                 struct ceph_inode_info *ci)
509 {
510         dout("__cap_delay_requeue %p flags 0x%lx at %lu\n", &ci->vfs_inode,
511              ci->i_ceph_flags, ci->i_hold_caps_max);
512         if (!mdsc->stopping) {
513                 spin_lock(&mdsc->cap_delay_lock);
514                 if (!list_empty(&ci->i_cap_delay_list)) {
515                         if (ci->i_ceph_flags & CEPH_I_FLUSH)
516                                 goto no_change;
517                         list_del_init(&ci->i_cap_delay_list);
518                 }
519                 __cap_set_timeouts(mdsc, ci);
520                 list_add_tail(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
521 no_change:
522                 spin_unlock(&mdsc->cap_delay_lock);
523         }
524 }
525
526 /*
527  * Queue an inode for immediate writeback.  Mark inode with I_FLUSH,
528  * indicating we should send a cap message to flush dirty metadata
529  * asap, and move to the front of the delayed cap list.
530  */
531 static void __cap_delay_requeue_front(struct ceph_mds_client *mdsc,
532                                       struct ceph_inode_info *ci)
533 {
534         dout("__cap_delay_requeue_front %p\n", &ci->vfs_inode);
535         spin_lock(&mdsc->cap_delay_lock);
536         ci->i_ceph_flags |= CEPH_I_FLUSH;
537         if (!list_empty(&ci->i_cap_delay_list))
538                 list_del_init(&ci->i_cap_delay_list);
539         list_add(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
540         spin_unlock(&mdsc->cap_delay_lock);
541 }
542
543 /*
544  * Cancel delayed work on cap.
545  *
546  * Caller must hold i_ceph_lock.
547  */
548 static void __cap_delay_cancel(struct ceph_mds_client *mdsc,
549                                struct ceph_inode_info *ci)
550 {
551         dout("__cap_delay_cancel %p\n", &ci->vfs_inode);
552         if (list_empty(&ci->i_cap_delay_list))
553                 return;
554         spin_lock(&mdsc->cap_delay_lock);
555         list_del_init(&ci->i_cap_delay_list);
556         spin_unlock(&mdsc->cap_delay_lock);
557 }
558
559 /* Common issue checks for add_cap, handle_cap_grant. */
560 static void __check_cap_issue(struct ceph_inode_info *ci, struct ceph_cap *cap,
561                               unsigned issued)
562 {
563         unsigned had = __ceph_caps_issued(ci, NULL);
564
565         lockdep_assert_held(&ci->i_ceph_lock);
566
567         /*
568          * Each time we receive FILE_CACHE anew, we increment
569          * i_rdcache_gen.
570          */
571         if (S_ISREG(ci->vfs_inode.i_mode) &&
572             (issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
573             (had & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0) {
574                 ci->i_rdcache_gen++;
575         }
576
577         /*
578          * If FILE_SHARED is newly issued, mark dir not complete. We don't
579          * know what happened to this directory while we didn't have the cap.
580          * If FILE_SHARED is being revoked, also mark dir not complete. It
581          * stops on-going cached readdir.
582          */
583         if ((issued & CEPH_CAP_FILE_SHARED) != (had & CEPH_CAP_FILE_SHARED)) {
584                 if (issued & CEPH_CAP_FILE_SHARED)
585                         atomic_inc(&ci->i_shared_gen);
586                 if (S_ISDIR(ci->vfs_inode.i_mode)) {
587                         dout(" marking %p NOT complete\n", &ci->vfs_inode);
588                         __ceph_dir_clear_complete(ci);
589                 }
590         }
591
592         /* Wipe saved layout if we're losing DIR_CREATE caps */
593         if (S_ISDIR(ci->vfs_inode.i_mode) && (had & CEPH_CAP_DIR_CREATE) &&
594                 !(issued & CEPH_CAP_DIR_CREATE)) {
595              ceph_put_string(rcu_dereference_raw(ci->i_cached_layout.pool_ns));
596              memset(&ci->i_cached_layout, 0, sizeof(ci->i_cached_layout));
597         }
598 }
599
600 /**
601  * change_auth_cap_ses - move inode to appropriate lists when auth caps change
602  * @ci: inode to be moved
603  * @session: new auth caps session
604  */
605 static void change_auth_cap_ses(struct ceph_inode_info *ci,
606                                 struct ceph_mds_session *session)
607 {
608         lockdep_assert_held(&ci->i_ceph_lock);
609
610         if (list_empty(&ci->i_dirty_item) && list_empty(&ci->i_flushing_item))
611                 return;
612
613         spin_lock(&session->s_mdsc->cap_dirty_lock);
614         if (!list_empty(&ci->i_dirty_item))
615                 list_move(&ci->i_dirty_item, &session->s_cap_dirty);
616         if (!list_empty(&ci->i_flushing_item))
617                 list_move_tail(&ci->i_flushing_item, &session->s_cap_flushing);
618         spin_unlock(&session->s_mdsc->cap_dirty_lock);
619 }
620
621 /*
622  * Add a capability under the given MDS session.
623  *
624  * Caller should hold session snap_rwsem (read) and ci->i_ceph_lock
625  *
626  * @fmode is the open file mode, if we are opening a file, otherwise
627  * it is < 0.  (This is so we can atomically add the cap and add an
628  * open file reference to it.)
629  */
630 void ceph_add_cap(struct inode *inode,
631                   struct ceph_mds_session *session, u64 cap_id,
632                   unsigned issued, unsigned wanted,
633                   unsigned seq, unsigned mseq, u64 realmino, int flags,
634                   struct ceph_cap **new_cap)
635 {
636         struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
637         struct ceph_inode_info *ci = ceph_inode(inode);
638         struct ceph_cap *cap;
639         int mds = session->s_mds;
640         int actual_wanted;
641         u32 gen;
642
643         lockdep_assert_held(&ci->i_ceph_lock);
644
645         dout("add_cap %p mds%d cap %llx %s seq %d\n", inode,
646              session->s_mds, cap_id, ceph_cap_string(issued), seq);
647
648         gen = atomic_read(&session->s_cap_gen);
649
650         cap = __get_cap_for_mds(ci, mds);
651         if (!cap) {
652                 cap = *new_cap;
653                 *new_cap = NULL;
654
655                 cap->issued = 0;
656                 cap->implemented = 0;
657                 cap->mds = mds;
658                 cap->mds_wanted = 0;
659                 cap->mseq = 0;
660
661                 cap->ci = ci;
662                 __insert_cap_node(ci, cap);
663
664                 /* add to session cap list */
665                 cap->session = session;
666                 spin_lock(&session->s_cap_lock);
667                 list_add_tail(&cap->session_caps, &session->s_caps);
668                 session->s_nr_caps++;
669                 atomic64_inc(&mdsc->metric.total_caps);
670                 spin_unlock(&session->s_cap_lock);
671         } else {
672                 spin_lock(&session->s_cap_lock);
673                 list_move_tail(&cap->session_caps, &session->s_caps);
674                 spin_unlock(&session->s_cap_lock);
675
676                 if (cap->cap_gen < gen)
677                         cap->issued = cap->implemented = CEPH_CAP_PIN;
678
679                 /*
680                  * auth mds of the inode changed. we received the cap export
681                  * message, but still haven't received the cap import message.
682                  * handle_cap_export() updated the new auth MDS' cap.
683                  *
684                  * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing
685                  * a message that was send before the cap import message. So
686                  * don't remove caps.
687                  */
688                 if (ceph_seq_cmp(seq, cap->seq) <= 0) {
689                         WARN_ON(cap != ci->i_auth_cap);
690                         WARN_ON(cap->cap_id != cap_id);
691                         seq = cap->seq;
692                         mseq = cap->mseq;
693                         issued |= cap->issued;
694                         flags |= CEPH_CAP_FLAG_AUTH;
695                 }
696         }
697
698         if (!ci->i_snap_realm ||
699             ((flags & CEPH_CAP_FLAG_AUTH) &&
700              realmino != (u64)-1 && ci->i_snap_realm->ino != realmino)) {
701                 /*
702                  * add this inode to the appropriate snap realm
703                  */
704                 struct ceph_snap_realm *realm = ceph_lookup_snap_realm(mdsc,
705                                                                realmino);
706                 if (realm) {
707                         struct ceph_snap_realm *oldrealm = ci->i_snap_realm;
708                         if (oldrealm) {
709                                 spin_lock(&oldrealm->inodes_with_caps_lock);
710                                 list_del_init(&ci->i_snap_realm_item);
711                                 spin_unlock(&oldrealm->inodes_with_caps_lock);
712                         }
713
714                         spin_lock(&realm->inodes_with_caps_lock);
715                         list_add(&ci->i_snap_realm_item,
716                                  &realm->inodes_with_caps);
717                         ci->i_snap_realm = realm;
718                         if (realm->ino == ci->i_vino.ino)
719                                 realm->inode = inode;
720                         spin_unlock(&realm->inodes_with_caps_lock);
721
722                         if (oldrealm)
723                                 ceph_put_snap_realm(mdsc, oldrealm);
724                 } else {
725                         pr_err("ceph_add_cap: couldn't find snap realm %llx\n",
726                                realmino);
727                         WARN_ON(!realm);
728                 }
729         }
730
731         __check_cap_issue(ci, cap, issued);
732
733         /*
734          * If we are issued caps we don't want, or the mds' wanted
735          * value appears to be off, queue a check so we'll release
736          * later and/or update the mds wanted value.
737          */
738         actual_wanted = __ceph_caps_wanted(ci);
739         if ((wanted & ~actual_wanted) ||
740             (issued & ~actual_wanted & CEPH_CAP_ANY_WR)) {
741                 dout(" issued %s, mds wanted %s, actual %s, queueing\n",
742                      ceph_cap_string(issued), ceph_cap_string(wanted),
743                      ceph_cap_string(actual_wanted));
744                 __cap_delay_requeue(mdsc, ci);
745         }
746
747         if (flags & CEPH_CAP_FLAG_AUTH) {
748                 if (!ci->i_auth_cap ||
749                     ceph_seq_cmp(ci->i_auth_cap->mseq, mseq) < 0) {
750                         if (ci->i_auth_cap &&
751                             ci->i_auth_cap->session != cap->session)
752                                 change_auth_cap_ses(ci, cap->session);
753                         ci->i_auth_cap = cap;
754                         cap->mds_wanted = wanted;
755                 }
756         } else {
757                 WARN_ON(ci->i_auth_cap == cap);
758         }
759
760         dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
761              inode, ceph_vinop(inode), cap, ceph_cap_string(issued),
762              ceph_cap_string(issued|cap->issued), seq, mds);
763         cap->cap_id = cap_id;
764         cap->issued = issued;
765         cap->implemented |= issued;
766         if (ceph_seq_cmp(mseq, cap->mseq) > 0)
767                 cap->mds_wanted = wanted;
768         else
769                 cap->mds_wanted |= wanted;
770         cap->seq = seq;
771         cap->issue_seq = seq;
772         cap->mseq = mseq;
773         cap->cap_gen = gen;
774 }
775
776 /*
777  * Return true if cap has not timed out and belongs to the current
778  * generation of the MDS session (i.e. has not gone 'stale' due to
779  * us losing touch with the mds).
780  */
781 static int __cap_is_valid(struct ceph_cap *cap)
782 {
783         unsigned long ttl;
784         u32 gen;
785
786         gen = atomic_read(&cap->session->s_cap_gen);
787         ttl = cap->session->s_cap_ttl;
788
789         if (cap->cap_gen < gen || time_after_eq(jiffies, ttl)) {
790                 dout("__cap_is_valid %p cap %p issued %s "
791                      "but STALE (gen %u vs %u)\n", &cap->ci->vfs_inode,
792                      cap, ceph_cap_string(cap->issued), cap->cap_gen, gen);
793                 return 0;
794         }
795
796         return 1;
797 }
798
799 /*
800  * Return set of valid cap bits issued to us.  Note that caps time
801  * out, and may be invalidated in bulk if the client session times out
802  * and session->s_cap_gen is bumped.
803  */
804 int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented)
805 {
806         int have = ci->i_snap_caps;
807         struct ceph_cap *cap;
808         struct rb_node *p;
809
810         if (implemented)
811                 *implemented = 0;
812         for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
813                 cap = rb_entry(p, struct ceph_cap, ci_node);
814                 if (!__cap_is_valid(cap))
815                         continue;
816                 dout("__ceph_caps_issued %p cap %p issued %s\n",
817                      &ci->vfs_inode, cap, ceph_cap_string(cap->issued));
818                 have |= cap->issued;
819                 if (implemented)
820                         *implemented |= cap->implemented;
821         }
822         /*
823          * exclude caps issued by non-auth MDS, but are been revoking
824          * by the auth MDS. The non-auth MDS should be revoking/exporting
825          * these caps, but the message is delayed.
826          */
827         if (ci->i_auth_cap) {
828                 cap = ci->i_auth_cap;
829                 have &= ~cap->implemented | cap->issued;
830         }
831         return have;
832 }
833
834 /*
835  * Get cap bits issued by caps other than @ocap
836  */
837 int __ceph_caps_issued_other(struct ceph_inode_info *ci, struct ceph_cap *ocap)
838 {
839         int have = ci->i_snap_caps;
840         struct ceph_cap *cap;
841         struct rb_node *p;
842
843         for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
844                 cap = rb_entry(p, struct ceph_cap, ci_node);
845                 if (cap == ocap)
846                         continue;
847                 if (!__cap_is_valid(cap))
848                         continue;
849                 have |= cap->issued;
850         }
851         return have;
852 }
853
854 /*
855  * Move a cap to the end of the LRU (oldest caps at list head, newest
856  * at list tail).
857  */
858 static void __touch_cap(struct ceph_cap *cap)
859 {
860         struct ceph_mds_session *s = cap->session;
861
862         spin_lock(&s->s_cap_lock);
863         if (!s->s_cap_iterator) {
864                 dout("__touch_cap %p cap %p mds%d\n", &cap->ci->vfs_inode, cap,
865                      s->s_mds);
866                 list_move_tail(&cap->session_caps, &s->s_caps);
867         } else {
868                 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
869                      &cap->ci->vfs_inode, cap, s->s_mds);
870         }
871         spin_unlock(&s->s_cap_lock);
872 }
873
874 /*
875  * Check if we hold the given mask.  If so, move the cap(s) to the
876  * front of their respective LRUs.  (This is the preferred way for
877  * callers to check for caps they want.)
878  */
879 int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int touch)
880 {
881         struct ceph_cap *cap;
882         struct rb_node *p;
883         int have = ci->i_snap_caps;
884
885         if ((have & mask) == mask) {
886                 dout("__ceph_caps_issued_mask ino 0x%llx snap issued %s"
887                      " (mask %s)\n", ceph_ino(&ci->vfs_inode),
888                      ceph_cap_string(have),
889                      ceph_cap_string(mask));
890                 return 1;
891         }
892
893         for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
894                 cap = rb_entry(p, struct ceph_cap, ci_node);
895                 if (!__cap_is_valid(cap))
896                         continue;
897                 if ((cap->issued & mask) == mask) {
898                         dout("__ceph_caps_issued_mask ino 0x%llx cap %p issued %s"
899                              " (mask %s)\n", ceph_ino(&ci->vfs_inode), cap,
900                              ceph_cap_string(cap->issued),
901                              ceph_cap_string(mask));
902                         if (touch)
903                                 __touch_cap(cap);
904                         return 1;
905                 }
906
907                 /* does a combination of caps satisfy mask? */
908                 have |= cap->issued;
909                 if ((have & mask) == mask) {
910                         dout("__ceph_caps_issued_mask ino 0x%llx combo issued %s"
911                              " (mask %s)\n", ceph_ino(&ci->vfs_inode),
912                              ceph_cap_string(cap->issued),
913                              ceph_cap_string(mask));
914                         if (touch) {
915                                 struct rb_node *q;
916
917                                 /* touch this + preceding caps */
918                                 __touch_cap(cap);
919                                 for (q = rb_first(&ci->i_caps); q != p;
920                                      q = rb_next(q)) {
921                                         cap = rb_entry(q, struct ceph_cap,
922                                                        ci_node);
923                                         if (!__cap_is_valid(cap))
924                                                 continue;
925                                         if (cap->issued & mask)
926                                                 __touch_cap(cap);
927                                 }
928                         }
929                         return 1;
930                 }
931         }
932
933         return 0;
934 }
935
936 int __ceph_caps_issued_mask_metric(struct ceph_inode_info *ci, int mask,
937                                    int touch)
938 {
939         struct ceph_fs_client *fsc = ceph_sb_to_client(ci->vfs_inode.i_sb);
940         int r;
941
942         r = __ceph_caps_issued_mask(ci, mask, touch);
943         if (r)
944                 ceph_update_cap_hit(&fsc->mdsc->metric);
945         else
946                 ceph_update_cap_mis(&fsc->mdsc->metric);
947         return r;
948 }
949
950 /*
951  * Return true if mask caps are currently being revoked by an MDS.
952  */
953 int __ceph_caps_revoking_other(struct ceph_inode_info *ci,
954                                struct ceph_cap *ocap, int mask)
955 {
956         struct ceph_cap *cap;
957         struct rb_node *p;
958
959         for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
960                 cap = rb_entry(p, struct ceph_cap, ci_node);
961                 if (cap != ocap &&
962                     (cap->implemented & ~cap->issued & mask))
963                         return 1;
964         }
965         return 0;
966 }
967
968 int ceph_caps_revoking(struct ceph_inode_info *ci, int mask)
969 {
970         struct inode *inode = &ci->vfs_inode;
971         int ret;
972
973         spin_lock(&ci->i_ceph_lock);
974         ret = __ceph_caps_revoking_other(ci, NULL, mask);
975         spin_unlock(&ci->i_ceph_lock);
976         dout("ceph_caps_revoking %p %s = %d\n", inode,
977              ceph_cap_string(mask), ret);
978         return ret;
979 }
980
981 int __ceph_caps_used(struct ceph_inode_info *ci)
982 {
983         int used = 0;
984         if (ci->i_pin_ref)
985                 used |= CEPH_CAP_PIN;
986         if (ci->i_rd_ref)
987                 used |= CEPH_CAP_FILE_RD;
988         if (ci->i_rdcache_ref ||
989             (S_ISREG(ci->vfs_inode.i_mode) &&
990              ci->vfs_inode.i_data.nrpages))
991                 used |= CEPH_CAP_FILE_CACHE;
992         if (ci->i_wr_ref)
993                 used |= CEPH_CAP_FILE_WR;
994         if (ci->i_wb_ref || ci->i_wrbuffer_ref)
995                 used |= CEPH_CAP_FILE_BUFFER;
996         if (ci->i_fx_ref)
997                 used |= CEPH_CAP_FILE_EXCL;
998         return used;
999 }
1000
1001 #define FMODE_WAIT_BIAS 1000
1002
1003 /*
1004  * wanted, by virtue of open file modes
1005  */
1006 int __ceph_caps_file_wanted(struct ceph_inode_info *ci)
1007 {
1008         const int PIN_SHIFT = ffs(CEPH_FILE_MODE_PIN);
1009         const int RD_SHIFT = ffs(CEPH_FILE_MODE_RD);
1010         const int WR_SHIFT = ffs(CEPH_FILE_MODE_WR);
1011         const int LAZY_SHIFT = ffs(CEPH_FILE_MODE_LAZY);
1012         struct ceph_mount_options *opt =
1013                 ceph_inode_to_client(&ci->vfs_inode)->mount_options;
1014         unsigned long used_cutoff = jiffies - opt->caps_wanted_delay_max * HZ;
1015         unsigned long idle_cutoff = jiffies - opt->caps_wanted_delay_min * HZ;
1016
1017         if (S_ISDIR(ci->vfs_inode.i_mode)) {
1018                 int want = 0;
1019
1020                 /* use used_cutoff here, to keep dir's wanted caps longer */
1021                 if (ci->i_nr_by_mode[RD_SHIFT] > 0 ||
1022                     time_after(ci->i_last_rd, used_cutoff))
1023                         want |= CEPH_CAP_ANY_SHARED;
1024
1025                 if (ci->i_nr_by_mode[WR_SHIFT] > 0 ||
1026                     time_after(ci->i_last_wr, used_cutoff)) {
1027                         want |= CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL;
1028                         if (opt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS)
1029                                 want |= CEPH_CAP_ANY_DIR_OPS;
1030                 }
1031
1032                 if (want || ci->i_nr_by_mode[PIN_SHIFT] > 0)
1033                         want |= CEPH_CAP_PIN;
1034
1035                 return want;
1036         } else {
1037                 int bits = 0;
1038
1039                 if (ci->i_nr_by_mode[RD_SHIFT] > 0) {
1040                         if (ci->i_nr_by_mode[RD_SHIFT] >= FMODE_WAIT_BIAS ||
1041                             time_after(ci->i_last_rd, used_cutoff))
1042                                 bits |= 1 << RD_SHIFT;
1043                 } else if (time_after(ci->i_last_rd, idle_cutoff)) {
1044                         bits |= 1 << RD_SHIFT;
1045                 }
1046
1047                 if (ci->i_nr_by_mode[WR_SHIFT] > 0) {
1048                         if (ci->i_nr_by_mode[WR_SHIFT] >= FMODE_WAIT_BIAS ||
1049                             time_after(ci->i_last_wr, used_cutoff))
1050                                 bits |= 1 << WR_SHIFT;
1051                 } else if (time_after(ci->i_last_wr, idle_cutoff)) {
1052                         bits |= 1 << WR_SHIFT;
1053                 }
1054
1055                 /* check lazyio only when read/write is wanted */
1056                 if ((bits & (CEPH_FILE_MODE_RDWR << 1)) &&
1057                     ci->i_nr_by_mode[LAZY_SHIFT] > 0)
1058                         bits |= 1 << LAZY_SHIFT;
1059
1060                 return bits ? ceph_caps_for_mode(bits >> 1) : 0;
1061         }
1062 }
1063
1064 /*
1065  * wanted, by virtue of open file modes AND cap refs (buffered/cached data)
1066  */
1067 int __ceph_caps_wanted(struct ceph_inode_info *ci)
1068 {
1069         int w = __ceph_caps_file_wanted(ci) | __ceph_caps_used(ci);
1070         if (S_ISDIR(ci->vfs_inode.i_mode)) {
1071                 /* we want EXCL if holding caps of dir ops */
1072                 if (w & CEPH_CAP_ANY_DIR_OPS)
1073                         w |= CEPH_CAP_FILE_EXCL;
1074         } else {
1075                 /* we want EXCL if dirty data */
1076                 if (w & CEPH_CAP_FILE_BUFFER)
1077                         w |= CEPH_CAP_FILE_EXCL;
1078         }
1079         return w;
1080 }
1081
1082 /*
1083  * Return caps we have registered with the MDS(s) as 'wanted'.
1084  */
1085 int __ceph_caps_mds_wanted(struct ceph_inode_info *ci, bool check)
1086 {
1087         struct ceph_cap *cap;
1088         struct rb_node *p;
1089         int mds_wanted = 0;
1090
1091         for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1092                 cap = rb_entry(p, struct ceph_cap, ci_node);
1093                 if (check && !__cap_is_valid(cap))
1094                         continue;
1095                 if (cap == ci->i_auth_cap)
1096                         mds_wanted |= cap->mds_wanted;
1097                 else
1098                         mds_wanted |= (cap->mds_wanted & ~CEPH_CAP_ANY_FILE_WR);
1099         }
1100         return mds_wanted;
1101 }
1102
1103 int ceph_is_any_caps(struct inode *inode)
1104 {
1105         struct ceph_inode_info *ci = ceph_inode(inode);
1106         int ret;
1107
1108         spin_lock(&ci->i_ceph_lock);
1109         ret = __ceph_is_any_real_caps(ci);
1110         spin_unlock(&ci->i_ceph_lock);
1111
1112         return ret;
1113 }
1114
1115 static void drop_inode_snap_realm(struct ceph_inode_info *ci)
1116 {
1117         struct ceph_snap_realm *realm = ci->i_snap_realm;
1118         spin_lock(&realm->inodes_with_caps_lock);
1119         list_del_init(&ci->i_snap_realm_item);
1120         ci->i_snap_realm_counter++;
1121         ci->i_snap_realm = NULL;
1122         if (realm->ino == ci->i_vino.ino)
1123                 realm->inode = NULL;
1124         spin_unlock(&realm->inodes_with_caps_lock);
1125         ceph_put_snap_realm(ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc,
1126                             realm);
1127 }
1128
1129 /*
1130  * Remove a cap.  Take steps to deal with a racing iterate_session_caps.
1131  *
1132  * caller should hold i_ceph_lock.
1133  * caller will not hold session s_mutex if called from destroy_inode.
1134  */
1135 void __ceph_remove_cap(struct ceph_cap *cap, bool queue_release)
1136 {
1137         struct ceph_mds_session *session = cap->session;
1138         struct ceph_inode_info *ci = cap->ci;
1139         struct ceph_mds_client *mdsc;
1140         int removed = 0;
1141
1142         /* 'ci' being NULL means the remove have already occurred */
1143         if (!ci) {
1144                 dout("%s: cap inode is NULL\n", __func__);
1145                 return;
1146         }
1147
1148         dout("__ceph_remove_cap %p from %p\n", cap, &ci->vfs_inode);
1149
1150         mdsc = ceph_inode_to_client(&ci->vfs_inode)->mdsc;
1151
1152         /* remove from inode's cap rbtree, and clear auth cap */
1153         rb_erase(&cap->ci_node, &ci->i_caps);
1154         if (ci->i_auth_cap == cap) {
1155                 WARN_ON_ONCE(!list_empty(&ci->i_dirty_item) &&
1156                              !mdsc->fsc->blocklisted);
1157                 ci->i_auth_cap = NULL;
1158         }
1159
1160         /* remove from session list */
1161         spin_lock(&session->s_cap_lock);
1162         if (session->s_cap_iterator == cap) {
1163                 /* not yet, we are iterating over this very cap */
1164                 dout("__ceph_remove_cap  delaying %p removal from session %p\n",
1165                      cap, cap->session);
1166         } else {
1167                 list_del_init(&cap->session_caps);
1168                 session->s_nr_caps--;
1169                 atomic64_dec(&mdsc->metric.total_caps);
1170                 cap->session = NULL;
1171                 removed = 1;
1172         }
1173         /* protect backpointer with s_cap_lock: see iterate_session_caps */
1174         cap->ci = NULL;
1175
1176         /*
1177          * s_cap_reconnect is protected by s_cap_lock. no one changes
1178          * s_cap_gen while session is in the reconnect state.
1179          */
1180         if (queue_release &&
1181             (!session->s_cap_reconnect ||
1182              cap->cap_gen == atomic_read(&session->s_cap_gen))) {
1183                 cap->queue_release = 1;
1184                 if (removed) {
1185                         __ceph_queue_cap_release(session, cap);
1186                         removed = 0;
1187                 }
1188         } else {
1189                 cap->queue_release = 0;
1190         }
1191         cap->cap_ino = ci->i_vino.ino;
1192
1193         spin_unlock(&session->s_cap_lock);
1194
1195         if (removed)
1196                 ceph_put_cap(mdsc, cap);
1197
1198         if (!__ceph_is_any_real_caps(ci)) {
1199                 /* when reconnect denied, we remove session caps forcibly,
1200                  * i_wr_ref can be non-zero. If there are ongoing write,
1201                  * keep i_snap_realm.
1202                  */
1203                 if (ci->i_wr_ref == 0 && ci->i_snap_realm)
1204                         drop_inode_snap_realm(ci);
1205
1206                 __cap_delay_cancel(mdsc, ci);
1207         }
1208 }
1209
1210 struct cap_msg_args {
1211         struct ceph_mds_session *session;
1212         u64                     ino, cid, follows;
1213         u64                     flush_tid, oldest_flush_tid, size, max_size;
1214         u64                     xattr_version;
1215         u64                     change_attr;
1216         struct ceph_buffer      *xattr_buf;
1217         struct ceph_buffer      *old_xattr_buf;
1218         struct timespec64       atime, mtime, ctime, btime;
1219         int                     op, caps, wanted, dirty;
1220         u32                     seq, issue_seq, mseq, time_warp_seq;
1221         u32                     flags;
1222         kuid_t                  uid;
1223         kgid_t                  gid;
1224         umode_t                 mode;
1225         bool                    inline_data;
1226         bool                    wake;
1227 };
1228
1229 /*
1230  * cap struct size + flock buffer size + inline version + inline data size +
1231  * osd_epoch_barrier + oldest_flush_tid
1232  */
1233 #define CAP_MSG_SIZE (sizeof(struct ceph_mds_caps) + \
1234                       4 + 8 + 4 + 4 + 8 + 4 + 4 + 4 + 8 + 8 + 4)
1235
1236 /* Marshal up the cap msg to the MDS */
1237 static void encode_cap_msg(struct ceph_msg *msg, struct cap_msg_args *arg)
1238 {
1239         struct ceph_mds_caps *fc;
1240         void *p;
1241         struct ceph_osd_client *osdc = &arg->session->s_mdsc->fsc->client->osdc;
1242
1243         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",
1244              __func__, ceph_cap_op_name(arg->op), arg->cid, arg->ino,
1245              ceph_cap_string(arg->caps), ceph_cap_string(arg->wanted),
1246              ceph_cap_string(arg->dirty), arg->seq, arg->issue_seq,
1247              arg->flush_tid, arg->oldest_flush_tid, arg->mseq, arg->follows,
1248              arg->size, arg->max_size, arg->xattr_version,
1249              arg->xattr_buf ? (int)arg->xattr_buf->vec.iov_len : 0);
1250
1251         msg->hdr.version = cpu_to_le16(10);
1252         msg->hdr.tid = cpu_to_le64(arg->flush_tid);
1253
1254         fc = msg->front.iov_base;
1255         memset(fc, 0, sizeof(*fc));
1256
1257         fc->cap_id = cpu_to_le64(arg->cid);
1258         fc->op = cpu_to_le32(arg->op);
1259         fc->seq = cpu_to_le32(arg->seq);
1260         fc->issue_seq = cpu_to_le32(arg->issue_seq);
1261         fc->migrate_seq = cpu_to_le32(arg->mseq);
1262         fc->caps = cpu_to_le32(arg->caps);
1263         fc->wanted = cpu_to_le32(arg->wanted);
1264         fc->dirty = cpu_to_le32(arg->dirty);
1265         fc->ino = cpu_to_le64(arg->ino);
1266         fc->snap_follows = cpu_to_le64(arg->follows);
1267
1268         fc->size = cpu_to_le64(arg->size);
1269         fc->max_size = cpu_to_le64(arg->max_size);
1270         ceph_encode_timespec64(&fc->mtime, &arg->mtime);
1271         ceph_encode_timespec64(&fc->atime, &arg->atime);
1272         ceph_encode_timespec64(&fc->ctime, &arg->ctime);
1273         fc->time_warp_seq = cpu_to_le32(arg->time_warp_seq);
1274
1275         fc->uid = cpu_to_le32(from_kuid(&init_user_ns, arg->uid));
1276         fc->gid = cpu_to_le32(from_kgid(&init_user_ns, arg->gid));
1277         fc->mode = cpu_to_le32(arg->mode);
1278
1279         fc->xattr_version = cpu_to_le64(arg->xattr_version);
1280         if (arg->xattr_buf) {
1281                 msg->middle = ceph_buffer_get(arg->xattr_buf);
1282                 fc->xattr_len = cpu_to_le32(arg->xattr_buf->vec.iov_len);
1283                 msg->hdr.middle_len = cpu_to_le32(arg->xattr_buf->vec.iov_len);
1284         }
1285
1286         p = fc + 1;
1287         /* flock buffer size (version 2) */
1288         ceph_encode_32(&p, 0);
1289         /* inline version (version 4) */
1290         ceph_encode_64(&p, arg->inline_data ? 0 : CEPH_INLINE_NONE);
1291         /* inline data size */
1292         ceph_encode_32(&p, 0);
1293         /*
1294          * osd_epoch_barrier (version 5)
1295          * The epoch_barrier is protected osdc->lock, so READ_ONCE here in
1296          * case it was recently changed
1297          */
1298         ceph_encode_32(&p, READ_ONCE(osdc->epoch_barrier));
1299         /* oldest_flush_tid (version 6) */
1300         ceph_encode_64(&p, arg->oldest_flush_tid);
1301
1302         /*
1303          * caller_uid/caller_gid (version 7)
1304          *
1305          * Currently, we don't properly track which caller dirtied the caps
1306          * last, and force a flush of them when there is a conflict. For now,
1307          * just set this to 0:0, to emulate how the MDS has worked up to now.
1308          */
1309         ceph_encode_32(&p, 0);
1310         ceph_encode_32(&p, 0);
1311
1312         /* pool namespace (version 8) (mds always ignores this) */
1313         ceph_encode_32(&p, 0);
1314
1315         /* btime and change_attr (version 9) */
1316         ceph_encode_timespec64(p, &arg->btime);
1317         p += sizeof(struct ceph_timespec);
1318         ceph_encode_64(&p, arg->change_attr);
1319
1320         /* Advisory flags (version 10) */
1321         ceph_encode_32(&p, arg->flags);
1322 }
1323
1324 /*
1325  * Queue cap releases when an inode is dropped from our cache.
1326  */
1327 void __ceph_remove_caps(struct ceph_inode_info *ci)
1328 {
1329         struct rb_node *p;
1330
1331         /* lock i_ceph_lock, because ceph_d_revalidate(..., LOOKUP_RCU)
1332          * may call __ceph_caps_issued_mask() on a freeing inode. */
1333         spin_lock(&ci->i_ceph_lock);
1334         p = rb_first(&ci->i_caps);
1335         while (p) {
1336                 struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
1337                 p = rb_next(p);
1338                 __ceph_remove_cap(cap, true);
1339         }
1340         spin_unlock(&ci->i_ceph_lock);
1341 }
1342
1343 /*
1344  * Prepare to send a cap message to an MDS. Update the cap state, and populate
1345  * the arg struct with the parameters that will need to be sent. This should
1346  * be done under the i_ceph_lock to guard against changes to cap state.
1347  *
1348  * Make note of max_size reported/requested from mds, revoked caps
1349  * that have now been implemented.
1350  */
1351 static void __prep_cap(struct cap_msg_args *arg, struct ceph_cap *cap,
1352                        int op, int flags, int used, int want, int retain,
1353                        int flushing, u64 flush_tid, u64 oldest_flush_tid)
1354 {
1355         struct ceph_inode_info *ci = cap->ci;
1356         struct inode *inode = &ci->vfs_inode;
1357         int held, revoking;
1358
1359         lockdep_assert_held(&ci->i_ceph_lock);
1360
1361         held = cap->issued | cap->implemented;
1362         revoking = cap->implemented & ~cap->issued;
1363         retain &= ~revoking;
1364
1365         dout("%s %p cap %p session %p %s -> %s (revoking %s)\n",
1366              __func__, inode, cap, cap->session,
1367              ceph_cap_string(held), ceph_cap_string(held & retain),
1368              ceph_cap_string(revoking));
1369         BUG_ON((retain & CEPH_CAP_PIN) == 0);
1370
1371         ci->i_ceph_flags &= ~CEPH_I_FLUSH;
1372
1373         cap->issued &= retain;  /* drop bits we don't want */
1374         /*
1375          * Wake up any waiters on wanted -> needed transition. This is due to
1376          * the weird transition from buffered to sync IO... we need to flush
1377          * dirty pages _before_ allowing sync writes to avoid reordering.
1378          */
1379         arg->wake = cap->implemented & ~cap->issued;
1380         cap->implemented &= cap->issued | used;
1381         cap->mds_wanted = want;
1382
1383         arg->session = cap->session;
1384         arg->ino = ceph_vino(inode).ino;
1385         arg->cid = cap->cap_id;
1386         arg->follows = flushing ? ci->i_head_snapc->seq : 0;
1387         arg->flush_tid = flush_tid;
1388         arg->oldest_flush_tid = oldest_flush_tid;
1389
1390         arg->size = i_size_read(inode);
1391         ci->i_reported_size = arg->size;
1392         arg->max_size = ci->i_wanted_max_size;
1393         if (cap == ci->i_auth_cap) {
1394                 if (want & CEPH_CAP_ANY_FILE_WR)
1395                         ci->i_requested_max_size = arg->max_size;
1396                 else
1397                         ci->i_requested_max_size = 0;
1398         }
1399
1400         if (flushing & CEPH_CAP_XATTR_EXCL) {
1401                 arg->old_xattr_buf = __ceph_build_xattrs_blob(ci);
1402                 arg->xattr_version = ci->i_xattrs.version;
1403                 arg->xattr_buf = ci->i_xattrs.blob;
1404         } else {
1405                 arg->xattr_buf = NULL;
1406                 arg->old_xattr_buf = NULL;
1407         }
1408
1409         arg->mtime = inode->i_mtime;
1410         arg->atime = inode->i_atime;
1411         arg->ctime = inode->i_ctime;
1412         arg->btime = ci->i_btime;
1413         arg->change_attr = inode_peek_iversion_raw(inode);
1414
1415         arg->op = op;
1416         arg->caps = cap->implemented;
1417         arg->wanted = want;
1418         arg->dirty = flushing;
1419
1420         arg->seq = cap->seq;
1421         arg->issue_seq = cap->issue_seq;
1422         arg->mseq = cap->mseq;
1423         arg->time_warp_seq = ci->i_time_warp_seq;
1424
1425         arg->uid = inode->i_uid;
1426         arg->gid = inode->i_gid;
1427         arg->mode = inode->i_mode;
1428
1429         arg->inline_data = ci->i_inline_version != CEPH_INLINE_NONE;
1430         if (!(flags & CEPH_CLIENT_CAPS_PENDING_CAPSNAP) &&
1431             !list_empty(&ci->i_cap_snaps)) {
1432                 struct ceph_cap_snap *capsnap;
1433                 list_for_each_entry_reverse(capsnap, &ci->i_cap_snaps, ci_item) {
1434                         if (capsnap->cap_flush.tid)
1435                                 break;
1436                         if (capsnap->need_flush) {
1437                                 flags |= CEPH_CLIENT_CAPS_PENDING_CAPSNAP;
1438                                 break;
1439                         }
1440                 }
1441         }
1442         arg->flags = flags;
1443 }
1444
1445 /*
1446  * Send a cap msg on the given inode.
1447  *
1448  * Caller should hold snap_rwsem (read), s_mutex.
1449  */
1450 static void __send_cap(struct cap_msg_args *arg, struct ceph_inode_info *ci)
1451 {
1452         struct ceph_msg *msg;
1453         struct inode *inode = &ci->vfs_inode;
1454
1455         msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, CAP_MSG_SIZE, GFP_NOFS, false);
1456         if (!msg) {
1457                 pr_err("error allocating cap msg: ino (%llx.%llx) flushing %s tid %llu, requeuing cap.\n",
1458                        ceph_vinop(inode), ceph_cap_string(arg->dirty),
1459                        arg->flush_tid);
1460                 spin_lock(&ci->i_ceph_lock);
1461                 __cap_delay_requeue(arg->session->s_mdsc, ci);
1462                 spin_unlock(&ci->i_ceph_lock);
1463                 return;
1464         }
1465
1466         encode_cap_msg(msg, arg);
1467         ceph_con_send(&arg->session->s_con, msg);
1468         ceph_buffer_put(arg->old_xattr_buf);
1469         if (arg->wake)
1470                 wake_up_all(&ci->i_cap_wq);
1471 }
1472
1473 static inline int __send_flush_snap(struct inode *inode,
1474                                     struct ceph_mds_session *session,
1475                                     struct ceph_cap_snap *capsnap,
1476                                     u32 mseq, u64 oldest_flush_tid)
1477 {
1478         struct cap_msg_args     arg;
1479         struct ceph_msg         *msg;
1480
1481         msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, CAP_MSG_SIZE, GFP_NOFS, false);
1482         if (!msg)
1483                 return -ENOMEM;
1484
1485         arg.session = session;
1486         arg.ino = ceph_vino(inode).ino;
1487         arg.cid = 0;
1488         arg.follows = capsnap->follows;
1489         arg.flush_tid = capsnap->cap_flush.tid;
1490         arg.oldest_flush_tid = oldest_flush_tid;
1491
1492         arg.size = capsnap->size;
1493         arg.max_size = 0;
1494         arg.xattr_version = capsnap->xattr_version;
1495         arg.xattr_buf = capsnap->xattr_blob;
1496         arg.old_xattr_buf = NULL;
1497
1498         arg.atime = capsnap->atime;
1499         arg.mtime = capsnap->mtime;
1500         arg.ctime = capsnap->ctime;
1501         arg.btime = capsnap->btime;
1502         arg.change_attr = capsnap->change_attr;
1503
1504         arg.op = CEPH_CAP_OP_FLUSHSNAP;
1505         arg.caps = capsnap->issued;
1506         arg.wanted = 0;
1507         arg.dirty = capsnap->dirty;
1508
1509         arg.seq = 0;
1510         arg.issue_seq = 0;
1511         arg.mseq = mseq;
1512         arg.time_warp_seq = capsnap->time_warp_seq;
1513
1514         arg.uid = capsnap->uid;
1515         arg.gid = capsnap->gid;
1516         arg.mode = capsnap->mode;
1517
1518         arg.inline_data = capsnap->inline_data;
1519         arg.flags = 0;
1520         arg.wake = false;
1521
1522         encode_cap_msg(msg, &arg);
1523         ceph_con_send(&arg.session->s_con, msg);
1524         return 0;
1525 }
1526
1527 /*
1528  * When a snapshot is taken, clients accumulate dirty metadata on
1529  * inodes with capabilities in ceph_cap_snaps to describe the file
1530  * state at the time the snapshot was taken.  This must be flushed
1531  * asynchronously back to the MDS once sync writes complete and dirty
1532  * data is written out.
1533  *
1534  * Called under i_ceph_lock.
1535  */
1536 static void __ceph_flush_snaps(struct ceph_inode_info *ci,
1537                                struct ceph_mds_session *session)
1538                 __releases(ci->i_ceph_lock)
1539                 __acquires(ci->i_ceph_lock)
1540 {
1541         struct inode *inode = &ci->vfs_inode;
1542         struct ceph_mds_client *mdsc = session->s_mdsc;
1543         struct ceph_cap_snap *capsnap;
1544         u64 oldest_flush_tid = 0;
1545         u64 first_tid = 1, last_tid = 0;
1546
1547         dout("__flush_snaps %p session %p\n", inode, session);
1548
1549         list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
1550                 /*
1551                  * we need to wait for sync writes to complete and for dirty
1552                  * pages to be written out.
1553                  */
1554                 if (capsnap->dirty_pages || capsnap->writing)
1555                         break;
1556
1557                 /* should be removed by ceph_try_drop_cap_snap() */
1558                 BUG_ON(!capsnap->need_flush);
1559
1560                 /* only flush each capsnap once */
1561                 if (capsnap->cap_flush.tid > 0) {
1562                         dout(" already flushed %p, skipping\n", capsnap);
1563                         continue;
1564                 }
1565
1566                 spin_lock(&mdsc->cap_dirty_lock);
1567                 capsnap->cap_flush.tid = ++mdsc->last_cap_flush_tid;
1568                 list_add_tail(&capsnap->cap_flush.g_list,
1569                               &mdsc->cap_flush_list);
1570                 if (oldest_flush_tid == 0)
1571                         oldest_flush_tid = __get_oldest_flush_tid(mdsc);
1572                 if (list_empty(&ci->i_flushing_item)) {
1573                         list_add_tail(&ci->i_flushing_item,
1574                                       &session->s_cap_flushing);
1575                 }
1576                 spin_unlock(&mdsc->cap_dirty_lock);
1577
1578                 list_add_tail(&capsnap->cap_flush.i_list,
1579                               &ci->i_cap_flush_list);
1580
1581                 if (first_tid == 1)
1582                         first_tid = capsnap->cap_flush.tid;
1583                 last_tid = capsnap->cap_flush.tid;
1584         }
1585
1586         ci->i_ceph_flags &= ~CEPH_I_FLUSH_SNAPS;
1587
1588         while (first_tid <= last_tid) {
1589                 struct ceph_cap *cap = ci->i_auth_cap;
1590                 struct ceph_cap_flush *cf;
1591                 int ret;
1592
1593                 if (!(cap && cap->session == session)) {
1594                         dout("__flush_snaps %p auth cap %p not mds%d, "
1595                              "stop\n", inode, cap, session->s_mds);
1596                         break;
1597                 }
1598
1599                 ret = -ENOENT;
1600                 list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
1601                         if (cf->tid >= first_tid) {
1602                                 ret = 0;
1603                                 break;
1604                         }
1605                 }
1606                 if (ret < 0)
1607                         break;
1608
1609                 first_tid = cf->tid + 1;
1610
1611                 capsnap = container_of(cf, struct ceph_cap_snap, cap_flush);
1612                 refcount_inc(&capsnap->nref);
1613                 spin_unlock(&ci->i_ceph_lock);
1614
1615                 dout("__flush_snaps %p capsnap %p tid %llu %s\n",
1616                      inode, capsnap, cf->tid, ceph_cap_string(capsnap->dirty));
1617
1618                 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
1619                                         oldest_flush_tid);
1620                 if (ret < 0) {
1621                         pr_err("__flush_snaps: error sending cap flushsnap, "
1622                                "ino (%llx.%llx) tid %llu follows %llu\n",
1623                                 ceph_vinop(inode), cf->tid, capsnap->follows);
1624                 }
1625
1626                 ceph_put_cap_snap(capsnap);
1627                 spin_lock(&ci->i_ceph_lock);
1628         }
1629 }
1630
1631 void ceph_flush_snaps(struct ceph_inode_info *ci,
1632                       struct ceph_mds_session **psession)
1633 {
1634         struct inode *inode = &ci->vfs_inode;
1635         struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
1636         struct ceph_mds_session *session = NULL;
1637         int mds;
1638
1639         dout("ceph_flush_snaps %p\n", inode);
1640         if (psession)
1641                 session = *psession;
1642 retry:
1643         spin_lock(&ci->i_ceph_lock);
1644         if (!(ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)) {
1645                 dout(" no capsnap needs flush, doing nothing\n");
1646                 goto out;
1647         }
1648         if (!ci->i_auth_cap) {
1649                 dout(" no auth cap (migrating?), doing nothing\n");
1650                 goto out;
1651         }
1652
1653         mds = ci->i_auth_cap->session->s_mds;
1654         if (session && session->s_mds != mds) {
1655                 dout(" oops, wrong session %p mutex\n", session);
1656                 ceph_put_mds_session(session);
1657                 session = NULL;
1658         }
1659         if (!session) {
1660                 spin_unlock(&ci->i_ceph_lock);
1661                 mutex_lock(&mdsc->mutex);
1662                 session = __ceph_lookup_mds_session(mdsc, mds);
1663                 mutex_unlock(&mdsc->mutex);
1664                 goto retry;
1665         }
1666
1667         // make sure flushsnap messages are sent in proper order.
1668         if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
1669                 __kick_flushing_caps(mdsc, session, ci, 0);
1670
1671         __ceph_flush_snaps(ci, session);
1672 out:
1673         spin_unlock(&ci->i_ceph_lock);
1674
1675         if (psession)
1676                 *psession = session;
1677         else
1678                 ceph_put_mds_session(session);
1679         /* we flushed them all; remove this inode from the queue */
1680         spin_lock(&mdsc->snap_flush_lock);
1681         list_del_init(&ci->i_snap_flush_item);
1682         spin_unlock(&mdsc->snap_flush_lock);
1683 }
1684
1685 /*
1686  * Mark caps dirty.  If inode is newly dirty, return the dirty flags.
1687  * Caller is then responsible for calling __mark_inode_dirty with the
1688  * returned flags value.
1689  */
1690 int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask,
1691                            struct ceph_cap_flush **pcf)
1692 {
1693         struct ceph_mds_client *mdsc =
1694                 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
1695         struct inode *inode = &ci->vfs_inode;
1696         int was = ci->i_dirty_caps;
1697         int dirty = 0;
1698
1699         lockdep_assert_held(&ci->i_ceph_lock);
1700
1701         if (!ci->i_auth_cap) {
1702                 pr_warn("__mark_dirty_caps %p %llx mask %s, "
1703                         "but no auth cap (session was closed?)\n",
1704                         inode, ceph_ino(inode), ceph_cap_string(mask));
1705                 return 0;
1706         }
1707
1708         dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci->vfs_inode,
1709              ceph_cap_string(mask), ceph_cap_string(was),
1710              ceph_cap_string(was | mask));
1711         ci->i_dirty_caps |= mask;
1712         if (was == 0) {
1713                 struct ceph_mds_session *session = ci->i_auth_cap->session;
1714
1715                 WARN_ON_ONCE(ci->i_prealloc_cap_flush);
1716                 swap(ci->i_prealloc_cap_flush, *pcf);
1717
1718                 if (!ci->i_head_snapc) {
1719                         WARN_ON_ONCE(!rwsem_is_locked(&mdsc->snap_rwsem));
1720                         ci->i_head_snapc = ceph_get_snap_context(
1721                                 ci->i_snap_realm->cached_context);
1722                 }
1723                 dout(" inode %p now dirty snapc %p auth cap %p\n",
1724                      &ci->vfs_inode, ci->i_head_snapc, ci->i_auth_cap);
1725                 BUG_ON(!list_empty(&ci->i_dirty_item));
1726                 spin_lock(&mdsc->cap_dirty_lock);
1727                 list_add(&ci->i_dirty_item, &session->s_cap_dirty);
1728                 spin_unlock(&mdsc->cap_dirty_lock);
1729                 if (ci->i_flushing_caps == 0) {
1730                         ihold(inode);
1731                         dirty |= I_DIRTY_SYNC;
1732                 }
1733         } else {
1734                 WARN_ON_ONCE(!ci->i_prealloc_cap_flush);
1735         }
1736         BUG_ON(list_empty(&ci->i_dirty_item));
1737         if (((was | ci->i_flushing_caps) & CEPH_CAP_FILE_BUFFER) &&
1738             (mask & CEPH_CAP_FILE_BUFFER))
1739                 dirty |= I_DIRTY_DATASYNC;
1740         __cap_delay_requeue(mdsc, ci);
1741         return dirty;
1742 }
1743
1744 struct ceph_cap_flush *ceph_alloc_cap_flush(void)
1745 {
1746         struct ceph_cap_flush *cf;
1747
1748         cf = kmem_cache_alloc(ceph_cap_flush_cachep, GFP_KERNEL);
1749         cf->is_capsnap = false;
1750         return cf;
1751 }
1752
1753 void ceph_free_cap_flush(struct ceph_cap_flush *cf)
1754 {
1755         if (cf)
1756                 kmem_cache_free(ceph_cap_flush_cachep, cf);
1757 }
1758
1759 static u64 __get_oldest_flush_tid(struct ceph_mds_client *mdsc)
1760 {
1761         if (!list_empty(&mdsc->cap_flush_list)) {
1762                 struct ceph_cap_flush *cf =
1763                         list_first_entry(&mdsc->cap_flush_list,
1764                                          struct ceph_cap_flush, g_list);
1765                 return cf->tid;
1766         }
1767         return 0;
1768 }
1769
1770 /*
1771  * Remove cap_flush from the mdsc's or inode's flushing cap list.
1772  * Return true if caller needs to wake up flush waiters.
1773  */
1774 static bool __detach_cap_flush_from_mdsc(struct ceph_mds_client *mdsc,
1775                                          struct ceph_cap_flush *cf)
1776 {
1777         struct ceph_cap_flush *prev;
1778         bool wake = cf->wake;
1779
1780         if (wake && cf->g_list.prev != &mdsc->cap_flush_list) {
1781                 prev = list_prev_entry(cf, g_list);
1782                 prev->wake = true;
1783                 wake = false;
1784         }
1785         list_del_init(&cf->g_list);
1786         return wake;
1787 }
1788
1789 static bool __detach_cap_flush_from_ci(struct ceph_inode_info *ci,
1790                                        struct ceph_cap_flush *cf)
1791 {
1792         struct ceph_cap_flush *prev;
1793         bool wake = cf->wake;
1794
1795         if (wake && cf->i_list.prev != &ci->i_cap_flush_list) {
1796                 prev = list_prev_entry(cf, i_list);
1797                 prev->wake = true;
1798                 wake = false;
1799         }
1800         list_del_init(&cf->i_list);
1801         return wake;
1802 }
1803
1804 /*
1805  * Add dirty inode to the flushing list.  Assigned a seq number so we
1806  * can wait for caps to flush without starving.
1807  *
1808  * Called under i_ceph_lock. Returns the flush tid.
1809  */
1810 static u64 __mark_caps_flushing(struct inode *inode,
1811                                 struct ceph_mds_session *session, bool wake,
1812                                 u64 *oldest_flush_tid)
1813 {
1814         struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
1815         struct ceph_inode_info *ci = ceph_inode(inode);
1816         struct ceph_cap_flush *cf = NULL;
1817         int flushing;
1818
1819         lockdep_assert_held(&ci->i_ceph_lock);
1820         BUG_ON(ci->i_dirty_caps == 0);
1821         BUG_ON(list_empty(&ci->i_dirty_item));
1822         BUG_ON(!ci->i_prealloc_cap_flush);
1823
1824         flushing = ci->i_dirty_caps;
1825         dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1826              ceph_cap_string(flushing),
1827              ceph_cap_string(ci->i_flushing_caps),
1828              ceph_cap_string(ci->i_flushing_caps | flushing));
1829         ci->i_flushing_caps |= flushing;
1830         ci->i_dirty_caps = 0;
1831         dout(" inode %p now !dirty\n", inode);
1832
1833         swap(cf, ci->i_prealloc_cap_flush);
1834         cf->caps = flushing;
1835         cf->wake = wake;
1836
1837         spin_lock(&mdsc->cap_dirty_lock);
1838         list_del_init(&ci->i_dirty_item);
1839
1840         cf->tid = ++mdsc->last_cap_flush_tid;
1841         list_add_tail(&cf->g_list, &mdsc->cap_flush_list);
1842         *oldest_flush_tid = __get_oldest_flush_tid(mdsc);
1843
1844         if (list_empty(&ci->i_flushing_item)) {
1845                 list_add_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1846                 mdsc->num_cap_flushing++;
1847         }
1848         spin_unlock(&mdsc->cap_dirty_lock);
1849
1850         list_add_tail(&cf->i_list, &ci->i_cap_flush_list);
1851
1852         return cf->tid;
1853 }
1854
1855 /*
1856  * try to invalidate mapping pages without blocking.
1857  */
1858 static int try_nonblocking_invalidate(struct inode *inode)
1859 {
1860         struct ceph_inode_info *ci = ceph_inode(inode);
1861         u32 invalidating_gen = ci->i_rdcache_gen;
1862
1863         spin_unlock(&ci->i_ceph_lock);
1864         ceph_fscache_invalidate(inode);
1865         invalidate_mapping_pages(&inode->i_data, 0, -1);
1866         spin_lock(&ci->i_ceph_lock);
1867
1868         if (inode->i_data.nrpages == 0 &&
1869             invalidating_gen == ci->i_rdcache_gen) {
1870                 /* success. */
1871                 dout("try_nonblocking_invalidate %p success\n", inode);
1872                 /* save any racing async invalidate some trouble */
1873                 ci->i_rdcache_revoking = ci->i_rdcache_gen - 1;
1874                 return 0;
1875         }
1876         dout("try_nonblocking_invalidate %p failed\n", inode);
1877         return -1;
1878 }
1879
1880 bool __ceph_should_report_size(struct ceph_inode_info *ci)
1881 {
1882         loff_t size = i_size_read(&ci->vfs_inode);
1883         /* mds will adjust max size according to the reported size */
1884         if (ci->i_flushing_caps & CEPH_CAP_FILE_WR)
1885                 return false;
1886         if (size >= ci->i_max_size)
1887                 return true;
1888         /* half of previous max_size increment has been used */
1889         if (ci->i_max_size > ci->i_reported_size &&
1890             (size << 1) >= ci->i_max_size + ci->i_reported_size)
1891                 return true;
1892         return false;
1893 }
1894
1895 /*
1896  * Swiss army knife function to examine currently used and wanted
1897  * versus held caps.  Release, flush, ack revoked caps to mds as
1898  * appropriate.
1899  *
1900  *  CHECK_CAPS_AUTHONLY - we should only check the auth cap
1901  *  CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1902  *    further delay.
1903  */
1904 void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1905                      struct ceph_mds_session *session)
1906 {
1907         struct inode *inode = &ci->vfs_inode;
1908         struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
1909         struct ceph_cap *cap;
1910         u64 flush_tid, oldest_flush_tid;
1911         int file_wanted, used, cap_used;
1912         int issued, implemented, want, retain, revoking, flushing = 0;
1913         int mds = -1;   /* keep track of how far we've gone through i_caps list
1914                            to avoid an infinite loop on retry */
1915         struct rb_node *p;
1916         bool queue_invalidate = false;
1917         bool tried_invalidate = false;
1918
1919         if (session)
1920                 ceph_get_mds_session(session);
1921
1922         spin_lock(&ci->i_ceph_lock);
1923         if (ci->i_ceph_flags & CEPH_I_FLUSH)
1924                 flags |= CHECK_CAPS_FLUSH;
1925 retry:
1926         /* Caps wanted by virtue of active open files. */
1927         file_wanted = __ceph_caps_file_wanted(ci);
1928
1929         /* Caps which have active references against them */
1930         used = __ceph_caps_used(ci);
1931
1932         /*
1933          * "issued" represents the current caps that the MDS wants us to have.
1934          * "implemented" is the set that we have been granted, and includes the
1935          * ones that have not yet been returned to the MDS (the "revoking" set,
1936          * usually because they have outstanding references).
1937          */
1938         issued = __ceph_caps_issued(ci, &implemented);
1939         revoking = implemented & ~issued;
1940
1941         want = file_wanted;
1942
1943         /* The ones we currently want to retain (may be adjusted below) */
1944         retain = file_wanted | used | CEPH_CAP_PIN;
1945         if (!mdsc->stopping && inode->i_nlink > 0) {
1946                 if (file_wanted) {
1947                         retain |= CEPH_CAP_ANY;       /* be greedy */
1948                 } else if (S_ISDIR(inode->i_mode) &&
1949                            (issued & CEPH_CAP_FILE_SHARED) &&
1950                            __ceph_dir_is_complete(ci)) {
1951                         /*
1952                          * If a directory is complete, we want to keep
1953                          * the exclusive cap. So that MDS does not end up
1954                          * revoking the shared cap on every create/unlink
1955                          * operation.
1956                          */
1957                         if (IS_RDONLY(inode)) {
1958                                 want = CEPH_CAP_ANY_SHARED;
1959                         } else {
1960                                 want |= CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL;
1961                         }
1962                         retain |= want;
1963                 } else {
1964
1965                         retain |= CEPH_CAP_ANY_SHARED;
1966                         /*
1967                          * keep RD only if we didn't have the file open RW,
1968                          * because then the mds would revoke it anyway to
1969                          * journal max_size=0.
1970                          */
1971                         if (ci->i_max_size == 0)
1972                                 retain |= CEPH_CAP_ANY_RD;
1973                 }
1974         }
1975
1976         dout("check_caps %p file_want %s used %s dirty %s flushing %s"
1977              " issued %s revoking %s retain %s %s%s\n", inode,
1978              ceph_cap_string(file_wanted),
1979              ceph_cap_string(used), ceph_cap_string(ci->i_dirty_caps),
1980              ceph_cap_string(ci->i_flushing_caps),
1981              ceph_cap_string(issued), ceph_cap_string(revoking),
1982              ceph_cap_string(retain),
1983              (flags & CHECK_CAPS_AUTHONLY) ? " AUTHONLY" : "",
1984              (flags & CHECK_CAPS_FLUSH) ? " FLUSH" : "");
1985
1986         /*
1987          * If we no longer need to hold onto old our caps, and we may
1988          * have cached pages, but don't want them, then try to invalidate.
1989          * If we fail, it's because pages are locked.... try again later.
1990          */
1991         if ((!(flags & CHECK_CAPS_NOINVAL) || mdsc->stopping) &&
1992             S_ISREG(inode->i_mode) &&
1993             !(ci->i_wb_ref || ci->i_wrbuffer_ref) &&   /* no dirty pages... */
1994             inode->i_data.nrpages &&            /* have cached pages */
1995             (revoking & (CEPH_CAP_FILE_CACHE|
1996                          CEPH_CAP_FILE_LAZYIO)) && /*  or revoking cache */
1997             !tried_invalidate) {
1998                 dout("check_caps trying to invalidate on %p\n", inode);
1999                 if (try_nonblocking_invalidate(inode) < 0) {
2000                         dout("check_caps queuing invalidate\n");
2001                         queue_invalidate = true;
2002                         ci->i_rdcache_revoking = ci->i_rdcache_gen;
2003                 }
2004                 tried_invalidate = true;
2005                 goto retry;
2006         }
2007
2008         for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
2009                 int mflags = 0;
2010                 struct cap_msg_args arg;
2011
2012                 cap = rb_entry(p, struct ceph_cap, ci_node);
2013
2014                 /* avoid looping forever */
2015                 if (mds >= cap->mds ||
2016                     ((flags & CHECK_CAPS_AUTHONLY) && cap != ci->i_auth_cap))
2017                         continue;
2018
2019                 /*
2020                  * If we have an auth cap, we don't need to consider any
2021                  * overlapping caps as used.
2022                  */
2023                 cap_used = used;
2024                 if (ci->i_auth_cap && cap != ci->i_auth_cap)
2025                         cap_used &= ~ci->i_auth_cap->issued;
2026
2027                 revoking = cap->implemented & ~cap->issued;
2028                 dout(" mds%d cap %p used %s issued %s implemented %s revoking %s\n",
2029                      cap->mds, cap, ceph_cap_string(cap_used),
2030                      ceph_cap_string(cap->issued),
2031                      ceph_cap_string(cap->implemented),
2032                      ceph_cap_string(revoking));
2033
2034                 if (cap == ci->i_auth_cap &&
2035                     (cap->issued & CEPH_CAP_FILE_WR)) {
2036                         /* request larger max_size from MDS? */
2037                         if (ci->i_wanted_max_size > ci->i_max_size &&
2038                             ci->i_wanted_max_size > ci->i_requested_max_size) {
2039                                 dout("requesting new max_size\n");
2040                                 goto ack;
2041                         }
2042
2043                         /* approaching file_max? */
2044                         if (__ceph_should_report_size(ci)) {
2045                                 dout("i_size approaching max_size\n");
2046                                 goto ack;
2047                         }
2048                 }
2049                 /* flush anything dirty? */
2050                 if (cap == ci->i_auth_cap) {
2051                         if ((flags & CHECK_CAPS_FLUSH) && ci->i_dirty_caps) {
2052                                 dout("flushing dirty caps\n");
2053                                 goto ack;
2054                         }
2055                         if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS) {
2056                                 dout("flushing snap caps\n");
2057                                 goto ack;
2058                         }
2059                 }
2060
2061                 /* completed revocation? going down and there are no caps? */
2062                 if (revoking && (revoking & cap_used) == 0) {
2063                         dout("completed revocation of %s\n",
2064                              ceph_cap_string(cap->implemented & ~cap->issued));
2065                         goto ack;
2066                 }
2067
2068                 /* want more caps from mds? */
2069                 if (want & ~cap->mds_wanted) {
2070                         if (want & ~(cap->mds_wanted | cap->issued))
2071                                 goto ack;
2072                         if (!__cap_is_valid(cap))
2073                                 goto ack;
2074                 }
2075
2076                 /* things we might delay */
2077                 if ((cap->issued & ~retain) == 0)
2078                         continue;     /* nope, all good */
2079
2080 ack:
2081                 ceph_put_mds_session(session);
2082                 session = ceph_get_mds_session(cap->session);
2083
2084                 /* kick flushing and flush snaps before sending normal
2085                  * cap message */
2086                 if (cap == ci->i_auth_cap &&
2087                     (ci->i_ceph_flags &
2088                      (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS))) {
2089                         if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
2090                                 __kick_flushing_caps(mdsc, session, ci, 0);
2091                         if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
2092                                 __ceph_flush_snaps(ci, session);
2093
2094                         goto retry;
2095                 }
2096
2097                 if (cap == ci->i_auth_cap && ci->i_dirty_caps) {
2098                         flushing = ci->i_dirty_caps;
2099                         flush_tid = __mark_caps_flushing(inode, session, false,
2100                                                          &oldest_flush_tid);
2101                         if (flags & CHECK_CAPS_FLUSH &&
2102                             list_empty(&session->s_cap_dirty))
2103                                 mflags |= CEPH_CLIENT_CAPS_SYNC;
2104                 } else {
2105                         flushing = 0;
2106                         flush_tid = 0;
2107                         spin_lock(&mdsc->cap_dirty_lock);
2108                         oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2109                         spin_unlock(&mdsc->cap_dirty_lock);
2110                 }
2111
2112                 mds = cap->mds;  /* remember mds, so we don't repeat */
2113
2114                 __prep_cap(&arg, cap, CEPH_CAP_OP_UPDATE, mflags, cap_used,
2115                            want, retain, flushing, flush_tid, oldest_flush_tid);
2116
2117                 spin_unlock(&ci->i_ceph_lock);
2118                 __send_cap(&arg, ci);
2119                 spin_lock(&ci->i_ceph_lock);
2120
2121                 goto retry; /* retake i_ceph_lock and restart our cap scan. */
2122         }
2123
2124         /* periodically re-calculate caps wanted by open files */
2125         if (__ceph_is_any_real_caps(ci) &&
2126             list_empty(&ci->i_cap_delay_list) &&
2127             (file_wanted & ~CEPH_CAP_PIN) &&
2128             !(used & (CEPH_CAP_FILE_RD | CEPH_CAP_ANY_FILE_WR))) {
2129                 __cap_delay_requeue(mdsc, ci);
2130         }
2131
2132         spin_unlock(&ci->i_ceph_lock);
2133
2134         ceph_put_mds_session(session);
2135         if (queue_invalidate)
2136                 ceph_queue_invalidate(inode);
2137 }
2138
2139 /*
2140  * Try to flush dirty caps back to the auth mds.
2141  */
2142 static int try_flush_caps(struct inode *inode, u64 *ptid)
2143 {
2144         struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
2145         struct ceph_inode_info *ci = ceph_inode(inode);
2146         int flushing = 0;
2147         u64 flush_tid = 0, oldest_flush_tid = 0;
2148
2149         spin_lock(&ci->i_ceph_lock);
2150 retry_locked:
2151         if (ci->i_dirty_caps && ci->i_auth_cap) {
2152                 struct ceph_cap *cap = ci->i_auth_cap;
2153                 struct cap_msg_args arg;
2154                 struct ceph_mds_session *session = cap->session;
2155
2156                 if (session->s_state < CEPH_MDS_SESSION_OPEN) {
2157                         spin_unlock(&ci->i_ceph_lock);
2158                         goto out;
2159                 }
2160
2161                 if (ci->i_ceph_flags &
2162                     (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS)) {
2163                         if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
2164                                 __kick_flushing_caps(mdsc, session, ci, 0);
2165                         if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
2166                                 __ceph_flush_snaps(ci, session);
2167                         goto retry_locked;
2168                 }
2169
2170                 flushing = ci->i_dirty_caps;
2171                 flush_tid = __mark_caps_flushing(inode, session, true,
2172                                                  &oldest_flush_tid);
2173
2174                 __prep_cap(&arg, cap, CEPH_CAP_OP_FLUSH, CEPH_CLIENT_CAPS_SYNC,
2175                            __ceph_caps_used(ci), __ceph_caps_wanted(ci),
2176                            (cap->issued | cap->implemented),
2177                            flushing, flush_tid, oldest_flush_tid);
2178                 spin_unlock(&ci->i_ceph_lock);
2179
2180                 __send_cap(&arg, ci);
2181         } else {
2182                 if (!list_empty(&ci->i_cap_flush_list)) {
2183                         struct ceph_cap_flush *cf =
2184                                 list_last_entry(&ci->i_cap_flush_list,
2185                                                 struct ceph_cap_flush, i_list);
2186                         cf->wake = true;
2187                         flush_tid = cf->tid;
2188                 }
2189                 flushing = ci->i_flushing_caps;
2190                 spin_unlock(&ci->i_ceph_lock);
2191         }
2192 out:
2193         *ptid = flush_tid;
2194         return flushing;
2195 }
2196
2197 /*
2198  * Return true if we've flushed caps through the given flush_tid.
2199  */
2200 static int caps_are_flushed(struct inode *inode, u64 flush_tid)
2201 {
2202         struct ceph_inode_info *ci = ceph_inode(inode);
2203         int ret = 1;
2204
2205         spin_lock(&ci->i_ceph_lock);
2206         if (!list_empty(&ci->i_cap_flush_list)) {
2207                 struct ceph_cap_flush * cf =
2208                         list_first_entry(&ci->i_cap_flush_list,
2209                                          struct ceph_cap_flush, i_list);
2210                 if (cf->tid <= flush_tid)
2211                         ret = 0;
2212         }
2213         spin_unlock(&ci->i_ceph_lock);
2214         return ret;
2215 }
2216
2217 /*
2218  * wait for any unsafe requests to complete.
2219  */
2220 static int unsafe_request_wait(struct inode *inode)
2221 {
2222         struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
2223         struct ceph_inode_info *ci = ceph_inode(inode);
2224         struct ceph_mds_request *req1 = NULL, *req2 = NULL;
2225         int ret, err = 0;
2226
2227         spin_lock(&ci->i_unsafe_lock);
2228         if (S_ISDIR(inode->i_mode) && !list_empty(&ci->i_unsafe_dirops)) {
2229                 req1 = list_last_entry(&ci->i_unsafe_dirops,
2230                                         struct ceph_mds_request,
2231                                         r_unsafe_dir_item);
2232                 ceph_mdsc_get_request(req1);
2233         }
2234         if (!list_empty(&ci->i_unsafe_iops)) {
2235                 req2 = list_last_entry(&ci->i_unsafe_iops,
2236                                         struct ceph_mds_request,
2237                                         r_unsafe_target_item);
2238                 ceph_mdsc_get_request(req2);
2239         }
2240         spin_unlock(&ci->i_unsafe_lock);
2241
2242         /*
2243          * Trigger to flush the journal logs in all the relevant MDSes
2244          * manually, or in the worst case we must wait at most 5 seconds
2245          * to wait the journal logs to be flushed by the MDSes periodically.
2246          */
2247         if (req1 || req2) {
2248                 struct ceph_mds_session **sessions = NULL;
2249                 struct ceph_mds_session *s;
2250                 struct ceph_mds_request *req;
2251                 unsigned int max;
2252                 int i;
2253
2254                 /*
2255                  * The mdsc->max_sessions is unlikely to be changed
2256                  * mostly, here we will retry it by reallocating the
2257                  * sessions arrary memory to get rid of the mdsc->mutex
2258                  * lock.
2259                  */
2260 retry:
2261                 max = mdsc->max_sessions;
2262                 sessions = krealloc(sessions, max * sizeof(s), __GFP_ZERO);
2263                 if (!sessions)
2264                         return -ENOMEM;
2265
2266                 spin_lock(&ci->i_unsafe_lock);
2267                 if (req1) {
2268                         list_for_each_entry(req, &ci->i_unsafe_dirops,
2269                                             r_unsafe_dir_item) {
2270                                 s = req->r_session;
2271                                 if (unlikely(s->s_mds > max)) {
2272                                         spin_unlock(&ci->i_unsafe_lock);
2273                                         goto retry;
2274                                 }
2275                                 if (!sessions[s->s_mds]) {
2276                                         s = ceph_get_mds_session(s);
2277                                         sessions[s->s_mds] = s;
2278                                 }
2279                         }
2280                 }
2281                 if (req2) {
2282                         list_for_each_entry(req, &ci->i_unsafe_iops,
2283                                             r_unsafe_target_item) {
2284                                 s = req->r_session;
2285                                 if (unlikely(s->s_mds > max)) {
2286                                         spin_unlock(&ci->i_unsafe_lock);
2287                                         goto retry;
2288                                 }
2289                                 if (!sessions[s->s_mds]) {
2290                                         s = ceph_get_mds_session(s);
2291                                         sessions[s->s_mds] = s;
2292                                 }
2293                         }
2294                 }
2295                 spin_unlock(&ci->i_unsafe_lock);
2296
2297                 /* the auth MDS */
2298                 spin_lock(&ci->i_ceph_lock);
2299                 if (ci->i_auth_cap) {
2300                       s = ci->i_auth_cap->session;
2301                       if (!sessions[s->s_mds])
2302                               sessions[s->s_mds] = ceph_get_mds_session(s);
2303                 }
2304                 spin_unlock(&ci->i_ceph_lock);
2305
2306                 /* send flush mdlog request to MDSes */
2307                 for (i = 0; i < max; i++) {
2308                         s = sessions[i];
2309                         if (s) {
2310                                 send_flush_mdlog(s);
2311                                 ceph_put_mds_session(s);
2312                         }
2313                 }
2314                 kfree(sessions);
2315         }
2316
2317         dout("unsafe_request_wait %p wait on tid %llu %llu\n",
2318              inode, req1 ? req1->r_tid : 0ULL, req2 ? req2->r_tid : 0ULL);
2319         if (req1) {
2320                 ret = !wait_for_completion_timeout(&req1->r_safe_completion,
2321                                         ceph_timeout_jiffies(req1->r_timeout));
2322                 if (ret)
2323                         err = -EIO;
2324                 ceph_mdsc_put_request(req1);
2325         }
2326         if (req2) {
2327                 ret = !wait_for_completion_timeout(&req2->r_safe_completion,
2328                                         ceph_timeout_jiffies(req2->r_timeout));
2329                 if (ret)
2330                         err = -EIO;
2331                 ceph_mdsc_put_request(req2);
2332         }
2333         return err;
2334 }
2335
2336 int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync)
2337 {
2338         struct ceph_file_info *fi = file->private_data;
2339         struct inode *inode = file->f_mapping->host;
2340         struct ceph_inode_info *ci = ceph_inode(inode);
2341         u64 flush_tid;
2342         int ret, err;
2343         int dirty;
2344
2345         dout("fsync %p%s\n", inode, datasync ? " datasync" : "");
2346
2347         ret = file_write_and_wait_range(file, start, end);
2348         if (datasync)
2349                 goto out;
2350
2351         ret = ceph_wait_on_async_create(inode);
2352         if (ret)
2353                 goto out;
2354
2355         dirty = try_flush_caps(inode, &flush_tid);
2356         dout("fsync dirty caps are %s\n", ceph_cap_string(dirty));
2357
2358         err = unsafe_request_wait(inode);
2359
2360         /*
2361          * only wait on non-file metadata writeback (the mds
2362          * can recover size and mtime, so we don't need to
2363          * wait for that)
2364          */
2365         if (!err && (dirty & ~CEPH_CAP_ANY_FILE_WR)) {
2366                 err = wait_event_interruptible(ci->i_cap_wq,
2367                                         caps_are_flushed(inode, flush_tid));
2368         }
2369
2370         if (err < 0)
2371                 ret = err;
2372
2373         if (errseq_check(&ci->i_meta_err, READ_ONCE(fi->meta_err))) {
2374                 spin_lock(&file->f_lock);
2375                 err = errseq_check_and_advance(&ci->i_meta_err,
2376                                                &fi->meta_err);
2377                 spin_unlock(&file->f_lock);
2378                 if (err < 0)
2379                         ret = err;
2380         }
2381 out:
2382         dout("fsync %p%s result=%d\n", inode, datasync ? " datasync" : "", ret);
2383         return ret;
2384 }
2385
2386 /*
2387  * Flush any dirty caps back to the mds.  If we aren't asked to wait,
2388  * queue inode for flush but don't do so immediately, because we can
2389  * get by with fewer MDS messages if we wait for data writeback to
2390  * complete first.
2391  */
2392 int ceph_write_inode(struct inode *inode, struct writeback_control *wbc)
2393 {
2394         struct ceph_inode_info *ci = ceph_inode(inode);
2395         u64 flush_tid;
2396         int err = 0;
2397         int dirty;
2398         int wait = (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync);
2399
2400         dout("write_inode %p wait=%d\n", inode, wait);
2401         if (wait) {
2402                 dirty = try_flush_caps(inode, &flush_tid);
2403                 if (dirty)
2404                         err = wait_event_interruptible(ci->i_cap_wq,
2405                                        caps_are_flushed(inode, flush_tid));
2406         } else {
2407                 struct ceph_mds_client *mdsc =
2408                         ceph_sb_to_client(inode->i_sb)->mdsc;
2409
2410                 spin_lock(&ci->i_ceph_lock);
2411                 if (__ceph_caps_dirty(ci))
2412                         __cap_delay_requeue_front(mdsc, ci);
2413                 spin_unlock(&ci->i_ceph_lock);
2414         }
2415         return err;
2416 }
2417
2418 static void __kick_flushing_caps(struct ceph_mds_client *mdsc,
2419                                  struct ceph_mds_session *session,
2420                                  struct ceph_inode_info *ci,
2421                                  u64 oldest_flush_tid)
2422         __releases(ci->i_ceph_lock)
2423         __acquires(ci->i_ceph_lock)
2424 {
2425         struct inode *inode = &ci->vfs_inode;
2426         struct ceph_cap *cap;
2427         struct ceph_cap_flush *cf;
2428         int ret;
2429         u64 first_tid = 0;
2430         u64 last_snap_flush = 0;
2431
2432         ci->i_ceph_flags &= ~CEPH_I_KICK_FLUSH;
2433
2434         list_for_each_entry_reverse(cf, &ci->i_cap_flush_list, i_list) {
2435                 if (cf->is_capsnap) {
2436                         last_snap_flush = cf->tid;
2437                         break;
2438                 }
2439         }
2440
2441         list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
2442                 if (cf->tid < first_tid)
2443                         continue;
2444
2445                 cap = ci->i_auth_cap;
2446                 if (!(cap && cap->session == session)) {
2447                         pr_err("%p auth cap %p not mds%d ???\n",
2448                                inode, cap, session->s_mds);
2449                         break;
2450                 }
2451
2452                 first_tid = cf->tid + 1;
2453
2454                 if (!cf->is_capsnap) {
2455                         struct cap_msg_args arg;
2456
2457                         dout("kick_flushing_caps %p cap %p tid %llu %s\n",
2458                              inode, cap, cf->tid, ceph_cap_string(cf->caps));
2459                         __prep_cap(&arg, cap, CEPH_CAP_OP_FLUSH,
2460                                          (cf->tid < last_snap_flush ?
2461                                           CEPH_CLIENT_CAPS_PENDING_CAPSNAP : 0),
2462                                           __ceph_caps_used(ci),
2463                                           __ceph_caps_wanted(ci),
2464                                           (cap->issued | cap->implemented),
2465                                           cf->caps, cf->tid, oldest_flush_tid);
2466                         spin_unlock(&ci->i_ceph_lock);
2467                         __send_cap(&arg, ci);
2468                 } else {
2469                         struct ceph_cap_snap *capsnap =
2470                                         container_of(cf, struct ceph_cap_snap,
2471                                                     cap_flush);
2472                         dout("kick_flushing_caps %p capsnap %p tid %llu %s\n",
2473                              inode, capsnap, cf->tid,
2474                              ceph_cap_string(capsnap->dirty));
2475
2476                         refcount_inc(&capsnap->nref);
2477                         spin_unlock(&ci->i_ceph_lock);
2478
2479                         ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
2480                                                 oldest_flush_tid);
2481                         if (ret < 0) {
2482                                 pr_err("kick_flushing_caps: error sending "
2483                                         "cap flushsnap, ino (%llx.%llx) "
2484                                         "tid %llu follows %llu\n",
2485                                         ceph_vinop(inode), cf->tid,
2486                                         capsnap->follows);
2487                         }
2488
2489                         ceph_put_cap_snap(capsnap);
2490                 }
2491
2492                 spin_lock(&ci->i_ceph_lock);
2493         }
2494 }
2495
2496 void ceph_early_kick_flushing_caps(struct ceph_mds_client *mdsc,
2497                                    struct ceph_mds_session *session)
2498 {
2499         struct ceph_inode_info *ci;
2500         struct ceph_cap *cap;
2501         u64 oldest_flush_tid;
2502
2503         dout("early_kick_flushing_caps mds%d\n", session->s_mds);
2504
2505         spin_lock(&mdsc->cap_dirty_lock);
2506         oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2507         spin_unlock(&mdsc->cap_dirty_lock);
2508
2509         list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
2510                 spin_lock(&ci->i_ceph_lock);
2511                 cap = ci->i_auth_cap;
2512                 if (!(cap && cap->session == session)) {
2513                         pr_err("%p auth cap %p not mds%d ???\n",
2514                                 &ci->vfs_inode, cap, session->s_mds);
2515                         spin_unlock(&ci->i_ceph_lock);
2516                         continue;
2517                 }
2518
2519
2520                 /*
2521                  * if flushing caps were revoked, we re-send the cap flush
2522                  * in client reconnect stage. This guarantees MDS * processes
2523                  * the cap flush message before issuing the flushing caps to
2524                  * other client.
2525                  */
2526                 if ((cap->issued & ci->i_flushing_caps) !=
2527                     ci->i_flushing_caps) {
2528                         /* encode_caps_cb() also will reset these sequence
2529                          * numbers. make sure sequence numbers in cap flush
2530                          * message match later reconnect message */
2531                         cap->seq = 0;
2532                         cap->issue_seq = 0;
2533                         cap->mseq = 0;
2534                         __kick_flushing_caps(mdsc, session, ci,
2535                                              oldest_flush_tid);
2536                 } else {
2537                         ci->i_ceph_flags |= CEPH_I_KICK_FLUSH;
2538                 }
2539
2540                 spin_unlock(&ci->i_ceph_lock);
2541         }
2542 }
2543
2544 void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
2545                              struct ceph_mds_session *session)
2546 {
2547         struct ceph_inode_info *ci;
2548         struct ceph_cap *cap;
2549         u64 oldest_flush_tid;
2550
2551         lockdep_assert_held(&session->s_mutex);
2552
2553         dout("kick_flushing_caps mds%d\n", session->s_mds);
2554
2555         spin_lock(&mdsc->cap_dirty_lock);
2556         oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2557         spin_unlock(&mdsc->cap_dirty_lock);
2558
2559         list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
2560                 spin_lock(&ci->i_ceph_lock);
2561                 cap = ci->i_auth_cap;
2562                 if (!(cap && cap->session == session)) {
2563                         pr_err("%p auth cap %p not mds%d ???\n",
2564                                 &ci->vfs_inode, cap, session->s_mds);
2565                         spin_unlock(&ci->i_ceph_lock);
2566                         continue;
2567                 }
2568                 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH) {
2569                         __kick_flushing_caps(mdsc, session, ci,
2570                                              oldest_flush_tid);
2571                 }
2572                 spin_unlock(&ci->i_ceph_lock);
2573         }
2574 }
2575
2576 void ceph_kick_flushing_inode_caps(struct ceph_mds_session *session,
2577                                    struct ceph_inode_info *ci)
2578 {
2579         struct ceph_mds_client *mdsc = session->s_mdsc;
2580         struct ceph_cap *cap = ci->i_auth_cap;
2581
2582         lockdep_assert_held(&ci->i_ceph_lock);
2583
2584         dout("%s %p flushing %s\n", __func__, &ci->vfs_inode,
2585              ceph_cap_string(ci->i_flushing_caps));
2586
2587         if (!list_empty(&ci->i_cap_flush_list)) {
2588                 u64 oldest_flush_tid;
2589                 spin_lock(&mdsc->cap_dirty_lock);
2590                 list_move_tail(&ci->i_flushing_item,
2591                                &cap->session->s_cap_flushing);
2592                 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2593                 spin_unlock(&mdsc->cap_dirty_lock);
2594
2595                 __kick_flushing_caps(mdsc, session, ci, oldest_flush_tid);
2596         }
2597 }
2598
2599
2600 /*
2601  * Take references to capabilities we hold, so that we don't release
2602  * them to the MDS prematurely.
2603  */
2604 void ceph_take_cap_refs(struct ceph_inode_info *ci, int got,
2605                             bool snap_rwsem_locked)
2606 {
2607         lockdep_assert_held(&ci->i_ceph_lock);
2608
2609         if (got & CEPH_CAP_PIN)
2610                 ci->i_pin_ref++;
2611         if (got & CEPH_CAP_FILE_RD)
2612                 ci->i_rd_ref++;
2613         if (got & CEPH_CAP_FILE_CACHE)
2614                 ci->i_rdcache_ref++;
2615         if (got & CEPH_CAP_FILE_EXCL)
2616                 ci->i_fx_ref++;
2617         if (got & CEPH_CAP_FILE_WR) {
2618                 if (ci->i_wr_ref == 0 && !ci->i_head_snapc) {
2619                         BUG_ON(!snap_rwsem_locked);
2620                         ci->i_head_snapc = ceph_get_snap_context(
2621                                         ci->i_snap_realm->cached_context);
2622                 }
2623                 ci->i_wr_ref++;
2624         }
2625         if (got & CEPH_CAP_FILE_BUFFER) {
2626                 if (ci->i_wb_ref == 0)
2627                         ihold(&ci->vfs_inode);
2628                 ci->i_wb_ref++;
2629                 dout("%s %p wb %d -> %d (?)\n", __func__,
2630                      &ci->vfs_inode, ci->i_wb_ref-1, ci->i_wb_ref);
2631         }
2632 }
2633
2634 /*
2635  * Try to grab cap references.  Specify those refs we @want, and the
2636  * minimal set we @need.  Also include the larger offset we are writing
2637  * to (when applicable), and check against max_size here as well.
2638  * Note that caller is responsible for ensuring max_size increases are
2639  * requested from the MDS.
2640  *
2641  * Returns 0 if caps were not able to be acquired (yet), 1 if succeed,
2642  * or a negative error code. There are 3 speical error codes:
2643  *  -EAGAIN: need to sleep but non-blocking is specified
2644  *  -EFBIG:  ask caller to call check_max_size() and try again.
2645  *  -ESTALE: ask caller to call ceph_renew_caps() and try again.
2646  */
2647 enum {
2648         /* first 8 bits are reserved for CEPH_FILE_MODE_FOO */
2649         NON_BLOCKING    = (1 << 8),
2650         CHECK_FILELOCK  = (1 << 9),
2651 };
2652
2653 static int try_get_cap_refs(struct inode *inode, int need, int want,
2654                             loff_t endoff, int flags, int *got)
2655 {
2656         struct ceph_inode_info *ci = ceph_inode(inode);
2657         struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
2658         int ret = 0;
2659         int have, implemented;
2660         bool snap_rwsem_locked = false;
2661
2662         dout("get_cap_refs %p need %s want %s\n", inode,
2663              ceph_cap_string(need), ceph_cap_string(want));
2664
2665 again:
2666         spin_lock(&ci->i_ceph_lock);
2667
2668         if ((flags & CHECK_FILELOCK) &&
2669             (ci->i_ceph_flags & CEPH_I_ERROR_FILELOCK)) {
2670                 dout("try_get_cap_refs %p error filelock\n", inode);
2671                 ret = -EIO;
2672                 goto out_unlock;
2673         }
2674
2675         /* finish pending truncate */
2676         while (ci->i_truncate_pending) {
2677                 spin_unlock(&ci->i_ceph_lock);
2678                 if (snap_rwsem_locked) {
2679                         up_read(&mdsc->snap_rwsem);
2680                         snap_rwsem_locked = false;
2681                 }
2682                 __ceph_do_pending_vmtruncate(inode);
2683                 spin_lock(&ci->i_ceph_lock);
2684         }
2685
2686         have = __ceph_caps_issued(ci, &implemented);
2687
2688         if (have & need & CEPH_CAP_FILE_WR) {
2689                 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2690                         dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2691                              inode, endoff, ci->i_max_size);
2692                         if (endoff > ci->i_requested_max_size)
2693                                 ret = ci->i_auth_cap ? -EFBIG : -ESTALE;
2694                         goto out_unlock;
2695                 }
2696                 /*
2697                  * If a sync write is in progress, we must wait, so that we
2698                  * can get a final snapshot value for size+mtime.
2699                  */
2700                 if (__ceph_have_pending_cap_snap(ci)) {
2701                         dout("get_cap_refs %p cap_snap_pending\n", inode);
2702                         goto out_unlock;
2703                 }
2704         }
2705
2706         if ((have & need) == need) {
2707                 /*
2708                  * Look at (implemented & ~have & not) so that we keep waiting
2709                  * on transition from wanted -> needed caps.  This is needed
2710                  * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2711                  * going before a prior buffered writeback happens.
2712                  */
2713                 int not = want & ~(have & need);
2714                 int revoking = implemented & ~have;
2715                 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2716                      inode, ceph_cap_string(have), ceph_cap_string(not),
2717                      ceph_cap_string(revoking));
2718                 if ((revoking & not) == 0) {
2719                         if (!snap_rwsem_locked &&
2720                             !ci->i_head_snapc &&
2721                             (need & CEPH_CAP_FILE_WR)) {
2722                                 if (!down_read_trylock(&mdsc->snap_rwsem)) {
2723                                         /*
2724                                          * we can not call down_read() when
2725                                          * task isn't in TASK_RUNNING state
2726                                          */
2727                                         if (flags & NON_BLOCKING) {
2728                                                 ret = -EAGAIN;
2729                                                 goto out_unlock;
2730                                         }
2731
2732                                         spin_unlock(&ci->i_ceph_lock);
2733                                         down_read(&mdsc->snap_rwsem);
2734                                         snap_rwsem_locked = true;
2735                                         goto again;
2736                                 }
2737                                 snap_rwsem_locked = true;
2738                         }
2739                         if ((have & want) == want)
2740                                 *got = need | want;
2741                         else
2742                                 *got = need;
2743                         ceph_take_cap_refs(ci, *got, true);
2744                         ret = 1;
2745                 }
2746         } else {
2747                 int session_readonly = false;
2748                 int mds_wanted;
2749                 if (ci->i_auth_cap &&
2750                     (need & (CEPH_CAP_FILE_WR | CEPH_CAP_FILE_EXCL))) {
2751                         struct ceph_mds_session *s = ci->i_auth_cap->session;
2752                         spin_lock(&s->s_cap_lock);
2753                         session_readonly = s->s_readonly;
2754                         spin_unlock(&s->s_cap_lock);
2755                 }
2756                 if (session_readonly) {
2757                         dout("get_cap_refs %p need %s but mds%d readonly\n",
2758                              inode, ceph_cap_string(need), ci->i_auth_cap->mds);
2759                         ret = -EROFS;
2760                         goto out_unlock;
2761                 }
2762
2763                 if (READ_ONCE(mdsc->fsc->mount_state) >= CEPH_MOUNT_SHUTDOWN) {
2764                         dout("get_cap_refs %p forced umount\n", inode);
2765                         ret = -EIO;
2766                         goto out_unlock;
2767                 }
2768                 mds_wanted = __ceph_caps_mds_wanted(ci, false);
2769                 if (need & ~mds_wanted) {
2770                         dout("get_cap_refs %p need %s > mds_wanted %s\n",
2771                              inode, ceph_cap_string(need),
2772                              ceph_cap_string(mds_wanted));
2773                         ret = -ESTALE;
2774                         goto out_unlock;
2775                 }
2776
2777                 dout("get_cap_refs %p have %s need %s\n", inode,
2778                      ceph_cap_string(have), ceph_cap_string(need));
2779         }
2780 out_unlock:
2781
2782         __ceph_touch_fmode(ci, mdsc, flags);
2783
2784         spin_unlock(&ci->i_ceph_lock);
2785         if (snap_rwsem_locked)
2786                 up_read(&mdsc->snap_rwsem);
2787
2788         if (!ret)
2789                 ceph_update_cap_mis(&mdsc->metric);
2790         else if (ret == 1)
2791                 ceph_update_cap_hit(&mdsc->metric);
2792
2793         dout("get_cap_refs %p ret %d got %s\n", inode,
2794              ret, ceph_cap_string(*got));
2795         return ret;
2796 }
2797
2798 /*
2799  * Check the offset we are writing up to against our current
2800  * max_size.  If necessary, tell the MDS we want to write to
2801  * a larger offset.
2802  */
2803 static void check_max_size(struct inode *inode, loff_t endoff)
2804 {
2805         struct ceph_inode_info *ci = ceph_inode(inode);
2806         int check = 0;
2807
2808         /* do we need to explicitly request a larger max_size? */
2809         spin_lock(&ci->i_ceph_lock);
2810         if (endoff >= ci->i_max_size && endoff > ci->i_wanted_max_size) {
2811                 dout("write %p at large endoff %llu, req max_size\n",
2812                      inode, endoff);
2813                 ci->i_wanted_max_size = endoff;
2814         }
2815         /* duplicate ceph_check_caps()'s logic */
2816         if (ci->i_auth_cap &&
2817             (ci->i_auth_cap->issued & CEPH_CAP_FILE_WR) &&
2818             ci->i_wanted_max_size > ci->i_max_size &&
2819             ci->i_wanted_max_size > ci->i_requested_max_size)
2820                 check = 1;
2821         spin_unlock(&ci->i_ceph_lock);
2822         if (check)
2823                 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2824 }
2825
2826 static inline int get_used_fmode(int caps)
2827 {
2828         int fmode = 0;
2829         if (caps & CEPH_CAP_FILE_RD)
2830                 fmode |= CEPH_FILE_MODE_RD;
2831         if (caps & CEPH_CAP_FILE_WR)
2832                 fmode |= CEPH_FILE_MODE_WR;
2833         return fmode;
2834 }
2835
2836 int ceph_try_get_caps(struct inode *inode, int need, int want,
2837                       bool nonblock, int *got)
2838 {
2839         int ret, flags;
2840
2841         BUG_ON(need & ~CEPH_CAP_FILE_RD);
2842         BUG_ON(want & ~(CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO |
2843                         CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL |
2844                         CEPH_CAP_ANY_DIR_OPS));
2845         if (need) {
2846                 ret = ceph_pool_perm_check(inode, need);
2847                 if (ret < 0)
2848                         return ret;
2849         }
2850
2851         flags = get_used_fmode(need | want);
2852         if (nonblock)
2853                 flags |= NON_BLOCKING;
2854
2855         ret = try_get_cap_refs(inode, need, want, 0, flags, got);
2856         /* three special error codes */
2857         if (ret == -EAGAIN || ret == -EFBIG || ret == -ESTALE)
2858                 ret = 0;
2859         return ret;
2860 }
2861
2862 /*
2863  * Wait for caps, and take cap references.  If we can't get a WR cap
2864  * due to a small max_size, make sure we check_max_size (and possibly
2865  * ask the mds) so we don't get hung up indefinitely.
2866  */
2867 int ceph_get_caps(struct file *filp, int need, int want, loff_t endoff, int *got)
2868 {
2869         struct ceph_file_info *fi = filp->private_data;
2870         struct inode *inode = file_inode(filp);
2871         struct ceph_inode_info *ci = ceph_inode(inode);
2872         struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
2873         int ret, _got, flags;
2874
2875         ret = ceph_pool_perm_check(inode, need);
2876         if (ret < 0)
2877                 return ret;
2878
2879         if ((fi->fmode & CEPH_FILE_MODE_WR) &&
2880             fi->filp_gen != READ_ONCE(fsc->filp_gen))
2881                 return -EBADF;
2882
2883         flags = get_used_fmode(need | want);
2884
2885         while (true) {
2886                 flags &= CEPH_FILE_MODE_MASK;
2887                 if (atomic_read(&fi->num_locks))
2888                         flags |= CHECK_FILELOCK;
2889                 _got = 0;
2890                 ret = try_get_cap_refs(inode, need, want, endoff,
2891                                        flags, &_got);
2892                 WARN_ON_ONCE(ret == -EAGAIN);
2893                 if (!ret) {
2894                         struct ceph_mds_client *mdsc = fsc->mdsc;
2895                         struct cap_wait cw;
2896                         DEFINE_WAIT_FUNC(wait, woken_wake_function);
2897
2898                         cw.ino = ceph_ino(inode);
2899                         cw.tgid = current->tgid;
2900                         cw.need = need;
2901                         cw.want = want;
2902
2903                         spin_lock(&mdsc->caps_list_lock);
2904                         list_add(&cw.list, &mdsc->cap_wait_list);
2905                         spin_unlock(&mdsc->caps_list_lock);
2906
2907                         /* make sure used fmode not timeout */
2908                         ceph_get_fmode(ci, flags, FMODE_WAIT_BIAS);
2909                         add_wait_queue(&ci->i_cap_wq, &wait);
2910
2911                         flags |= NON_BLOCKING;
2912                         while (!(ret = try_get_cap_refs(inode, need, want,
2913                                                         endoff, flags, &_got))) {
2914                                 if (signal_pending(current)) {
2915                                         ret = -ERESTARTSYS;
2916                                         break;
2917                                 }
2918                                 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
2919                         }
2920
2921                         remove_wait_queue(&ci->i_cap_wq, &wait);
2922                         ceph_put_fmode(ci, flags, FMODE_WAIT_BIAS);
2923
2924                         spin_lock(&mdsc->caps_list_lock);
2925                         list_del(&cw.list);
2926                         spin_unlock(&mdsc->caps_list_lock);
2927
2928                         if (ret == -EAGAIN)
2929                                 continue;
2930                 }
2931
2932                 if ((fi->fmode & CEPH_FILE_MODE_WR) &&
2933                     fi->filp_gen != READ_ONCE(fsc->filp_gen)) {
2934                         if (ret >= 0 && _got)
2935                                 ceph_put_cap_refs(ci, _got);
2936                         return -EBADF;
2937                 }
2938
2939                 if (ret < 0) {
2940                         if (ret == -EFBIG || ret == -ESTALE) {
2941                                 int ret2 = ceph_wait_on_async_create(inode);
2942                                 if (ret2 < 0)
2943                                         return ret2;
2944                         }
2945                         if (ret == -EFBIG) {
2946                                 check_max_size(inode, endoff);
2947                                 continue;
2948                         }
2949                         if (ret == -ESTALE) {
2950                                 /* session was killed, try renew caps */
2951                                 ret = ceph_renew_caps(inode, flags);
2952                                 if (ret == 0)
2953                                         continue;
2954                         }
2955                         return ret;
2956                 }
2957
2958                 if (S_ISREG(ci->vfs_inode.i_mode) &&
2959                     ci->i_inline_version != CEPH_INLINE_NONE &&
2960                     (_got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
2961                     i_size_read(inode) > 0) {
2962                         struct page *page =
2963                                 find_get_page(inode->i_mapping, 0);
2964                         if (page) {
2965                                 bool uptodate = PageUptodate(page);
2966
2967                                 put_page(page);
2968                                 if (uptodate)
2969                                         break;
2970                         }
2971                         /*
2972                          * drop cap refs first because getattr while
2973                          * holding * caps refs can cause deadlock.
2974                          */
2975                         ceph_put_cap_refs(ci, _got);
2976                         _got = 0;
2977
2978                         /*
2979                          * getattr request will bring inline data into
2980                          * page cache
2981                          */
2982                         ret = __ceph_do_getattr(inode, NULL,
2983                                                 CEPH_STAT_CAP_INLINE_DATA,
2984                                                 true);
2985                         if (ret < 0)
2986                                 return ret;
2987                         continue;
2988                 }
2989                 break;
2990         }
2991         *got = _got;
2992         return 0;
2993 }
2994
2995 /*
2996  * Take cap refs.  Caller must already know we hold at least one ref
2997  * on the caps in question or we don't know this is safe.
2998  */
2999 void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
3000 {
3001         spin_lock(&ci->i_ceph_lock);
3002         ceph_take_cap_refs(ci, caps, false);
3003         spin_unlock(&ci->i_ceph_lock);
3004 }
3005
3006
3007 /*
3008  * drop cap_snap that is not associated with any snapshot.
3009  * we don't need to send FLUSHSNAP message for it.
3010  */
3011 static int ceph_try_drop_cap_snap(struct ceph_inode_info *ci,
3012                                   struct ceph_cap_snap *capsnap)
3013 {
3014         if (!capsnap->need_flush &&
3015             !capsnap->writing && !capsnap->dirty_pages) {
3016                 dout("dropping cap_snap %p follows %llu\n",
3017                      capsnap, capsnap->follows);
3018                 BUG_ON(capsnap->cap_flush.tid > 0);
3019                 ceph_put_snap_context(capsnap->context);
3020                 if (!list_is_last(&capsnap->ci_item, &ci->i_cap_snaps))
3021                         ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
3022
3023                 list_del(&capsnap->ci_item);
3024                 ceph_put_cap_snap(capsnap);
3025                 return 1;
3026         }
3027         return 0;
3028 }
3029
3030 enum put_cap_refs_mode {
3031         PUT_CAP_REFS_SYNC = 0,
3032         PUT_CAP_REFS_NO_CHECK,
3033         PUT_CAP_REFS_ASYNC,
3034 };
3035
3036 /*
3037  * Release cap refs.
3038  *
3039  * If we released the last ref on any given cap, call ceph_check_caps
3040  * to release (or schedule a release).
3041  *
3042  * If we are releasing a WR cap (from a sync write), finalize any affected
3043  * cap_snap, and wake up any waiters.
3044  */
3045 static void __ceph_put_cap_refs(struct ceph_inode_info *ci, int had,
3046                                 enum put_cap_refs_mode mode)
3047 {
3048         struct inode *inode = &ci->vfs_inode;
3049         int last = 0, put = 0, flushsnaps = 0, wake = 0;
3050         bool check_flushsnaps = false;
3051
3052         spin_lock(&ci->i_ceph_lock);
3053         if (had & CEPH_CAP_PIN)
3054                 --ci->i_pin_ref;
3055         if (had & CEPH_CAP_FILE_RD)
3056                 if (--ci->i_rd_ref == 0)
3057                         last++;
3058         if (had & CEPH_CAP_FILE_CACHE)
3059                 if (--ci->i_rdcache_ref == 0)
3060                         last++;
3061         if (had & CEPH_CAP_FILE_EXCL)
3062                 if (--ci->i_fx_ref == 0)
3063                         last++;
3064         if (had & CEPH_CAP_FILE_BUFFER) {
3065                 if (--ci->i_wb_ref == 0) {
3066                         last++;
3067                         /* put the ref held by ceph_take_cap_refs() */
3068                         put++;
3069                         check_flushsnaps = true;
3070                 }
3071                 dout("put_cap_refs %p wb %d -> %d (?)\n",
3072                      inode, ci->i_wb_ref+1, ci->i_wb_ref);
3073         }
3074         if (had & CEPH_CAP_FILE_WR) {
3075                 if (--ci->i_wr_ref == 0) {
3076                         last++;
3077                         check_flushsnaps = true;
3078                         if (ci->i_wrbuffer_ref_head == 0 &&
3079                             ci->i_dirty_caps == 0 &&
3080                             ci->i_flushing_caps == 0) {
3081                                 BUG_ON(!ci->i_head_snapc);
3082                                 ceph_put_snap_context(ci->i_head_snapc);
3083                                 ci->i_head_snapc = NULL;
3084                         }
3085                         /* see comment in __ceph_remove_cap() */
3086                         if (!__ceph_is_any_real_caps(ci) && ci->i_snap_realm)
3087                                 drop_inode_snap_realm(ci);
3088                 }
3089         }
3090         if (check_flushsnaps && __ceph_have_pending_cap_snap(ci)) {
3091                 struct ceph_cap_snap *capsnap =
3092                         list_last_entry(&ci->i_cap_snaps,
3093                                         struct ceph_cap_snap,
3094                                         ci_item);
3095
3096                 capsnap->writing = 0;
3097                 if (ceph_try_drop_cap_snap(ci, capsnap))
3098                         /* put the ref held by ceph_queue_cap_snap() */
3099                         put++;
3100                 else if (__ceph_finish_cap_snap(ci, capsnap))
3101                         flushsnaps = 1;
3102                 wake = 1;
3103         }
3104         spin_unlock(&ci->i_ceph_lock);
3105
3106         dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
3107              last ? " last" : "", put ? " put" : "");
3108
3109         switch (mode) {
3110         case PUT_CAP_REFS_SYNC:
3111                 if (last)
3112                         ceph_check_caps(ci, 0, NULL);
3113                 else if (flushsnaps)
3114                         ceph_flush_snaps(ci, NULL);
3115                 break;
3116         case PUT_CAP_REFS_ASYNC:
3117                 if (last)
3118                         ceph_queue_check_caps(inode);
3119                 else if (flushsnaps)
3120                         ceph_queue_flush_snaps(inode);
3121                 break;
3122         default:
3123                 break;
3124         }
3125         if (wake)
3126                 wake_up_all(&ci->i_cap_wq);
3127         while (put-- > 0)
3128                 iput(inode);
3129 }
3130
3131 void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
3132 {
3133         __ceph_put_cap_refs(ci, had, PUT_CAP_REFS_SYNC);
3134 }
3135
3136 void ceph_put_cap_refs_async(struct ceph_inode_info *ci, int had)
3137 {
3138         __ceph_put_cap_refs(ci, had, PUT_CAP_REFS_ASYNC);
3139 }
3140
3141 void ceph_put_cap_refs_no_check_caps(struct ceph_inode_info *ci, int had)
3142 {
3143         __ceph_put_cap_refs(ci, had, PUT_CAP_REFS_NO_CHECK);
3144 }
3145
3146 /*
3147  * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
3148  * context.  Adjust per-snap dirty page accounting as appropriate.
3149  * Once all dirty data for a cap_snap is flushed, flush snapped file
3150  * metadata back to the MDS.  If we dropped the last ref, call
3151  * ceph_check_caps.
3152  */
3153 void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
3154                                 struct ceph_snap_context *snapc)
3155 {
3156         struct inode *inode = &ci->vfs_inode;
3157         struct ceph_cap_snap *capsnap = NULL;
3158         int put = 0;
3159         bool last = false;
3160         bool found = false;
3161         bool flush_snaps = false;
3162         bool complete_capsnap = false;
3163
3164         spin_lock(&ci->i_ceph_lock);
3165         ci->i_wrbuffer_ref -= nr;
3166         if (ci->i_wrbuffer_ref == 0) {
3167                 last = true;
3168                 put++;
3169         }
3170
3171         if (ci->i_head_snapc == snapc) {
3172                 ci->i_wrbuffer_ref_head -= nr;
3173                 if (ci->i_wrbuffer_ref_head == 0 &&
3174                     ci->i_wr_ref == 0 &&
3175                     ci->i_dirty_caps == 0 &&
3176                     ci->i_flushing_caps == 0) {
3177                         BUG_ON(!ci->i_head_snapc);
3178                         ceph_put_snap_context(ci->i_head_snapc);
3179                         ci->i_head_snapc = NULL;
3180                 }
3181                 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
3182                      inode,
3183                      ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
3184                      ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
3185                      last ? " LAST" : "");
3186         } else {
3187                 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
3188                         if (capsnap->context == snapc) {
3189                                 found = true;
3190                                 break;
3191                         }
3192                 }
3193                 BUG_ON(!found);
3194                 capsnap->dirty_pages -= nr;
3195                 if (capsnap->dirty_pages == 0) {
3196                         complete_capsnap = true;
3197                         if (!capsnap->writing) {
3198                                 if (ceph_try_drop_cap_snap(ci, capsnap)) {
3199                                         put++;
3200                                 } else {
3201                                         ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
3202                                         flush_snaps = true;
3203                                 }
3204                         }
3205                 }
3206                 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
3207                      " snap %lld %d/%d -> %d/%d %s%s\n",
3208                      inode, capsnap, capsnap->context->seq,
3209                      ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
3210                      ci->i_wrbuffer_ref, capsnap->dirty_pages,
3211                      last ? " (wrbuffer last)" : "",
3212                      complete_capsnap ? " (complete capsnap)" : "");
3213         }
3214
3215         spin_unlock(&ci->i_ceph_lock);
3216
3217         if (last) {
3218                 ceph_check_caps(ci, 0, NULL);
3219         } else if (flush_snaps) {
3220                 ceph_flush_snaps(ci, NULL);
3221         }
3222         if (complete_capsnap)
3223                 wake_up_all(&ci->i_cap_wq);
3224         while (put-- > 0) {
3225                 iput(inode);
3226         }
3227 }
3228
3229 /*
3230  * Invalidate unlinked inode's aliases, so we can drop the inode ASAP.
3231  */
3232 static void invalidate_aliases(struct inode *inode)
3233 {
3234         struct dentry *dn, *prev = NULL;
3235
3236         dout("invalidate_aliases inode %p\n", inode);
3237         d_prune_aliases(inode);
3238         /*
3239          * For non-directory inode, d_find_alias() only returns
3240          * hashed dentry. After calling d_invalidate(), the
3241          * dentry becomes unhashed.
3242          *
3243          * For directory inode, d_find_alias() can return
3244          * unhashed dentry. But directory inode should have
3245          * one alias at most.
3246          */
3247         while ((dn = d_find_alias(inode))) {
3248                 if (dn == prev) {
3249                         dput(dn);
3250                         break;
3251                 }
3252                 d_invalidate(dn);
3253                 if (prev)
3254                         dput(prev);
3255                 prev = dn;
3256         }
3257         if (prev)
3258                 dput(prev);
3259 }
3260
3261 struct cap_extra_info {
3262         struct ceph_string *pool_ns;
3263         /* inline data */
3264         u64 inline_version;
3265         void *inline_data;
3266         u32 inline_len;
3267         /* dirstat */
3268         bool dirstat_valid;
3269         u64 nfiles;
3270         u64 nsubdirs;
3271         u64 change_attr;
3272         /* currently issued */
3273         int issued;
3274         struct timespec64 btime;
3275 };
3276
3277 /*
3278  * Handle a cap GRANT message from the MDS.  (Note that a GRANT may
3279  * actually be a revocation if it specifies a smaller cap set.)
3280  *
3281  * caller holds s_mutex and i_ceph_lock, we drop both.
3282  */
3283 static void handle_cap_grant(struct inode *inode,
3284                              struct ceph_mds_session *session,
3285                              struct ceph_cap *cap,
3286                              struct ceph_mds_caps *grant,
3287                              struct ceph_buffer *xattr_buf,
3288                              struct cap_extra_info *extra_info)
3289         __releases(ci->i_ceph_lock)
3290         __releases(session->s_mdsc->snap_rwsem)
3291 {
3292         struct ceph_inode_info *ci = ceph_inode(inode);
3293         int seq = le32_to_cpu(grant->seq);
3294         int newcaps = le32_to_cpu(grant->caps);
3295         int used, wanted, dirty;
3296         u64 size = le64_to_cpu(grant->size);
3297         u64 max_size = le64_to_cpu(grant->max_size);
3298         unsigned char check_caps = 0;
3299         bool was_stale = cap->cap_gen < atomic_read(&session->s_cap_gen);
3300         bool wake = false;
3301         bool writeback = false;
3302         bool queue_trunc = false;
3303         bool queue_invalidate = false;
3304         bool deleted_inode = false;
3305         bool fill_inline = false;
3306
3307         dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
3308              inode, cap, session->s_mds, seq, ceph_cap_string(newcaps));
3309         dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
3310                 i_size_read(inode));
3311
3312
3313         /*
3314          * If CACHE is being revoked, and we have no dirty buffers,
3315          * try to invalidate (once).  (If there are dirty buffers, we
3316          * will invalidate _after_ writeback.)
3317          */
3318         if (S_ISREG(inode->i_mode) && /* don't invalidate readdir cache */
3319             ((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
3320             (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
3321             !(ci->i_wrbuffer_ref || ci->i_wb_ref)) {
3322                 if (try_nonblocking_invalidate(inode)) {
3323                         /* there were locked pages.. invalidate later
3324                            in a separate thread. */
3325                         if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
3326                                 queue_invalidate = true;
3327                                 ci->i_rdcache_revoking = ci->i_rdcache_gen;
3328                         }
3329                 }
3330         }
3331
3332         if (was_stale)
3333                 cap->issued = cap->implemented = CEPH_CAP_PIN;
3334
3335         /*
3336          * auth mds of the inode changed. we received the cap export message,
3337          * but still haven't received the cap import message. handle_cap_export
3338          * updated the new auth MDS' cap.
3339          *
3340          * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing a message
3341          * that was sent before the cap import message. So don't remove caps.
3342          */
3343         if (ceph_seq_cmp(seq, cap->seq) <= 0) {
3344                 WARN_ON(cap != ci->i_auth_cap);
3345                 WARN_ON(cap->cap_id != le64_to_cpu(grant->cap_id));
3346                 seq = cap->seq;
3347                 newcaps |= cap->issued;
3348         }
3349
3350         /* side effects now are allowed */
3351         cap->cap_gen = atomic_read(&session->s_cap_gen);
3352         cap->seq = seq;
3353
3354         __check_cap_issue(ci, cap, newcaps);
3355
3356         inode_set_max_iversion_raw(inode, extra_info->change_attr);
3357
3358         if ((newcaps & CEPH_CAP_AUTH_SHARED) &&
3359             (extra_info->issued & CEPH_CAP_AUTH_EXCL) == 0) {
3360                 umode_t mode = le32_to_cpu(grant->mode);
3361
3362                 if (inode_wrong_type(inode, mode))
3363                         pr_warn_once("inode type changed! (ino %llx.%llx is 0%o, mds says 0%o)\n",
3364                                      ceph_vinop(inode), inode->i_mode, mode);
3365                 else
3366                         inode->i_mode = mode;
3367                 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(grant->uid));
3368                 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(grant->gid));
3369                 ci->i_btime = extra_info->btime;
3370                 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
3371                      from_kuid(&init_user_ns, inode->i_uid),
3372                      from_kgid(&init_user_ns, inode->i_gid));
3373         }
3374
3375         if ((newcaps & CEPH_CAP_LINK_SHARED) &&
3376             (extra_info->issued & CEPH_CAP_LINK_EXCL) == 0) {
3377                 set_nlink(inode, le32_to_cpu(grant->nlink));
3378                 if (inode->i_nlink == 0 &&
3379                     (newcaps & (CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL)))
3380                         deleted_inode = true;
3381         }
3382
3383         if ((extra_info->issued & CEPH_CAP_XATTR_EXCL) == 0 &&
3384             grant->xattr_len) {
3385                 int len = le32_to_cpu(grant->xattr_len);
3386                 u64 version = le64_to_cpu(grant->xattr_version);
3387
3388                 if (version > ci->i_xattrs.version) {
3389                         dout(" got new xattrs v%llu on %p len %d\n",
3390                              version, inode, len);
3391                         if (ci->i_xattrs.blob)
3392                                 ceph_buffer_put(ci->i_xattrs.blob);
3393                         ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
3394                         ci->i_xattrs.version = version;
3395                         ceph_forget_all_cached_acls(inode);
3396                         ceph_security_invalidate_secctx(inode);
3397                 }
3398         }
3399
3400         if (newcaps & CEPH_CAP_ANY_RD) {
3401                 struct timespec64 mtime, atime, ctime;
3402                 /* ctime/mtime/atime? */
3403                 ceph_decode_timespec64(&mtime, &grant->mtime);
3404                 ceph_decode_timespec64(&atime, &grant->atime);
3405                 ceph_decode_timespec64(&ctime, &grant->ctime);
3406                 ceph_fill_file_time(inode, extra_info->issued,
3407                                     le32_to_cpu(grant->time_warp_seq),
3408                                     &ctime, &mtime, &atime);
3409         }
3410
3411         if ((newcaps & CEPH_CAP_FILE_SHARED) && extra_info->dirstat_valid) {
3412                 ci->i_files = extra_info->nfiles;
3413                 ci->i_subdirs = extra_info->nsubdirs;
3414         }
3415
3416         if (newcaps & (CEPH_CAP_ANY_FILE_RD | CEPH_CAP_ANY_FILE_WR)) {
3417                 /* file layout may have changed */
3418                 s64 old_pool = ci->i_layout.pool_id;
3419                 struct ceph_string *old_ns;
3420
3421                 ceph_file_layout_from_legacy(&ci->i_layout, &grant->layout);
3422                 old_ns = rcu_dereference_protected(ci->i_layout.pool_ns,
3423                                         lockdep_is_held(&ci->i_ceph_lock));
3424                 rcu_assign_pointer(ci->i_layout.pool_ns, extra_info->pool_ns);
3425
3426                 if (ci->i_layout.pool_id != old_pool ||
3427                     extra_info->pool_ns != old_ns)
3428                         ci->i_ceph_flags &= ~CEPH_I_POOL_PERM;
3429
3430                 extra_info->pool_ns = old_ns;
3431
3432                 /* size/truncate_seq? */
3433                 queue_trunc = ceph_fill_file_size(inode, extra_info->issued,
3434                                         le32_to_cpu(grant->truncate_seq),
3435                                         le64_to_cpu(grant->truncate_size),
3436                                         size);
3437         }
3438
3439         if (ci->i_auth_cap == cap && (newcaps & CEPH_CAP_ANY_FILE_WR)) {
3440                 if (max_size != ci->i_max_size) {
3441                         dout("max_size %lld -> %llu\n",
3442                              ci->i_max_size, max_size);
3443                         ci->i_max_size = max_size;
3444                         if (max_size >= ci->i_wanted_max_size) {
3445                                 ci->i_wanted_max_size = 0;  /* reset */
3446                                 ci->i_requested_max_size = 0;
3447                         }
3448                         wake = true;
3449                 }
3450         }
3451
3452         /* check cap bits */
3453         wanted = __ceph_caps_wanted(ci);
3454         used = __ceph_caps_used(ci);
3455         dirty = __ceph_caps_dirty(ci);
3456         dout(" my wanted = %s, used = %s, dirty %s\n",
3457              ceph_cap_string(wanted),
3458              ceph_cap_string(used),
3459              ceph_cap_string(dirty));
3460
3461         if ((was_stale || le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) &&
3462             (wanted & ~(cap->mds_wanted | newcaps))) {
3463                 /*
3464                  * If mds is importing cap, prior cap messages that update
3465                  * 'wanted' may get dropped by mds (migrate seq mismatch).
3466                  *
3467                  * We don't send cap message to update 'wanted' if what we
3468                  * want are already issued. If mds revokes caps, cap message
3469                  * that releases caps also tells mds what we want. But if
3470                  * caps got revoked by mds forcedly (session stale). We may
3471                  * haven't told mds what we want.
3472                  */
3473                 check_caps = 1;
3474         }
3475
3476         /* revocation, grant, or no-op? */
3477         if (cap->issued & ~newcaps) {
3478                 int revoking = cap->issued & ~newcaps;
3479
3480                 dout("revocation: %s -> %s (revoking %s)\n",
3481                      ceph_cap_string(cap->issued),
3482                      ceph_cap_string(newcaps),
3483                      ceph_cap_string(revoking));
3484                 if (S_ISREG(inode->i_mode) &&
3485                     (revoking & used & CEPH_CAP_FILE_BUFFER))
3486                         writeback = true;  /* initiate writeback; will delay ack */
3487                 else if (queue_invalidate &&
3488                          revoking == CEPH_CAP_FILE_CACHE &&
3489                          (newcaps & CEPH_CAP_FILE_LAZYIO) == 0)
3490                         ; /* do nothing yet, invalidation will be queued */
3491                 else if (cap == ci->i_auth_cap)
3492                         check_caps = 1; /* check auth cap only */
3493                 else
3494                         check_caps = 2; /* check all caps */
3495                 cap->issued = newcaps;
3496                 cap->implemented |= newcaps;
3497         } else if (cap->issued == newcaps) {
3498                 dout("caps unchanged: %s -> %s\n",
3499                      ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
3500         } else {
3501                 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
3502                      ceph_cap_string(newcaps));
3503                 /* non-auth MDS is revoking the newly grant caps ? */
3504                 if (cap == ci->i_auth_cap &&
3505                     __ceph_caps_revoking_other(ci, cap, newcaps))
3506                     check_caps = 2;
3507
3508                 cap->issued = newcaps;
3509                 cap->implemented |= newcaps; /* add bits only, to
3510                                               * avoid stepping on a
3511                                               * pending revocation */
3512                 wake = true;
3513         }
3514         BUG_ON(cap->issued & ~cap->implemented);
3515
3516         if (extra_info->inline_version > 0 &&
3517             extra_info->inline_version >= ci->i_inline_version) {
3518                 ci->i_inline_version = extra_info->inline_version;
3519                 if (ci->i_inline_version != CEPH_INLINE_NONE &&
3520                     (newcaps & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)))
3521                         fill_inline = true;
3522         }
3523
3524         if (ci->i_auth_cap == cap &&
3525             le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) {
3526                 if (newcaps & ~extra_info->issued)
3527                         wake = true;
3528
3529                 if (ci->i_requested_max_size > max_size ||
3530                     !(le32_to_cpu(grant->wanted) & CEPH_CAP_ANY_FILE_WR)) {
3531                         /* re-request max_size if necessary */
3532                         ci->i_requested_max_size = 0;
3533                         wake = true;
3534                 }
3535
3536                 ceph_kick_flushing_inode_caps(session, ci);
3537                 spin_unlock(&ci->i_ceph_lock);
3538                 up_read(&session->s_mdsc->snap_rwsem);
3539         } else {
3540                 spin_unlock(&ci->i_ceph_lock);
3541         }
3542
3543         if (fill_inline)
3544                 ceph_fill_inline_data(inode, NULL, extra_info->inline_data,
3545                                       extra_info->inline_len);
3546
3547         if (queue_trunc)
3548                 ceph_queue_vmtruncate(inode);
3549
3550         if (writeback)
3551                 /*
3552                  * queue inode for writeback: we can't actually call
3553                  * filemap_write_and_wait, etc. from message handler
3554                  * context.
3555                  */
3556                 ceph_queue_writeback(inode);
3557         if (queue_invalidate)
3558                 ceph_queue_invalidate(inode);
3559         if (deleted_inode)
3560                 invalidate_aliases(inode);
3561         if (wake)
3562                 wake_up_all(&ci->i_cap_wq);
3563
3564         mutex_unlock(&session->s_mutex);
3565         if (check_caps == 1)
3566                 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY | CHECK_CAPS_NOINVAL,
3567                                 session);
3568         else if (check_caps == 2)
3569                 ceph_check_caps(ci, CHECK_CAPS_NOINVAL, session);
3570 }
3571
3572 /*
3573  * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
3574  * MDS has been safely committed.
3575  */
3576 static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
3577                                  struct ceph_mds_caps *m,
3578                                  struct ceph_mds_session *session,
3579                                  struct ceph_cap *cap)
3580         __releases(ci->i_ceph_lock)
3581 {
3582         struct ceph_inode_info *ci = ceph_inode(inode);
3583         struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
3584         struct ceph_cap_flush *cf, *tmp_cf;
3585         LIST_HEAD(to_remove);
3586         unsigned seq = le32_to_cpu(m->seq);
3587         int dirty = le32_to_cpu(m->dirty);
3588         int cleaned = 0;
3589         bool drop = false;
3590         bool wake_ci = false;
3591         bool wake_mdsc = false;
3592
3593         list_for_each_entry_safe(cf, tmp_cf, &ci->i_cap_flush_list, i_list) {
3594                 /* Is this the one that was flushed? */
3595                 if (cf->tid == flush_tid)
3596                         cleaned = cf->caps;
3597
3598                 /* Is this a capsnap? */
3599                 if (cf->is_capsnap)
3600                         continue;
3601
3602                 if (cf->tid <= flush_tid) {
3603                         /*
3604                          * An earlier or current tid. The FLUSH_ACK should
3605                          * represent a superset of this flush's caps.
3606                          */
3607                         wake_ci |= __detach_cap_flush_from_ci(ci, cf);
3608                         list_add_tail(&cf->i_list, &to_remove);
3609                 } else {
3610                         /*
3611                          * This is a later one. Any caps in it are still dirty
3612                          * so don't count them as cleaned.
3613                          */
3614                         cleaned &= ~cf->caps;
3615                         if (!cleaned)
3616                                 break;
3617                 }
3618         }
3619
3620         dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
3621              " flushing %s -> %s\n",
3622              inode, session->s_mds, seq, ceph_cap_string(dirty),
3623              ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
3624              ceph_cap_string(ci->i_flushing_caps & ~cleaned));
3625
3626         if (list_empty(&to_remove) && !cleaned)
3627                 goto out;
3628
3629         ci->i_flushing_caps &= ~cleaned;
3630
3631         spin_lock(&mdsc->cap_dirty_lock);
3632
3633         list_for_each_entry(cf, &to_remove, i_list)
3634                 wake_mdsc |= __detach_cap_flush_from_mdsc(mdsc, cf);
3635
3636         if (ci->i_flushing_caps == 0) {
3637                 if (list_empty(&ci->i_cap_flush_list)) {
3638                         list_del_init(&ci->i_flushing_item);
3639                         if (!list_empty(&session->s_cap_flushing)) {
3640                                 dout(" mds%d still flushing cap on %p\n",
3641                                      session->s_mds,
3642                                      &list_first_entry(&session->s_cap_flushing,
3643                                                 struct ceph_inode_info,
3644                                                 i_flushing_item)->vfs_inode);
3645                         }
3646                 }
3647                 mdsc->num_cap_flushing--;
3648                 dout(" inode %p now !flushing\n", inode);
3649
3650                 if (ci->i_dirty_caps == 0) {
3651                         dout(" inode %p now clean\n", inode);
3652                         BUG_ON(!list_empty(&ci->i_dirty_item));
3653                         drop = true;
3654                         if (ci->i_wr_ref == 0 &&
3655                             ci->i_wrbuffer_ref_head == 0) {
3656                                 BUG_ON(!ci->i_head_snapc);
3657                                 ceph_put_snap_context(ci->i_head_snapc);
3658                                 ci->i_head_snapc = NULL;
3659                         }
3660                 } else {
3661                         BUG_ON(list_empty(&ci->i_dirty_item));
3662                 }
3663         }
3664         spin_unlock(&mdsc->cap_dirty_lock);
3665
3666 out:
3667         spin_unlock(&ci->i_ceph_lock);
3668
3669         while (!list_empty(&to_remove)) {
3670                 cf = list_first_entry(&to_remove,
3671                                       struct ceph_cap_flush, i_list);
3672                 list_del_init(&cf->i_list);
3673                 if (!cf->is_capsnap)
3674                         ceph_free_cap_flush(cf);
3675         }
3676
3677         if (wake_ci)
3678                 wake_up_all(&ci->i_cap_wq);
3679         if (wake_mdsc)
3680                 wake_up_all(&mdsc->cap_flushing_wq);
3681         if (drop)
3682                 iput(inode);
3683 }
3684
3685 /*
3686  * Handle FLUSHSNAP_ACK.  MDS has flushed snap data to disk and we can
3687  * throw away our cap_snap.
3688  *
3689  * Caller hold s_mutex.
3690  */
3691 static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
3692                                      struct ceph_mds_caps *m,
3693                                      struct ceph_mds_session *session)
3694 {
3695         struct ceph_inode_info *ci = ceph_inode(inode);
3696         struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
3697         u64 follows = le64_to_cpu(m->snap_follows);
3698         struct ceph_cap_snap *capsnap;
3699         bool flushed = false;
3700         bool wake_ci = false;
3701         bool wake_mdsc = false;
3702
3703         dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
3704              inode, ci, session->s_mds, follows);
3705
3706         spin_lock(&ci->i_ceph_lock);
3707         list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
3708                 if (capsnap->follows == follows) {
3709                         if (capsnap->cap_flush.tid != flush_tid) {
3710                                 dout(" cap_snap %p follows %lld tid %lld !="
3711                                      " %lld\n", capsnap, follows,
3712                                      flush_tid, capsnap->cap_flush.tid);
3713                                 break;
3714                         }
3715                         flushed = true;
3716                         break;
3717                 } else {
3718                         dout(" skipping cap_snap %p follows %lld\n",
3719                              capsnap, capsnap->follows);
3720                 }
3721         }
3722         if (flushed) {
3723                 WARN_ON(capsnap->dirty_pages || capsnap->writing);
3724                 dout(" removing %p cap_snap %p follows %lld\n",
3725                      inode, capsnap, follows);
3726                 list_del(&capsnap->ci_item);
3727                 wake_ci |= __detach_cap_flush_from_ci(ci, &capsnap->cap_flush);
3728
3729                 spin_lock(&mdsc->cap_dirty_lock);
3730
3731                 if (list_empty(&ci->i_cap_flush_list))
3732                         list_del_init(&ci->i_flushing_item);
3733
3734                 wake_mdsc |= __detach_cap_flush_from_mdsc(mdsc,
3735                                                           &capsnap->cap_flush);
3736                 spin_unlock(&mdsc->cap_dirty_lock);
3737         }
3738         spin_unlock(&ci->i_ceph_lock);
3739         if (flushed) {
3740                 ceph_put_snap_context(capsnap->context);
3741                 ceph_put_cap_snap(capsnap);
3742                 if (wake_ci)
3743                         wake_up_all(&ci->i_cap_wq);
3744                 if (wake_mdsc)
3745                         wake_up_all(&mdsc->cap_flushing_wq);
3746                 iput(inode);
3747         }
3748 }
3749
3750 /*
3751  * Handle TRUNC from MDS, indicating file truncation.
3752  *
3753  * caller hold s_mutex.
3754  */
3755 static bool handle_cap_trunc(struct inode *inode,
3756                              struct ceph_mds_caps *trunc,
3757                              struct ceph_mds_session *session)
3758 {
3759         struct ceph_inode_info *ci = ceph_inode(inode);
3760         int mds = session->s_mds;
3761         int seq = le32_to_cpu(trunc->seq);
3762         u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
3763         u64 truncate_size = le64_to_cpu(trunc->truncate_size);
3764         u64 size = le64_to_cpu(trunc->size);
3765         int implemented = 0;
3766         int dirty = __ceph_caps_dirty(ci);
3767         int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
3768         bool queue_trunc = false;
3769
3770         lockdep_assert_held(&ci->i_ceph_lock);
3771
3772         issued |= implemented | dirty;
3773
3774         dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
3775              inode, mds, seq, truncate_size, truncate_seq);
3776         queue_trunc = ceph_fill_file_size(inode, issued,
3777                                           truncate_seq, truncate_size, size);
3778         return queue_trunc;
3779 }
3780
3781 /*
3782  * Handle EXPORT from MDS.  Cap is being migrated _from_ this mds to a
3783  * different one.  If we are the most recent migration we've seen (as
3784  * indicated by mseq), make note of the migrating cap bits for the
3785  * duration (until we see the corresponding IMPORT).
3786  *
3787  * caller holds s_mutex
3788  */
3789 static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
3790                               struct ceph_mds_cap_peer *ph,
3791                               struct ceph_mds_session *session)
3792 {
3793         struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
3794         struct ceph_mds_session *tsession = NULL;
3795         struct ceph_cap *cap, *tcap, *new_cap = NULL;
3796         struct ceph_inode_info *ci = ceph_inode(inode);
3797         u64 t_cap_id;
3798         unsigned mseq = le32_to_cpu(ex->migrate_seq);
3799         unsigned t_seq, t_mseq;
3800         int target, issued;
3801         int mds = session->s_mds;
3802
3803         if (ph) {
3804                 t_cap_id = le64_to_cpu(ph->cap_id);
3805                 t_seq = le32_to_cpu(ph->seq);
3806                 t_mseq = le32_to_cpu(ph->mseq);
3807                 target = le32_to_cpu(ph->mds);
3808         } else {
3809                 t_cap_id = t_seq = t_mseq = 0;
3810                 target = -1;
3811         }
3812
3813         dout("handle_cap_export inode %p ci %p mds%d mseq %d target %d\n",
3814              inode, ci, mds, mseq, target);
3815 retry:
3816         spin_lock(&ci->i_ceph_lock);
3817         cap = __get_cap_for_mds(ci, mds);
3818         if (!cap || cap->cap_id != le64_to_cpu(ex->cap_id))
3819                 goto out_unlock;
3820
3821         if (target < 0) {
3822                 __ceph_remove_cap(cap, false);
3823                 goto out_unlock;
3824         }
3825
3826         /*
3827          * now we know we haven't received the cap import message yet
3828          * because the exported cap still exist.
3829          */
3830
3831         issued = cap->issued;
3832         if (issued != cap->implemented)
3833                 pr_err_ratelimited("handle_cap_export: issued != implemented: "
3834                                 "ino (%llx.%llx) mds%d seq %d mseq %d "
3835                                 "issued %s implemented %s\n",
3836                                 ceph_vinop(inode), mds, cap->seq, cap->mseq,
3837                                 ceph_cap_string(issued),
3838                                 ceph_cap_string(cap->implemented));
3839
3840
3841         tcap = __get_cap_for_mds(ci, target);
3842         if (tcap) {
3843                 /* already have caps from the target */
3844                 if (tcap->cap_id == t_cap_id &&
3845                     ceph_seq_cmp(tcap->seq, t_seq) < 0) {
3846                         dout(" updating import cap %p mds%d\n", tcap, target);
3847                         tcap->cap_id = t_cap_id;
3848                         tcap->seq = t_seq - 1;
3849                         tcap->issue_seq = t_seq - 1;
3850                         tcap->issued |= issued;
3851                         tcap->implemented |= issued;
3852                         if (cap == ci->i_auth_cap) {
3853                                 ci->i_auth_cap = tcap;
3854                                 change_auth_cap_ses(ci, tcap->session);
3855                         }
3856                 }
3857                 __ceph_remove_cap(cap, false);
3858                 goto out_unlock;
3859         } else if (tsession) {
3860                 /* add placeholder for the export tagert */
3861                 int flag = (cap == ci->i_auth_cap) ? CEPH_CAP_FLAG_AUTH : 0;
3862                 tcap = new_cap;
3863                 ceph_add_cap(inode, tsession, t_cap_id, issued, 0,
3864                              t_seq - 1, t_mseq, (u64)-1, flag, &new_cap);
3865
3866                 if (!list_empty(&ci->i_cap_flush_list) &&
3867                     ci->i_auth_cap == tcap) {
3868                         spin_lock(&mdsc->cap_dirty_lock);
3869                         list_move_tail(&ci->i_flushing_item,
3870                                        &tcap->session->s_cap_flushing);
3871                         spin_unlock(&mdsc->cap_dirty_lock);
3872                 }
3873
3874                 __ceph_remove_cap(cap, false);
3875                 goto out_unlock;
3876         }
3877
3878         spin_unlock(&ci->i_ceph_lock);
3879         mutex_unlock(&session->s_mutex);
3880
3881         /* open target session */
3882         tsession = ceph_mdsc_open_export_target_session(mdsc, target);
3883         if (!IS_ERR(tsession)) {
3884                 if (mds > target) {
3885                         mutex_lock(&session->s_mutex);
3886                         mutex_lock_nested(&tsession->s_mutex,
3887                                           SINGLE_DEPTH_NESTING);
3888                 } else {
3889                         mutex_lock(&tsession->s_mutex);
3890                         mutex_lock_nested(&session->s_mutex,
3891                                           SINGLE_DEPTH_NESTING);
3892                 }
3893                 new_cap = ceph_get_cap(mdsc, NULL);
3894         } else {
3895                 WARN_ON(1);
3896                 tsession = NULL;
3897                 target = -1;
3898                 mutex_lock(&session->s_mutex);
3899         }
3900         goto retry;
3901
3902 out_unlock:
3903         spin_unlock(&ci->i_ceph_lock);
3904         mutex_unlock(&session->s_mutex);
3905         if (tsession) {
3906                 mutex_unlock(&tsession->s_mutex);
3907                 ceph_put_mds_session(tsession);
3908         }
3909         if (new_cap)
3910                 ceph_put_cap(mdsc, new_cap);
3911 }
3912
3913 /*
3914  * Handle cap IMPORT.
3915  *
3916  * caller holds s_mutex. acquires i_ceph_lock
3917  */
3918 static void handle_cap_import(struct ceph_mds_client *mdsc,
3919                               struct inode *inode, struct ceph_mds_caps *im,
3920                               struct ceph_mds_cap_peer *ph,
3921                               struct ceph_mds_session *session,
3922                               struct ceph_cap **target_cap, int *old_issued)
3923 {
3924         struct ceph_inode_info *ci = ceph_inode(inode);
3925         struct ceph_cap *cap, *ocap, *new_cap = NULL;
3926         int mds = session->s_mds;
3927         int issued;
3928         unsigned caps = le32_to_cpu(im->caps);
3929         unsigned wanted = le32_to_cpu(im->wanted);
3930         unsigned seq = le32_to_cpu(im->seq);
3931         unsigned mseq = le32_to_cpu(im->migrate_seq);
3932         u64 realmino = le64_to_cpu(im->realm);
3933         u64 cap_id = le64_to_cpu(im->cap_id);
3934         u64 p_cap_id;
3935         int peer;
3936
3937         if (ph) {
3938                 p_cap_id = le64_to_cpu(ph->cap_id);
3939                 peer = le32_to_cpu(ph->mds);
3940         } else {
3941                 p_cap_id = 0;
3942                 peer = -1;
3943         }
3944
3945         dout("handle_cap_import inode %p ci %p mds%d mseq %d peer %d\n",
3946              inode, ci, mds, mseq, peer);
3947 retry:
3948         cap = __get_cap_for_mds(ci, mds);
3949         if (!cap) {
3950                 if (!new_cap) {
3951                         spin_unlock(&ci->i_ceph_lock);
3952                         new_cap = ceph_get_cap(mdsc, NULL);
3953                         spin_lock(&ci->i_ceph_lock);
3954                         goto retry;
3955                 }
3956                 cap = new_cap;
3957         } else {
3958                 if (new_cap) {
3959                         ceph_put_cap(mdsc, new_cap);
3960                         new_cap = NULL;
3961                 }
3962         }
3963
3964         __ceph_caps_issued(ci, &issued);
3965         issued |= __ceph_caps_dirty(ci);
3966
3967         ceph_add_cap(inode, session, cap_id, caps, wanted, seq, mseq,
3968                      realmino, CEPH_CAP_FLAG_AUTH, &new_cap);
3969
3970         ocap = peer >= 0 ? __get_cap_for_mds(ci, peer) : NULL;
3971         if (ocap && ocap->cap_id == p_cap_id) {
3972                 dout(" remove export cap %p mds%d flags %d\n",
3973                      ocap, peer, ph->flags);
3974                 if ((ph->flags & CEPH_CAP_FLAG_AUTH) &&
3975                     (ocap->seq != le32_to_cpu(ph->seq) ||
3976                      ocap->mseq != le32_to_cpu(ph->mseq))) {
3977                         pr_err_ratelimited("handle_cap_import: "
3978                                         "mismatched seq/mseq: ino (%llx.%llx) "
3979                                         "mds%d seq %d mseq %d importer mds%d "
3980                                         "has peer seq %d mseq %d\n",
3981                                         ceph_vinop(inode), peer, ocap->seq,
3982                                         ocap->mseq, mds, le32_to_cpu(ph->seq),
3983                                         le32_to_cpu(ph->mseq));
3984                 }
3985                 __ceph_remove_cap(ocap, (ph->flags & CEPH_CAP_FLAG_RELEASE));
3986         }
3987
3988         *old_issued = issued;
3989         *target_cap = cap;
3990 }
3991
3992 /*
3993  * Handle a caps message from the MDS.
3994  *
3995  * Identify the appropriate session, inode, and call the right handler
3996  * based on the cap op.
3997  */
3998 void ceph_handle_caps(struct ceph_mds_session *session,
3999                       struct ceph_msg *msg)
4000 {
4001         struct ceph_mds_client *mdsc = session->s_mdsc;
4002         struct inode *inode;
4003         struct ceph_inode_info *ci;
4004         struct ceph_cap *cap;
4005         struct ceph_mds_caps *h;
4006         struct ceph_mds_cap_peer *peer = NULL;
4007         struct ceph_snap_realm *realm = NULL;
4008         int op;
4009         int msg_version = le16_to_cpu(msg->hdr.version);
4010         u32 seq, mseq;
4011         struct ceph_vino vino;
4012         void *snaptrace;
4013         size_t snaptrace_len;
4014         void *p, *end;
4015         struct cap_extra_info extra_info = {};
4016         bool queue_trunc;
4017
4018         dout("handle_caps from mds%d\n", session->s_mds);
4019
4020         /* decode */
4021         end = msg->front.iov_base + msg->front.iov_len;
4022         if (msg->front.iov_len < sizeof(*h))
4023                 goto bad;
4024         h = msg->front.iov_base;
4025         op = le32_to_cpu(h->op);
4026         vino.ino = le64_to_cpu(h->ino);
4027         vino.snap = CEPH_NOSNAP;
4028         seq = le32_to_cpu(h->seq);
4029         mseq = le32_to_cpu(h->migrate_seq);
4030
4031         snaptrace = h + 1;
4032         snaptrace_len = le32_to_cpu(h->snap_trace_len);
4033         p = snaptrace + snaptrace_len;
4034
4035         if (msg_version >= 2) {
4036                 u32 flock_len;
4037                 ceph_decode_32_safe(&p, end, flock_len, bad);
4038                 if (p + flock_len > end)
4039                         goto bad;
4040                 p += flock_len;
4041         }
4042
4043         if (msg_version >= 3) {
4044                 if (op == CEPH_CAP_OP_IMPORT) {
4045                         if (p + sizeof(*peer) > end)
4046                                 goto bad;
4047                         peer = p;
4048                         p += sizeof(*peer);
4049                 } else if (op == CEPH_CAP_OP_EXPORT) {
4050                         /* recorded in unused fields */
4051                         peer = (void *)&h->size;
4052                 }
4053         }
4054
4055         if (msg_version >= 4) {
4056                 ceph_decode_64_safe(&p, end, extra_info.inline_version, bad);
4057                 ceph_decode_32_safe(&p, end, extra_info.inline_len, bad);
4058                 if (p + extra_info.inline_len > end)
4059                         goto bad;
4060                 extra_info.inline_data = p;
4061                 p += extra_info.inline_len;
4062         }
4063
4064         if (msg_version >= 5) {
4065                 struct ceph_osd_client  *osdc = &mdsc->fsc->client->osdc;
4066                 u32                     epoch_barrier;
4067
4068                 ceph_decode_32_safe(&p, end, epoch_barrier, bad);
4069                 ceph_osdc_update_epoch_barrier(osdc, epoch_barrier);
4070         }
4071
4072         if (msg_version >= 8) {
4073                 u32 pool_ns_len;
4074
4075                 /* version >= 6 */
4076                 ceph_decode_skip_64(&p, end, bad);      // flush_tid
4077                 /* version >= 7 */
4078                 ceph_decode_skip_32(&p, end, bad);      // caller_uid
4079                 ceph_decode_skip_32(&p, end, bad);      // caller_gid
4080                 /* version >= 8 */
4081                 ceph_decode_32_safe(&p, end, pool_ns_len, bad);
4082                 if (pool_ns_len > 0) {
4083                         ceph_decode_need(&p, end, pool_ns_len, bad);
4084                         extra_info.pool_ns =
4085                                 ceph_find_or_create_string(p, pool_ns_len);
4086                         p += pool_ns_len;
4087                 }
4088         }
4089
4090         if (msg_version >= 9) {
4091                 struct ceph_timespec *btime;
4092
4093                 if (p + sizeof(*btime) > end)
4094                         goto bad;
4095                 btime = p;
4096                 ceph_decode_timespec64(&extra_info.btime, btime);
4097                 p += sizeof(*btime);
4098                 ceph_decode_64_safe(&p, end, extra_info.change_attr, bad);
4099         }
4100
4101         if (msg_version >= 11) {
4102                 /* version >= 10 */
4103                 ceph_decode_skip_32(&p, end, bad); // flags
4104                 /* version >= 11 */
4105                 extra_info.dirstat_valid = true;
4106                 ceph_decode_64_safe(&p, end, extra_info.nfiles, bad);
4107                 ceph_decode_64_safe(&p, end, extra_info.nsubdirs, bad);
4108         }
4109
4110         /* lookup ino */
4111         inode = ceph_find_inode(mdsc->fsc->sb, vino);
4112         ci = ceph_inode(inode);
4113         dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
4114              vino.snap, inode);
4115
4116         mutex_lock(&session->s_mutex);
4117         inc_session_sequence(session);
4118         dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
4119              (unsigned)seq);
4120
4121         if (!inode) {
4122                 dout(" i don't have ino %llx\n", vino.ino);
4123
4124                 if (op == CEPH_CAP_OP_IMPORT) {
4125                         cap = ceph_get_cap(mdsc, NULL);
4126                         cap->cap_ino = vino.ino;
4127                         cap->queue_release = 1;
4128                         cap->cap_id = le64_to_cpu(h->cap_id);
4129                         cap->mseq = mseq;
4130                         cap->seq = seq;
4131                         cap->issue_seq = seq;
4132                         spin_lock(&session->s_cap_lock);
4133                         __ceph_queue_cap_release(session, cap);
4134                         spin_unlock(&session->s_cap_lock);
4135                 }
4136                 goto flush_cap_releases;
4137         }
4138
4139         /* these will work even if we don't have a cap yet */
4140         switch (op) {
4141         case CEPH_CAP_OP_FLUSHSNAP_ACK:
4142                 handle_cap_flushsnap_ack(inode, le64_to_cpu(msg->hdr.tid),
4143                                          h, session);
4144                 goto done;
4145
4146         case CEPH_CAP_OP_EXPORT:
4147                 handle_cap_export(inode, h, peer, session);
4148                 goto done_unlocked;
4149
4150         case CEPH_CAP_OP_IMPORT:
4151                 realm = NULL;
4152                 if (snaptrace_len) {
4153                         down_write(&mdsc->snap_rwsem);
4154                         ceph_update_snap_trace(mdsc, snaptrace,
4155                                                snaptrace + snaptrace_len,
4156                                                false, &realm);
4157                         downgrade_write(&mdsc->snap_rwsem);
4158                 } else {
4159                         down_read(&mdsc->snap_rwsem);
4160                 }
4161                 spin_lock(&ci->i_ceph_lock);
4162                 handle_cap_import(mdsc, inode, h, peer, session,
4163                                   &cap, &extra_info.issued);
4164                 handle_cap_grant(inode, session, cap,
4165                                  h, msg->middle, &extra_info);
4166                 if (realm)
4167                         ceph_put_snap_realm(mdsc, realm);
4168                 goto done_unlocked;
4169         }
4170
4171         /* the rest require a cap */
4172         spin_lock(&ci->i_ceph_lock);
4173         cap = __get_cap_for_mds(ceph_inode(inode), session->s_mds);
4174         if (!cap) {
4175                 dout(" no cap on %p ino %llx.%llx from mds%d\n",
4176                      inode, ceph_ino(inode), ceph_snap(inode),
4177                      session->s_mds);
4178                 spin_unlock(&ci->i_ceph_lock);
4179                 goto flush_cap_releases;
4180         }
4181
4182         /* note that each of these drops i_ceph_lock for us */
4183         switch (op) {
4184         case CEPH_CAP_OP_REVOKE:
4185         case CEPH_CAP_OP_GRANT:
4186                 __ceph_caps_issued(ci, &extra_info.issued);
4187                 extra_info.issued |= __ceph_caps_dirty(ci);
4188                 handle_cap_grant(inode, session, cap,
4189                                  h, msg->middle, &extra_info);
4190                 goto done_unlocked;
4191
4192         case CEPH_CAP_OP_FLUSH_ACK:
4193                 handle_cap_flush_ack(inode, le64_to_cpu(msg->hdr.tid),
4194                                      h, session, cap);
4195                 break;
4196
4197         case CEPH_CAP_OP_TRUNC:
4198                 queue_trunc = handle_cap_trunc(inode, h, session);
4199                 spin_unlock(&ci->i_ceph_lock);
4200                 if (queue_trunc)
4201                         ceph_queue_vmtruncate(inode);
4202                 break;
4203
4204         default:
4205                 spin_unlock(&ci->i_ceph_lock);
4206                 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
4207                        ceph_cap_op_name(op));
4208         }
4209
4210 done:
4211         mutex_unlock(&session->s_mutex);
4212 done_unlocked:
4213         iput(inode);
4214 out:
4215         ceph_put_string(extra_info.pool_ns);
4216         return;
4217
4218 flush_cap_releases:
4219         /*
4220          * send any cap release message to try to move things
4221          * along for the mds (who clearly thinks we still have this
4222          * cap).
4223          */
4224         ceph_flush_cap_releases(mdsc, session);
4225         goto done;
4226
4227 bad:
4228         pr_err("ceph_handle_caps: corrupt message\n");
4229         ceph_msg_dump(msg);
4230         goto out;
4231 }
4232
4233 /*
4234  * Delayed work handler to process end of delayed cap release LRU list.
4235  *
4236  * If new caps are added to the list while processing it, these won't get
4237  * processed in this run.  In this case, the ci->i_hold_caps_max will be
4238  * returned so that the work can be scheduled accordingly.
4239  */
4240 unsigned long ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
4241 {
4242         struct inode *inode;
4243         struct ceph_inode_info *ci;
4244         struct ceph_mount_options *opt = mdsc->fsc->mount_options;
4245         unsigned long delay_max = opt->caps_wanted_delay_max * HZ;
4246         unsigned long loop_start = jiffies;
4247         unsigned long delay = 0;
4248
4249         dout("check_delayed_caps\n");
4250         spin_lock(&mdsc->cap_delay_lock);
4251         while (!list_empty(&mdsc->cap_delay_list)) {
4252                 ci = list_first_entry(&mdsc->cap_delay_list,
4253                                       struct ceph_inode_info,
4254                                       i_cap_delay_list);
4255                 if (time_before(loop_start, ci->i_hold_caps_max - delay_max)) {
4256                         dout("%s caps added recently.  Exiting loop", __func__);
4257                         delay = ci->i_hold_caps_max;
4258                         break;
4259                 }
4260                 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
4261                     time_before(jiffies, ci->i_hold_caps_max))
4262                         break;
4263                 list_del_init(&ci->i_cap_delay_list);
4264
4265                 inode = igrab(&ci->vfs_inode);
4266                 if (inode) {
4267                         spin_unlock(&mdsc->cap_delay_lock);
4268                         dout("check_delayed_caps on %p\n", inode);
4269                         ceph_check_caps(ci, 0, NULL);
4270                         iput(inode);
4271                         spin_lock(&mdsc->cap_delay_lock);
4272                 }
4273         }
4274         spin_unlock(&mdsc->cap_delay_lock);
4275
4276         return delay;
4277 }
4278
4279 /*
4280  * Flush all dirty caps to the mds
4281  */
4282 static void flush_dirty_session_caps(struct ceph_mds_session *s)
4283 {
4284         struct ceph_mds_client *mdsc = s->s_mdsc;
4285         struct ceph_inode_info *ci;
4286         struct inode *inode;
4287
4288         dout("flush_dirty_caps\n");
4289         spin_lock(&mdsc->cap_dirty_lock);
4290         while (!list_empty(&s->s_cap_dirty)) {
4291                 ci = list_first_entry(&s->s_cap_dirty, struct ceph_inode_info,
4292                                       i_dirty_item);
4293                 inode = &ci->vfs_inode;
4294                 ihold(inode);
4295                 dout("flush_dirty_caps %p\n", inode);
4296                 spin_unlock(&mdsc->cap_dirty_lock);
4297                 ceph_check_caps(ci, CHECK_CAPS_FLUSH, NULL);
4298                 iput(inode);
4299                 spin_lock(&mdsc->cap_dirty_lock);
4300         }
4301         spin_unlock(&mdsc->cap_dirty_lock);
4302         dout("flush_dirty_caps done\n");
4303 }
4304
4305 void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
4306 {
4307         ceph_mdsc_iterate_sessions(mdsc, flush_dirty_session_caps, true);
4308 }
4309
4310 void __ceph_touch_fmode(struct ceph_inode_info *ci,
4311                         struct ceph_mds_client *mdsc, int fmode)
4312 {
4313         unsigned long now = jiffies;
4314         if (fmode & CEPH_FILE_MODE_RD)
4315                 ci->i_last_rd = now;
4316         if (fmode & CEPH_FILE_MODE_WR)
4317                 ci->i_last_wr = now;
4318         /* queue periodic check */
4319         if (fmode &&
4320             __ceph_is_any_real_caps(ci) &&
4321             list_empty(&ci->i_cap_delay_list))
4322                 __cap_delay_requeue(mdsc, ci);
4323 }
4324
4325 void ceph_get_fmode(struct ceph_inode_info *ci, int fmode, int count)
4326 {
4327         struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(ci->vfs_inode.i_sb);
4328         int bits = (fmode << 1) | 1;
4329         bool is_opened = false;
4330         int i;
4331
4332         if (count == 1)
4333                 atomic64_inc(&mdsc->metric.opened_files);
4334
4335         spin_lock(&ci->i_ceph_lock);
4336         for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
4337                 if (bits & (1 << i))
4338                         ci->i_nr_by_mode[i] += count;
4339
4340                 /*
4341                  * If any of the mode ref is larger than 1,
4342                  * that means it has been already opened by
4343                  * others. Just skip checking the PIN ref.
4344                  */
4345                 if (i && ci->i_nr_by_mode[i] > 1)
4346                         is_opened = true;
4347         }
4348
4349         if (!is_opened)
4350                 percpu_counter_inc(&mdsc->metric.opened_inodes);
4351         spin_unlock(&ci->i_ceph_lock);
4352 }
4353
4354 /*
4355  * Drop open file reference.  If we were the last open file,
4356  * we may need to release capabilities to the MDS (or schedule
4357  * their delayed release).
4358  */
4359 void ceph_put_fmode(struct ceph_inode_info *ci, int fmode, int count)
4360 {
4361         struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(ci->vfs_inode.i_sb);
4362         int bits = (fmode << 1) | 1;
4363         bool is_closed = true;
4364         int i;
4365
4366         if (count == 1)
4367                 atomic64_dec(&mdsc->metric.opened_files);
4368
4369         spin_lock(&ci->i_ceph_lock);
4370         for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
4371                 if (bits & (1 << i)) {
4372                         BUG_ON(ci->i_nr_by_mode[i] < count);
4373                         ci->i_nr_by_mode[i] -= count;
4374                 }
4375
4376                 /*
4377                  * If any of the mode ref is not 0 after
4378                  * decreased, that means it is still opened
4379                  * by others. Just skip checking the PIN ref.
4380                  */
4381                 if (i && ci->i_nr_by_mode[i])
4382                         is_closed = false;
4383         }
4384
4385         if (is_closed)
4386                 percpu_counter_dec(&mdsc->metric.opened_inodes);
4387         spin_unlock(&ci->i_ceph_lock);
4388 }
4389
4390 /*
4391  * For a soon-to-be unlinked file, drop the LINK caps. If it
4392  * looks like the link count will hit 0, drop any other caps (other
4393  * than PIN) we don't specifically want (due to the file still being
4394  * open).
4395  */
4396 int ceph_drop_caps_for_unlink(struct inode *inode)
4397 {
4398         struct ceph_inode_info *ci = ceph_inode(inode);
4399         int drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
4400
4401         spin_lock(&ci->i_ceph_lock);
4402         if (inode->i_nlink == 1) {
4403                 drop |= ~(__ceph_caps_wanted(ci) | CEPH_CAP_PIN);
4404
4405                 if (__ceph_caps_dirty(ci)) {
4406                         struct ceph_mds_client *mdsc =
4407                                 ceph_inode_to_client(inode)->mdsc;
4408                         __cap_delay_requeue_front(mdsc, ci);
4409                 }
4410         }
4411         spin_unlock(&ci->i_ceph_lock);
4412         return drop;
4413 }
4414
4415 /*
4416  * Helpers for embedding cap and dentry lease releases into mds
4417  * requests.
4418  *
4419  * @force is used by dentry_release (below) to force inclusion of a
4420  * record for the directory inode, even when there aren't any caps to
4421  * drop.
4422  */
4423 int ceph_encode_inode_release(void **p, struct inode *inode,
4424                               int mds, int drop, int unless, int force)
4425 {
4426         struct ceph_inode_info *ci = ceph_inode(inode);
4427         struct ceph_cap *cap;
4428         struct ceph_mds_request_release *rel = *p;
4429         int used, dirty;
4430         int ret = 0;
4431
4432         spin_lock(&ci->i_ceph_lock);
4433         used = __ceph_caps_used(ci);
4434         dirty = __ceph_caps_dirty(ci);
4435
4436         dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
4437              inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
4438              ceph_cap_string(unless));
4439
4440         /* only drop unused, clean caps */
4441         drop &= ~(used | dirty);
4442
4443         cap = __get_cap_for_mds(ci, mds);
4444         if (cap && __cap_is_valid(cap)) {
4445                 unless &= cap->issued;
4446                 if (unless) {
4447                         if (unless & CEPH_CAP_AUTH_EXCL)
4448                                 drop &= ~CEPH_CAP_AUTH_SHARED;
4449                         if (unless & CEPH_CAP_LINK_EXCL)
4450                                 drop &= ~CEPH_CAP_LINK_SHARED;
4451                         if (unless & CEPH_CAP_XATTR_EXCL)
4452                                 drop &= ~CEPH_CAP_XATTR_SHARED;
4453                         if (unless & CEPH_CAP_FILE_EXCL)
4454                                 drop &= ~CEPH_CAP_FILE_SHARED;
4455                 }
4456
4457                 if (force || (cap->issued & drop)) {
4458                         if (cap->issued & drop) {
4459                                 int wanted = __ceph_caps_wanted(ci);
4460                                 dout("encode_inode_release %p cap %p "
4461                                      "%s -> %s, wanted %s -> %s\n", inode, cap,
4462                                      ceph_cap_string(cap->issued),
4463                                      ceph_cap_string(cap->issued & ~drop),
4464                                      ceph_cap_string(cap->mds_wanted),
4465                                      ceph_cap_string(wanted));
4466
4467                                 cap->issued &= ~drop;
4468                                 cap->implemented &= ~drop;
4469                                 cap->mds_wanted = wanted;
4470                                 if (cap == ci->i_auth_cap &&
4471                                     !(wanted & CEPH_CAP_ANY_FILE_WR))
4472                                         ci->i_requested_max_size = 0;
4473                         } else {
4474                                 dout("encode_inode_release %p cap %p %s"
4475                                      " (force)\n", inode, cap,
4476                                      ceph_cap_string(cap->issued));
4477                         }
4478
4479                         rel->ino = cpu_to_le64(ceph_ino(inode));
4480                         rel->cap_id = cpu_to_le64(cap->cap_id);
4481                         rel->seq = cpu_to_le32(cap->seq);
4482                         rel->issue_seq = cpu_to_le32(cap->issue_seq);
4483                         rel->mseq = cpu_to_le32(cap->mseq);
4484                         rel->caps = cpu_to_le32(cap->implemented);
4485                         rel->wanted = cpu_to_le32(cap->mds_wanted);
4486                         rel->dname_len = 0;
4487                         rel->dname_seq = 0;
4488                         *p += sizeof(*rel);
4489                         ret = 1;
4490                 } else {
4491                         dout("encode_inode_release %p cap %p %s (noop)\n",
4492                              inode, cap, ceph_cap_string(cap->issued));
4493                 }
4494         }
4495         spin_unlock(&ci->i_ceph_lock);
4496         return ret;
4497 }
4498
4499 int ceph_encode_dentry_release(void **p, struct dentry *dentry,
4500                                struct inode *dir,
4501                                int mds, int drop, int unless)
4502 {
4503         struct dentry *parent = NULL;
4504         struct ceph_mds_request_release *rel = *p;
4505         struct ceph_dentry_info *di = ceph_dentry(dentry);
4506         int force = 0;
4507         int ret;
4508
4509         /*
4510          * force an record for the directory caps if we have a dentry lease.
4511          * this is racy (can't take i_ceph_lock and d_lock together), but it
4512          * doesn't have to be perfect; the mds will revoke anything we don't
4513          * release.
4514          */
4515         spin_lock(&dentry->d_lock);
4516         if (di->lease_session && di->lease_session->s_mds == mds)
4517                 force = 1;
4518         if (!dir) {
4519                 parent = dget(dentry->d_parent);
4520                 dir = d_inode(parent);
4521         }
4522         spin_unlock(&dentry->d_lock);
4523
4524         ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
4525         dput(parent);
4526
4527         spin_lock(&dentry->d_lock);
4528         if (ret && di->lease_session && di->lease_session->s_mds == mds) {
4529                 dout("encode_dentry_release %p mds%d seq %d\n",
4530                      dentry, mds, (int)di->lease_seq);
4531                 rel->dname_len = cpu_to_le32(dentry->d_name.len);
4532                 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
4533                 *p += dentry->d_name.len;
4534                 rel->dname_seq = cpu_to_le32(di->lease_seq);
4535                 __ceph_mdsc_drop_dentry_lease(dentry);
4536         }
4537         spin_unlock(&dentry->d_lock);
4538         return ret;
4539 }