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