ceph: allocate capsnap memory outside of ceph_queue_cap_snap()
[platform/kernel/linux-rpi.git] / fs / ceph / snap.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
3
4 #include <linux/sort.h>
5 #include <linux/slab.h>
6 #include <linux/iversion.h>
7 #include "super.h"
8 #include "mds_client.h"
9 #include <linux/ceph/decode.h>
10
11 /* unused map expires after 5 minutes */
12 #define CEPH_SNAPID_MAP_TIMEOUT (5 * 60 * HZ)
13
14 /*
15  * Snapshots in ceph are driven in large part by cooperation from the
16  * client.  In contrast to local file systems or file servers that
17  * implement snapshots at a single point in the system, ceph's
18  * distributed access to storage requires clients to help decide
19  * whether a write logically occurs before or after a recently created
20  * snapshot.
21  *
22  * This provides a perfect instantanous client-wide snapshot.  Between
23  * clients, however, snapshots may appear to be applied at slightly
24  * different points in time, depending on delays in delivering the
25  * snapshot notification.
26  *
27  * Snapshots are _not_ file system-wide.  Instead, each snapshot
28  * applies to the subdirectory nested beneath some directory.  This
29  * effectively divides the hierarchy into multiple "realms," where all
30  * of the files contained by each realm share the same set of
31  * snapshots.  An individual realm's snap set contains snapshots
32  * explicitly created on that realm, as well as any snaps in its
33  * parent's snap set _after_ the point at which the parent became it's
34  * parent (due to, say, a rename).  Similarly, snaps from prior parents
35  * during the time intervals during which they were the parent are included.
36  *
37  * The client is spared most of this detail, fortunately... it must only
38  * maintains a hierarchy of realms reflecting the current parent/child
39  * realm relationship, and for each realm has an explicit list of snaps
40  * inherited from prior parents.
41  *
42  * A snap_realm struct is maintained for realms containing every inode
43  * with an open cap in the system.  (The needed snap realm information is
44  * provided by the MDS whenever a cap is issued, i.e., on open.)  A 'seq'
45  * version number is used to ensure that as realm parameters change (new
46  * snapshot, new parent, etc.) the client's realm hierarchy is updated.
47  *
48  * The realm hierarchy drives the generation of a 'snap context' for each
49  * realm, which simply lists the resulting set of snaps for the realm.  This
50  * is attached to any writes sent to OSDs.
51  */
52 /*
53  * Unfortunately error handling is a bit mixed here.  If we get a snap
54  * update, but don't have enough memory to update our realm hierarchy,
55  * it's not clear what we can do about it (besides complaining to the
56  * console).
57  */
58
59
60 /*
61  * increase ref count for the realm
62  *
63  * caller must hold snap_rwsem.
64  */
65 void ceph_get_snap_realm(struct ceph_mds_client *mdsc,
66                          struct ceph_snap_realm *realm)
67 {
68         lockdep_assert_held(&mdsc->snap_rwsem);
69
70         /*
71          * The 0->1 and 1->0 transitions must take the snap_empty_lock
72          * atomically with the refcount change. Go ahead and bump the
73          * nref here, unless it's 0, in which case we take the spinlock
74          * and then do the increment and remove it from the list.
75          */
76         if (atomic_inc_not_zero(&realm->nref))
77                 return;
78
79         spin_lock(&mdsc->snap_empty_lock);
80         if (atomic_inc_return(&realm->nref) == 1)
81                 list_del_init(&realm->empty_item);
82         spin_unlock(&mdsc->snap_empty_lock);
83 }
84
85 static void __insert_snap_realm(struct rb_root *root,
86                                 struct ceph_snap_realm *new)
87 {
88         struct rb_node **p = &root->rb_node;
89         struct rb_node *parent = NULL;
90         struct ceph_snap_realm *r = NULL;
91
92         while (*p) {
93                 parent = *p;
94                 r = rb_entry(parent, struct ceph_snap_realm, node);
95                 if (new->ino < r->ino)
96                         p = &(*p)->rb_left;
97                 else if (new->ino > r->ino)
98                         p = &(*p)->rb_right;
99                 else
100                         BUG();
101         }
102
103         rb_link_node(&new->node, parent, p);
104         rb_insert_color(&new->node, root);
105 }
106
107 /*
108  * create and get the realm rooted at @ino and bump its ref count.
109  *
110  * caller must hold snap_rwsem for write.
111  */
112 static struct ceph_snap_realm *ceph_create_snap_realm(
113         struct ceph_mds_client *mdsc,
114         u64 ino)
115 {
116         struct ceph_snap_realm *realm;
117
118         lockdep_assert_held_write(&mdsc->snap_rwsem);
119
120         realm = kzalloc(sizeof(*realm), GFP_NOFS);
121         if (!realm)
122                 return ERR_PTR(-ENOMEM);
123
124         /* Do not release the global dummy snaprealm until unmouting */
125         if (ino == CEPH_INO_GLOBAL_SNAPREALM)
126                 atomic_set(&realm->nref, 2);
127         else
128                 atomic_set(&realm->nref, 1);
129         realm->ino = ino;
130         INIT_LIST_HEAD(&realm->children);
131         INIT_LIST_HEAD(&realm->child_item);
132         INIT_LIST_HEAD(&realm->empty_item);
133         INIT_LIST_HEAD(&realm->dirty_item);
134         INIT_LIST_HEAD(&realm->rebuild_item);
135         INIT_LIST_HEAD(&realm->inodes_with_caps);
136         spin_lock_init(&realm->inodes_with_caps_lock);
137         __insert_snap_realm(&mdsc->snap_realms, realm);
138         mdsc->num_snap_realms++;
139
140         dout("create_snap_realm %llx %p\n", realm->ino, realm);
141         return realm;
142 }
143
144 /*
145  * lookup the realm rooted at @ino.
146  *
147  * caller must hold snap_rwsem.
148  */
149 static struct ceph_snap_realm *__lookup_snap_realm(struct ceph_mds_client *mdsc,
150                                                    u64 ino)
151 {
152         struct rb_node *n = mdsc->snap_realms.rb_node;
153         struct ceph_snap_realm *r;
154
155         lockdep_assert_held(&mdsc->snap_rwsem);
156
157         while (n) {
158                 r = rb_entry(n, struct ceph_snap_realm, node);
159                 if (ino < r->ino)
160                         n = n->rb_left;
161                 else if (ino > r->ino)
162                         n = n->rb_right;
163                 else {
164                         dout("lookup_snap_realm %llx %p\n", r->ino, r);
165                         return r;
166                 }
167         }
168         return NULL;
169 }
170
171 struct ceph_snap_realm *ceph_lookup_snap_realm(struct ceph_mds_client *mdsc,
172                                                u64 ino)
173 {
174         struct ceph_snap_realm *r;
175         r = __lookup_snap_realm(mdsc, ino);
176         if (r)
177                 ceph_get_snap_realm(mdsc, r);
178         return r;
179 }
180
181 static void __put_snap_realm(struct ceph_mds_client *mdsc,
182                              struct ceph_snap_realm *realm);
183
184 /*
185  * called with snap_rwsem (write)
186  */
187 static void __destroy_snap_realm(struct ceph_mds_client *mdsc,
188                                  struct ceph_snap_realm *realm)
189 {
190         lockdep_assert_held_write(&mdsc->snap_rwsem);
191
192         dout("__destroy_snap_realm %p %llx\n", realm, realm->ino);
193
194         rb_erase(&realm->node, &mdsc->snap_realms);
195         mdsc->num_snap_realms--;
196
197         if (realm->parent) {
198                 list_del_init(&realm->child_item);
199                 __put_snap_realm(mdsc, realm->parent);
200         }
201
202         kfree(realm->prior_parent_snaps);
203         kfree(realm->snaps);
204         ceph_put_snap_context(realm->cached_context);
205         kfree(realm);
206 }
207
208 /*
209  * caller holds snap_rwsem (write)
210  */
211 static void __put_snap_realm(struct ceph_mds_client *mdsc,
212                              struct ceph_snap_realm *realm)
213 {
214         lockdep_assert_held_write(&mdsc->snap_rwsem);
215
216         /*
217          * We do not require the snap_empty_lock here, as any caller that
218          * increments the value must hold the snap_rwsem.
219          */
220         if (atomic_dec_and_test(&realm->nref))
221                 __destroy_snap_realm(mdsc, realm);
222 }
223
224 /*
225  * See comments in ceph_get_snap_realm. Caller needn't hold any locks.
226  */
227 void ceph_put_snap_realm(struct ceph_mds_client *mdsc,
228                          struct ceph_snap_realm *realm)
229 {
230         if (!atomic_dec_and_lock(&realm->nref, &mdsc->snap_empty_lock))
231                 return;
232
233         if (down_write_trylock(&mdsc->snap_rwsem)) {
234                 spin_unlock(&mdsc->snap_empty_lock);
235                 __destroy_snap_realm(mdsc, realm);
236                 up_write(&mdsc->snap_rwsem);
237         } else {
238                 list_add(&realm->empty_item, &mdsc->snap_empty);
239                 spin_unlock(&mdsc->snap_empty_lock);
240         }
241 }
242
243 /*
244  * Clean up any realms whose ref counts have dropped to zero.  Note
245  * that this does not include realms who were created but not yet
246  * used.
247  *
248  * Called under snap_rwsem (write)
249  */
250 static void __cleanup_empty_realms(struct ceph_mds_client *mdsc)
251 {
252         struct ceph_snap_realm *realm;
253
254         lockdep_assert_held_write(&mdsc->snap_rwsem);
255
256         spin_lock(&mdsc->snap_empty_lock);
257         while (!list_empty(&mdsc->snap_empty)) {
258                 realm = list_first_entry(&mdsc->snap_empty,
259                                    struct ceph_snap_realm, empty_item);
260                 list_del(&realm->empty_item);
261                 spin_unlock(&mdsc->snap_empty_lock);
262                 __destroy_snap_realm(mdsc, realm);
263                 spin_lock(&mdsc->snap_empty_lock);
264         }
265         spin_unlock(&mdsc->snap_empty_lock);
266 }
267
268 void ceph_cleanup_global_and_empty_realms(struct ceph_mds_client *mdsc)
269 {
270         struct ceph_snap_realm *global_realm;
271
272         down_write(&mdsc->snap_rwsem);
273         global_realm = __lookup_snap_realm(mdsc, CEPH_INO_GLOBAL_SNAPREALM);
274         if (global_realm)
275                 ceph_put_snap_realm(mdsc, global_realm);
276         __cleanup_empty_realms(mdsc);
277         up_write(&mdsc->snap_rwsem);
278 }
279
280 /*
281  * adjust the parent realm of a given @realm.  adjust child list, and parent
282  * pointers, and ref counts appropriately.
283  *
284  * return true if parent was changed, 0 if unchanged, <0 on error.
285  *
286  * caller must hold snap_rwsem for write.
287  */
288 static int adjust_snap_realm_parent(struct ceph_mds_client *mdsc,
289                                     struct ceph_snap_realm *realm,
290                                     u64 parentino)
291 {
292         struct ceph_snap_realm *parent;
293
294         lockdep_assert_held_write(&mdsc->snap_rwsem);
295
296         if (realm->parent_ino == parentino)
297                 return 0;
298
299         parent = ceph_lookup_snap_realm(mdsc, parentino);
300         if (!parent) {
301                 parent = ceph_create_snap_realm(mdsc, parentino);
302                 if (IS_ERR(parent))
303                         return PTR_ERR(parent);
304         }
305         dout("adjust_snap_realm_parent %llx %p: %llx %p -> %llx %p\n",
306              realm->ino, realm, realm->parent_ino, realm->parent,
307              parentino, parent);
308         if (realm->parent) {
309                 list_del_init(&realm->child_item);
310                 ceph_put_snap_realm(mdsc, realm->parent);
311         }
312         realm->parent_ino = parentino;
313         realm->parent = parent;
314         list_add(&realm->child_item, &parent->children);
315         return 1;
316 }
317
318
319 static int cmpu64_rev(const void *a, const void *b)
320 {
321         if (*(u64 *)a < *(u64 *)b)
322                 return 1;
323         if (*(u64 *)a > *(u64 *)b)
324                 return -1;
325         return 0;
326 }
327
328
329 /*
330  * build the snap context for a given realm.
331  */
332 static int build_snap_context(struct ceph_snap_realm *realm,
333                               struct list_head *realm_queue,
334                               struct list_head *dirty_realms)
335 {
336         struct ceph_snap_realm *parent = realm->parent;
337         struct ceph_snap_context *snapc;
338         int err = 0;
339         u32 num = realm->num_prior_parent_snaps + realm->num_snaps;
340
341         /*
342          * build parent context, if it hasn't been built.
343          * conservatively estimate that all parent snaps might be
344          * included by us.
345          */
346         if (parent) {
347                 if (!parent->cached_context) {
348                         /* add to the queue head */
349                         list_add(&parent->rebuild_item, realm_queue);
350                         return 1;
351                 }
352                 num += parent->cached_context->num_snaps;
353         }
354
355         /* do i actually need to update?  not if my context seq
356            matches realm seq, and my parents' does to.  (this works
357            because we rebuild_snap_realms() works _downward_ in
358            hierarchy after each update.) */
359         if (realm->cached_context &&
360             realm->cached_context->seq == realm->seq &&
361             (!parent ||
362              realm->cached_context->seq >= parent->cached_context->seq)) {
363                 dout("build_snap_context %llx %p: %p seq %lld (%u snaps)"
364                      " (unchanged)\n",
365                      realm->ino, realm, realm->cached_context,
366                      realm->cached_context->seq,
367                      (unsigned int)realm->cached_context->num_snaps);
368                 return 0;
369         }
370
371         /* alloc new snap context */
372         err = -ENOMEM;
373         if (num > (SIZE_MAX - sizeof(*snapc)) / sizeof(u64))
374                 goto fail;
375         snapc = ceph_create_snap_context(num, GFP_NOFS);
376         if (!snapc)
377                 goto fail;
378
379         /* build (reverse sorted) snap vector */
380         num = 0;
381         snapc->seq = realm->seq;
382         if (parent) {
383                 u32 i;
384
385                 /* include any of parent's snaps occurring _after_ my
386                    parent became my parent */
387                 for (i = 0; i < parent->cached_context->num_snaps; i++)
388                         if (parent->cached_context->snaps[i] >=
389                             realm->parent_since)
390                                 snapc->snaps[num++] =
391                                         parent->cached_context->snaps[i];
392                 if (parent->cached_context->seq > snapc->seq)
393                         snapc->seq = parent->cached_context->seq;
394         }
395         memcpy(snapc->snaps + num, realm->snaps,
396                sizeof(u64)*realm->num_snaps);
397         num += realm->num_snaps;
398         memcpy(snapc->snaps + num, realm->prior_parent_snaps,
399                sizeof(u64)*realm->num_prior_parent_snaps);
400         num += realm->num_prior_parent_snaps;
401
402         sort(snapc->snaps, num, sizeof(u64), cmpu64_rev, NULL);
403         snapc->num_snaps = num;
404         dout("build_snap_context %llx %p: %p seq %lld (%u snaps)\n",
405              realm->ino, realm, snapc, snapc->seq,
406              (unsigned int) snapc->num_snaps);
407
408         ceph_put_snap_context(realm->cached_context);
409         realm->cached_context = snapc;
410         /* queue realm for cap_snap creation */
411         list_add_tail(&realm->dirty_item, dirty_realms);
412         return 0;
413
414 fail:
415         /*
416          * if we fail, clear old (incorrect) cached_context... hopefully
417          * we'll have better luck building it later
418          */
419         if (realm->cached_context) {
420                 ceph_put_snap_context(realm->cached_context);
421                 realm->cached_context = NULL;
422         }
423         pr_err("build_snap_context %llx %p fail %d\n", realm->ino,
424                realm, err);
425         return err;
426 }
427
428 /*
429  * rebuild snap context for the given realm and all of its children.
430  */
431 static void rebuild_snap_realms(struct ceph_snap_realm *realm,
432                                 struct list_head *dirty_realms)
433 {
434         LIST_HEAD(realm_queue);
435         int last = 0;
436         bool skip = false;
437
438         list_add_tail(&realm->rebuild_item, &realm_queue);
439
440         while (!list_empty(&realm_queue)) {
441                 struct ceph_snap_realm *_realm, *child;
442
443                 _realm = list_first_entry(&realm_queue,
444                                           struct ceph_snap_realm,
445                                           rebuild_item);
446
447                 /*
448                  * If the last building failed dues to memory
449                  * issue, just empty the realm_queue and return
450                  * to avoid infinite loop.
451                  */
452                 if (last < 0) {
453                         list_del_init(&_realm->rebuild_item);
454                         continue;
455                 }
456
457                 last = build_snap_context(_realm, &realm_queue, dirty_realms);
458                 dout("rebuild_snap_realms %llx %p, %s\n", _realm->ino, _realm,
459                      last > 0 ? "is deferred" : !last ? "succeeded" : "failed");
460
461                 /* is any child in the list ? */
462                 list_for_each_entry(child, &_realm->children, child_item) {
463                         if (!list_empty(&child->rebuild_item)) {
464                                 skip = true;
465                                 break;
466                         }
467                 }
468
469                 if (!skip) {
470                         list_for_each_entry(child, &_realm->children, child_item)
471                                 list_add_tail(&child->rebuild_item, &realm_queue);
472                 }
473
474                 /* last == 1 means need to build parent first */
475                 if (last <= 0)
476                         list_del_init(&_realm->rebuild_item);
477         }
478 }
479
480
481 /*
482  * helper to allocate and decode an array of snapids.  free prior
483  * instance, if any.
484  */
485 static int dup_array(u64 **dst, __le64 *src, u32 num)
486 {
487         u32 i;
488
489         kfree(*dst);
490         if (num) {
491                 *dst = kcalloc(num, sizeof(u64), GFP_NOFS);
492                 if (!*dst)
493                         return -ENOMEM;
494                 for (i = 0; i < num; i++)
495                         (*dst)[i] = get_unaligned_le64(src + i);
496         } else {
497                 *dst = NULL;
498         }
499         return 0;
500 }
501
502 static bool has_new_snaps(struct ceph_snap_context *o,
503                           struct ceph_snap_context *n)
504 {
505         if (n->num_snaps == 0)
506                 return false;
507         /* snaps are in descending order */
508         return n->snaps[0] > o->seq;
509 }
510
511 /*
512  * When a snapshot is applied, the size/mtime inode metadata is queued
513  * in a ceph_cap_snap (one for each snapshot) until writeback
514  * completes and the metadata can be flushed back to the MDS.
515  *
516  * However, if a (sync) write is currently in-progress when we apply
517  * the snapshot, we have to wait until the write succeeds or fails
518  * (and a final size/mtime is known).  In this case the
519  * cap_snap->writing = 1, and is said to be "pending."  When the write
520  * finishes, we __ceph_finish_cap_snap().
521  *
522  * Caller must hold snap_rwsem for read (i.e., the realm topology won't
523  * change).
524  */
525 static void ceph_queue_cap_snap(struct ceph_inode_info *ci,
526                                 struct ceph_cap_snap **pcapsnap)
527 {
528         struct inode *inode = &ci->vfs_inode;
529         struct ceph_snap_context *old_snapc, *new_snapc;
530         struct ceph_cap_snap *capsnap = *pcapsnap;
531         struct ceph_buffer *old_blob = NULL;
532         int used, dirty;
533
534         spin_lock(&ci->i_ceph_lock);
535         used = __ceph_caps_used(ci);
536         dirty = __ceph_caps_dirty(ci);
537
538         old_snapc = ci->i_head_snapc;
539         new_snapc = ci->i_snap_realm->cached_context;
540
541         /*
542          * If there is a write in progress, treat that as a dirty Fw,
543          * even though it hasn't completed yet; by the time we finish
544          * up this capsnap it will be.
545          */
546         if (used & CEPH_CAP_FILE_WR)
547                 dirty |= CEPH_CAP_FILE_WR;
548
549         if (__ceph_have_pending_cap_snap(ci)) {
550                 /* there is no point in queuing multiple "pending" cap_snaps,
551                    as no new writes are allowed to start when pending, so any
552                    writes in progress now were started before the previous
553                    cap_snap.  lucky us. */
554                 dout("queue_cap_snap %p already pending\n", inode);
555                 goto update_snapc;
556         }
557         if (ci->i_wrbuffer_ref_head == 0 &&
558             !(dirty & (CEPH_CAP_ANY_EXCL|CEPH_CAP_FILE_WR))) {
559                 dout("queue_cap_snap %p nothing dirty|writing\n", inode);
560                 goto update_snapc;
561         }
562
563         BUG_ON(!old_snapc);
564
565         /*
566          * There is no need to send FLUSHSNAP message to MDS if there is
567          * no new snapshot. But when there is dirty pages or on-going
568          * writes, we still need to create cap_snap. cap_snap is needed
569          * by the write path and page writeback path.
570          *
571          * also see ceph_try_drop_cap_snap()
572          */
573         if (has_new_snaps(old_snapc, new_snapc)) {
574                 if (dirty & (CEPH_CAP_ANY_EXCL|CEPH_CAP_FILE_WR))
575                         capsnap->need_flush = true;
576         } else {
577                 if (!(used & CEPH_CAP_FILE_WR) &&
578                     ci->i_wrbuffer_ref_head == 0) {
579                         dout("queue_cap_snap %p "
580                              "no new_snap|dirty_page|writing\n", inode);
581                         goto update_snapc;
582                 }
583         }
584
585         dout("queue_cap_snap %p cap_snap %p queuing under %p %s %s\n",
586              inode, capsnap, old_snapc, ceph_cap_string(dirty),
587              capsnap->need_flush ? "" : "no_flush");
588         ihold(inode);
589
590         capsnap->follows = old_snapc->seq;
591         capsnap->issued = __ceph_caps_issued(ci, NULL);
592         capsnap->dirty = dirty;
593
594         capsnap->mode = inode->i_mode;
595         capsnap->uid = inode->i_uid;
596         capsnap->gid = inode->i_gid;
597
598         if (dirty & CEPH_CAP_XATTR_EXCL) {
599                 old_blob = __ceph_build_xattrs_blob(ci);
600                 capsnap->xattr_blob =
601                         ceph_buffer_get(ci->i_xattrs.blob);
602                 capsnap->xattr_version = ci->i_xattrs.version;
603         } else {
604                 capsnap->xattr_blob = NULL;
605                 capsnap->xattr_version = 0;
606         }
607
608         capsnap->inline_data = ci->i_inline_version != CEPH_INLINE_NONE;
609
610         /* dirty page count moved from _head to this cap_snap;
611            all subsequent writes page dirties occur _after_ this
612            snapshot. */
613         capsnap->dirty_pages = ci->i_wrbuffer_ref_head;
614         ci->i_wrbuffer_ref_head = 0;
615         capsnap->context = old_snapc;
616         list_add_tail(&capsnap->ci_item, &ci->i_cap_snaps);
617
618         if (used & CEPH_CAP_FILE_WR) {
619                 dout("queue_cap_snap %p cap_snap %p snapc %p"
620                      " seq %llu used WR, now pending\n", inode,
621                      capsnap, old_snapc, old_snapc->seq);
622                 capsnap->writing = 1;
623         } else {
624                 /* note mtime, size NOW. */
625                 __ceph_finish_cap_snap(ci, capsnap);
626         }
627         *pcapsnap = NULL;
628         old_snapc = NULL;
629
630 update_snapc:
631        if (ci->i_wrbuffer_ref_head == 0 &&
632            ci->i_wr_ref == 0 &&
633            ci->i_dirty_caps == 0 &&
634            ci->i_flushing_caps == 0) {
635                ci->i_head_snapc = NULL;
636        } else {
637                 ci->i_head_snapc = ceph_get_snap_context(new_snapc);
638                 dout(" new snapc is %p\n", new_snapc);
639         }
640         spin_unlock(&ci->i_ceph_lock);
641
642         ceph_buffer_put(old_blob);
643         ceph_put_snap_context(old_snapc);
644 }
645
646 /*
647  * Finalize the size, mtime for a cap_snap.. that is, settle on final values
648  * to be used for the snapshot, to be flushed back to the mds.
649  *
650  * If capsnap can now be flushed, add to snap_flush list, and return 1.
651  *
652  * Caller must hold i_ceph_lock.
653  */
654 int __ceph_finish_cap_snap(struct ceph_inode_info *ci,
655                             struct ceph_cap_snap *capsnap)
656 {
657         struct inode *inode = &ci->vfs_inode;
658         struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
659
660         BUG_ON(capsnap->writing);
661         capsnap->size = i_size_read(inode);
662         capsnap->mtime = inode->i_mtime;
663         capsnap->atime = inode->i_atime;
664         capsnap->ctime = inode->i_ctime;
665         capsnap->btime = ci->i_btime;
666         capsnap->change_attr = inode_peek_iversion_raw(inode);
667         capsnap->time_warp_seq = ci->i_time_warp_seq;
668         capsnap->truncate_size = ci->i_truncate_size;
669         capsnap->truncate_seq = ci->i_truncate_seq;
670         if (capsnap->dirty_pages) {
671                 dout("finish_cap_snap %p cap_snap %p snapc %p %llu %s s=%llu "
672                      "still has %d dirty pages\n", inode, capsnap,
673                      capsnap->context, capsnap->context->seq,
674                      ceph_cap_string(capsnap->dirty), capsnap->size,
675                      capsnap->dirty_pages);
676                 return 0;
677         }
678
679         /* Fb cap still in use, delay it */
680         if (ci->i_wb_ref) {
681                 dout("finish_cap_snap %p cap_snap %p snapc %p %llu %s s=%llu "
682                      "used WRBUFFER, delaying\n", inode, capsnap,
683                      capsnap->context, capsnap->context->seq,
684                      ceph_cap_string(capsnap->dirty), capsnap->size);
685                 capsnap->writing = 1;
686                 return 0;
687         }
688
689         ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
690         dout("finish_cap_snap %p cap_snap %p snapc %p %llu %s s=%llu\n",
691              inode, capsnap, capsnap->context,
692              capsnap->context->seq, ceph_cap_string(capsnap->dirty),
693              capsnap->size);
694
695         spin_lock(&mdsc->snap_flush_lock);
696         if (list_empty(&ci->i_snap_flush_item))
697                 list_add_tail(&ci->i_snap_flush_item, &mdsc->snap_flush_list);
698         spin_unlock(&mdsc->snap_flush_lock);
699         return 1;  /* caller may want to ceph_flush_snaps */
700 }
701
702 /*
703  * Queue cap_snaps for snap writeback for this realm and its children.
704  * Called under snap_rwsem, so realm topology won't change.
705  */
706 static void queue_realm_cap_snaps(struct ceph_snap_realm *realm)
707 {
708         struct ceph_inode_info *ci;
709         struct inode *lastinode = NULL;
710         struct ceph_cap_snap *capsnap = NULL;
711
712         dout("queue_realm_cap_snaps %p %llx inodes\n", realm, realm->ino);
713
714         spin_lock(&realm->inodes_with_caps_lock);
715         list_for_each_entry(ci, &realm->inodes_with_caps, i_snap_realm_item) {
716                 struct inode *inode = igrab(&ci->vfs_inode);
717                 if (!inode)
718                         continue;
719                 spin_unlock(&realm->inodes_with_caps_lock);
720                 iput(lastinode);
721                 lastinode = inode;
722
723                 /*
724                  * Allocate the capsnap memory outside of ceph_queue_cap_snap()
725                  * to reduce very possible but unnecessary frequently memory
726                  * allocate/free in this loop.
727                  */
728                 if (!capsnap) {
729                         capsnap = kmem_cache_zalloc(ceph_cap_snap_cachep, GFP_NOFS);
730                         if (!capsnap) {
731                                 pr_err("ENOMEM allocating ceph_cap_snap on %p\n",
732                                        inode);
733                                 return;
734                         }
735                 }
736                 capsnap->cap_flush.is_capsnap = true;
737                 refcount_set(&capsnap->nref, 1);
738                 INIT_LIST_HEAD(&capsnap->cap_flush.i_list);
739                 INIT_LIST_HEAD(&capsnap->cap_flush.g_list);
740                 INIT_LIST_HEAD(&capsnap->ci_item);
741
742                 ceph_queue_cap_snap(ci, &capsnap);
743                 spin_lock(&realm->inodes_with_caps_lock);
744         }
745         spin_unlock(&realm->inodes_with_caps_lock);
746         iput(lastinode);
747
748         if (capsnap)
749                 kmem_cache_free(ceph_cap_snap_cachep, capsnap);
750         dout("queue_realm_cap_snaps %p %llx done\n", realm, realm->ino);
751 }
752
753 /*
754  * Parse and apply a snapblob "snap trace" from the MDS.  This specifies
755  * the snap realm parameters from a given realm and all of its ancestors,
756  * up to the root.
757  *
758  * Caller must hold snap_rwsem for write.
759  */
760 int ceph_update_snap_trace(struct ceph_mds_client *mdsc,
761                            void *p, void *e, bool deletion,
762                            struct ceph_snap_realm **realm_ret)
763 {
764         struct ceph_mds_snap_realm *ri;    /* encoded */
765         __le64 *snaps;                     /* encoded */
766         __le64 *prior_parent_snaps;        /* encoded */
767         struct ceph_snap_realm *realm = NULL;
768         struct ceph_snap_realm *first_realm = NULL;
769         struct ceph_snap_realm *realm_to_rebuild = NULL;
770         int rebuild_snapcs;
771         int err = -ENOMEM;
772         LIST_HEAD(dirty_realms);
773
774         lockdep_assert_held_write(&mdsc->snap_rwsem);
775
776         dout("update_snap_trace deletion=%d\n", deletion);
777 more:
778         rebuild_snapcs = 0;
779         ceph_decode_need(&p, e, sizeof(*ri), bad);
780         ri = p;
781         p += sizeof(*ri);
782         ceph_decode_need(&p, e, sizeof(u64)*(le32_to_cpu(ri->num_snaps) +
783                             le32_to_cpu(ri->num_prior_parent_snaps)), bad);
784         snaps = p;
785         p += sizeof(u64) * le32_to_cpu(ri->num_snaps);
786         prior_parent_snaps = p;
787         p += sizeof(u64) * le32_to_cpu(ri->num_prior_parent_snaps);
788
789         realm = ceph_lookup_snap_realm(mdsc, le64_to_cpu(ri->ino));
790         if (!realm) {
791                 realm = ceph_create_snap_realm(mdsc, le64_to_cpu(ri->ino));
792                 if (IS_ERR(realm)) {
793                         err = PTR_ERR(realm);
794                         goto fail;
795                 }
796         }
797
798         /* ensure the parent is correct */
799         err = adjust_snap_realm_parent(mdsc, realm, le64_to_cpu(ri->parent));
800         if (err < 0)
801                 goto fail;
802         rebuild_snapcs += err;
803
804         if (le64_to_cpu(ri->seq) > realm->seq) {
805                 dout("update_snap_trace updating %llx %p %lld -> %lld\n",
806                      realm->ino, realm, realm->seq, le64_to_cpu(ri->seq));
807                 /* update realm parameters, snap lists */
808                 realm->seq = le64_to_cpu(ri->seq);
809                 realm->created = le64_to_cpu(ri->created);
810                 realm->parent_since = le64_to_cpu(ri->parent_since);
811
812                 realm->num_snaps = le32_to_cpu(ri->num_snaps);
813                 err = dup_array(&realm->snaps, snaps, realm->num_snaps);
814                 if (err < 0)
815                         goto fail;
816
817                 realm->num_prior_parent_snaps =
818                         le32_to_cpu(ri->num_prior_parent_snaps);
819                 err = dup_array(&realm->prior_parent_snaps, prior_parent_snaps,
820                                 realm->num_prior_parent_snaps);
821                 if (err < 0)
822                         goto fail;
823
824                 if (realm->seq > mdsc->last_snap_seq)
825                         mdsc->last_snap_seq = realm->seq;
826
827                 rebuild_snapcs = 1;
828         } else if (!realm->cached_context) {
829                 dout("update_snap_trace %llx %p seq %lld new\n",
830                      realm->ino, realm, realm->seq);
831                 rebuild_snapcs = 1;
832         } else {
833                 dout("update_snap_trace %llx %p seq %lld unchanged\n",
834                      realm->ino, realm, realm->seq);
835         }
836
837         dout("done with %llx %p, rebuild_snapcs=%d, %p %p\n", realm->ino,
838              realm, rebuild_snapcs, p, e);
839
840         /*
841          * this will always track the uppest parent realm from which
842          * we need to rebuild the snapshot contexts _downward_ in
843          * hierarchy.
844          */
845         if (rebuild_snapcs)
846                 realm_to_rebuild = realm;
847
848         /* rebuild_snapcs when we reach the _end_ (root) of the trace */
849         if (realm_to_rebuild && p >= e)
850                 rebuild_snap_realms(realm_to_rebuild, &dirty_realms);
851
852         if (!first_realm)
853                 first_realm = realm;
854         else
855                 ceph_put_snap_realm(mdsc, realm);
856
857         if (p < e)
858                 goto more;
859
860         /*
861          * queue cap snaps _after_ we've built the new snap contexts,
862          * so that i_head_snapc can be set appropriately.
863          */
864         while (!list_empty(&dirty_realms)) {
865                 realm = list_first_entry(&dirty_realms, struct ceph_snap_realm,
866                                          dirty_item);
867                 list_del_init(&realm->dirty_item);
868                 queue_realm_cap_snaps(realm);
869         }
870
871         if (realm_ret)
872                 *realm_ret = first_realm;
873         else
874                 ceph_put_snap_realm(mdsc, first_realm);
875
876         __cleanup_empty_realms(mdsc);
877         return 0;
878
879 bad:
880         err = -EIO;
881 fail:
882         if (realm && !IS_ERR(realm))
883                 ceph_put_snap_realm(mdsc, realm);
884         if (first_realm)
885                 ceph_put_snap_realm(mdsc, first_realm);
886         pr_err("update_snap_trace error %d\n", err);
887         return err;
888 }
889
890
891 /*
892  * Send any cap_snaps that are queued for flush.  Try to carry
893  * s_mutex across multiple snap flushes to avoid locking overhead.
894  *
895  * Caller holds no locks.
896  */
897 static void flush_snaps(struct ceph_mds_client *mdsc)
898 {
899         struct ceph_inode_info *ci;
900         struct inode *inode;
901         struct ceph_mds_session *session = NULL;
902
903         dout("flush_snaps\n");
904         spin_lock(&mdsc->snap_flush_lock);
905         while (!list_empty(&mdsc->snap_flush_list)) {
906                 ci = list_first_entry(&mdsc->snap_flush_list,
907                                 struct ceph_inode_info, i_snap_flush_item);
908                 inode = &ci->vfs_inode;
909                 ihold(inode);
910                 spin_unlock(&mdsc->snap_flush_lock);
911                 ceph_flush_snaps(ci, &session);
912                 iput(inode);
913                 spin_lock(&mdsc->snap_flush_lock);
914         }
915         spin_unlock(&mdsc->snap_flush_lock);
916
917         ceph_put_mds_session(session);
918         dout("flush_snaps done\n");
919 }
920
921 /**
922  * ceph_change_snap_realm - change the snap_realm for an inode
923  * @inode: inode to move to new snap realm
924  * @realm: new realm to move inode into (may be NULL)
925  *
926  * Detach an inode from its old snaprealm (if any) and attach it to
927  * the new snaprealm (if any). The old snap realm reference held by
928  * the inode is put. If realm is non-NULL, then the caller's reference
929  * to it is taken over by the inode.
930  */
931 void ceph_change_snap_realm(struct inode *inode, struct ceph_snap_realm *realm)
932 {
933         struct ceph_inode_info *ci = ceph_inode(inode);
934         struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
935         struct ceph_snap_realm *oldrealm = ci->i_snap_realm;
936
937         lockdep_assert_held(&ci->i_ceph_lock);
938
939         if (oldrealm) {
940                 spin_lock(&oldrealm->inodes_with_caps_lock);
941                 list_del_init(&ci->i_snap_realm_item);
942                 if (oldrealm->ino == ci->i_vino.ino)
943                         oldrealm->inode = NULL;
944                 spin_unlock(&oldrealm->inodes_with_caps_lock);
945                 ceph_put_snap_realm(mdsc, oldrealm);
946         }
947
948         ci->i_snap_realm = realm;
949
950         if (realm) {
951                 spin_lock(&realm->inodes_with_caps_lock);
952                 list_add(&ci->i_snap_realm_item, &realm->inodes_with_caps);
953                 if (realm->ino == ci->i_vino.ino)
954                         realm->inode = inode;
955                 spin_unlock(&realm->inodes_with_caps_lock);
956         }
957 }
958
959 /*
960  * Handle a snap notification from the MDS.
961  *
962  * This can take two basic forms: the simplest is just a snap creation
963  * or deletion notification on an existing realm.  This should update the
964  * realm and its children.
965  *
966  * The more difficult case is realm creation, due to snap creation at a
967  * new point in the file hierarchy, or due to a rename that moves a file or
968  * directory into another realm.
969  */
970 void ceph_handle_snap(struct ceph_mds_client *mdsc,
971                       struct ceph_mds_session *session,
972                       struct ceph_msg *msg)
973 {
974         struct super_block *sb = mdsc->fsc->sb;
975         int mds = session->s_mds;
976         u64 split;
977         int op;
978         int trace_len;
979         struct ceph_snap_realm *realm = NULL;
980         void *p = msg->front.iov_base;
981         void *e = p + msg->front.iov_len;
982         struct ceph_mds_snap_head *h;
983         int num_split_inos, num_split_realms;
984         __le64 *split_inos = NULL, *split_realms = NULL;
985         int i;
986         int locked_rwsem = 0;
987
988         /* decode */
989         if (msg->front.iov_len < sizeof(*h))
990                 goto bad;
991         h = p;
992         op = le32_to_cpu(h->op);
993         split = le64_to_cpu(h->split);   /* non-zero if we are splitting an
994                                           * existing realm */
995         num_split_inos = le32_to_cpu(h->num_split_inos);
996         num_split_realms = le32_to_cpu(h->num_split_realms);
997         trace_len = le32_to_cpu(h->trace_len);
998         p += sizeof(*h);
999
1000         dout("handle_snap from mds%d op %s split %llx tracelen %d\n", mds,
1001              ceph_snap_op_name(op), split, trace_len);
1002
1003         mutex_lock(&session->s_mutex);
1004         inc_session_sequence(session);
1005         mutex_unlock(&session->s_mutex);
1006
1007         down_write(&mdsc->snap_rwsem);
1008         locked_rwsem = 1;
1009
1010         if (op == CEPH_SNAP_OP_SPLIT) {
1011                 struct ceph_mds_snap_realm *ri;
1012
1013                 /*
1014                  * A "split" breaks part of an existing realm off into
1015                  * a new realm.  The MDS provides a list of inodes
1016                  * (with caps) and child realms that belong to the new
1017                  * child.
1018                  */
1019                 split_inos = p;
1020                 p += sizeof(u64) * num_split_inos;
1021                 split_realms = p;
1022                 p += sizeof(u64) * num_split_realms;
1023                 ceph_decode_need(&p, e, sizeof(*ri), bad);
1024                 /* we will peek at realm info here, but will _not_
1025                  * advance p, as the realm update will occur below in
1026                  * ceph_update_snap_trace. */
1027                 ri = p;
1028
1029                 realm = ceph_lookup_snap_realm(mdsc, split);
1030                 if (!realm) {
1031                         realm = ceph_create_snap_realm(mdsc, split);
1032                         if (IS_ERR(realm))
1033                                 goto out;
1034                 }
1035
1036                 dout("splitting snap_realm %llx %p\n", realm->ino, realm);
1037                 for (i = 0; i < num_split_inos; i++) {
1038                         struct ceph_vino vino = {
1039                                 .ino = le64_to_cpu(split_inos[i]),
1040                                 .snap = CEPH_NOSNAP,
1041                         };
1042                         struct inode *inode = ceph_find_inode(sb, vino);
1043                         struct ceph_inode_info *ci;
1044
1045                         if (!inode)
1046                                 continue;
1047                         ci = ceph_inode(inode);
1048
1049                         spin_lock(&ci->i_ceph_lock);
1050                         if (!ci->i_snap_realm)
1051                                 goto skip_inode;
1052                         /*
1053                          * If this inode belongs to a realm that was
1054                          * created after our new realm, we experienced
1055                          * a race (due to another split notifications
1056                          * arriving from a different MDS).  So skip
1057                          * this inode.
1058                          */
1059                         if (ci->i_snap_realm->created >
1060                             le64_to_cpu(ri->created)) {
1061                                 dout(" leaving %p in newer realm %llx %p\n",
1062                                      inode, ci->i_snap_realm->ino,
1063                                      ci->i_snap_realm);
1064                                 goto skip_inode;
1065                         }
1066                         dout(" will move %p to split realm %llx %p\n",
1067                              inode, realm->ino, realm);
1068
1069                         ceph_get_snap_realm(mdsc, realm);
1070                         ceph_change_snap_realm(inode, realm);
1071                         spin_unlock(&ci->i_ceph_lock);
1072                         iput(inode);
1073                         continue;
1074
1075 skip_inode:
1076                         spin_unlock(&ci->i_ceph_lock);
1077                         iput(inode);
1078                 }
1079
1080                 /* we may have taken some of the old realm's children. */
1081                 for (i = 0; i < num_split_realms; i++) {
1082                         struct ceph_snap_realm *child =
1083                                 __lookup_snap_realm(mdsc,
1084                                            le64_to_cpu(split_realms[i]));
1085                         if (!child)
1086                                 continue;
1087                         adjust_snap_realm_parent(mdsc, child, realm->ino);
1088                 }
1089         }
1090
1091         /*
1092          * update using the provided snap trace. if we are deleting a
1093          * snap, we can avoid queueing cap_snaps.
1094          */
1095         ceph_update_snap_trace(mdsc, p, e,
1096                                op == CEPH_SNAP_OP_DESTROY, NULL);
1097
1098         if (op == CEPH_SNAP_OP_SPLIT)
1099                 /* we took a reference when we created the realm, above */
1100                 ceph_put_snap_realm(mdsc, realm);
1101
1102         __cleanup_empty_realms(mdsc);
1103
1104         up_write(&mdsc->snap_rwsem);
1105
1106         flush_snaps(mdsc);
1107         return;
1108
1109 bad:
1110         pr_err("corrupt snap message from mds%d\n", mds);
1111         ceph_msg_dump(msg);
1112 out:
1113         if (locked_rwsem)
1114                 up_write(&mdsc->snap_rwsem);
1115         return;
1116 }
1117
1118 struct ceph_snapid_map* ceph_get_snapid_map(struct ceph_mds_client *mdsc,
1119                                             u64 snap)
1120 {
1121         struct ceph_snapid_map *sm, *exist;
1122         struct rb_node **p, *parent;
1123         int ret;
1124
1125         exist = NULL;
1126         spin_lock(&mdsc->snapid_map_lock);
1127         p = &mdsc->snapid_map_tree.rb_node;
1128         while (*p) {
1129                 exist = rb_entry(*p, struct ceph_snapid_map, node);
1130                 if (snap > exist->snap) {
1131                         p = &(*p)->rb_left;
1132                 } else if (snap < exist->snap) {
1133                         p = &(*p)->rb_right;
1134                 } else {
1135                         if (atomic_inc_return(&exist->ref) == 1)
1136                                 list_del_init(&exist->lru);
1137                         break;
1138                 }
1139                 exist = NULL;
1140         }
1141         spin_unlock(&mdsc->snapid_map_lock);
1142         if (exist) {
1143                 dout("found snapid map %llx -> %x\n", exist->snap, exist->dev);
1144                 return exist;
1145         }
1146
1147         sm = kmalloc(sizeof(*sm), GFP_NOFS);
1148         if (!sm)
1149                 return NULL;
1150
1151         ret = get_anon_bdev(&sm->dev);
1152         if (ret < 0) {
1153                 kfree(sm);
1154                 return NULL;
1155         }
1156
1157         INIT_LIST_HEAD(&sm->lru);
1158         atomic_set(&sm->ref, 1);
1159         sm->snap = snap;
1160
1161         exist = NULL;
1162         parent = NULL;
1163         p = &mdsc->snapid_map_tree.rb_node;
1164         spin_lock(&mdsc->snapid_map_lock);
1165         while (*p) {
1166                 parent = *p;
1167                 exist = rb_entry(*p, struct ceph_snapid_map, node);
1168                 if (snap > exist->snap)
1169                         p = &(*p)->rb_left;
1170                 else if (snap < exist->snap)
1171                         p = &(*p)->rb_right;
1172                 else
1173                         break;
1174                 exist = NULL;
1175         }
1176         if (exist) {
1177                 if (atomic_inc_return(&exist->ref) == 1)
1178                         list_del_init(&exist->lru);
1179         } else {
1180                 rb_link_node(&sm->node, parent, p);
1181                 rb_insert_color(&sm->node, &mdsc->snapid_map_tree);
1182         }
1183         spin_unlock(&mdsc->snapid_map_lock);
1184         if (exist) {
1185                 free_anon_bdev(sm->dev);
1186                 kfree(sm);
1187                 dout("found snapid map %llx -> %x\n", exist->snap, exist->dev);
1188                 return exist;
1189         }
1190
1191         dout("create snapid map %llx -> %x\n", sm->snap, sm->dev);
1192         return sm;
1193 }
1194
1195 void ceph_put_snapid_map(struct ceph_mds_client* mdsc,
1196                          struct ceph_snapid_map *sm)
1197 {
1198         if (!sm)
1199                 return;
1200         if (atomic_dec_and_lock(&sm->ref, &mdsc->snapid_map_lock)) {
1201                 if (!RB_EMPTY_NODE(&sm->node)) {
1202                         sm->last_used = jiffies;
1203                         list_add_tail(&sm->lru, &mdsc->snapid_map_lru);
1204                         spin_unlock(&mdsc->snapid_map_lock);
1205                 } else {
1206                         /* already cleaned up by
1207                          * ceph_cleanup_snapid_map() */
1208                         spin_unlock(&mdsc->snapid_map_lock);
1209                         kfree(sm);
1210                 }
1211         }
1212 }
1213
1214 void ceph_trim_snapid_map(struct ceph_mds_client *mdsc)
1215 {
1216         struct ceph_snapid_map *sm;
1217         unsigned long now;
1218         LIST_HEAD(to_free);
1219
1220         spin_lock(&mdsc->snapid_map_lock);
1221         now = jiffies;
1222
1223         while (!list_empty(&mdsc->snapid_map_lru)) {
1224                 sm = list_first_entry(&mdsc->snapid_map_lru,
1225                                       struct ceph_snapid_map, lru);
1226                 if (time_after(sm->last_used + CEPH_SNAPID_MAP_TIMEOUT, now))
1227                         break;
1228
1229                 rb_erase(&sm->node, &mdsc->snapid_map_tree);
1230                 list_move(&sm->lru, &to_free);
1231         }
1232         spin_unlock(&mdsc->snapid_map_lock);
1233
1234         while (!list_empty(&to_free)) {
1235                 sm = list_first_entry(&to_free, struct ceph_snapid_map, lru);
1236                 list_del(&sm->lru);
1237                 dout("trim snapid map %llx -> %x\n", sm->snap, sm->dev);
1238                 free_anon_bdev(sm->dev);
1239                 kfree(sm);
1240         }
1241 }
1242
1243 void ceph_cleanup_snapid_map(struct ceph_mds_client *mdsc)
1244 {
1245         struct ceph_snapid_map *sm;
1246         struct rb_node *p;
1247         LIST_HEAD(to_free);
1248
1249         spin_lock(&mdsc->snapid_map_lock);
1250         while ((p = rb_first(&mdsc->snapid_map_tree))) {
1251                 sm = rb_entry(p, struct ceph_snapid_map, node);
1252                 rb_erase(p, &mdsc->snapid_map_tree);
1253                 RB_CLEAR_NODE(p);
1254                 list_move(&sm->lru, &to_free);
1255         }
1256         spin_unlock(&mdsc->snapid_map_lock);
1257
1258         while (!list_empty(&to_free)) {
1259                 sm = list_first_entry(&to_free, struct ceph_snapid_map, lru);
1260                 list_del(&sm->lru);
1261                 free_anon_bdev(sm->dev);
1262                 if (WARN_ON_ONCE(atomic_read(&sm->ref))) {
1263                         pr_err("snapid map %llx -> %x still in use\n",
1264                                sm->snap, sm->dev);
1265                 }
1266                 kfree(sm);
1267         }
1268 }