blob: 98f3ca4a5ddf35545aa1478567a616ac8adac5bf [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weila8599bd2009-10-06 11:31:12 -07002
3#include <linux/fs.h>
4#include <linux/kernel.h>
5#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Sage Weila8599bd2009-10-06 11:31:12 -07007#include <linux/vmalloc.h>
8#include <linux/wait.h>
Stephen Rothwellf1a3d572010-01-18 11:53:08 +11009#include <linux/writeback.h>
Sage Weila8599bd2009-10-06 11:31:12 -070010
11#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070012#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040013#include "cache.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070014#include <linux/ceph/decode.h>
15#include <linux/ceph/messenger.h>
Sage Weila8599bd2009-10-06 11:31:12 -070016
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
44/*
45 * Generate readable cap strings for debugging output.
46 */
47#define MAX_CAP_STR 20
48static char cap_str[MAX_CAP_STR][40];
49static DEFINE_SPINLOCK(cap_str_lock);
50static int last_cap_str;
51
52static char *gcap_string(char *s, int c)
53{
54 if (c & CEPH_CAP_GSHARED)
55 *s++ = 's';
56 if (c & CEPH_CAP_GEXCL)
57 *s++ = 'x';
58 if (c & CEPH_CAP_GCACHE)
59 *s++ = 'c';
60 if (c & CEPH_CAP_GRD)
61 *s++ = 'r';
62 if (c & CEPH_CAP_GWR)
63 *s++ = 'w';
64 if (c & CEPH_CAP_GBUFFER)
65 *s++ = 'b';
66 if (c & CEPH_CAP_GLAZYIO)
67 *s++ = 'l';
68 return s;
69}
70
71const char *ceph_cap_string(int caps)
72{
73 int i;
74 char *s;
75 int c;
76
77 spin_lock(&cap_str_lock);
78 i = last_cap_str++;
79 if (last_cap_str == MAX_CAP_STR)
80 last_cap_str = 0;
81 spin_unlock(&cap_str_lock);
82
83 s = cap_str[i];
84
85 if (caps & CEPH_CAP_PIN)
86 *s++ = 'p';
87
88 c = (caps >> CEPH_CAP_SAUTH) & 3;
89 if (c) {
90 *s++ = 'A';
91 s = gcap_string(s, c);
92 }
93
94 c = (caps >> CEPH_CAP_SLINK) & 3;
95 if (c) {
96 *s++ = 'L';
97 s = gcap_string(s, c);
98 }
99
100 c = (caps >> CEPH_CAP_SXATTR) & 3;
101 if (c) {
102 *s++ = 'X';
103 s = gcap_string(s, c);
104 }
105
106 c = caps >> CEPH_CAP_SFILE;
107 if (c) {
108 *s++ = 'F';
109 s = gcap_string(s, c);
110 }
111
112 if (s == cap_str[i])
113 *s++ = '-';
114 *s = 0;
115 return cap_str[i];
116}
117
Yehuda Sadeh37151662010-06-17 16:16:12 -0700118void ceph_caps_init(struct ceph_mds_client *mdsc)
Sage Weila8599bd2009-10-06 11:31:12 -0700119{
Yehuda Sadeh37151662010-06-17 16:16:12 -0700120 INIT_LIST_HEAD(&mdsc->caps_list);
121 spin_lock_init(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700122}
123
Yehuda Sadeh37151662010-06-17 16:16:12 -0700124void ceph_caps_finalize(struct ceph_mds_client *mdsc)
Sage Weila8599bd2009-10-06 11:31:12 -0700125{
126 struct ceph_cap *cap;
127
Yehuda Sadeh37151662010-06-17 16:16:12 -0700128 spin_lock(&mdsc->caps_list_lock);
129 while (!list_empty(&mdsc->caps_list)) {
130 cap = list_first_entry(&mdsc->caps_list,
131 struct ceph_cap, caps_item);
Sage Weila8599bd2009-10-06 11:31:12 -0700132 list_del(&cap->caps_item);
133 kmem_cache_free(ceph_cap_cachep, cap);
134 }
Yehuda Sadeh37151662010-06-17 16:16:12 -0700135 mdsc->caps_total_count = 0;
136 mdsc->caps_avail_count = 0;
137 mdsc->caps_use_count = 0;
138 mdsc->caps_reserve_count = 0;
139 mdsc->caps_min_count = 0;
140 spin_unlock(&mdsc->caps_list_lock);
Sage Weil85ccce42010-02-17 10:02:43 -0800141}
142
Yehuda Sadeh37151662010-06-17 16:16:12 -0700143void ceph_adjust_min_caps(struct ceph_mds_client *mdsc, int delta)
Sage Weil85ccce42010-02-17 10:02:43 -0800144{
Yehuda Sadeh37151662010-06-17 16:16:12 -0700145 spin_lock(&mdsc->caps_list_lock);
146 mdsc->caps_min_count += delta;
147 BUG_ON(mdsc->caps_min_count < 0);
148 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700149}
150
majianpeng93faca62013-06-26 11:15:27 +0800151void ceph_reserve_caps(struct ceph_mds_client *mdsc,
Yehuda Sadeh37151662010-06-17 16:16:12 -0700152 struct ceph_cap_reservation *ctx, int need)
Sage Weila8599bd2009-10-06 11:31:12 -0700153{
154 int i;
155 struct ceph_cap *cap;
156 int have;
157 int alloc = 0;
158 LIST_HEAD(newcaps);
Sage Weila8599bd2009-10-06 11:31:12 -0700159
160 dout("reserve caps ctx=%p need=%d\n", ctx, need);
161
162 /* first reserve any caps that are already allocated */
Yehuda Sadeh37151662010-06-17 16:16:12 -0700163 spin_lock(&mdsc->caps_list_lock);
164 if (mdsc->caps_avail_count >= need)
Sage Weila8599bd2009-10-06 11:31:12 -0700165 have = need;
166 else
Yehuda Sadeh37151662010-06-17 16:16:12 -0700167 have = mdsc->caps_avail_count;
168 mdsc->caps_avail_count -= have;
169 mdsc->caps_reserve_count += have;
170 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
171 mdsc->caps_reserve_count +
172 mdsc->caps_avail_count);
173 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700174
175 for (i = have; i < need; i++) {
176 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
majianpeng93faca62013-06-26 11:15:27 +0800177 if (!cap)
178 break;
Sage Weila8599bd2009-10-06 11:31:12 -0700179 list_add(&cap->caps_item, &newcaps);
180 alloc++;
181 }
majianpeng93faca62013-06-26 11:15:27 +0800182 /* we didn't manage to reserve as much as we needed */
183 if (have + alloc != need)
184 pr_warn("reserve caps ctx=%p ENOMEM need=%d got=%d\n",
185 ctx, need, have + alloc);
Sage Weila8599bd2009-10-06 11:31:12 -0700186
Yehuda Sadeh37151662010-06-17 16:16:12 -0700187 spin_lock(&mdsc->caps_list_lock);
188 mdsc->caps_total_count += alloc;
189 mdsc->caps_reserve_count += alloc;
190 list_splice(&newcaps, &mdsc->caps_list);
Sage Weila8599bd2009-10-06 11:31:12 -0700191
Yehuda Sadeh37151662010-06-17 16:16:12 -0700192 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
193 mdsc->caps_reserve_count +
194 mdsc->caps_avail_count);
195 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700196
197 ctx->count = need;
198 dout("reserve caps ctx=%p %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700199 ctx, mdsc->caps_total_count, mdsc->caps_use_count,
200 mdsc->caps_reserve_count, mdsc->caps_avail_count);
Sage Weila8599bd2009-10-06 11:31:12 -0700201}
202
Yehuda Sadeh37151662010-06-17 16:16:12 -0700203int ceph_unreserve_caps(struct ceph_mds_client *mdsc,
204 struct ceph_cap_reservation *ctx)
Sage Weila8599bd2009-10-06 11:31:12 -0700205{
206 dout("unreserve caps ctx=%p count=%d\n", ctx, ctx->count);
207 if (ctx->count) {
Yehuda Sadeh37151662010-06-17 16:16:12 -0700208 spin_lock(&mdsc->caps_list_lock);
209 BUG_ON(mdsc->caps_reserve_count < ctx->count);
210 mdsc->caps_reserve_count -= ctx->count;
211 mdsc->caps_avail_count += ctx->count;
Sage Weila8599bd2009-10-06 11:31:12 -0700212 ctx->count = 0;
213 dout("unreserve caps %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700214 mdsc->caps_total_count, mdsc->caps_use_count,
215 mdsc->caps_reserve_count, mdsc->caps_avail_count);
216 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
217 mdsc->caps_reserve_count +
218 mdsc->caps_avail_count);
219 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700220 }
221 return 0;
222}
223
Yehuda Sadeh37151662010-06-17 16:16:12 -0700224static struct ceph_cap *get_cap(struct ceph_mds_client *mdsc,
225 struct ceph_cap_reservation *ctx)
Sage Weila8599bd2009-10-06 11:31:12 -0700226{
227 struct ceph_cap *cap = NULL;
228
229 /* temporary, until we do something about cap import/export */
Sage Weil443b3762010-06-29 09:28:39 -0700230 if (!ctx) {
231 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
232 if (cap) {
Yan, Zheng4d1d0532012-11-03 10:32:37 +0800233 spin_lock(&mdsc->caps_list_lock);
Yehuda Sadeh37151662010-06-17 16:16:12 -0700234 mdsc->caps_use_count++;
235 mdsc->caps_total_count++;
Yan, Zheng4d1d0532012-11-03 10:32:37 +0800236 spin_unlock(&mdsc->caps_list_lock);
Sage Weil443b3762010-06-29 09:28:39 -0700237 }
238 return cap;
239 }
Sage Weila8599bd2009-10-06 11:31:12 -0700240
Yehuda Sadeh37151662010-06-17 16:16:12 -0700241 spin_lock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700242 dout("get_cap ctx=%p (%d) %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700243 ctx, ctx->count, mdsc->caps_total_count, mdsc->caps_use_count,
244 mdsc->caps_reserve_count, mdsc->caps_avail_count);
Sage Weila8599bd2009-10-06 11:31:12 -0700245 BUG_ON(!ctx->count);
Yehuda Sadeh37151662010-06-17 16:16:12 -0700246 BUG_ON(ctx->count > mdsc->caps_reserve_count);
247 BUG_ON(list_empty(&mdsc->caps_list));
Sage Weila8599bd2009-10-06 11:31:12 -0700248
249 ctx->count--;
Yehuda Sadeh37151662010-06-17 16:16:12 -0700250 mdsc->caps_reserve_count--;
251 mdsc->caps_use_count++;
Sage Weila8599bd2009-10-06 11:31:12 -0700252
Yehuda Sadeh37151662010-06-17 16:16:12 -0700253 cap = list_first_entry(&mdsc->caps_list, struct ceph_cap, caps_item);
Sage Weila8599bd2009-10-06 11:31:12 -0700254 list_del(&cap->caps_item);
255
Yehuda Sadeh37151662010-06-17 16:16:12 -0700256 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
257 mdsc->caps_reserve_count + mdsc->caps_avail_count);
258 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700259 return cap;
260}
261
Yehuda Sadeh37151662010-06-17 16:16:12 -0700262void ceph_put_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap)
Sage Weila8599bd2009-10-06 11:31:12 -0700263{
Yehuda Sadeh37151662010-06-17 16:16:12 -0700264 spin_lock(&mdsc->caps_list_lock);
Sage Weil7c1332b2010-02-16 11:39:45 -0800265 dout("put_cap %p %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700266 cap, mdsc->caps_total_count, mdsc->caps_use_count,
267 mdsc->caps_reserve_count, mdsc->caps_avail_count);
268 mdsc->caps_use_count--;
Sage Weila8599bd2009-10-06 11:31:12 -0700269 /*
Sage Weil85ccce42010-02-17 10:02:43 -0800270 * Keep some preallocated caps around (ceph_min_count), to
271 * avoid lots of free/alloc churn.
Sage Weila8599bd2009-10-06 11:31:12 -0700272 */
Yehuda Sadeh37151662010-06-17 16:16:12 -0700273 if (mdsc->caps_avail_count >= mdsc->caps_reserve_count +
274 mdsc->caps_min_count) {
275 mdsc->caps_total_count--;
Sage Weila8599bd2009-10-06 11:31:12 -0700276 kmem_cache_free(ceph_cap_cachep, cap);
277 } else {
Yehuda Sadeh37151662010-06-17 16:16:12 -0700278 mdsc->caps_avail_count++;
279 list_add(&cap->caps_item, &mdsc->caps_list);
Sage Weila8599bd2009-10-06 11:31:12 -0700280 }
281
Yehuda Sadeh37151662010-06-17 16:16:12 -0700282 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
283 mdsc->caps_reserve_count + mdsc->caps_avail_count);
284 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700285}
286
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700287void ceph_reservation_status(struct ceph_fs_client *fsc,
Sage Weil85ccce42010-02-17 10:02:43 -0800288 int *total, int *avail, int *used, int *reserved,
289 int *min)
Sage Weila8599bd2009-10-06 11:31:12 -0700290{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700291 struct ceph_mds_client *mdsc = fsc->mdsc;
Yehuda Sadeh37151662010-06-17 16:16:12 -0700292
Sage Weila8599bd2009-10-06 11:31:12 -0700293 if (total)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700294 *total = mdsc->caps_total_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700295 if (avail)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700296 *avail = mdsc->caps_avail_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700297 if (used)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700298 *used = mdsc->caps_use_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700299 if (reserved)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700300 *reserved = mdsc->caps_reserve_count;
Sage Weil85ccce42010-02-17 10:02:43 -0800301 if (min)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700302 *min = mdsc->caps_min_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700303}
304
305/*
306 * Find ceph_cap for given mds, if any.
307 *
Sage Weilbe655592011-11-30 09:47:09 -0800308 * Called with i_ceph_lock held.
Sage Weila8599bd2009-10-06 11:31:12 -0700309 */
310static struct ceph_cap *__get_cap_for_mds(struct ceph_inode_info *ci, int mds)
311{
312 struct ceph_cap *cap;
313 struct rb_node *n = ci->i_caps.rb_node;
314
315 while (n) {
316 cap = rb_entry(n, struct ceph_cap, ci_node);
317 if (mds < cap->mds)
318 n = n->rb_left;
319 else if (mds > cap->mds)
320 n = n->rb_right;
321 else
322 return cap;
323 }
324 return NULL;
325}
326
Greg Farnum2bc50252010-06-30 12:44:34 -0700327struct ceph_cap *ceph_get_cap_for_mds(struct ceph_inode_info *ci, int mds)
328{
329 struct ceph_cap *cap;
330
Sage Weilbe655592011-11-30 09:47:09 -0800331 spin_lock(&ci->i_ceph_lock);
Greg Farnum2bc50252010-06-30 12:44:34 -0700332 cap = __get_cap_for_mds(ci, mds);
Sage Weilbe655592011-11-30 09:47:09 -0800333 spin_unlock(&ci->i_ceph_lock);
Greg Farnum2bc50252010-06-30 12:44:34 -0700334 return cap;
335}
336
Sage Weila8599bd2009-10-06 11:31:12 -0700337/*
Sage Weil33caad32010-05-26 14:31:27 -0700338 * Return id of any MDS with a cap, preferably FILE_WR|BUFFER|EXCL, else -1.
Sage Weila8599bd2009-10-06 11:31:12 -0700339 */
Sage Weilca81f3f2010-06-10 14:21:36 -0700340static int __ceph_get_cap_mds(struct ceph_inode_info *ci)
Sage Weila8599bd2009-10-06 11:31:12 -0700341{
342 struct ceph_cap *cap;
343 int mds = -1;
344 struct rb_node *p;
345
Sage Weil33caad32010-05-26 14:31:27 -0700346 /* prefer mds with WR|BUFFER|EXCL caps */
Sage Weila8599bd2009-10-06 11:31:12 -0700347 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
348 cap = rb_entry(p, struct ceph_cap, ci_node);
349 mds = cap->mds;
Sage Weila8599bd2009-10-06 11:31:12 -0700350 if (cap->issued & (CEPH_CAP_FILE_WR |
351 CEPH_CAP_FILE_BUFFER |
352 CEPH_CAP_FILE_EXCL))
353 break;
354 }
355 return mds;
356}
357
358int ceph_get_cap_mds(struct inode *inode)
359{
Sage Weilbe655592011-11-30 09:47:09 -0800360 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weila8599bd2009-10-06 11:31:12 -0700361 int mds;
Sage Weilbe655592011-11-30 09:47:09 -0800362 spin_lock(&ci->i_ceph_lock);
Sage Weilca81f3f2010-06-10 14:21:36 -0700363 mds = __ceph_get_cap_mds(ceph_inode(inode));
Sage Weilbe655592011-11-30 09:47:09 -0800364 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700365 return mds;
366}
367
368/*
Sage Weilbe655592011-11-30 09:47:09 -0800369 * Called under i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -0700370 */
371static void __insert_cap_node(struct ceph_inode_info *ci,
372 struct ceph_cap *new)
373{
374 struct rb_node **p = &ci->i_caps.rb_node;
375 struct rb_node *parent = NULL;
376 struct ceph_cap *cap = NULL;
377
378 while (*p) {
379 parent = *p;
380 cap = rb_entry(parent, struct ceph_cap, ci_node);
381 if (new->mds < cap->mds)
382 p = &(*p)->rb_left;
383 else if (new->mds > cap->mds)
384 p = &(*p)->rb_right;
385 else
386 BUG();
387 }
388
389 rb_link_node(&new->ci_node, parent, p);
390 rb_insert_color(&new->ci_node, &ci->i_caps);
391}
392
393/*
394 * (re)set cap hold timeouts, which control the delayed release
395 * of unused caps back to the MDS. Should be called on cap use.
396 */
397static void __cap_set_timeouts(struct ceph_mds_client *mdsc,
398 struct ceph_inode_info *ci)
399{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700400 struct ceph_mount_options *ma = mdsc->fsc->mount_options;
Sage Weila8599bd2009-10-06 11:31:12 -0700401
402 ci->i_hold_caps_min = round_jiffies(jiffies +
403 ma->caps_wanted_delay_min * HZ);
404 ci->i_hold_caps_max = round_jiffies(jiffies +
405 ma->caps_wanted_delay_max * HZ);
406 dout("__cap_set_timeouts %p min %lu max %lu\n", &ci->vfs_inode,
407 ci->i_hold_caps_min - jiffies, ci->i_hold_caps_max - jiffies);
408}
409
410/*
411 * (Re)queue cap at the end of the delayed cap release list.
412 *
413 * If I_FLUSH is set, leave the inode at the front of the list.
414 *
Sage Weilbe655592011-11-30 09:47:09 -0800415 * Caller holds i_ceph_lock
Sage Weila8599bd2009-10-06 11:31:12 -0700416 * -> we take mdsc->cap_delay_lock
417 */
418static void __cap_delay_requeue(struct ceph_mds_client *mdsc,
419 struct ceph_inode_info *ci)
420{
421 __cap_set_timeouts(mdsc, ci);
422 dout("__cap_delay_requeue %p flags %d at %lu\n", &ci->vfs_inode,
423 ci->i_ceph_flags, ci->i_hold_caps_max);
424 if (!mdsc->stopping) {
425 spin_lock(&mdsc->cap_delay_lock);
426 if (!list_empty(&ci->i_cap_delay_list)) {
427 if (ci->i_ceph_flags & CEPH_I_FLUSH)
428 goto no_change;
429 list_del_init(&ci->i_cap_delay_list);
430 }
431 list_add_tail(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
432no_change:
433 spin_unlock(&mdsc->cap_delay_lock);
434 }
435}
436
437/*
438 * Queue an inode for immediate writeback. Mark inode with I_FLUSH,
439 * indicating we should send a cap message to flush dirty metadata
440 * asap, and move to the front of the delayed cap list.
441 */
442static void __cap_delay_requeue_front(struct ceph_mds_client *mdsc,
443 struct ceph_inode_info *ci)
444{
445 dout("__cap_delay_requeue_front %p\n", &ci->vfs_inode);
446 spin_lock(&mdsc->cap_delay_lock);
447 ci->i_ceph_flags |= CEPH_I_FLUSH;
448 if (!list_empty(&ci->i_cap_delay_list))
449 list_del_init(&ci->i_cap_delay_list);
450 list_add(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
451 spin_unlock(&mdsc->cap_delay_lock);
452}
453
454/*
455 * Cancel delayed work on cap.
456 *
Sage Weilbe655592011-11-30 09:47:09 -0800457 * Caller must hold i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -0700458 */
459static void __cap_delay_cancel(struct ceph_mds_client *mdsc,
460 struct ceph_inode_info *ci)
461{
462 dout("__cap_delay_cancel %p\n", &ci->vfs_inode);
463 if (list_empty(&ci->i_cap_delay_list))
464 return;
465 spin_lock(&mdsc->cap_delay_lock);
466 list_del_init(&ci->i_cap_delay_list);
467 spin_unlock(&mdsc->cap_delay_lock);
468}
469
470/*
471 * Common issue checks for add_cap, handle_cap_grant.
472 */
473static void __check_cap_issue(struct ceph_inode_info *ci, struct ceph_cap *cap,
474 unsigned issued)
475{
476 unsigned had = __ceph_caps_issued(ci, NULL);
477
478 /*
479 * Each time we receive FILE_CACHE anew, we increment
480 * i_rdcache_gen.
481 */
Sage Weil29625072010-05-27 10:40:43 -0700482 if ((issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400483 (had & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0) {
Sage Weila8599bd2009-10-06 11:31:12 -0700484 ci->i_rdcache_gen++;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400485 }
Sage Weila8599bd2009-10-06 11:31:12 -0700486
487 /*
Yan, Zheng2f276c52013-03-13 19:44:32 +0800488 * if we are newly issued FILE_SHARED, mark dir not complete; we
Sage Weila8599bd2009-10-06 11:31:12 -0700489 * don't know what happened to this directory while we didn't
490 * have the cap.
491 */
492 if ((issued & CEPH_CAP_FILE_SHARED) &&
493 (had & CEPH_CAP_FILE_SHARED) == 0) {
494 ci->i_shared_gen++;
Yan, Zhenga8673d62013-02-18 16:38:14 +0800495 if (S_ISDIR(ci->vfs_inode.i_mode)) {
496 dout(" marking %p NOT complete\n", &ci->vfs_inode);
Yan, Zheng2f276c52013-03-13 19:44:32 +0800497 __ceph_dir_clear_complete(ci);
Yan, Zhenga8673d62013-02-18 16:38:14 +0800498 }
Sage Weila8599bd2009-10-06 11:31:12 -0700499 }
500}
501
502/*
503 * Add a capability under the given MDS session.
504 *
505 * Caller should hold session snap_rwsem (read) and s_mutex.
506 *
507 * @fmode is the open file mode, if we are opening a file, otherwise
508 * it is < 0. (This is so we can atomically add the cap and add an
509 * open file reference to it.)
510 */
511int ceph_add_cap(struct inode *inode,
512 struct ceph_mds_session *session, u64 cap_id,
513 int fmode, unsigned issued, unsigned wanted,
514 unsigned seq, unsigned mseq, u64 realmino, int flags,
515 struct ceph_cap_reservation *caps_reservation)
516{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700517 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -0700518 struct ceph_inode_info *ci = ceph_inode(inode);
519 struct ceph_cap *new_cap = NULL;
520 struct ceph_cap *cap;
521 int mds = session->s_mds;
522 int actual_wanted;
523
524 dout("add_cap %p mds%d cap %llx %s seq %d\n", inode,
525 session->s_mds, cap_id, ceph_cap_string(issued), seq);
526
527 /*
528 * If we are opening the file, include file mode wanted bits
529 * in wanted.
530 */
531 if (fmode >= 0)
532 wanted |= ceph_caps_for_mode(fmode);
533
534retry:
Sage Weilbe655592011-11-30 09:47:09 -0800535 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700536 cap = __get_cap_for_mds(ci, mds);
537 if (!cap) {
538 if (new_cap) {
539 cap = new_cap;
540 new_cap = NULL;
541 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800542 spin_unlock(&ci->i_ceph_lock);
Yehuda Sadeh37151662010-06-17 16:16:12 -0700543 new_cap = get_cap(mdsc, caps_reservation);
Sage Weila8599bd2009-10-06 11:31:12 -0700544 if (new_cap == NULL)
545 return -ENOMEM;
546 goto retry;
547 }
548
549 cap->issued = 0;
550 cap->implemented = 0;
551 cap->mds = mds;
552 cap->mds_wanted = 0;
Yan, Zheng964266c2013-02-27 09:26:09 +0800553 cap->mseq = 0;
Sage Weila8599bd2009-10-06 11:31:12 -0700554
555 cap->ci = ci;
556 __insert_cap_node(ci, cap);
557
558 /* clear out old exporting info? (i.e. on cap import) */
559 if (ci->i_cap_exporting_mds == mds) {
560 ci->i_cap_exporting_issued = 0;
561 ci->i_cap_exporting_mseq = 0;
562 ci->i_cap_exporting_mds = -1;
563 }
564
565 /* add to session cap list */
566 cap->session = session;
567 spin_lock(&session->s_cap_lock);
568 list_add_tail(&cap->session_caps, &session->s_caps);
569 session->s_nr_caps++;
570 spin_unlock(&session->s_cap_lock);
Sage Weil35403032011-05-12 15:13:23 -0700571 } else if (new_cap)
572 ceph_put_cap(mdsc, new_cap);
Sage Weila8599bd2009-10-06 11:31:12 -0700573
574 if (!ci->i_snap_realm) {
575 /*
576 * add this inode to the appropriate snap realm
577 */
578 struct ceph_snap_realm *realm = ceph_lookup_snap_realm(mdsc,
579 realmino);
580 if (realm) {
581 ceph_get_snap_realm(mdsc, realm);
582 spin_lock(&realm->inodes_with_caps_lock);
583 ci->i_snap_realm = realm;
584 list_add(&ci->i_snap_realm_item,
585 &realm->inodes_with_caps);
586 spin_unlock(&realm->inodes_with_caps_lock);
587 } else {
588 pr_err("ceph_add_cap: couldn't find snap realm %llx\n",
589 realmino);
Sage Weilb8cd07e2010-07-16 12:00:02 -0700590 WARN_ON(!realm);
Sage Weila8599bd2009-10-06 11:31:12 -0700591 }
592 }
593
594 __check_cap_issue(ci, cap, issued);
595
596 /*
597 * If we are issued caps we don't want, or the mds' wanted
598 * value appears to be off, queue a check so we'll release
599 * later and/or update the mds wanted value.
600 */
601 actual_wanted = __ceph_caps_wanted(ci);
602 if ((wanted & ~actual_wanted) ||
603 (issued & ~actual_wanted & CEPH_CAP_ANY_WR)) {
604 dout(" issued %s, mds wanted %s, actual %s, queueing\n",
605 ceph_cap_string(issued), ceph_cap_string(wanted),
606 ceph_cap_string(actual_wanted));
607 __cap_delay_requeue(mdsc, ci);
608 }
609
Yan, Zhengb8c2f3a2013-05-31 16:37:11 +0800610 if (flags & CEPH_CAP_FLAG_AUTH) {
611 if (ci->i_auth_cap == NULL ||
612 ceph_seq_cmp(ci->i_auth_cap->mseq, mseq) < 0)
613 ci->i_auth_cap = cap;
Yan, Zheng4ee6a912013-11-24 14:43:46 +0800614 ci->i_cap_exporting_issued = 0;
Yan, Zhengb8c2f3a2013-05-31 16:37:11 +0800615 } else if (ci->i_auth_cap == cap) {
Sage Weila8599bd2009-10-06 11:31:12 -0700616 ci->i_auth_cap = NULL;
Yan, Zheng8a92a112013-01-04 14:28:07 +0800617 spin_lock(&mdsc->cap_dirty_lock);
618 if (!list_empty(&ci->i_dirty_item)) {
619 dout(" moving %p to cap_dirty_migrating\n", inode);
620 list_move(&ci->i_dirty_item,
621 &mdsc->cap_dirty_migrating);
622 }
623 spin_unlock(&mdsc->cap_dirty_lock);
624 }
Sage Weila8599bd2009-10-06 11:31:12 -0700625
626 dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
627 inode, ceph_vinop(inode), cap, ceph_cap_string(issued),
628 ceph_cap_string(issued|cap->issued), seq, mds);
629 cap->cap_id = cap_id;
630 cap->issued = issued;
631 cap->implemented |= issued;
Yan, Zhengd1b87802013-11-13 14:47:19 +0800632 if (ceph_seq_cmp(mseq, cap->mseq) > 0)
Yan, Zheng964266c2013-02-27 09:26:09 +0800633 cap->mds_wanted = wanted;
634 else
635 cap->mds_wanted |= wanted;
Sage Weila8599bd2009-10-06 11:31:12 -0700636 cap->seq = seq;
637 cap->issue_seq = seq;
638 cap->mseq = mseq;
Sage Weil685f9a5d2009-11-09 12:05:48 -0800639 cap->cap_gen = session->s_cap_gen;
Sage Weila8599bd2009-10-06 11:31:12 -0700640
641 if (fmode >= 0)
642 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800643 spin_unlock(&ci->i_ceph_lock);
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700644 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -0700645 return 0;
646}
647
648/*
649 * Return true if cap has not timed out and belongs to the current
650 * generation of the MDS session (i.e. has not gone 'stale' due to
651 * us losing touch with the mds).
652 */
653static int __cap_is_valid(struct ceph_cap *cap)
654{
655 unsigned long ttl;
Sage Weilcdac8302009-11-10 16:02:23 -0800656 u32 gen;
Sage Weila8599bd2009-10-06 11:31:12 -0700657
Alex Elderd8fb02a2012-01-12 17:48:10 -0800658 spin_lock(&cap->session->s_gen_ttl_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700659 gen = cap->session->s_cap_gen;
660 ttl = cap->session->s_cap_ttl;
Alex Elderd8fb02a2012-01-12 17:48:10 -0800661 spin_unlock(&cap->session->s_gen_ttl_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700662
Sage Weil685f9a5d2009-11-09 12:05:48 -0800663 if (cap->cap_gen < gen || time_after_eq(jiffies, ttl)) {
Sage Weila8599bd2009-10-06 11:31:12 -0700664 dout("__cap_is_valid %p cap %p issued %s "
665 "but STALE (gen %u vs %u)\n", &cap->ci->vfs_inode,
Sage Weil685f9a5d2009-11-09 12:05:48 -0800666 cap, ceph_cap_string(cap->issued), cap->cap_gen, gen);
Sage Weila8599bd2009-10-06 11:31:12 -0700667 return 0;
668 }
669
670 return 1;
671}
672
673/*
674 * Return set of valid cap bits issued to us. Note that caps time
675 * out, and may be invalidated in bulk if the client session times out
676 * and session->s_cap_gen is bumped.
677 */
678int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented)
679{
Sage Weil7af8f1e2010-03-01 15:17:34 -0800680 int have = ci->i_snap_caps | ci->i_cap_exporting_issued;
Sage Weila8599bd2009-10-06 11:31:12 -0700681 struct ceph_cap *cap;
682 struct rb_node *p;
683
684 if (implemented)
685 *implemented = 0;
686 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
687 cap = rb_entry(p, struct ceph_cap, ci_node);
688 if (!__cap_is_valid(cap))
689 continue;
690 dout("__ceph_caps_issued %p cap %p issued %s\n",
691 &ci->vfs_inode, cap, ceph_cap_string(cap->issued));
692 have |= cap->issued;
693 if (implemented)
694 *implemented |= cap->implemented;
695 }
Yan, Zhengb1530f52013-07-02 12:40:20 +0800696 /*
697 * exclude caps issued by non-auth MDS, but are been revoking
698 * by the auth MDS. The non-auth MDS should be revoking/exporting
699 * these caps, but the message is delayed.
700 */
701 if (ci->i_auth_cap) {
702 cap = ci->i_auth_cap;
703 have &= ~cap->implemented | cap->issued;
704 }
Sage Weila8599bd2009-10-06 11:31:12 -0700705 return have;
706}
707
708/*
709 * Get cap bits issued by caps other than @ocap
710 */
711int __ceph_caps_issued_other(struct ceph_inode_info *ci, struct ceph_cap *ocap)
712{
713 int have = ci->i_snap_caps;
714 struct ceph_cap *cap;
715 struct rb_node *p;
716
717 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
718 cap = rb_entry(p, struct ceph_cap, ci_node);
719 if (cap == ocap)
720 continue;
721 if (!__cap_is_valid(cap))
722 continue;
723 have |= cap->issued;
724 }
725 return have;
726}
727
728/*
729 * Move a cap to the end of the LRU (oldest caps at list head, newest
730 * at list tail).
731 */
732static void __touch_cap(struct ceph_cap *cap)
733{
734 struct ceph_mds_session *s = cap->session;
735
Sage Weila8599bd2009-10-06 11:31:12 -0700736 spin_lock(&s->s_cap_lock);
Sage Weil7c1332b2010-02-16 11:39:45 -0800737 if (s->s_cap_iterator == NULL) {
Sage Weil5dacf092009-12-21 20:40:34 -0800738 dout("__touch_cap %p cap %p mds%d\n", &cap->ci->vfs_inode, cap,
739 s->s_mds);
740 list_move_tail(&cap->session_caps, &s->s_caps);
741 } else {
742 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
743 &cap->ci->vfs_inode, cap, s->s_mds);
744 }
Sage Weila8599bd2009-10-06 11:31:12 -0700745 spin_unlock(&s->s_cap_lock);
746}
747
748/*
749 * Check if we hold the given mask. If so, move the cap(s) to the
750 * front of their respective LRUs. (This is the preferred way for
751 * callers to check for caps they want.)
752 */
753int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int touch)
754{
755 struct ceph_cap *cap;
756 struct rb_node *p;
757 int have = ci->i_snap_caps;
758
759 if ((have & mask) == mask) {
760 dout("__ceph_caps_issued_mask %p snap issued %s"
761 " (mask %s)\n", &ci->vfs_inode,
762 ceph_cap_string(have),
763 ceph_cap_string(mask));
764 return 1;
765 }
766
767 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
768 cap = rb_entry(p, struct ceph_cap, ci_node);
769 if (!__cap_is_valid(cap))
770 continue;
771 if ((cap->issued & mask) == mask) {
772 dout("__ceph_caps_issued_mask %p cap %p issued %s"
773 " (mask %s)\n", &ci->vfs_inode, cap,
774 ceph_cap_string(cap->issued),
775 ceph_cap_string(mask));
776 if (touch)
777 __touch_cap(cap);
778 return 1;
779 }
780
781 /* does a combination of caps satisfy mask? */
782 have |= cap->issued;
783 if ((have & mask) == mask) {
784 dout("__ceph_caps_issued_mask %p combo issued %s"
785 " (mask %s)\n", &ci->vfs_inode,
786 ceph_cap_string(cap->issued),
787 ceph_cap_string(mask));
788 if (touch) {
789 struct rb_node *q;
790
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300791 /* touch this + preceding caps */
Sage Weila8599bd2009-10-06 11:31:12 -0700792 __touch_cap(cap);
793 for (q = rb_first(&ci->i_caps); q != p;
794 q = rb_next(q)) {
795 cap = rb_entry(q, struct ceph_cap,
796 ci_node);
797 if (!__cap_is_valid(cap))
798 continue;
799 __touch_cap(cap);
800 }
801 }
802 return 1;
803 }
804 }
805
806 return 0;
807}
808
809/*
810 * Return true if mask caps are currently being revoked by an MDS.
811 */
Yan, Zheng6ee6b9532013-07-02 12:40:21 +0800812int __ceph_caps_revoking_other(struct ceph_inode_info *ci,
813 struct ceph_cap *ocap, int mask)
814{
815 struct ceph_cap *cap;
816 struct rb_node *p;
817
818 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
819 cap = rb_entry(p, struct ceph_cap, ci_node);
Yan, Zheng9563f882013-11-22 13:50:45 +0800820 if (cap != ocap &&
Yan, Zheng6ee6b9532013-07-02 12:40:21 +0800821 (cap->implemented & ~cap->issued & mask))
822 return 1;
823 }
824 return 0;
825}
826
Sage Weila8599bd2009-10-06 11:31:12 -0700827int ceph_caps_revoking(struct ceph_inode_info *ci, int mask)
828{
829 struct inode *inode = &ci->vfs_inode;
Yan, Zheng6ee6b9532013-07-02 12:40:21 +0800830 int ret;
Sage Weila8599bd2009-10-06 11:31:12 -0700831
Sage Weilbe655592011-11-30 09:47:09 -0800832 spin_lock(&ci->i_ceph_lock);
Yan, Zheng6ee6b9532013-07-02 12:40:21 +0800833 ret = __ceph_caps_revoking_other(ci, NULL, mask);
Sage Weilbe655592011-11-30 09:47:09 -0800834 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700835 dout("ceph_caps_revoking %p %s = %d\n", inode,
836 ceph_cap_string(mask), ret);
837 return ret;
838}
839
840int __ceph_caps_used(struct ceph_inode_info *ci)
841{
842 int used = 0;
843 if (ci->i_pin_ref)
844 used |= CEPH_CAP_PIN;
845 if (ci->i_rd_ref)
846 used |= CEPH_CAP_FILE_RD;
Sage Weila43fb732010-09-17 09:54:08 -0700847 if (ci->i_rdcache_ref || ci->vfs_inode.i_data.nrpages)
Sage Weila8599bd2009-10-06 11:31:12 -0700848 used |= CEPH_CAP_FILE_CACHE;
849 if (ci->i_wr_ref)
850 used |= CEPH_CAP_FILE_WR;
Henry C Changd3d07202011-05-11 10:29:54 +0000851 if (ci->i_wb_ref || ci->i_wrbuffer_ref)
Sage Weila8599bd2009-10-06 11:31:12 -0700852 used |= CEPH_CAP_FILE_BUFFER;
853 return used;
854}
855
856/*
857 * wanted, by virtue of open file modes
858 */
859int __ceph_caps_file_wanted(struct ceph_inode_info *ci)
860{
861 int want = 0;
862 int mode;
Sage Weil33caad32010-05-26 14:31:27 -0700863 for (mode = 0; mode < CEPH_FILE_MODE_NUM; mode++)
Sage Weila8599bd2009-10-06 11:31:12 -0700864 if (ci->i_nr_by_mode[mode])
865 want |= ceph_caps_for_mode(mode);
866 return want;
867}
868
869/*
870 * Return caps we have registered with the MDS(s) as 'wanted'.
871 */
872int __ceph_caps_mds_wanted(struct ceph_inode_info *ci)
873{
874 struct ceph_cap *cap;
875 struct rb_node *p;
876 int mds_wanted = 0;
877
878 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
879 cap = rb_entry(p, struct ceph_cap, ci_node);
880 if (!__cap_is_valid(cap))
881 continue;
882 mds_wanted |= cap->mds_wanted;
883 }
884 return mds_wanted;
885}
886
887/*
Sage Weilbe655592011-11-30 09:47:09 -0800888 * called under i_ceph_lock
Sage Weila8599bd2009-10-06 11:31:12 -0700889 */
890static int __ceph_is_any_caps(struct ceph_inode_info *ci)
891{
892 return !RB_EMPTY_ROOT(&ci->i_caps) || ci->i_cap_exporting_mds >= 0;
893}
894
Yan, Zheng9215aee2013-11-30 12:47:41 +0800895int ceph_is_any_caps(struct inode *inode)
896{
897 struct ceph_inode_info *ci = ceph_inode(inode);
898 int ret;
899
900 spin_lock(&ci->i_ceph_lock);
901 ret = __ceph_is_any_caps(ci);
902 spin_unlock(&ci->i_ceph_lock);
903
904 return ret;
905}
906
Sage Weila8599bd2009-10-06 11:31:12 -0700907/*
Sage Weilf818a732010-05-11 20:56:31 -0700908 * Remove a cap. Take steps to deal with a racing iterate_session_caps.
909 *
Sage Weilbe655592011-11-30 09:47:09 -0800910 * caller should hold i_ceph_lock.
Sage Weila6369742010-02-22 13:59:00 -0800911 * caller will not hold session s_mutex if called from destroy_inode.
Sage Weila8599bd2009-10-06 11:31:12 -0700912 */
Yan, Zhenga096b092013-09-22 10:15:58 +0800913void __ceph_remove_cap(struct ceph_cap *cap, bool queue_release)
Sage Weila8599bd2009-10-06 11:31:12 -0700914{
915 struct ceph_mds_session *session = cap->session;
916 struct ceph_inode_info *ci = cap->ci;
Cheng Renquan640ef792010-03-26 17:40:33 +0800917 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700918 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
Sage Weilf818a732010-05-11 20:56:31 -0700919 int removed = 0;
Sage Weila8599bd2009-10-06 11:31:12 -0700920
921 dout("__ceph_remove_cap %p from %p\n", cap, &ci->vfs_inode);
922
Sage Weil7c1332b2010-02-16 11:39:45 -0800923 /* remove from session list */
924 spin_lock(&session->s_cap_lock);
Yan, Zheng99a9c272013-09-22 11:08:14 +0800925 /*
926 * s_cap_reconnect is protected by s_cap_lock. no one changes
927 * s_cap_gen while session is in the reconnect state.
928 */
929 if (queue_release &&
930 (!session->s_cap_reconnect ||
931 cap->cap_gen == session->s_cap_gen))
Yan, Zhenga096b092013-09-22 10:15:58 +0800932 __queue_cap_release(session, ci->i_vino.ino, cap->cap_id,
933 cap->mseq, cap->issue_seq);
934
Sage Weil7c1332b2010-02-16 11:39:45 -0800935 if (session->s_cap_iterator == cap) {
936 /* not yet, we are iterating over this very cap */
937 dout("__ceph_remove_cap delaying %p removal from session %p\n",
938 cap, cap->session);
939 } else {
940 list_del_init(&cap->session_caps);
941 session->s_nr_caps--;
942 cap->session = NULL;
Sage Weilf818a732010-05-11 20:56:31 -0700943 removed = 1;
Sage Weil7c1332b2010-02-16 11:39:45 -0800944 }
Sage Weilf818a732010-05-11 20:56:31 -0700945 /* protect backpointer with s_cap_lock: see iterate_session_caps */
946 cap->ci = NULL;
Sage Weil7c1332b2010-02-16 11:39:45 -0800947 spin_unlock(&session->s_cap_lock);
948
Sage Weilf818a732010-05-11 20:56:31 -0700949 /* remove from inode list */
950 rb_erase(&cap->ci_node, &ci->i_caps);
951 if (ci->i_auth_cap == cap)
952 ci->i_auth_cap = NULL;
953
954 if (removed)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700955 ceph_put_cap(mdsc, cap);
Sage Weila8599bd2009-10-06 11:31:12 -0700956
957 if (!__ceph_is_any_caps(ci) && ci->i_snap_realm) {
958 struct ceph_snap_realm *realm = ci->i_snap_realm;
959 spin_lock(&realm->inodes_with_caps_lock);
960 list_del_init(&ci->i_snap_realm_item);
961 ci->i_snap_realm_counter++;
962 ci->i_snap_realm = NULL;
963 spin_unlock(&realm->inodes_with_caps_lock);
964 ceph_put_snap_realm(mdsc, realm);
965 }
966 if (!__ceph_is_any_real_caps(ci))
967 __cap_delay_cancel(mdsc, ci);
968}
969
970/*
971 * Build and send a cap message to the given MDS.
972 *
973 * Caller should be holding s_mutex.
974 */
975static int send_cap_msg(struct ceph_mds_session *session,
976 u64 ino, u64 cid, int op,
977 int caps, int wanted, int dirty,
978 u32 seq, u64 flush_tid, u32 issue_seq, u32 mseq,
979 u64 size, u64 max_size,
980 struct timespec *mtime, struct timespec *atime,
981 u64 time_warp_seq,
Eric W. Biederman05cb11c2013-01-31 02:56:19 -0800982 kuid_t uid, kgid_t gid, umode_t mode,
Sage Weila8599bd2009-10-06 11:31:12 -0700983 u64 xattr_version,
984 struct ceph_buffer *xattrs_buf,
985 u64 follows)
986{
987 struct ceph_mds_caps *fc;
988 struct ceph_msg *msg;
989
990 dout("send_cap_msg %s %llx %llx caps %s wanted %s dirty %s"
991 " seq %u/%u mseq %u follows %lld size %llu/%llu"
992 " xattr_ver %llu xattr_len %d\n", ceph_cap_op_name(op),
993 cid, ino, ceph_cap_string(caps), ceph_cap_string(wanted),
994 ceph_cap_string(dirty),
995 seq, issue_seq, mseq, follows, size, max_size,
996 xattr_version, xattrs_buf ? (int)xattrs_buf->vec.iov_len : 0);
997
Sage Weilb61c2762011-08-09 15:03:46 -0700998 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, sizeof(*fc), GFP_NOFS, false);
Sage Weila79832f2010-04-01 16:06:19 -0700999 if (!msg)
1000 return -ENOMEM;
Sage Weila8599bd2009-10-06 11:31:12 -07001001
Sage Weil6df058c2009-12-22 11:24:33 -08001002 msg->hdr.tid = cpu_to_le64(flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -07001003
Sage Weil6df058c2009-12-22 11:24:33 -08001004 fc = msg->front.iov_base;
Sage Weila8599bd2009-10-06 11:31:12 -07001005 memset(fc, 0, sizeof(*fc));
1006
1007 fc->cap_id = cpu_to_le64(cid);
1008 fc->op = cpu_to_le32(op);
1009 fc->seq = cpu_to_le32(seq);
Sage Weila8599bd2009-10-06 11:31:12 -07001010 fc->issue_seq = cpu_to_le32(issue_seq);
1011 fc->migrate_seq = cpu_to_le32(mseq);
1012 fc->caps = cpu_to_le32(caps);
1013 fc->wanted = cpu_to_le32(wanted);
1014 fc->dirty = cpu_to_le32(dirty);
1015 fc->ino = cpu_to_le64(ino);
1016 fc->snap_follows = cpu_to_le64(follows);
1017
1018 fc->size = cpu_to_le64(size);
1019 fc->max_size = cpu_to_le64(max_size);
1020 if (mtime)
1021 ceph_encode_timespec(&fc->mtime, mtime);
1022 if (atime)
1023 ceph_encode_timespec(&fc->atime, atime);
1024 fc->time_warp_seq = cpu_to_le32(time_warp_seq);
1025
Eric W. Biederman05cb11c2013-01-31 02:56:19 -08001026 fc->uid = cpu_to_le32(from_kuid(&init_user_ns, uid));
1027 fc->gid = cpu_to_le32(from_kgid(&init_user_ns, gid));
Sage Weila8599bd2009-10-06 11:31:12 -07001028 fc->mode = cpu_to_le32(mode);
1029
1030 fc->xattr_version = cpu_to_le64(xattr_version);
1031 if (xattrs_buf) {
1032 msg->middle = ceph_buffer_get(xattrs_buf);
1033 fc->xattr_len = cpu_to_le32(xattrs_buf->vec.iov_len);
1034 msg->hdr.middle_len = cpu_to_le32(xattrs_buf->vec.iov_len);
1035 }
1036
1037 ceph_con_send(&session->s_con, msg);
1038 return 0;
1039}
1040
Yan, Zhengd40ee0d2013-02-18 13:43:43 +08001041void __queue_cap_release(struct ceph_mds_session *session,
1042 u64 ino, u64 cap_id, u32 migrate_seq,
1043 u32 issue_seq)
Sage Weil3d7ded42010-06-09 16:47:10 -07001044{
1045 struct ceph_msg *msg;
1046 struct ceph_mds_cap_release *head;
1047 struct ceph_mds_cap_item *item;
1048
Sage Weil3d7ded42010-06-09 16:47:10 -07001049 BUG_ON(!session->s_num_cap_releases);
1050 msg = list_first_entry(&session->s_cap_releases,
1051 struct ceph_msg, list_head);
1052
1053 dout(" adding %llx release to mds%d msg %p (%d left)\n",
1054 ino, session->s_mds, msg, session->s_num_cap_releases);
1055
1056 BUG_ON(msg->front.iov_len + sizeof(*item) > PAGE_CACHE_SIZE);
1057 head = msg->front.iov_base;
Wei Yongjunb905a7f2012-09-28 12:59:16 +08001058 le32_add_cpu(&head->num, 1);
Sage Weil3d7ded42010-06-09 16:47:10 -07001059 item = msg->front.iov_base + msg->front.iov_len;
1060 item->ino = cpu_to_le64(ino);
1061 item->cap_id = cpu_to_le64(cap_id);
1062 item->migrate_seq = cpu_to_le32(migrate_seq);
1063 item->seq = cpu_to_le32(issue_seq);
1064
1065 session->s_num_cap_releases--;
1066
1067 msg->front.iov_len += sizeof(*item);
1068 if (le32_to_cpu(head->num) == CEPH_CAPS_PER_RELEASE) {
1069 dout(" release msg %p full\n", msg);
1070 list_move_tail(&msg->list_head, &session->s_cap_releases_done);
1071 } else {
1072 dout(" release msg %p at %d/%d (%d)\n", msg,
1073 (int)le32_to_cpu(head->num),
1074 (int)CEPH_CAPS_PER_RELEASE,
1075 (int)msg->front.iov_len);
1076 }
Sage Weil3d7ded42010-06-09 16:47:10 -07001077}
1078
Sage Weila8599bd2009-10-06 11:31:12 -07001079/*
Sage Weila6369742010-02-22 13:59:00 -08001080 * Queue cap releases when an inode is dropped from our cache. Since
Sage Weilbe655592011-11-30 09:47:09 -08001081 * inode is about to be destroyed, there is no need for i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -07001082 */
1083void ceph_queue_caps_release(struct inode *inode)
1084{
1085 struct ceph_inode_info *ci = ceph_inode(inode);
1086 struct rb_node *p;
1087
Sage Weila8599bd2009-10-06 11:31:12 -07001088 p = rb_first(&ci->i_caps);
1089 while (p) {
1090 struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
Sage Weila8599bd2009-10-06 11:31:12 -07001091 p = rb_next(p);
Yan, Zhenga096b092013-09-22 10:15:58 +08001092 __ceph_remove_cap(cap, true);
Sage Weila8599bd2009-10-06 11:31:12 -07001093 }
Sage Weila8599bd2009-10-06 11:31:12 -07001094}
1095
1096/*
1097 * Send a cap msg on the given inode. Update our caps state, then
Sage Weilbe655592011-11-30 09:47:09 -08001098 * drop i_ceph_lock and send the message.
Sage Weila8599bd2009-10-06 11:31:12 -07001099 *
1100 * Make note of max_size reported/requested from mds, revoked caps
1101 * that have now been implemented.
1102 *
1103 * Make half-hearted attempt ot to invalidate page cache if we are
1104 * dropping RDCACHE. Note that this will leave behind locked pages
1105 * that we'll then need to deal with elsewhere.
1106 *
1107 * Return non-zero if delayed release, or we experienced an error
1108 * such that the caller should requeue + retry later.
1109 *
Sage Weilbe655592011-11-30 09:47:09 -08001110 * called with i_ceph_lock, then drops it.
Sage Weila8599bd2009-10-06 11:31:12 -07001111 * caller should hold snap_rwsem (read), s_mutex.
1112 */
1113static int __send_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap,
1114 int op, int used, int want, int retain, int flushing,
1115 unsigned *pflush_tid)
Sage Weilbe655592011-11-30 09:47:09 -08001116 __releases(cap->ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07001117{
1118 struct ceph_inode_info *ci = cap->ci;
1119 struct inode *inode = &ci->vfs_inode;
1120 u64 cap_id = cap->cap_id;
Sage Weil68c28322010-02-09 13:41:47 -08001121 int held, revoking, dropping, keep;
Sage Weila8599bd2009-10-06 11:31:12 -07001122 u64 seq, issue_seq, mseq, time_warp_seq, follows;
1123 u64 size, max_size;
1124 struct timespec mtime, atime;
1125 int wake = 0;
Al Viro5706b272011-07-26 04:52:22 -04001126 umode_t mode;
Eric W. Biederman05cb11c2013-01-31 02:56:19 -08001127 kuid_t uid;
1128 kgid_t gid;
Sage Weila8599bd2009-10-06 11:31:12 -07001129 struct ceph_mds_session *session;
1130 u64 xattr_version = 0;
Sage Weil082afec2010-08-22 15:16:41 -07001131 struct ceph_buffer *xattr_blob = NULL;
Sage Weila8599bd2009-10-06 11:31:12 -07001132 int delayed = 0;
1133 u64 flush_tid = 0;
1134 int i;
1135 int ret;
1136
Sage Weil68c28322010-02-09 13:41:47 -08001137 held = cap->issued | cap->implemented;
1138 revoking = cap->implemented & ~cap->issued;
1139 retain &= ~revoking;
1140 dropping = cap->issued & ~retain;
1141
Sage Weila8599bd2009-10-06 11:31:12 -07001142 dout("__send_cap %p cap %p session %p %s -> %s (revoking %s)\n",
1143 inode, cap, cap->session,
1144 ceph_cap_string(held), ceph_cap_string(held & retain),
1145 ceph_cap_string(revoking));
1146 BUG_ON((retain & CEPH_CAP_PIN) == 0);
1147
1148 session = cap->session;
1149
1150 /* don't release wanted unless we've waited a bit. */
1151 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1152 time_before(jiffies, ci->i_hold_caps_min)) {
1153 dout(" delaying issued %s -> %s, wanted %s -> %s on send\n",
1154 ceph_cap_string(cap->issued),
1155 ceph_cap_string(cap->issued & retain),
1156 ceph_cap_string(cap->mds_wanted),
1157 ceph_cap_string(want));
1158 want |= cap->mds_wanted;
1159 retain |= cap->issued;
1160 delayed = 1;
1161 }
1162 ci->i_ceph_flags &= ~(CEPH_I_NODELAY | CEPH_I_FLUSH);
1163
1164 cap->issued &= retain; /* drop bits we don't want */
1165 if (cap->implemented & ~cap->issued) {
1166 /*
1167 * Wake up any waiters on wanted -> needed transition.
1168 * This is due to the weird transition from buffered
1169 * to sync IO... we need to flush dirty pages _before_
1170 * allowing sync writes to avoid reordering.
1171 */
1172 wake = 1;
1173 }
1174 cap->implemented &= cap->issued | used;
1175 cap->mds_wanted = want;
1176
1177 if (flushing) {
1178 /*
1179 * assign a tid for flush operations so we can avoid
1180 * flush1 -> dirty1 -> flush2 -> flushack1 -> mark
1181 * clean type races. track latest tid for every bit
1182 * so we can handle flush AxFw, flush Fw, and have the
1183 * first ack clean Ax.
1184 */
1185 flush_tid = ++ci->i_cap_flush_last_tid;
1186 if (pflush_tid)
1187 *pflush_tid = flush_tid;
1188 dout(" cap_flush_tid %d\n", (int)flush_tid);
1189 for (i = 0; i < CEPH_CAP_BITS; i++)
1190 if (flushing & (1 << i))
1191 ci->i_cap_flush_tid[i] = flush_tid;
Sage Weil7d8cb262010-08-24 08:44:16 -07001192
1193 follows = ci->i_head_snapc->seq;
1194 } else {
1195 follows = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001196 }
1197
1198 keep = cap->implemented;
1199 seq = cap->seq;
1200 issue_seq = cap->issue_seq;
1201 mseq = cap->mseq;
1202 size = inode->i_size;
1203 ci->i_reported_size = size;
1204 max_size = ci->i_wanted_max_size;
1205 ci->i_requested_max_size = max_size;
1206 mtime = inode->i_mtime;
1207 atime = inode->i_atime;
1208 time_warp_seq = ci->i_time_warp_seq;
Sage Weila8599bd2009-10-06 11:31:12 -07001209 uid = inode->i_uid;
1210 gid = inode->i_gid;
1211 mode = inode->i_mode;
1212
Sage Weil082afec2010-08-22 15:16:41 -07001213 if (flushing & CEPH_CAP_XATTR_EXCL) {
Sage Weila8599bd2009-10-06 11:31:12 -07001214 __ceph_build_xattrs_blob(ci);
Sage Weil082afec2010-08-22 15:16:41 -07001215 xattr_blob = ci->i_xattrs.blob;
1216 xattr_version = ci->i_xattrs.version;
Sage Weila8599bd2009-10-06 11:31:12 -07001217 }
1218
Sage Weilbe655592011-11-30 09:47:09 -08001219 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001220
Sage Weila8599bd2009-10-06 11:31:12 -07001221 ret = send_cap_msg(session, ceph_vino(inode).ino, cap_id,
1222 op, keep, want, flushing, seq, flush_tid, issue_seq, mseq,
1223 size, max_size, &mtime, &atime, time_warp_seq,
Sage Weil082afec2010-08-22 15:16:41 -07001224 uid, gid, mode, xattr_version, xattr_blob,
Sage Weila8599bd2009-10-06 11:31:12 -07001225 follows);
1226 if (ret < 0) {
1227 dout("error sending cap msg, must requeue %p\n", inode);
1228 delayed = 1;
1229 }
1230
1231 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07001232 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07001233
1234 return delayed;
1235}
1236
1237/*
1238 * When a snapshot is taken, clients accumulate dirty metadata on
1239 * inodes with capabilities in ceph_cap_snaps to describe the file
1240 * state at the time the snapshot was taken. This must be flushed
1241 * asynchronously back to the MDS once sync writes complete and dirty
1242 * data is written out.
1243 *
Sage Weile8351242010-09-17 08:03:08 -07001244 * Unless @again is true, skip cap_snaps that were already sent to
1245 * the MDS (i.e., during this session).
1246 *
Sage Weilbe655592011-11-30 09:47:09 -08001247 * Called under i_ceph_lock. Takes s_mutex as needed.
Sage Weila8599bd2009-10-06 11:31:12 -07001248 */
1249void __ceph_flush_snaps(struct ceph_inode_info *ci,
Sage Weile8351242010-09-17 08:03:08 -07001250 struct ceph_mds_session **psession,
1251 int again)
Sage Weilbe655592011-11-30 09:47:09 -08001252 __releases(ci->i_ceph_lock)
1253 __acquires(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07001254{
1255 struct inode *inode = &ci->vfs_inode;
1256 int mds;
1257 struct ceph_cap_snap *capsnap;
1258 u32 mseq;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001259 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001260 struct ceph_mds_session *session = NULL; /* if session != NULL, we hold
1261 session->s_mutex */
1262 u64 next_follows = 0; /* keep track of how far we've gotten through the
1263 i_cap_snaps list, and skip these entries next time
1264 around to avoid an infinite loop */
1265
1266 if (psession)
1267 session = *psession;
1268
1269 dout("__flush_snaps %p\n", inode);
1270retry:
1271 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
1272 /* avoid an infiniute loop after retry */
1273 if (capsnap->follows < next_follows)
1274 continue;
1275 /*
1276 * we need to wait for sync writes to complete and for dirty
1277 * pages to be written out.
1278 */
1279 if (capsnap->dirty_pages || capsnap->writing)
Sage Weilcfc0bf62010-09-14 15:50:59 -07001280 break;
Sage Weila8599bd2009-10-06 11:31:12 -07001281
Sage Weil819ccbf2010-04-01 09:33:46 -07001282 /*
1283 * if cap writeback already occurred, we should have dropped
1284 * the capsnap in ceph_put_wrbuffer_cap_refs.
1285 */
1286 BUG_ON(capsnap->dirty == 0);
1287
Sage Weila8599bd2009-10-06 11:31:12 -07001288 /* pick mds, take s_mutex */
Sage Weilca81f3f2010-06-10 14:21:36 -07001289 if (ci->i_auth_cap == NULL) {
1290 dout("no auth cap (migrating?), doing nothing\n");
1291 goto out;
1292 }
Sage Weile8351242010-09-17 08:03:08 -07001293
1294 /* only flush each capsnap once */
1295 if (!again && !list_empty(&capsnap->flushing_item)) {
1296 dout("already flushed %p, skipping\n", capsnap);
1297 continue;
1298 }
1299
Sage Weilca81f3f2010-06-10 14:21:36 -07001300 mds = ci->i_auth_cap->session->s_mds;
1301 mseq = ci->i_auth_cap->mseq;
1302
Sage Weila8599bd2009-10-06 11:31:12 -07001303 if (session && session->s_mds != mds) {
1304 dout("oops, wrong session %p mutex\n", session);
1305 mutex_unlock(&session->s_mutex);
1306 ceph_put_mds_session(session);
1307 session = NULL;
1308 }
1309 if (!session) {
Sage Weilbe655592011-11-30 09:47:09 -08001310 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001311 mutex_lock(&mdsc->mutex);
1312 session = __ceph_lookup_mds_session(mdsc, mds);
1313 mutex_unlock(&mdsc->mutex);
1314 if (session) {
1315 dout("inverting session/ino locks on %p\n",
1316 session);
1317 mutex_lock(&session->s_mutex);
1318 }
1319 /*
1320 * if session == NULL, we raced against a cap
Sage Weilca81f3f2010-06-10 14:21:36 -07001321 * deletion or migration. retry, and we'll
1322 * get a better @mds value next time.
Sage Weila8599bd2009-10-06 11:31:12 -07001323 */
Sage Weilbe655592011-11-30 09:47:09 -08001324 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001325 goto retry;
1326 }
1327
1328 capsnap->flush_tid = ++ci->i_cap_flush_last_tid;
1329 atomic_inc(&capsnap->nref);
1330 if (!list_empty(&capsnap->flushing_item))
1331 list_del_init(&capsnap->flushing_item);
1332 list_add_tail(&capsnap->flushing_item,
1333 &session->s_cap_snaps_flushing);
Sage Weilbe655592011-11-30 09:47:09 -08001334 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001335
Sage Weilcfc0bf62010-09-14 15:50:59 -07001336 dout("flush_snaps %p cap_snap %p follows %lld tid %llu\n",
1337 inode, capsnap, capsnap->follows, capsnap->flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -07001338 send_cap_msg(session, ceph_vino(inode).ino, 0,
1339 CEPH_CAP_OP_FLUSHSNAP, capsnap->issued, 0,
1340 capsnap->dirty, 0, capsnap->flush_tid, 0, mseq,
1341 capsnap->size, 0,
1342 &capsnap->mtime, &capsnap->atime,
1343 capsnap->time_warp_seq,
1344 capsnap->uid, capsnap->gid, capsnap->mode,
Sage Weil4a625be2010-08-22 15:03:56 -07001345 capsnap->xattr_version, capsnap->xattr_blob,
Sage Weila8599bd2009-10-06 11:31:12 -07001346 capsnap->follows);
1347
1348 next_follows = capsnap->follows + 1;
1349 ceph_put_cap_snap(capsnap);
1350
Sage Weilbe655592011-11-30 09:47:09 -08001351 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001352 goto retry;
1353 }
1354
1355 /* we flushed them all; remove this inode from the queue */
1356 spin_lock(&mdsc->snap_flush_lock);
1357 list_del_init(&ci->i_snap_flush_item);
1358 spin_unlock(&mdsc->snap_flush_lock);
1359
Sage Weilca81f3f2010-06-10 14:21:36 -07001360out:
Sage Weila8599bd2009-10-06 11:31:12 -07001361 if (psession)
1362 *psession = session;
1363 else if (session) {
1364 mutex_unlock(&session->s_mutex);
1365 ceph_put_mds_session(session);
1366 }
1367}
1368
1369static void ceph_flush_snaps(struct ceph_inode_info *ci)
1370{
Sage Weilbe655592011-11-30 09:47:09 -08001371 spin_lock(&ci->i_ceph_lock);
Sage Weile8351242010-09-17 08:03:08 -07001372 __ceph_flush_snaps(ci, NULL, 0);
Sage Weilbe655592011-11-30 09:47:09 -08001373 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001374}
1375
1376/*
Sage Weilfca65b42011-05-04 11:33:47 -07001377 * Mark caps dirty. If inode is newly dirty, return the dirty flags.
1378 * Caller is then responsible for calling __mark_inode_dirty with the
1379 * returned flags value.
Sage Weil76e3b392009-10-15 18:13:53 -07001380 */
Sage Weilfca65b42011-05-04 11:33:47 -07001381int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask)
Sage Weil76e3b392009-10-15 18:13:53 -07001382{
Cheng Renquan640ef792010-03-26 17:40:33 +08001383 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001384 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
Sage Weil76e3b392009-10-15 18:13:53 -07001385 struct inode *inode = &ci->vfs_inode;
1386 int was = ci->i_dirty_caps;
1387 int dirty = 0;
1388
1389 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci->vfs_inode,
1390 ceph_cap_string(mask), ceph_cap_string(was),
1391 ceph_cap_string(was | mask));
1392 ci->i_dirty_caps |= mask;
1393 if (was == 0) {
Sage Weil7d8cb262010-08-24 08:44:16 -07001394 if (!ci->i_head_snapc)
1395 ci->i_head_snapc = ceph_get_snap_context(
1396 ci->i_snap_realm->cached_context);
Yan, Zheng06852352012-11-19 10:49:07 +08001397 dout(" inode %p now dirty snapc %p auth cap %p\n",
1398 &ci->vfs_inode, ci->i_head_snapc, ci->i_auth_cap);
Sage Weil76e3b392009-10-15 18:13:53 -07001399 BUG_ON(!list_empty(&ci->i_dirty_item));
1400 spin_lock(&mdsc->cap_dirty_lock);
Yan, Zheng06852352012-11-19 10:49:07 +08001401 if (ci->i_auth_cap)
1402 list_add(&ci->i_dirty_item, &mdsc->cap_dirty);
1403 else
1404 list_add(&ci->i_dirty_item,
1405 &mdsc->cap_dirty_migrating);
Sage Weil76e3b392009-10-15 18:13:53 -07001406 spin_unlock(&mdsc->cap_dirty_lock);
1407 if (ci->i_flushing_caps == 0) {
Sage Weil3772d262011-05-03 09:28:08 -07001408 ihold(inode);
Sage Weil76e3b392009-10-15 18:13:53 -07001409 dirty |= I_DIRTY_SYNC;
1410 }
1411 }
1412 BUG_ON(list_empty(&ci->i_dirty_item));
1413 if (((was | ci->i_flushing_caps) & CEPH_CAP_FILE_BUFFER) &&
1414 (mask & CEPH_CAP_FILE_BUFFER))
1415 dirty |= I_DIRTY_DATASYNC;
Sage Weil76e3b392009-10-15 18:13:53 -07001416 __cap_delay_requeue(mdsc, ci);
Sage Weilfca65b42011-05-04 11:33:47 -07001417 return dirty;
Sage Weil76e3b392009-10-15 18:13:53 -07001418}
1419
1420/*
Sage Weila8599bd2009-10-06 11:31:12 -07001421 * Add dirty inode to the flushing list. Assigned a seq number so we
1422 * can wait for caps to flush without starving.
Sage Weilcdc35f92009-10-14 14:24:19 -07001423 *
Sage Weilbe655592011-11-30 09:47:09 -08001424 * Called under i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -07001425 */
Sage Weilcdc35f92009-10-14 14:24:19 -07001426static int __mark_caps_flushing(struct inode *inode,
Sage Weila8599bd2009-10-06 11:31:12 -07001427 struct ceph_mds_session *session)
1428{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001429 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001430 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weilcdc35f92009-10-14 14:24:19 -07001431 int flushing;
Sage Weil50b885b2009-12-01 14:12:07 -08001432
Sage Weilcdc35f92009-10-14 14:24:19 -07001433 BUG_ON(ci->i_dirty_caps == 0);
Sage Weila8599bd2009-10-06 11:31:12 -07001434 BUG_ON(list_empty(&ci->i_dirty_item));
Sage Weilcdc35f92009-10-14 14:24:19 -07001435
1436 flushing = ci->i_dirty_caps;
1437 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1438 ceph_cap_string(flushing),
1439 ceph_cap_string(ci->i_flushing_caps),
1440 ceph_cap_string(ci->i_flushing_caps | flushing));
1441 ci->i_flushing_caps |= flushing;
1442 ci->i_dirty_caps = 0;
Sage Weilafcdaea2009-10-14 14:27:38 -07001443 dout(" inode %p now !dirty\n", inode);
Sage Weilcdc35f92009-10-14 14:24:19 -07001444
Sage Weila8599bd2009-10-06 11:31:12 -07001445 spin_lock(&mdsc->cap_dirty_lock);
Sage Weilafcdaea2009-10-14 14:27:38 -07001446 list_del_init(&ci->i_dirty_item);
1447
1448 ci->i_cap_flush_seq = ++mdsc->cap_flush_seq;
Sage Weila8599bd2009-10-06 11:31:12 -07001449 if (list_empty(&ci->i_flushing_item)) {
1450 list_add_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1451 mdsc->num_cap_flushing++;
Sage Weilafcdaea2009-10-14 14:27:38 -07001452 dout(" inode %p now flushing seq %lld\n", inode,
1453 ci->i_cap_flush_seq);
1454 } else {
1455 list_move_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1456 dout(" inode %p now flushing (more) seq %lld\n", inode,
Sage Weila8599bd2009-10-06 11:31:12 -07001457 ci->i_cap_flush_seq);
1458 }
1459 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weilcdc35f92009-10-14 14:24:19 -07001460
1461 return flushing;
Sage Weila8599bd2009-10-06 11:31:12 -07001462}
1463
1464/*
Sage Weil5ecad6f2010-02-17 10:43:37 -08001465 * try to invalidate mapping pages without blocking.
1466 */
Sage Weil5ecad6f2010-02-17 10:43:37 -08001467static int try_nonblocking_invalidate(struct inode *inode)
1468{
1469 struct ceph_inode_info *ci = ceph_inode(inode);
1470 u32 invalidating_gen = ci->i_rdcache_gen;
1471
Sage Weilbe655592011-11-30 09:47:09 -08001472 spin_unlock(&ci->i_ceph_lock);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001473 invalidate_mapping_pages(&inode->i_data, 0, -1);
Sage Weilbe655592011-11-30 09:47:09 -08001474 spin_lock(&ci->i_ceph_lock);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001475
Sage Weil18a38192010-09-17 10:46:44 -07001476 if (inode->i_data.nrpages == 0 &&
Sage Weil5ecad6f2010-02-17 10:43:37 -08001477 invalidating_gen == ci->i_rdcache_gen) {
1478 /* success. */
1479 dout("try_nonblocking_invalidate %p success\n", inode);
Sage Weilcd045cb2010-11-04 11:05:05 -07001480 /* save any racing async invalidate some trouble */
1481 ci->i_rdcache_revoking = ci->i_rdcache_gen - 1;
Sage Weil5ecad6f2010-02-17 10:43:37 -08001482 return 0;
1483 }
1484 dout("try_nonblocking_invalidate %p failed\n", inode);
1485 return -1;
1486}
1487
1488/*
Sage Weila8599bd2009-10-06 11:31:12 -07001489 * Swiss army knife function to examine currently used and wanted
1490 * versus held caps. Release, flush, ack revoked caps to mds as
1491 * appropriate.
1492 *
1493 * CHECK_CAPS_NODELAY - caller is delayed work and we should not delay
1494 * cap release further.
1495 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1496 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1497 * further delay.
1498 */
1499void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1500 struct ceph_mds_session *session)
1501{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001502 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1503 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001504 struct inode *inode = &ci->vfs_inode;
1505 struct ceph_cap *cap;
Yan, Zheng395c3122013-01-04 14:37:57 +08001506 int file_wanted, used, cap_used;
Sage Weila8599bd2009-10-06 11:31:12 -07001507 int took_snap_rwsem = 0; /* true if mdsc->snap_rwsem held */
Sage Weilcbd03632010-02-09 13:41:18 -08001508 int issued, implemented, want, retain, revoking, flushing = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001509 int mds = -1; /* keep track of how far we've gone through i_caps list
1510 to avoid an infinite loop on retry */
1511 struct rb_node *p;
1512 int tried_invalidate = 0;
1513 int delayed = 0, sent = 0, force_requeue = 0, num;
Sage Weilcbd03632010-02-09 13:41:18 -08001514 int queue_invalidate = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001515 int is_delayed = flags & CHECK_CAPS_NODELAY;
1516
1517 /* if we are unmounting, flush any unused caps immediately. */
1518 if (mdsc->stopping)
1519 is_delayed = 1;
1520
Sage Weilbe655592011-11-30 09:47:09 -08001521 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001522
1523 if (ci->i_ceph_flags & CEPH_I_FLUSH)
1524 flags |= CHECK_CAPS_FLUSH;
1525
1526 /* flush snaps first time around only */
1527 if (!list_empty(&ci->i_cap_snaps))
Sage Weile8351242010-09-17 08:03:08 -07001528 __ceph_flush_snaps(ci, &session, 0);
Sage Weila8599bd2009-10-06 11:31:12 -07001529 goto retry_locked;
1530retry:
Sage Weilbe655592011-11-30 09:47:09 -08001531 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001532retry_locked:
1533 file_wanted = __ceph_caps_file_wanted(ci);
1534 used = __ceph_caps_used(ci);
1535 want = file_wanted | used;
Sage Weilcbd03632010-02-09 13:41:18 -08001536 issued = __ceph_caps_issued(ci, &implemented);
1537 revoking = implemented & ~issued;
Sage Weila8599bd2009-10-06 11:31:12 -07001538
1539 retain = want | CEPH_CAP_PIN;
1540 if (!mdsc->stopping && inode->i_nlink > 0) {
1541 if (want) {
1542 retain |= CEPH_CAP_ANY; /* be greedy */
1543 } else {
1544 retain |= CEPH_CAP_ANY_SHARED;
1545 /*
1546 * keep RD only if we didn't have the file open RW,
1547 * because then the mds would revoke it anyway to
1548 * journal max_size=0.
1549 */
1550 if (ci->i_max_size == 0)
1551 retain |= CEPH_CAP_ANY_RD;
1552 }
1553 }
1554
1555 dout("check_caps %p file_want %s used %s dirty %s flushing %s"
Sage Weilcbd03632010-02-09 13:41:18 -08001556 " issued %s revoking %s retain %s %s%s%s\n", inode,
Sage Weila8599bd2009-10-06 11:31:12 -07001557 ceph_cap_string(file_wanted),
1558 ceph_cap_string(used), ceph_cap_string(ci->i_dirty_caps),
1559 ceph_cap_string(ci->i_flushing_caps),
Sage Weilcbd03632010-02-09 13:41:18 -08001560 ceph_cap_string(issued), ceph_cap_string(revoking),
Sage Weila8599bd2009-10-06 11:31:12 -07001561 ceph_cap_string(retain),
1562 (flags & CHECK_CAPS_AUTHONLY) ? " AUTHONLY" : "",
1563 (flags & CHECK_CAPS_NODELAY) ? " NODELAY" : "",
1564 (flags & CHECK_CAPS_FLUSH) ? " FLUSH" : "");
1565
1566 /*
1567 * If we no longer need to hold onto old our caps, and we may
1568 * have cached pages, but don't want them, then try to invalidate.
1569 * If we fail, it's because pages are locked.... try again later.
1570 */
1571 if ((!is_delayed || mdsc->stopping) &&
1572 ci->i_wrbuffer_ref == 0 && /* no dirty pages... */
Sage Weil93afd442010-09-17 08:38:25 -07001573 inode->i_data.nrpages && /* have cached pages */
Sage Weilcbd03632010-02-09 13:41:18 -08001574 (file_wanted == 0 || /* no open files */
Sage Weil29625072010-05-27 10:40:43 -07001575 (revoking & (CEPH_CAP_FILE_CACHE|
1576 CEPH_CAP_FILE_LAZYIO))) && /* or revoking cache */
Sage Weila8599bd2009-10-06 11:31:12 -07001577 !tried_invalidate) {
Sage Weila8599bd2009-10-06 11:31:12 -07001578 dout("check_caps trying to invalidate on %p\n", inode);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001579 if (try_nonblocking_invalidate(inode) < 0) {
Sage Weil29625072010-05-27 10:40:43 -07001580 if (revoking & (CEPH_CAP_FILE_CACHE|
1581 CEPH_CAP_FILE_LAZYIO)) {
Sage Weil5ecad6f2010-02-17 10:43:37 -08001582 dout("check_caps queuing invalidate\n");
1583 queue_invalidate = 1;
1584 ci->i_rdcache_revoking = ci->i_rdcache_gen;
1585 } else {
1586 dout("check_caps failed to invalidate pages\n");
1587 /* we failed to invalidate pages. check these
1588 caps again later. */
1589 force_requeue = 1;
1590 __cap_set_timeouts(mdsc, ci);
1591 }
Sage Weila8599bd2009-10-06 11:31:12 -07001592 }
1593 tried_invalidate = 1;
1594 goto retry_locked;
1595 }
1596
1597 num = 0;
1598 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1599 cap = rb_entry(p, struct ceph_cap, ci_node);
1600 num++;
1601
1602 /* avoid looping forever */
1603 if (mds >= cap->mds ||
1604 ((flags & CHECK_CAPS_AUTHONLY) && cap != ci->i_auth_cap))
1605 continue;
1606
1607 /* NOTE: no side-effects allowed, until we take s_mutex */
1608
Yan, Zheng395c3122013-01-04 14:37:57 +08001609 cap_used = used;
1610 if (ci->i_auth_cap && cap != ci->i_auth_cap)
1611 cap_used &= ~ci->i_auth_cap->issued;
1612
Sage Weila8599bd2009-10-06 11:31:12 -07001613 revoking = cap->implemented & ~cap->issued;
Yan, Zheng395c3122013-01-04 14:37:57 +08001614 dout(" mds%d cap %p used %s issued %s implemented %s revoking %s\n",
Sage Weil088b3f52011-01-18 08:56:01 -08001615 cap->mds, cap, ceph_cap_string(cap->issued),
Yan, Zheng395c3122013-01-04 14:37:57 +08001616 ceph_cap_string(cap_used),
Sage Weil088b3f52011-01-18 08:56:01 -08001617 ceph_cap_string(cap->implemented),
1618 ceph_cap_string(revoking));
Sage Weila8599bd2009-10-06 11:31:12 -07001619
1620 if (cap == ci->i_auth_cap &&
1621 (cap->issued & CEPH_CAP_FILE_WR)) {
1622 /* request larger max_size from MDS? */
1623 if (ci->i_wanted_max_size > ci->i_max_size &&
1624 ci->i_wanted_max_size > ci->i_requested_max_size) {
1625 dout("requesting new max_size\n");
1626 goto ack;
1627 }
1628
1629 /* approaching file_max? */
1630 if ((inode->i_size << 1) >= ci->i_max_size &&
1631 (ci->i_reported_size << 1) < ci->i_max_size) {
1632 dout("i_size approaching max_size\n");
1633 goto ack;
1634 }
1635 }
1636 /* flush anything dirty? */
1637 if (cap == ci->i_auth_cap && (flags & CHECK_CAPS_FLUSH) &&
1638 ci->i_dirty_caps) {
1639 dout("flushing dirty caps\n");
1640 goto ack;
1641 }
1642
1643 /* completed revocation? going down and there are no caps? */
Yan, Zheng395c3122013-01-04 14:37:57 +08001644 if (revoking && (revoking & cap_used) == 0) {
Sage Weila8599bd2009-10-06 11:31:12 -07001645 dout("completed revocation of %s\n",
1646 ceph_cap_string(cap->implemented & ~cap->issued));
1647 goto ack;
1648 }
1649
1650 /* want more caps from mds? */
1651 if (want & ~(cap->mds_wanted | cap->issued))
1652 goto ack;
1653
1654 /* things we might delay */
1655 if ((cap->issued & ~retain) == 0 &&
1656 cap->mds_wanted == want)
1657 continue; /* nope, all good */
1658
1659 if (is_delayed)
1660 goto ack;
1661
1662 /* delay? */
1663 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1664 time_before(jiffies, ci->i_hold_caps_max)) {
1665 dout(" delaying issued %s -> %s, wanted %s -> %s\n",
1666 ceph_cap_string(cap->issued),
1667 ceph_cap_string(cap->issued & retain),
1668 ceph_cap_string(cap->mds_wanted),
1669 ceph_cap_string(want));
1670 delayed++;
1671 continue;
1672 }
1673
1674ack:
Sage Weile9964c12010-03-01 15:16:56 -08001675 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
1676 dout(" skipping %p I_NOFLUSH set\n", inode);
1677 continue;
1678 }
1679
Sage Weila8599bd2009-10-06 11:31:12 -07001680 if (session && session != cap->session) {
1681 dout("oops, wrong session %p mutex\n", session);
1682 mutex_unlock(&session->s_mutex);
1683 session = NULL;
1684 }
1685 if (!session) {
1686 session = cap->session;
1687 if (mutex_trylock(&session->s_mutex) == 0) {
1688 dout("inverting session/ino locks on %p\n",
1689 session);
Sage Weilbe655592011-11-30 09:47:09 -08001690 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001691 if (took_snap_rwsem) {
1692 up_read(&mdsc->snap_rwsem);
1693 took_snap_rwsem = 0;
1694 }
1695 mutex_lock(&session->s_mutex);
1696 goto retry;
1697 }
1698 }
1699 /* take snap_rwsem after session mutex */
1700 if (!took_snap_rwsem) {
1701 if (down_read_trylock(&mdsc->snap_rwsem) == 0) {
1702 dout("inverting snap/in locks on %p\n",
1703 inode);
Sage Weilbe655592011-11-30 09:47:09 -08001704 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001705 down_read(&mdsc->snap_rwsem);
1706 took_snap_rwsem = 1;
1707 goto retry;
1708 }
1709 took_snap_rwsem = 1;
1710 }
1711
Sage Weilcdc35f92009-10-14 14:24:19 -07001712 if (cap == ci->i_auth_cap && ci->i_dirty_caps)
1713 flushing = __mark_caps_flushing(inode, session);
Sage Weil24be0c42011-01-18 08:48:06 -08001714 else
1715 flushing = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001716
1717 mds = cap->mds; /* remember mds, so we don't repeat */
1718 sent++;
1719
Sage Weilbe655592011-11-30 09:47:09 -08001720 /* __send_cap drops i_ceph_lock */
Yan, Zheng395c3122013-01-04 14:37:57 +08001721 delayed += __send_cap(mdsc, cap, CEPH_CAP_OP_UPDATE, cap_used,
1722 want, retain, flushing, NULL);
Sage Weilbe655592011-11-30 09:47:09 -08001723 goto retry; /* retake i_ceph_lock and restart our cap scan. */
Sage Weila8599bd2009-10-06 11:31:12 -07001724 }
1725
1726 /*
1727 * Reschedule delayed caps release if we delayed anything,
1728 * otherwise cancel.
1729 */
1730 if (delayed && is_delayed)
1731 force_requeue = 1; /* __send_cap delayed release; requeue */
1732 if (!delayed && !is_delayed)
1733 __cap_delay_cancel(mdsc, ci);
1734 else if (!is_delayed || force_requeue)
1735 __cap_delay_requeue(mdsc, ci);
1736
Sage Weilbe655592011-11-30 09:47:09 -08001737 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001738
Sage Weilcbd03632010-02-09 13:41:18 -08001739 if (queue_invalidate)
Sage Weil3c6f6b72010-02-09 15:24:44 -08001740 ceph_queue_invalidate(inode);
Sage Weilcbd03632010-02-09 13:41:18 -08001741
Sage Weilcdc2ce02010-03-16 13:39:28 -07001742 if (session)
Sage Weila8599bd2009-10-06 11:31:12 -07001743 mutex_unlock(&session->s_mutex);
1744 if (took_snap_rwsem)
1745 up_read(&mdsc->snap_rwsem);
1746}
1747
1748/*
Sage Weila8599bd2009-10-06 11:31:12 -07001749 * Try to flush dirty caps back to the auth mds.
1750 */
Yan, Zheng4fe59782013-10-31 16:44:14 +08001751static int try_flush_caps(struct inode *inode, unsigned *flush_tid)
Sage Weila8599bd2009-10-06 11:31:12 -07001752{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001753 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001754 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07001755 int flushing = 0;
Yan, Zheng4fe59782013-10-31 16:44:14 +08001756 struct ceph_mds_session *session = NULL;
Sage Weila8599bd2009-10-06 11:31:12 -07001757
1758retry:
Sage Weilbe655592011-11-30 09:47:09 -08001759 spin_lock(&ci->i_ceph_lock);
Sage Weile9964c12010-03-01 15:16:56 -08001760 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
1761 dout("try_flush_caps skipping %p I_NOFLUSH set\n", inode);
1762 goto out;
1763 }
Sage Weila8599bd2009-10-06 11:31:12 -07001764 if (ci->i_dirty_caps && ci->i_auth_cap) {
1765 struct ceph_cap *cap = ci->i_auth_cap;
1766 int used = __ceph_caps_used(ci);
1767 int want = __ceph_caps_wanted(ci);
1768 int delayed;
1769
Yan, Zheng4fe59782013-10-31 16:44:14 +08001770 if (!session || session != cap->session) {
Sage Weilbe655592011-11-30 09:47:09 -08001771 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng4fe59782013-10-31 16:44:14 +08001772 if (session)
1773 mutex_unlock(&session->s_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07001774 session = cap->session;
1775 mutex_lock(&session->s_mutex);
1776 goto retry;
1777 }
Sage Weila8599bd2009-10-06 11:31:12 -07001778 if (cap->session->s_state < CEPH_MDS_SESSION_OPEN)
1779 goto out;
1780
Sage Weilcdc35f92009-10-14 14:24:19 -07001781 flushing = __mark_caps_flushing(inode, session);
Sage Weila8599bd2009-10-06 11:31:12 -07001782
Sage Weilbe655592011-11-30 09:47:09 -08001783 /* __send_cap drops i_ceph_lock */
Sage Weila8599bd2009-10-06 11:31:12 -07001784 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH, used, want,
1785 cap->issued | cap->implemented, flushing,
1786 flush_tid);
1787 if (!delayed)
1788 goto out_unlocked;
1789
Sage Weilbe655592011-11-30 09:47:09 -08001790 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001791 __cap_delay_requeue(mdsc, ci);
1792 }
1793out:
Sage Weilbe655592011-11-30 09:47:09 -08001794 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001795out_unlocked:
Yan, Zheng4fe59782013-10-31 16:44:14 +08001796 if (session)
Sage Weila8599bd2009-10-06 11:31:12 -07001797 mutex_unlock(&session->s_mutex);
1798 return flushing;
1799}
1800
1801/*
1802 * Return true if we've flushed caps through the given flush_tid.
1803 */
1804static int caps_are_flushed(struct inode *inode, unsigned tid)
1805{
1806 struct ceph_inode_info *ci = ceph_inode(inode);
Dan Carpentera5ee7512010-05-07 10:27:14 +02001807 int i, ret = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07001808
Sage Weilbe655592011-11-30 09:47:09 -08001809 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001810 for (i = 0; i < CEPH_CAP_BITS; i++)
1811 if ((ci->i_flushing_caps & (1 << i)) &&
1812 ci->i_cap_flush_tid[i] <= tid) {
1813 /* still flushing this bit */
1814 ret = 0;
1815 break;
1816 }
Sage Weilbe655592011-11-30 09:47:09 -08001817 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001818 return ret;
1819}
1820
1821/*
1822 * Wait on any unsafe replies for the given inode. First wait on the
1823 * newest request, and make that the upper bound. Then, if there are
1824 * more requests, keep waiting on the oldest as long as it is still older
1825 * than the original request.
1826 */
1827static void sync_write_wait(struct inode *inode)
1828{
1829 struct ceph_inode_info *ci = ceph_inode(inode);
1830 struct list_head *head = &ci->i_unsafe_writes;
1831 struct ceph_osd_request *req;
1832 u64 last_tid;
1833
1834 spin_lock(&ci->i_unsafe_lock);
1835 if (list_empty(head))
1836 goto out;
1837
1838 /* set upper bound as _last_ entry in chain */
1839 req = list_entry(head->prev, struct ceph_osd_request,
1840 r_unsafe_item);
1841 last_tid = req->r_tid;
1842
1843 do {
1844 ceph_osdc_get_request(req);
1845 spin_unlock(&ci->i_unsafe_lock);
1846 dout("sync_write_wait on tid %llu (until %llu)\n",
1847 req->r_tid, last_tid);
1848 wait_for_completion(&req->r_safe_completion);
1849 spin_lock(&ci->i_unsafe_lock);
1850 ceph_osdc_put_request(req);
1851
1852 /*
1853 * from here on look at first entry in chain, since we
1854 * only want to wait for anything older than last_tid
1855 */
1856 if (list_empty(head))
1857 break;
1858 req = list_entry(head->next, struct ceph_osd_request,
1859 r_unsafe_item);
1860 } while (req->r_tid < last_tid);
1861out:
1862 spin_unlock(&ci->i_unsafe_lock);
1863}
1864
Josef Bacik02c24a82011-07-16 20:44:56 -04001865int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync)
Sage Weila8599bd2009-10-06 11:31:12 -07001866{
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001867 struct inode *inode = file->f_mapping->host;
Sage Weila8599bd2009-10-06 11:31:12 -07001868 struct ceph_inode_info *ci = ceph_inode(inode);
1869 unsigned flush_tid;
1870 int ret;
1871 int dirty;
1872
1873 dout("fsync %p%s\n", inode, datasync ? " datasync" : "");
1874 sync_write_wait(inode);
1875
Josef Bacik02c24a82011-07-16 20:44:56 -04001876 ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
Sage Weila8599bd2009-10-06 11:31:12 -07001877 if (ret < 0)
1878 return ret;
Josef Bacik02c24a82011-07-16 20:44:56 -04001879 mutex_lock(&inode->i_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07001880
Yan, Zheng4fe59782013-10-31 16:44:14 +08001881 dirty = try_flush_caps(inode, &flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -07001882 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty));
1883
1884 /*
1885 * only wait on non-file metadata writeback (the mds
1886 * can recover size and mtime, so we don't need to
1887 * wait for that)
1888 */
1889 if (!datasync && (dirty & ~CEPH_CAP_ANY_FILE_WR)) {
1890 dout("fsync waiting for flush_tid %u\n", flush_tid);
1891 ret = wait_event_interruptible(ci->i_cap_wq,
1892 caps_are_flushed(inode, flush_tid));
1893 }
1894
1895 dout("fsync %p%s done\n", inode, datasync ? " datasync" : "");
Josef Bacik02c24a82011-07-16 20:44:56 -04001896 mutex_unlock(&inode->i_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07001897 return ret;
1898}
1899
1900/*
1901 * Flush any dirty caps back to the mds. If we aren't asked to wait,
1902 * queue inode for flush but don't do so immediately, because we can
1903 * get by with fewer MDS messages if we wait for data writeback to
1904 * complete first.
1905 */
Stephen Rothwellf1a3d572010-01-18 11:53:08 +11001906int ceph_write_inode(struct inode *inode, struct writeback_control *wbc)
Sage Weila8599bd2009-10-06 11:31:12 -07001907{
1908 struct ceph_inode_info *ci = ceph_inode(inode);
1909 unsigned flush_tid;
1910 int err = 0;
1911 int dirty;
Stephen Rothwellf1a3d572010-01-18 11:53:08 +11001912 int wait = wbc->sync_mode == WB_SYNC_ALL;
Sage Weila8599bd2009-10-06 11:31:12 -07001913
1914 dout("write_inode %p wait=%d\n", inode, wait);
1915 if (wait) {
Yan, Zheng4fe59782013-10-31 16:44:14 +08001916 dirty = try_flush_caps(inode, &flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -07001917 if (dirty)
1918 err = wait_event_interruptible(ci->i_cap_wq,
1919 caps_are_flushed(inode, flush_tid));
1920 } else {
Cheng Renquan640ef792010-03-26 17:40:33 +08001921 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001922 ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001923
Sage Weilbe655592011-11-30 09:47:09 -08001924 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001925 if (__ceph_caps_dirty(ci))
1926 __cap_delay_requeue_front(mdsc, ci);
Sage Weilbe655592011-11-30 09:47:09 -08001927 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001928 }
1929 return err;
1930}
1931
1932/*
1933 * After a recovering MDS goes active, we need to resend any caps
1934 * we were flushing.
1935 *
1936 * Caller holds session->s_mutex.
1937 */
1938static void kick_flushing_capsnaps(struct ceph_mds_client *mdsc,
1939 struct ceph_mds_session *session)
1940{
1941 struct ceph_cap_snap *capsnap;
1942
1943 dout("kick_flushing_capsnaps mds%d\n", session->s_mds);
1944 list_for_each_entry(capsnap, &session->s_cap_snaps_flushing,
1945 flushing_item) {
1946 struct ceph_inode_info *ci = capsnap->ci;
1947 struct inode *inode = &ci->vfs_inode;
1948 struct ceph_cap *cap;
1949
Sage Weilbe655592011-11-30 09:47:09 -08001950 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001951 cap = ci->i_auth_cap;
1952 if (cap && cap->session == session) {
1953 dout("kick_flushing_caps %p cap %p capsnap %p\n", inode,
1954 cap, capsnap);
Sage Weile8351242010-09-17 08:03:08 -07001955 __ceph_flush_snaps(ci, &session, 1);
Sage Weila8599bd2009-10-06 11:31:12 -07001956 } else {
1957 pr_err("%p auth cap %p not mds%d ???\n", inode,
1958 cap, session->s_mds);
Sage Weila8599bd2009-10-06 11:31:12 -07001959 }
Sage Weilbe655592011-11-30 09:47:09 -08001960 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001961 }
1962}
1963
1964void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
1965 struct ceph_mds_session *session)
1966{
1967 struct ceph_inode_info *ci;
1968
1969 kick_flushing_capsnaps(mdsc, session);
1970
1971 dout("kick_flushing_caps mds%d\n", session->s_mds);
1972 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
1973 struct inode *inode = &ci->vfs_inode;
1974 struct ceph_cap *cap;
1975 int delayed = 0;
1976
Sage Weilbe655592011-11-30 09:47:09 -08001977 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001978 cap = ci->i_auth_cap;
1979 if (cap && cap->session == session) {
1980 dout("kick_flushing_caps %p cap %p %s\n", inode,
1981 cap, ceph_cap_string(ci->i_flushing_caps));
1982 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
1983 __ceph_caps_used(ci),
1984 __ceph_caps_wanted(ci),
1985 cap->issued | cap->implemented,
1986 ci->i_flushing_caps, NULL);
1987 if (delayed) {
Sage Weilbe655592011-11-30 09:47:09 -08001988 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001989 __cap_delay_requeue(mdsc, ci);
Sage Weilbe655592011-11-30 09:47:09 -08001990 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001991 }
1992 } else {
1993 pr_err("%p auth cap %p not mds%d ???\n", inode,
1994 cap, session->s_mds);
Sage Weilbe655592011-11-30 09:47:09 -08001995 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001996 }
1997 }
1998}
1999
Sage Weil088b3f52011-01-18 08:56:01 -08002000static void kick_flushing_inode_caps(struct ceph_mds_client *mdsc,
2001 struct ceph_mds_session *session,
2002 struct inode *inode)
2003{
2004 struct ceph_inode_info *ci = ceph_inode(inode);
2005 struct ceph_cap *cap;
2006 int delayed = 0;
2007
Sage Weilbe655592011-11-30 09:47:09 -08002008 spin_lock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08002009 cap = ci->i_auth_cap;
2010 dout("kick_flushing_inode_caps %p flushing %s flush_seq %lld\n", inode,
2011 ceph_cap_string(ci->i_flushing_caps), ci->i_cap_flush_seq);
Yan, Zheng005c4692013-05-31 16:40:24 +08002012
Sage Weil088b3f52011-01-18 08:56:01 -08002013 __ceph_flush_snaps(ci, &session, 1);
Yan, Zheng005c4692013-05-31 16:40:24 +08002014
Sage Weil088b3f52011-01-18 08:56:01 -08002015 if (ci->i_flushing_caps) {
Yan, Zheng005c4692013-05-31 16:40:24 +08002016 spin_lock(&mdsc->cap_dirty_lock);
2017 list_move_tail(&ci->i_flushing_item,
2018 &cap->session->s_cap_flushing);
2019 spin_unlock(&mdsc->cap_dirty_lock);
2020
Sage Weil088b3f52011-01-18 08:56:01 -08002021 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
2022 __ceph_caps_used(ci),
2023 __ceph_caps_wanted(ci),
2024 cap->issued | cap->implemented,
2025 ci->i_flushing_caps, NULL);
2026 if (delayed) {
Sage Weilbe655592011-11-30 09:47:09 -08002027 spin_lock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08002028 __cap_delay_requeue(mdsc, ci);
Sage Weilbe655592011-11-30 09:47:09 -08002029 spin_unlock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08002030 }
2031 } else {
Sage Weilbe655592011-11-30 09:47:09 -08002032 spin_unlock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08002033 }
2034}
2035
Sage Weila8599bd2009-10-06 11:31:12 -07002036
2037/*
2038 * Take references to capabilities we hold, so that we don't release
2039 * them to the MDS prematurely.
2040 *
Sage Weilbe655592011-11-30 09:47:09 -08002041 * Protected by i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -07002042 */
2043static void __take_cap_refs(struct ceph_inode_info *ci, int got)
2044{
2045 if (got & CEPH_CAP_PIN)
2046 ci->i_pin_ref++;
2047 if (got & CEPH_CAP_FILE_RD)
2048 ci->i_rd_ref++;
2049 if (got & CEPH_CAP_FILE_CACHE)
2050 ci->i_rdcache_ref++;
2051 if (got & CEPH_CAP_FILE_WR)
2052 ci->i_wr_ref++;
2053 if (got & CEPH_CAP_FILE_BUFFER) {
Henry C Changd3d07202011-05-11 10:29:54 +00002054 if (ci->i_wb_ref == 0)
Sage Weil3772d262011-05-03 09:28:08 -07002055 ihold(&ci->vfs_inode);
Henry C Changd3d07202011-05-11 10:29:54 +00002056 ci->i_wb_ref++;
2057 dout("__take_cap_refs %p wb %d -> %d (?)\n",
2058 &ci->vfs_inode, ci->i_wb_ref-1, ci->i_wb_ref);
Sage Weila8599bd2009-10-06 11:31:12 -07002059 }
2060}
2061
2062/*
2063 * Try to grab cap references. Specify those refs we @want, and the
2064 * minimal set we @need. Also include the larger offset we are writing
2065 * to (when applicable), and check against max_size here as well.
2066 * Note that caller is responsible for ensuring max_size increases are
2067 * requested from the MDS.
2068 */
2069static int try_get_cap_refs(struct ceph_inode_info *ci, int need, int want,
2070 int *got, loff_t endoff, int *check_max, int *err)
2071{
2072 struct inode *inode = &ci->vfs_inode;
2073 int ret = 0;
2074 int have, implemented;
Sage Weil195d3ce2010-03-01 09:57:54 -08002075 int file_wanted;
Sage Weila8599bd2009-10-06 11:31:12 -07002076
2077 dout("get_cap_refs %p need %s want %s\n", inode,
2078 ceph_cap_string(need), ceph_cap_string(want));
Sage Weilbe655592011-11-30 09:47:09 -08002079 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002080
Sage Weil195d3ce2010-03-01 09:57:54 -08002081 /* make sure file is actually open */
2082 file_wanted = __ceph_caps_file_wanted(ci);
2083 if ((file_wanted & need) == 0) {
2084 dout("try_get_cap_refs need %s file_wanted %s, EBADF\n",
2085 ceph_cap_string(need), ceph_cap_string(file_wanted));
Sage Weila8599bd2009-10-06 11:31:12 -07002086 *err = -EBADF;
2087 ret = 1;
2088 goto out;
2089 }
2090
Yan, Zheng37505d52013-04-12 16:11:10 +08002091 /* finish pending truncate */
2092 while (ci->i_truncate_pending) {
2093 spin_unlock(&ci->i_ceph_lock);
Yan, Zhengb415bf42013-07-02 12:40:19 +08002094 __ceph_do_pending_vmtruncate(inode);
Yan, Zheng37505d52013-04-12 16:11:10 +08002095 spin_lock(&ci->i_ceph_lock);
2096 }
2097
Yan, Zheng3871cbb2013-08-05 14:10:29 +08002098 have = __ceph_caps_issued(ci, &implemented);
2099
2100 if (have & need & CEPH_CAP_FILE_WR) {
Sage Weila8599bd2009-10-06 11:31:12 -07002101 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2102 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2103 inode, endoff, ci->i_max_size);
Yan, Zheng3871cbb2013-08-05 14:10:29 +08002104 if (endoff > ci->i_requested_max_size) {
Sage Weila8599bd2009-10-06 11:31:12 -07002105 *check_max = 1;
2106 ret = 1;
2107 }
2108 goto out;
2109 }
2110 /*
2111 * If a sync write is in progress, we must wait, so that we
2112 * can get a final snapshot value for size+mtime.
2113 */
2114 if (__ceph_have_pending_cap_snap(ci)) {
2115 dout("get_cap_refs %p cap_snap_pending\n", inode);
2116 goto out;
2117 }
2118 }
Sage Weila8599bd2009-10-06 11:31:12 -07002119
Sage Weila8599bd2009-10-06 11:31:12 -07002120 if ((have & need) == need) {
2121 /*
2122 * Look at (implemented & ~have & not) so that we keep waiting
2123 * on transition from wanted -> needed caps. This is needed
2124 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2125 * going before a prior buffered writeback happens.
2126 */
2127 int not = want & ~(have & need);
2128 int revoking = implemented & ~have;
2129 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2130 inode, ceph_cap_string(have), ceph_cap_string(not),
2131 ceph_cap_string(revoking));
2132 if ((revoking & not) == 0) {
2133 *got = need | (have & want);
2134 __take_cap_refs(ci, *got);
2135 ret = 1;
2136 }
2137 } else {
2138 dout("get_cap_refs %p have %s needed %s\n", inode,
2139 ceph_cap_string(have), ceph_cap_string(need));
2140 }
2141out:
Sage Weilbe655592011-11-30 09:47:09 -08002142 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002143 dout("get_cap_refs %p ret %d got %s\n", inode,
2144 ret, ceph_cap_string(*got));
2145 return ret;
2146}
2147
2148/*
2149 * Check the offset we are writing up to against our current
2150 * max_size. If necessary, tell the MDS we want to write to
2151 * a larger offset.
2152 */
2153static void check_max_size(struct inode *inode, loff_t endoff)
2154{
2155 struct ceph_inode_info *ci = ceph_inode(inode);
2156 int check = 0;
2157
2158 /* do we need to explicitly request a larger max_size? */
Sage Weilbe655592011-11-30 09:47:09 -08002159 spin_lock(&ci->i_ceph_lock);
Yan, Zheng3871cbb2013-08-05 14:10:29 +08002160 if (endoff >= ci->i_max_size && endoff > ci->i_wanted_max_size) {
Sage Weila8599bd2009-10-06 11:31:12 -07002161 dout("write %p at large endoff %llu, req max_size\n",
2162 inode, endoff);
2163 ci->i_wanted_max_size = endoff;
Sage Weila8599bd2009-10-06 11:31:12 -07002164 }
Yan, Zheng3871cbb2013-08-05 14:10:29 +08002165 /* duplicate ceph_check_caps()'s logic */
2166 if (ci->i_auth_cap &&
2167 (ci->i_auth_cap->issued & CEPH_CAP_FILE_WR) &&
2168 ci->i_wanted_max_size > ci->i_max_size &&
2169 ci->i_wanted_max_size > ci->i_requested_max_size)
2170 check = 1;
Sage Weilbe655592011-11-30 09:47:09 -08002171 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002172 if (check)
2173 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2174}
2175
2176/*
2177 * Wait for caps, and take cap references. If we can't get a WR cap
2178 * due to a small max_size, make sure we check_max_size (and possibly
2179 * ask the mds) so we don't get hung up indefinitely.
2180 */
2181int ceph_get_caps(struct ceph_inode_info *ci, int need, int want, int *got,
2182 loff_t endoff)
2183{
2184 int check_max, ret, err;
2185
2186retry:
2187 if (endoff > 0)
2188 check_max_size(&ci->vfs_inode, endoff);
2189 check_max = 0;
2190 err = 0;
2191 ret = wait_event_interruptible(ci->i_cap_wq,
2192 try_get_cap_refs(ci, need, want,
2193 got, endoff,
2194 &check_max, &err));
2195 if (err)
2196 ret = err;
2197 if (check_max)
2198 goto retry;
2199 return ret;
2200}
2201
2202/*
2203 * Take cap refs. Caller must already know we hold at least one ref
2204 * on the caps in question or we don't know this is safe.
2205 */
2206void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
2207{
Sage Weilbe655592011-11-30 09:47:09 -08002208 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002209 __take_cap_refs(ci, caps);
Sage Weilbe655592011-11-30 09:47:09 -08002210 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002211}
2212
2213/*
2214 * Release cap refs.
2215 *
2216 * If we released the last ref on any given cap, call ceph_check_caps
2217 * to release (or schedule a release).
2218 *
2219 * If we are releasing a WR cap (from a sync write), finalize any affected
2220 * cap_snap, and wake up any waiters.
2221 */
2222void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
2223{
2224 struct inode *inode = &ci->vfs_inode;
2225 int last = 0, put = 0, flushsnaps = 0, wake = 0;
2226 struct ceph_cap_snap *capsnap;
2227
Sage Weilbe655592011-11-30 09:47:09 -08002228 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002229 if (had & CEPH_CAP_PIN)
2230 --ci->i_pin_ref;
2231 if (had & CEPH_CAP_FILE_RD)
2232 if (--ci->i_rd_ref == 0)
2233 last++;
2234 if (had & CEPH_CAP_FILE_CACHE)
2235 if (--ci->i_rdcache_ref == 0)
2236 last++;
2237 if (had & CEPH_CAP_FILE_BUFFER) {
Henry C Changd3d07202011-05-11 10:29:54 +00002238 if (--ci->i_wb_ref == 0) {
Sage Weila8599bd2009-10-06 11:31:12 -07002239 last++;
2240 put++;
2241 }
Henry C Changd3d07202011-05-11 10:29:54 +00002242 dout("put_cap_refs %p wb %d -> %d (?)\n",
2243 inode, ci->i_wb_ref+1, ci->i_wb_ref);
Sage Weila8599bd2009-10-06 11:31:12 -07002244 }
2245 if (had & CEPH_CAP_FILE_WR)
2246 if (--ci->i_wr_ref == 0) {
2247 last++;
2248 if (!list_empty(&ci->i_cap_snaps)) {
2249 capsnap = list_first_entry(&ci->i_cap_snaps,
2250 struct ceph_cap_snap,
2251 ci_item);
2252 if (capsnap->writing) {
2253 capsnap->writing = 0;
2254 flushsnaps =
2255 __ceph_finish_cap_snap(ci,
2256 capsnap);
2257 wake = 1;
2258 }
2259 }
2260 }
Sage Weilbe655592011-11-30 09:47:09 -08002261 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002262
Sage Weil819ccbf2010-04-01 09:33:46 -07002263 dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
2264 last ? " last" : "", put ? " put" : "");
Sage Weila8599bd2009-10-06 11:31:12 -07002265
2266 if (last && !flushsnaps)
2267 ceph_check_caps(ci, 0, NULL);
2268 else if (flushsnaps)
2269 ceph_flush_snaps(ci);
2270 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002271 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002272 if (put)
2273 iput(inode);
2274}
2275
2276/*
2277 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
2278 * context. Adjust per-snap dirty page accounting as appropriate.
2279 * Once all dirty data for a cap_snap is flushed, flush snapped file
2280 * metadata back to the MDS. If we dropped the last ref, call
2281 * ceph_check_caps.
2282 */
2283void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
2284 struct ceph_snap_context *snapc)
2285{
2286 struct inode *inode = &ci->vfs_inode;
2287 int last = 0;
Sage Weil819ccbf2010-04-01 09:33:46 -07002288 int complete_capsnap = 0;
2289 int drop_capsnap = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002290 int found = 0;
2291 struct ceph_cap_snap *capsnap = NULL;
2292
Sage Weilbe655592011-11-30 09:47:09 -08002293 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002294 ci->i_wrbuffer_ref -= nr;
2295 last = !ci->i_wrbuffer_ref;
2296
2297 if (ci->i_head_snapc == snapc) {
2298 ci->i_wrbuffer_ref_head -= nr;
Sage Weil7d8cb262010-08-24 08:44:16 -07002299 if (ci->i_wrbuffer_ref_head == 0 &&
2300 ci->i_dirty_caps == 0 && ci->i_flushing_caps == 0) {
2301 BUG_ON(!ci->i_head_snapc);
Sage Weila8599bd2009-10-06 11:31:12 -07002302 ceph_put_snap_context(ci->i_head_snapc);
2303 ci->i_head_snapc = NULL;
2304 }
2305 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
2306 inode,
2307 ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
2308 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
2309 last ? " LAST" : "");
2310 } else {
2311 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2312 if (capsnap->context == snapc) {
2313 found = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07002314 break;
2315 }
2316 }
2317 BUG_ON(!found);
Sage Weil819ccbf2010-04-01 09:33:46 -07002318 capsnap->dirty_pages -= nr;
2319 if (capsnap->dirty_pages == 0) {
2320 complete_capsnap = 1;
2321 if (capsnap->dirty == 0)
2322 /* cap writeback completed before we created
2323 * the cap_snap; no FLUSHSNAP is needed */
2324 drop_capsnap = 1;
2325 }
Sage Weila8599bd2009-10-06 11:31:12 -07002326 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
Sage Weil819ccbf2010-04-01 09:33:46 -07002327 " snap %lld %d/%d -> %d/%d %s%s%s\n",
Sage Weila8599bd2009-10-06 11:31:12 -07002328 inode, capsnap, capsnap->context->seq,
2329 ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
2330 ci->i_wrbuffer_ref, capsnap->dirty_pages,
2331 last ? " (wrbuffer last)" : "",
Sage Weil819ccbf2010-04-01 09:33:46 -07002332 complete_capsnap ? " (complete capsnap)" : "",
2333 drop_capsnap ? " (drop capsnap)" : "");
2334 if (drop_capsnap) {
2335 ceph_put_snap_context(capsnap->context);
2336 list_del(&capsnap->ci_item);
2337 list_del(&capsnap->flushing_item);
2338 ceph_put_cap_snap(capsnap);
2339 }
Sage Weila8599bd2009-10-06 11:31:12 -07002340 }
2341
Sage Weilbe655592011-11-30 09:47:09 -08002342 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002343
2344 if (last) {
2345 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2346 iput(inode);
Sage Weil819ccbf2010-04-01 09:33:46 -07002347 } else if (complete_capsnap) {
Sage Weila8599bd2009-10-06 11:31:12 -07002348 ceph_flush_snaps(ci);
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002349 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002350 }
Sage Weil819ccbf2010-04-01 09:33:46 -07002351 if (drop_capsnap)
2352 iput(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002353}
2354
2355/*
Yan, Zhengca20c992013-07-21 10:07:51 +08002356 * Invalidate unlinked inode's aliases, so we can drop the inode ASAP.
2357 */
2358static void invalidate_aliases(struct inode *inode)
2359{
2360 struct dentry *dn, *prev = NULL;
2361
2362 dout("invalidate_aliases inode %p\n", inode);
2363 d_prune_aliases(inode);
2364 /*
2365 * For non-directory inode, d_find_alias() only returns
J. Bruce Fieldsfc12c802014-01-16 17:42:53 -05002366 * hashed dentry. After calling d_invalidate(), the
2367 * dentry becomes unhashed.
Yan, Zhengca20c992013-07-21 10:07:51 +08002368 *
Yan, Zhenga8d436f2013-09-02 15:19:54 +08002369 * For directory inode, d_find_alias() can return
J. Bruce Fieldsfc12c802014-01-16 17:42:53 -05002370 * unhashed dentry. But directory inode should have
Yan, Zhengca20c992013-07-21 10:07:51 +08002371 * one alias at most.
2372 */
2373 while ((dn = d_find_alias(inode))) {
2374 if (dn == prev) {
2375 dput(dn);
2376 break;
2377 }
Yan, Zhenga8d436f2013-09-02 15:19:54 +08002378 d_invalidate(dn);
Yan, Zhengca20c992013-07-21 10:07:51 +08002379 if (prev)
2380 dput(prev);
2381 prev = dn;
2382 }
2383 if (prev)
2384 dput(prev);
2385}
2386
2387/*
Sage Weila8599bd2009-10-06 11:31:12 -07002388 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
2389 * actually be a revocation if it specifies a smaller cap set.)
2390 *
Sage Weilbe655592011-11-30 09:47:09 -08002391 * caller holds s_mutex and i_ceph_lock, we drop both.
Sage Weil15637c82010-03-16 13:42:00 -07002392 *
Sage Weila8599bd2009-10-06 11:31:12 -07002393 * return value:
2394 * 0 - ok
2395 * 1 - check_caps on auth cap only (writeback)
2396 * 2 - check_caps (ack revoke)
2397 */
Sage Weil15637c82010-03-16 13:42:00 -07002398static void handle_cap_grant(struct inode *inode, struct ceph_mds_caps *grant,
2399 struct ceph_mds_session *session,
2400 struct ceph_cap *cap,
2401 struct ceph_buffer *xattr_buf)
Sage Weilbe655592011-11-30 09:47:09 -08002402 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07002403{
2404 struct ceph_inode_info *ci = ceph_inode(inode);
2405 int mds = session->s_mds;
Sage Weil2f56f562010-10-27 20:59:49 -07002406 int seq = le32_to_cpu(grant->seq);
Sage Weila8599bd2009-10-06 11:31:12 -07002407 int newcaps = le32_to_cpu(grant->caps);
2408 int issued, implemented, used, wanted, dirty;
2409 u64 size = le64_to_cpu(grant->size);
2410 u64 max_size = le64_to_cpu(grant->max_size);
2411 struct timespec mtime, atime, ctime;
Sage Weil15637c82010-03-16 13:42:00 -07002412 int check_caps = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002413 int wake = 0;
2414 int writeback = 0;
Sage Weil3c6f6b72010-02-09 15:24:44 -08002415 int queue_invalidate = 0;
Yan, Zhengca20c992013-07-21 10:07:51 +08002416 int deleted_inode = 0;
Milosz Tanski99ccbd22013-08-21 17:29:54 -04002417 int queue_revalidate = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002418
Sage Weil2f56f562010-10-27 20:59:49 -07002419 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
2420 inode, cap, mds, seq, ceph_cap_string(newcaps));
Sage Weila8599bd2009-10-06 11:31:12 -07002421 dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
2422 inode->i_size);
2423
2424 /*
2425 * If CACHE is being revoked, and we have no dirty buffers,
2426 * try to invalidate (once). (If there are dirty buffers, we
2427 * will invalidate _after_ writeback.)
2428 */
Sage Weil3b454c42010-06-10 13:20:33 -07002429 if (((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
2430 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
Yehuda Sadehbcd2cbd2010-02-19 00:12:21 +00002431 !ci->i_wrbuffer_ref) {
Li Wange9075742013-08-15 22:00:25 -07002432 if (try_nonblocking_invalidate(inode)) {
Sage Weila8599bd2009-10-06 11:31:12 -07002433 /* there were locked pages.. invalidate later
2434 in a separate thread. */
2435 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
Sage Weil3c6f6b72010-02-09 15:24:44 -08002436 queue_invalidate = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07002437 ci->i_rdcache_revoking = ci->i_rdcache_gen;
2438 }
Sage Weila8599bd2009-10-06 11:31:12 -07002439 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -04002440
2441 ceph_fscache_invalidate(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002442 }
2443
2444 /* side effects now are allowed */
2445
2446 issued = __ceph_caps_issued(ci, &implemented);
2447 issued |= implemented | __ceph_caps_dirty(ci);
2448
Sage Weil685f9a5d2009-11-09 12:05:48 -08002449 cap->cap_gen = session->s_cap_gen;
Sage Weila8599bd2009-10-06 11:31:12 -07002450
2451 __check_cap_issue(ci, cap, newcaps);
2452
2453 if ((issued & CEPH_CAP_AUTH_EXCL) == 0) {
2454 inode->i_mode = le32_to_cpu(grant->mode);
Eric W. Biederman05cb11c2013-01-31 02:56:19 -08002455 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(grant->uid));
2456 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(grant->gid));
Sage Weila8599bd2009-10-06 11:31:12 -07002457 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
Eric W. Biedermanbd2bae62013-01-31 04:05:39 -08002458 from_kuid(&init_user_ns, inode->i_uid),
2459 from_kgid(&init_user_ns, inode->i_gid));
Sage Weila8599bd2009-10-06 11:31:12 -07002460 }
2461
Yan, Zhengca20c992013-07-21 10:07:51 +08002462 if ((issued & CEPH_CAP_LINK_EXCL) == 0) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02002463 set_nlink(inode, le32_to_cpu(grant->nlink));
Yan, Zhengca20c992013-07-21 10:07:51 +08002464 if (inode->i_nlink == 0 &&
2465 (newcaps & (CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL)))
2466 deleted_inode = 1;
2467 }
Sage Weila8599bd2009-10-06 11:31:12 -07002468
2469 if ((issued & CEPH_CAP_XATTR_EXCL) == 0 && grant->xattr_len) {
2470 int len = le32_to_cpu(grant->xattr_len);
2471 u64 version = le64_to_cpu(grant->xattr_version);
2472
2473 if (version > ci->i_xattrs.version) {
2474 dout(" got new xattrs v%llu on %p len %d\n",
2475 version, inode, len);
2476 if (ci->i_xattrs.blob)
2477 ceph_buffer_put(ci->i_xattrs.blob);
2478 ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
2479 ci->i_xattrs.version = version;
Guangliang Zhao7221fe42013-11-11 15:18:03 +08002480 ceph_forget_all_cached_acls(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002481 }
2482 }
2483
Milosz Tanski99ccbd22013-08-21 17:29:54 -04002484 /* Do we need to revalidate our fscache cookie. Don't bother on the
2485 * first cache cap as we already validate at cookie creation time. */
2486 if ((issued & CEPH_CAP_FILE_CACHE) && ci->i_rdcache_gen > 1)
2487 queue_revalidate = 1;
2488
Sage Weila8599bd2009-10-06 11:31:12 -07002489 /* size/ctime/mtime/atime? */
2490 ceph_fill_file_size(inode, issued,
2491 le32_to_cpu(grant->truncate_seq),
2492 le64_to_cpu(grant->truncate_size), size);
2493 ceph_decode_timespec(&mtime, &grant->mtime);
2494 ceph_decode_timespec(&atime, &grant->atime);
2495 ceph_decode_timespec(&ctime, &grant->ctime);
2496 ceph_fill_file_time(inode, issued,
2497 le32_to_cpu(grant->time_warp_seq), &ctime, &mtime,
2498 &atime);
2499
2500 /* max size increase? */
Yan, Zheng5e62ad32012-11-19 10:49:04 +08002501 if (ci->i_auth_cap == cap && max_size != ci->i_max_size) {
Sage Weila8599bd2009-10-06 11:31:12 -07002502 dout("max_size %lld -> %llu\n", ci->i_max_size, max_size);
2503 ci->i_max_size = max_size;
2504 if (max_size >= ci->i_wanted_max_size) {
2505 ci->i_wanted_max_size = 0; /* reset */
2506 ci->i_requested_max_size = 0;
2507 }
2508 wake = 1;
2509 }
2510
2511 /* check cap bits */
2512 wanted = __ceph_caps_wanted(ci);
2513 used = __ceph_caps_used(ci);
2514 dirty = __ceph_caps_dirty(ci);
2515 dout(" my wanted = %s, used = %s, dirty %s\n",
2516 ceph_cap_string(wanted),
2517 ceph_cap_string(used),
2518 ceph_cap_string(dirty));
2519 if (wanted != le32_to_cpu(grant->wanted)) {
2520 dout("mds wanted %s -> %s\n",
2521 ceph_cap_string(le32_to_cpu(grant->wanted)),
2522 ceph_cap_string(wanted));
Yan, Zheng390306c2013-01-04 15:30:10 +08002523 /* imported cap may not have correct mds_wanted */
2524 if (le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT)
2525 check_caps = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07002526 }
2527
2528 cap->seq = seq;
2529
2530 /* file layout may have changed */
2531 ci->i_layout = grant->layout;
2532
2533 /* revocation, grant, or no-op? */
2534 if (cap->issued & ~newcaps) {
Sage Weil3b454c42010-06-10 13:20:33 -07002535 int revoking = cap->issued & ~newcaps;
2536
2537 dout("revocation: %s -> %s (revoking %s)\n",
2538 ceph_cap_string(cap->issued),
2539 ceph_cap_string(newcaps),
2540 ceph_cap_string(revoking));
Sage Weil0eb6cd42010-08-05 13:53:18 -07002541 if (revoking & used & CEPH_CAP_FILE_BUFFER)
Sage Weil3b454c42010-06-10 13:20:33 -07002542 writeback = 1; /* initiate writeback; will delay ack */
2543 else if (revoking == CEPH_CAP_FILE_CACHE &&
2544 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
2545 queue_invalidate)
2546 ; /* do nothing yet, invalidation will be queued */
2547 else if (cap == ci->i_auth_cap)
2548 check_caps = 1; /* check auth cap only */
2549 else
2550 check_caps = 2; /* check all caps */
Sage Weila8599bd2009-10-06 11:31:12 -07002551 cap->issued = newcaps;
Sage Weil978097c2010-03-08 15:27:53 -08002552 cap->implemented |= newcaps;
Sage Weila8599bd2009-10-06 11:31:12 -07002553 } else if (cap->issued == newcaps) {
2554 dout("caps unchanged: %s -> %s\n",
2555 ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
2556 } else {
2557 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
2558 ceph_cap_string(newcaps));
Yan, Zheng6ee6b9532013-07-02 12:40:21 +08002559 /* non-auth MDS is revoking the newly grant caps ? */
2560 if (cap == ci->i_auth_cap &&
2561 __ceph_caps_revoking_other(ci, cap, newcaps))
2562 check_caps = 2;
2563
Sage Weila8599bd2009-10-06 11:31:12 -07002564 cap->issued = newcaps;
2565 cap->implemented |= newcaps; /* add bits only, to
2566 * avoid stepping on a
2567 * pending revocation */
2568 wake = 1;
2569 }
Sage Weil978097c2010-03-08 15:27:53 -08002570 BUG_ON(cap->issued & ~cap->implemented);
Sage Weila8599bd2009-10-06 11:31:12 -07002571
Sage Weilbe655592011-11-30 09:47:09 -08002572 spin_unlock(&ci->i_ceph_lock);
Milosz Tanski99ccbd22013-08-21 17:29:54 -04002573
Sage Weil3c6f6b72010-02-09 15:24:44 -08002574 if (writeback)
Sage Weila8599bd2009-10-06 11:31:12 -07002575 /*
2576 * queue inode for writeback: we can't actually call
2577 * filemap_write_and_wait, etc. from message handler
2578 * context.
2579 */
Sage Weil3c6f6b72010-02-09 15:24:44 -08002580 ceph_queue_writeback(inode);
2581 if (queue_invalidate)
2582 ceph_queue_invalidate(inode);
Yan, Zhengca20c992013-07-21 10:07:51 +08002583 if (deleted_inode)
2584 invalidate_aliases(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -04002585 if (queue_revalidate)
2586 ceph_queue_revalidate(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002587 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002588 wake_up_all(&ci->i_cap_wq);
Sage Weil15637c82010-03-16 13:42:00 -07002589
2590 if (check_caps == 1)
2591 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_AUTHONLY,
2592 session);
2593 else if (check_caps == 2)
2594 ceph_check_caps(ci, CHECK_CAPS_NODELAY, session);
2595 else
2596 mutex_unlock(&session->s_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07002597}
2598
2599/*
2600 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
2601 * MDS has been safely committed.
2602 */
Sage Weil6df058c2009-12-22 11:24:33 -08002603static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
Sage Weila8599bd2009-10-06 11:31:12 -07002604 struct ceph_mds_caps *m,
2605 struct ceph_mds_session *session,
2606 struct ceph_cap *cap)
Sage Weilbe655592011-11-30 09:47:09 -08002607 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07002608{
2609 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002610 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07002611 unsigned seq = le32_to_cpu(m->seq);
2612 int dirty = le32_to_cpu(m->dirty);
2613 int cleaned = 0;
Sage Weilafcdaea2009-10-14 14:27:38 -07002614 int drop = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002615 int i;
2616
2617 for (i = 0; i < CEPH_CAP_BITS; i++)
2618 if ((dirty & (1 << i)) &&
2619 flush_tid == ci->i_cap_flush_tid[i])
2620 cleaned |= 1 << i;
2621
2622 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
2623 " flushing %s -> %s\n",
2624 inode, session->s_mds, seq, ceph_cap_string(dirty),
2625 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
2626 ceph_cap_string(ci->i_flushing_caps & ~cleaned));
2627
2628 if (ci->i_flushing_caps == (ci->i_flushing_caps & ~cleaned))
2629 goto out;
2630
Sage Weila8599bd2009-10-06 11:31:12 -07002631 ci->i_flushing_caps &= ~cleaned;
Sage Weila8599bd2009-10-06 11:31:12 -07002632
2633 spin_lock(&mdsc->cap_dirty_lock);
2634 if (ci->i_flushing_caps == 0) {
2635 list_del_init(&ci->i_flushing_item);
2636 if (!list_empty(&session->s_cap_flushing))
2637 dout(" mds%d still flushing cap on %p\n",
2638 session->s_mds,
2639 &list_entry(session->s_cap_flushing.next,
2640 struct ceph_inode_info,
2641 i_flushing_item)->vfs_inode);
2642 mdsc->num_cap_flushing--;
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002643 wake_up_all(&mdsc->cap_flushing_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002644 dout(" inode %p now !flushing\n", inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07002645
2646 if (ci->i_dirty_caps == 0) {
2647 dout(" inode %p now clean\n", inode);
2648 BUG_ON(!list_empty(&ci->i_dirty_item));
2649 drop = 1;
Sage Weil7d8cb262010-08-24 08:44:16 -07002650 if (ci->i_wrbuffer_ref_head == 0) {
2651 BUG_ON(!ci->i_head_snapc);
2652 ceph_put_snap_context(ci->i_head_snapc);
2653 ci->i_head_snapc = NULL;
2654 }
Sage Weil76e3b392009-10-15 18:13:53 -07002655 } else {
2656 BUG_ON(list_empty(&ci->i_dirty_item));
Sage Weilafcdaea2009-10-14 14:27:38 -07002657 }
Sage Weila8599bd2009-10-06 11:31:12 -07002658 }
2659 spin_unlock(&mdsc->cap_dirty_lock);
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002660 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002661
2662out:
Sage Weilbe655592011-11-30 09:47:09 -08002663 spin_unlock(&ci->i_ceph_lock);
Sage Weilafcdaea2009-10-14 14:27:38 -07002664 if (drop)
Sage Weila8599bd2009-10-06 11:31:12 -07002665 iput(inode);
2666}
2667
2668/*
2669 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
2670 * throw away our cap_snap.
2671 *
2672 * Caller hold s_mutex.
2673 */
Sage Weil6df058c2009-12-22 11:24:33 -08002674static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
Sage Weila8599bd2009-10-06 11:31:12 -07002675 struct ceph_mds_caps *m,
2676 struct ceph_mds_session *session)
2677{
2678 struct ceph_inode_info *ci = ceph_inode(inode);
2679 u64 follows = le64_to_cpu(m->snap_follows);
Sage Weila8599bd2009-10-06 11:31:12 -07002680 struct ceph_cap_snap *capsnap;
2681 int drop = 0;
2682
2683 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
2684 inode, ci, session->s_mds, follows);
2685
Sage Weilbe655592011-11-30 09:47:09 -08002686 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002687 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2688 if (capsnap->follows == follows) {
2689 if (capsnap->flush_tid != flush_tid) {
2690 dout(" cap_snap %p follows %lld tid %lld !="
2691 " %lld\n", capsnap, follows,
2692 flush_tid, capsnap->flush_tid);
2693 break;
2694 }
2695 WARN_ON(capsnap->dirty_pages || capsnap->writing);
Sage Weil819ccbf2010-04-01 09:33:46 -07002696 dout(" removing %p cap_snap %p follows %lld\n",
2697 inode, capsnap, follows);
Sage Weila8599bd2009-10-06 11:31:12 -07002698 ceph_put_snap_context(capsnap->context);
2699 list_del(&capsnap->ci_item);
2700 list_del(&capsnap->flushing_item);
2701 ceph_put_cap_snap(capsnap);
2702 drop = 1;
2703 break;
2704 } else {
2705 dout(" skipping cap_snap %p follows %lld\n",
2706 capsnap, capsnap->follows);
2707 }
2708 }
Sage Weilbe655592011-11-30 09:47:09 -08002709 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002710 if (drop)
2711 iput(inode);
2712}
2713
2714/*
2715 * Handle TRUNC from MDS, indicating file truncation.
2716 *
2717 * caller hold s_mutex.
2718 */
2719static void handle_cap_trunc(struct inode *inode,
2720 struct ceph_mds_caps *trunc,
2721 struct ceph_mds_session *session)
Sage Weilbe655592011-11-30 09:47:09 -08002722 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07002723{
2724 struct ceph_inode_info *ci = ceph_inode(inode);
2725 int mds = session->s_mds;
2726 int seq = le32_to_cpu(trunc->seq);
2727 u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
2728 u64 truncate_size = le64_to_cpu(trunc->truncate_size);
2729 u64 size = le64_to_cpu(trunc->size);
2730 int implemented = 0;
2731 int dirty = __ceph_caps_dirty(ci);
2732 int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
2733 int queue_trunc = 0;
2734
2735 issued |= implemented | dirty;
2736
2737 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
2738 inode, mds, seq, truncate_size, truncate_seq);
2739 queue_trunc = ceph_fill_file_size(inode, issued,
2740 truncate_seq, truncate_size, size);
Sage Weilbe655592011-11-30 09:47:09 -08002741 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002742
Milosz Tanski99ccbd22013-08-21 17:29:54 -04002743 if (queue_trunc) {
Sage Weil3c6f6b72010-02-09 15:24:44 -08002744 ceph_queue_vmtruncate(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -04002745 ceph_fscache_invalidate(inode);
2746 }
Sage Weila8599bd2009-10-06 11:31:12 -07002747}
2748
2749/*
2750 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
2751 * different one. If we are the most recent migration we've seen (as
2752 * indicated by mseq), make note of the migrating cap bits for the
2753 * duration (until we see the corresponding IMPORT).
2754 *
2755 * caller holds s_mutex
2756 */
2757static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
Sage Weil154f42c2010-06-21 13:45:04 -07002758 struct ceph_mds_session *session,
2759 int *open_target_sessions)
Sage Weila8599bd2009-10-06 11:31:12 -07002760{
Sage Weildb354052011-05-24 11:46:31 -07002761 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07002762 struct ceph_inode_info *ci = ceph_inode(inode);
2763 int mds = session->s_mds;
2764 unsigned mseq = le32_to_cpu(ex->migrate_seq);
2765 struct ceph_cap *cap = NULL, *t;
2766 struct rb_node *p;
2767 int remember = 1;
2768
2769 dout("handle_cap_export inode %p ci %p mds%d mseq %d\n",
2770 inode, ci, mds, mseq);
2771
Sage Weilbe655592011-11-30 09:47:09 -08002772 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002773
2774 /* make sure we haven't seen a higher mseq */
2775 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
2776 t = rb_entry(p, struct ceph_cap, ci_node);
2777 if (ceph_seq_cmp(t->mseq, mseq) > 0) {
2778 dout(" higher mseq on cap from mds%d\n",
2779 t->session->s_mds);
2780 remember = 0;
2781 }
2782 if (t->session->s_mds == mds)
2783 cap = t;
2784 }
2785
2786 if (cap) {
2787 if (remember) {
2788 /* make note */
2789 ci->i_cap_exporting_mds = mds;
2790 ci->i_cap_exporting_mseq = mseq;
2791 ci->i_cap_exporting_issued = cap->issued;
Sage Weil154f42c2010-06-21 13:45:04 -07002792
2793 /*
2794 * make sure we have open sessions with all possible
2795 * export targets, so that we get the matching IMPORT
2796 */
2797 *open_target_sessions = 1;
Sage Weildb354052011-05-24 11:46:31 -07002798
2799 /*
2800 * we can't flush dirty caps that we've seen the
2801 * EXPORT but no IMPORT for
2802 */
2803 spin_lock(&mdsc->cap_dirty_lock);
2804 if (!list_empty(&ci->i_dirty_item)) {
2805 dout(" moving %p to cap_dirty_migrating\n",
2806 inode);
2807 list_move(&ci->i_dirty_item,
2808 &mdsc->cap_dirty_migrating);
2809 }
2810 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002811 }
Yan, Zhenga096b092013-09-22 10:15:58 +08002812 __ceph_remove_cap(cap, false);
Sage Weila8599bd2009-10-06 11:31:12 -07002813 }
Sage Weil4ea00432010-03-16 10:36:40 -07002814 /* else, we already released it */
Sage Weila8599bd2009-10-06 11:31:12 -07002815
Sage Weilbe655592011-11-30 09:47:09 -08002816 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002817}
2818
2819/*
2820 * Handle cap IMPORT. If there are temp bits from an older EXPORT,
2821 * clean them up.
2822 *
2823 * caller holds s_mutex.
2824 */
2825static void handle_cap_import(struct ceph_mds_client *mdsc,
2826 struct inode *inode, struct ceph_mds_caps *im,
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002827 struct ceph_mds_cap_peer *ph,
Sage Weila8599bd2009-10-06 11:31:12 -07002828 struct ceph_mds_session *session,
2829 void *snaptrace, int snaptrace_len)
2830{
2831 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002832 struct ceph_cap *cap;
Sage Weila8599bd2009-10-06 11:31:12 -07002833 int mds = session->s_mds;
2834 unsigned issued = le32_to_cpu(im->caps);
2835 unsigned wanted = le32_to_cpu(im->wanted);
2836 unsigned seq = le32_to_cpu(im->seq);
2837 unsigned mseq = le32_to_cpu(im->migrate_seq);
2838 u64 realmino = le64_to_cpu(im->realm);
2839 u64 cap_id = le64_to_cpu(im->cap_id);
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002840 u64 p_cap_id;
2841 int peer;
Sage Weila8599bd2009-10-06 11:31:12 -07002842
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002843 if (ph) {
2844 p_cap_id = le64_to_cpu(ph->cap_id);
2845 peer = le32_to_cpu(ph->mds);
Sage Weila8599bd2009-10-06 11:31:12 -07002846 } else {
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002847 p_cap_id = 0;
2848 peer = -1;
Sage Weila8599bd2009-10-06 11:31:12 -07002849 }
2850
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002851 dout("handle_cap_import inode %p ci %p mds%d mseq %d peer %d\n",
2852 inode, ci, mds, mseq, peer);
2853
2854 spin_lock(&ci->i_ceph_lock);
2855 cap = peer >= 0 ? __get_cap_for_mds(ci, peer) : NULL;
2856 if (cap && cap->cap_id == p_cap_id) {
2857 dout(" remove export cap %p mds%d flags %d\n",
2858 cap, peer, ph->flags);
2859 if ((ph->flags & CEPH_CAP_FLAG_AUTH) &&
2860 (cap->seq != le32_to_cpu(ph->seq) ||
2861 cap->mseq != le32_to_cpu(ph->mseq))) {
2862 pr_err("handle_cap_import: mismatched seq/mseq: "
2863 "ino (%llx.%llx) mds%d seq %d mseq %d "
2864 "importer mds%d has peer seq %d mseq %d\n",
2865 ceph_vinop(inode), peer, cap->seq,
2866 cap->mseq, mds, le32_to_cpu(ph->seq),
2867 le32_to_cpu(ph->mseq));
2868 }
2869 ci->i_cap_exporting_issued = cap->issued;
2870 __ceph_remove_cap(cap, (ph->flags & CEPH_CAP_FLAG_RELEASE));
2871 }
2872
2873 /* make sure we re-request max_size, if necessary */
2874 ci->i_wanted_max_size = 0;
2875 ci->i_requested_max_size = 0;
2876 spin_unlock(&ci->i_ceph_lock);
2877
Sage Weila8599bd2009-10-06 11:31:12 -07002878 down_write(&mdsc->snap_rwsem);
2879 ceph_update_snap_trace(mdsc, snaptrace, snaptrace+snaptrace_len,
2880 false);
2881 downgrade_write(&mdsc->snap_rwsem);
2882 ceph_add_cap(inode, session, cap_id, -1,
2883 issued, wanted, seq, mseq, realmino, CEPH_CAP_FLAG_AUTH,
2884 NULL /* no caps context */);
Sage Weil088b3f52011-01-18 08:56:01 -08002885 kick_flushing_inode_caps(mdsc, session, inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002886 up_read(&mdsc->snap_rwsem);
Sage Weilfeb4cc92010-11-07 09:39:00 -08002887
Sage Weila8599bd2009-10-06 11:31:12 -07002888}
2889
2890/*
2891 * Handle a caps message from the MDS.
2892 *
2893 * Identify the appropriate session, inode, and call the right handler
2894 * based on the cap op.
2895 */
2896void ceph_handle_caps(struct ceph_mds_session *session,
2897 struct ceph_msg *msg)
2898{
2899 struct ceph_mds_client *mdsc = session->s_mdsc;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002900 struct super_block *sb = mdsc->fsc->sb;
Sage Weila8599bd2009-10-06 11:31:12 -07002901 struct inode *inode;
Sage Weilbe655592011-11-30 09:47:09 -08002902 struct ceph_inode_info *ci;
Sage Weila8599bd2009-10-06 11:31:12 -07002903 struct ceph_cap *cap;
2904 struct ceph_mds_caps *h;
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002905 struct ceph_mds_cap_peer *peer = NULL;
Sage Weil2600d2d2010-02-22 15:12:16 -08002906 int mds = session->s_mds;
Sage Weila8599bd2009-10-06 11:31:12 -07002907 int op;
Sage Weil3d7ded42010-06-09 16:47:10 -07002908 u32 seq, mseq;
Sage Weila8599bd2009-10-06 11:31:12 -07002909 struct ceph_vino vino;
2910 u64 cap_id;
2911 u64 size, max_size;
Sage Weil6df058c2009-12-22 11:24:33 -08002912 u64 tid;
Sage Weil70edb552010-03-01 13:20:50 -08002913 void *snaptrace;
Sage Weilce1fbc82010-08-02 15:09:39 -07002914 size_t snaptrace_len;
2915 void *flock;
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002916 void *end;
Sage Weilce1fbc82010-08-02 15:09:39 -07002917 u32 flock_len;
Sage Weil154f42c2010-06-21 13:45:04 -07002918 int open_target_sessions = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002919
2920 dout("handle_caps from mds%d\n", mds);
2921
2922 /* decode */
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002923 end = msg->front.iov_base + msg->front.iov_len;
Sage Weil6df058c2009-12-22 11:24:33 -08002924 tid = le64_to_cpu(msg->hdr.tid);
Sage Weila8599bd2009-10-06 11:31:12 -07002925 if (msg->front.iov_len < sizeof(*h))
2926 goto bad;
2927 h = msg->front.iov_base;
2928 op = le32_to_cpu(h->op);
2929 vino.ino = le64_to_cpu(h->ino);
2930 vino.snap = CEPH_NOSNAP;
2931 cap_id = le64_to_cpu(h->cap_id);
2932 seq = le32_to_cpu(h->seq);
Sage Weil3d7ded42010-06-09 16:47:10 -07002933 mseq = le32_to_cpu(h->migrate_seq);
Sage Weila8599bd2009-10-06 11:31:12 -07002934 size = le64_to_cpu(h->size);
2935 max_size = le64_to_cpu(h->max_size);
2936
Sage Weilce1fbc82010-08-02 15:09:39 -07002937 snaptrace = h + 1;
2938 snaptrace_len = le32_to_cpu(h->snap_trace_len);
2939
2940 if (le16_to_cpu(msg->hdr.version) >= 2) {
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002941 void *p = snaptrace + snaptrace_len;
Sage Weilce1fbc82010-08-02 15:09:39 -07002942 ceph_decode_32_safe(&p, end, flock_len, bad);
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002943 if (p + flock_len > end)
2944 goto bad;
Sage Weilce1fbc82010-08-02 15:09:39 -07002945 flock = p;
2946 } else {
2947 flock = NULL;
2948 flock_len = 0;
2949 }
2950
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002951 if (le16_to_cpu(msg->hdr.version) >= 3) {
2952 if (op == CEPH_CAP_OP_IMPORT) {
2953 void *p = flock + flock_len;
2954 if (p + sizeof(*peer) > end)
2955 goto bad;
2956 peer = p;
2957 }
2958 }
2959
Sage Weila8599bd2009-10-06 11:31:12 -07002960 mutex_lock(&session->s_mutex);
2961 session->s_seq++;
2962 dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
2963 (unsigned)seq);
2964
Yan, Zheng66f58692013-01-04 14:45:18 +08002965 if (op == CEPH_CAP_OP_IMPORT)
2966 ceph_add_cap_releases(mdsc, session);
2967
Sage Weila8599bd2009-10-06 11:31:12 -07002968 /* lookup ino */
2969 inode = ceph_find_inode(sb, vino);
Sage Weilbe655592011-11-30 09:47:09 -08002970 ci = ceph_inode(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002971 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
2972 vino.snap, inode);
2973 if (!inode) {
2974 dout(" i don't have ino %llx\n", vino.ino);
Sage Weil3d7ded42010-06-09 16:47:10 -07002975
Yan, Zhenga096b092013-09-22 10:15:58 +08002976 if (op == CEPH_CAP_OP_IMPORT) {
2977 spin_lock(&session->s_cap_lock);
Sage Weil3d7ded42010-06-09 16:47:10 -07002978 __queue_cap_release(session, vino.ino, cap_id,
2979 mseq, seq);
Yan, Zhenga096b092013-09-22 10:15:58 +08002980 spin_unlock(&session->s_cap_lock);
2981 }
Greg Farnum21b559d2010-10-06 15:46:30 -07002982 goto flush_cap_releases;
Sage Weila8599bd2009-10-06 11:31:12 -07002983 }
2984
2985 /* these will work even if we don't have a cap yet */
2986 switch (op) {
2987 case CEPH_CAP_OP_FLUSHSNAP_ACK:
Sage Weil6df058c2009-12-22 11:24:33 -08002988 handle_cap_flushsnap_ack(inode, tid, h, session);
Sage Weila8599bd2009-10-06 11:31:12 -07002989 goto done;
2990
2991 case CEPH_CAP_OP_EXPORT:
Sage Weil154f42c2010-06-21 13:45:04 -07002992 handle_cap_export(inode, h, session, &open_target_sessions);
Sage Weila8599bd2009-10-06 11:31:12 -07002993 goto done;
2994
2995 case CEPH_CAP_OP_IMPORT:
Yan, Zheng4ee6a912013-11-24 14:43:46 +08002996 handle_cap_import(mdsc, inode, h, peer, session,
Sage Weilce1fbc82010-08-02 15:09:39 -07002997 snaptrace, snaptrace_len);
Sage Weila8599bd2009-10-06 11:31:12 -07002998 }
2999
3000 /* the rest require a cap */
Sage Weilbe655592011-11-30 09:47:09 -08003001 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003002 cap = __get_cap_for_mds(ceph_inode(inode), mds);
3003 if (!cap) {
Sage Weil9dbd4122010-06-10 13:21:20 -07003004 dout(" no cap on %p ino %llx.%llx from mds%d\n",
Sage Weila8599bd2009-10-06 11:31:12 -07003005 inode, ceph_ino(inode), ceph_snap(inode), mds);
Sage Weilbe655592011-11-30 09:47:09 -08003006 spin_unlock(&ci->i_ceph_lock);
Greg Farnum21b559d2010-10-06 15:46:30 -07003007 goto flush_cap_releases;
Sage Weila8599bd2009-10-06 11:31:12 -07003008 }
3009
Sage Weilbe655592011-11-30 09:47:09 -08003010 /* note that each of these drops i_ceph_lock for us */
Sage Weila8599bd2009-10-06 11:31:12 -07003011 switch (op) {
3012 case CEPH_CAP_OP_REVOKE:
3013 case CEPH_CAP_OP_GRANT:
Yan, Zheng0e5e1772012-11-19 10:49:09 +08003014 case CEPH_CAP_OP_IMPORT:
Sage Weil15637c82010-03-16 13:42:00 -07003015 handle_cap_grant(inode, h, session, cap, msg->middle);
3016 goto done_unlocked;
Sage Weila8599bd2009-10-06 11:31:12 -07003017
3018 case CEPH_CAP_OP_FLUSH_ACK:
Sage Weil6df058c2009-12-22 11:24:33 -08003019 handle_cap_flush_ack(inode, tid, h, session, cap);
Sage Weila8599bd2009-10-06 11:31:12 -07003020 break;
3021
3022 case CEPH_CAP_OP_TRUNC:
3023 handle_cap_trunc(inode, h, session);
3024 break;
3025
3026 default:
Sage Weilbe655592011-11-30 09:47:09 -08003027 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003028 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
3029 ceph_cap_op_name(op));
3030 }
3031
Greg Farnum21b559d2010-10-06 15:46:30 -07003032 goto done;
3033
3034flush_cap_releases:
3035 /*
3036 * send any full release message to try to move things
3037 * along for the mds (who clearly thinks we still have this
3038 * cap).
3039 */
3040 ceph_add_cap_releases(mdsc, session);
3041 ceph_send_cap_releases(mdsc, session);
3042
Sage Weila8599bd2009-10-06 11:31:12 -07003043done:
Sage Weil15637c82010-03-16 13:42:00 -07003044 mutex_unlock(&session->s_mutex);
3045done_unlocked:
Sage Weila8599bd2009-10-06 11:31:12 -07003046 if (inode)
3047 iput(inode);
Sage Weil154f42c2010-06-21 13:45:04 -07003048 if (open_target_sessions)
3049 ceph_mdsc_open_export_target_sessions(mdsc, session);
Sage Weila8599bd2009-10-06 11:31:12 -07003050 return;
3051
3052bad:
3053 pr_err("ceph_handle_caps: corrupt message\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -08003054 ceph_msg_dump(msg);
Sage Weila8599bd2009-10-06 11:31:12 -07003055 return;
3056}
3057
3058/*
3059 * Delayed work handler to process end of delayed cap release LRU list.
3060 */
Sage Weilafcdaea2009-10-14 14:27:38 -07003061void ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
Sage Weila8599bd2009-10-06 11:31:12 -07003062{
3063 struct ceph_inode_info *ci;
3064 int flags = CHECK_CAPS_NODELAY;
3065
Sage Weila8599bd2009-10-06 11:31:12 -07003066 dout("check_delayed_caps\n");
3067 while (1) {
3068 spin_lock(&mdsc->cap_delay_lock);
3069 if (list_empty(&mdsc->cap_delay_list))
3070 break;
3071 ci = list_first_entry(&mdsc->cap_delay_list,
3072 struct ceph_inode_info,
3073 i_cap_delay_list);
3074 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
3075 time_before(jiffies, ci->i_hold_caps_max))
3076 break;
3077 list_del_init(&ci->i_cap_delay_list);
3078 spin_unlock(&mdsc->cap_delay_lock);
3079 dout("check_delayed_caps on %p\n", &ci->vfs_inode);
3080 ceph_check_caps(ci, flags, NULL);
3081 }
3082 spin_unlock(&mdsc->cap_delay_lock);
3083}
3084
3085/*
Sage Weilafcdaea2009-10-14 14:27:38 -07003086 * Flush all dirty caps to the mds
3087 */
3088void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
3089{
Sage Weildb354052011-05-24 11:46:31 -07003090 struct ceph_inode_info *ci;
3091 struct inode *inode;
Sage Weilafcdaea2009-10-14 14:27:38 -07003092
3093 dout("flush_dirty_caps\n");
3094 spin_lock(&mdsc->cap_dirty_lock);
Sage Weildb354052011-05-24 11:46:31 -07003095 while (!list_empty(&mdsc->cap_dirty)) {
3096 ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info,
3097 i_dirty_item);
Sage Weil70b666c2011-05-27 09:24:26 -07003098 inode = &ci->vfs_inode;
3099 ihold(inode);
Sage Weildb354052011-05-24 11:46:31 -07003100 dout("flush_dirty_caps %p\n", inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07003101 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weil70b666c2011-05-27 09:24:26 -07003102 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_FLUSH, NULL);
3103 iput(inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07003104 spin_lock(&mdsc->cap_dirty_lock);
3105 }
3106 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weildb354052011-05-24 11:46:31 -07003107 dout("flush_dirty_caps done\n");
Sage Weilafcdaea2009-10-14 14:27:38 -07003108}
3109
3110/*
Sage Weila8599bd2009-10-06 11:31:12 -07003111 * Drop open file reference. If we were the last open file,
3112 * we may need to release capabilities to the MDS (or schedule
3113 * their delayed release).
3114 */
3115void ceph_put_fmode(struct ceph_inode_info *ci, int fmode)
3116{
3117 struct inode *inode = &ci->vfs_inode;
3118 int last = 0;
3119
Sage Weilbe655592011-11-30 09:47:09 -08003120 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003121 dout("put_fmode %p fmode %d %d -> %d\n", inode, fmode,
3122 ci->i_nr_by_mode[fmode], ci->i_nr_by_mode[fmode]-1);
3123 BUG_ON(ci->i_nr_by_mode[fmode] == 0);
3124 if (--ci->i_nr_by_mode[fmode] == 0)
3125 last++;
Sage Weilbe655592011-11-30 09:47:09 -08003126 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003127
3128 if (last && ci->i_vino.snap == CEPH_NOSNAP)
3129 ceph_check_caps(ci, 0, NULL);
3130}
3131
3132/*
3133 * Helpers for embedding cap and dentry lease releases into mds
3134 * requests.
3135 *
3136 * @force is used by dentry_release (below) to force inclusion of a
3137 * record for the directory inode, even when there aren't any caps to
3138 * drop.
3139 */
3140int ceph_encode_inode_release(void **p, struct inode *inode,
3141 int mds, int drop, int unless, int force)
3142{
3143 struct ceph_inode_info *ci = ceph_inode(inode);
3144 struct ceph_cap *cap;
3145 struct ceph_mds_request_release *rel = *p;
Sage Weilec97f882010-06-24 15:12:37 -07003146 int used, dirty;
Sage Weila8599bd2009-10-06 11:31:12 -07003147 int ret = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07003148
Sage Weilbe655592011-11-30 09:47:09 -08003149 spin_lock(&ci->i_ceph_lock);
Sage Weil916623d2010-03-16 15:01:07 -07003150 used = __ceph_caps_used(ci);
Sage Weilec97f882010-06-24 15:12:37 -07003151 dirty = __ceph_caps_dirty(ci);
Sage Weil916623d2010-03-16 15:01:07 -07003152
Sage Weilec97f882010-06-24 15:12:37 -07003153 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
3154 inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
Sage Weil916623d2010-03-16 15:01:07 -07003155 ceph_cap_string(unless));
3156
Sage Weilec97f882010-06-24 15:12:37 -07003157 /* only drop unused, clean caps */
3158 drop &= ~(used | dirty);
Sage Weil916623d2010-03-16 15:01:07 -07003159
Sage Weila8599bd2009-10-06 11:31:12 -07003160 cap = __get_cap_for_mds(ci, mds);
3161 if (cap && __cap_is_valid(cap)) {
3162 if (force ||
3163 ((cap->issued & drop) &&
3164 (cap->issued & unless) == 0)) {
3165 if ((cap->issued & drop) &&
3166 (cap->issued & unless) == 0) {
Yan, Zhengbb137f82013-06-03 18:22:17 +08003167 int wanted = __ceph_caps_wanted(ci);
3168 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0)
3169 wanted |= cap->mds_wanted;
3170 dout("encode_inode_release %p cap %p "
3171 "%s -> %s, wanted %s -> %s\n", inode, cap,
Sage Weila8599bd2009-10-06 11:31:12 -07003172 ceph_cap_string(cap->issued),
Yan, Zhengbb137f82013-06-03 18:22:17 +08003173 ceph_cap_string(cap->issued & ~drop),
3174 ceph_cap_string(cap->mds_wanted),
3175 ceph_cap_string(wanted));
3176
Sage Weila8599bd2009-10-06 11:31:12 -07003177 cap->issued &= ~drop;
3178 cap->implemented &= ~drop;
Yan, Zhengbb137f82013-06-03 18:22:17 +08003179 cap->mds_wanted = wanted;
Sage Weila8599bd2009-10-06 11:31:12 -07003180 } else {
3181 dout("encode_inode_release %p cap %p %s"
3182 " (force)\n", inode, cap,
3183 ceph_cap_string(cap->issued));
3184 }
3185
3186 rel->ino = cpu_to_le64(ceph_ino(inode));
3187 rel->cap_id = cpu_to_le64(cap->cap_id);
3188 rel->seq = cpu_to_le32(cap->seq);
3189 rel->issue_seq = cpu_to_le32(cap->issue_seq),
3190 rel->mseq = cpu_to_le32(cap->mseq);
3191 rel->caps = cpu_to_le32(cap->issued);
3192 rel->wanted = cpu_to_le32(cap->mds_wanted);
3193 rel->dname_len = 0;
3194 rel->dname_seq = 0;
3195 *p += sizeof(*rel);
3196 ret = 1;
3197 } else {
3198 dout("encode_inode_release %p cap %p %s\n",
3199 inode, cap, ceph_cap_string(cap->issued));
3200 }
3201 }
Sage Weilbe655592011-11-30 09:47:09 -08003202 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003203 return ret;
3204}
3205
3206int ceph_encode_dentry_release(void **p, struct dentry *dentry,
3207 int mds, int drop, int unless)
3208{
3209 struct inode *dir = dentry->d_parent->d_inode;
3210 struct ceph_mds_request_release *rel = *p;
3211 struct ceph_dentry_info *di = ceph_dentry(dentry);
3212 int force = 0;
3213 int ret;
3214
3215 /*
3216 * force an record for the directory caps if we have a dentry lease.
Sage Weilbe655592011-11-30 09:47:09 -08003217 * this is racy (can't take i_ceph_lock and d_lock together), but it
Sage Weila8599bd2009-10-06 11:31:12 -07003218 * doesn't have to be perfect; the mds will revoke anything we don't
3219 * release.
3220 */
3221 spin_lock(&dentry->d_lock);
3222 if (di->lease_session && di->lease_session->s_mds == mds)
3223 force = 1;
3224 spin_unlock(&dentry->d_lock);
3225
3226 ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
3227
3228 spin_lock(&dentry->d_lock);
3229 if (ret && di->lease_session && di->lease_session->s_mds == mds) {
3230 dout("encode_dentry_release %p mds%d seq %d\n",
3231 dentry, mds, (int)di->lease_seq);
3232 rel->dname_len = cpu_to_le32(dentry->d_name.len);
3233 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
3234 *p += dentry->d_name.len;
3235 rel->dname_seq = cpu_to_le32(di->lease_seq);
Sage Weil1dadcce2010-07-23 13:54:21 -07003236 __ceph_mdsc_drop_dentry_lease(dentry);
Sage Weila8599bd2009-10-06 11:31:12 -07003237 }
3238 spin_unlock(&dentry->d_lock);
3239 return ret;
3240}