blob: 40b5bbe63a39844ebb6283296dbaa3e24b3675e3 [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"
13#include <linux/ceph/decode.h>
14#include <linux/ceph/messenger.h>
Sage Weila8599bd2009-10-06 11:31:12 -070015
16/*
17 * Capability management
18 *
19 * The Ceph metadata servers control client access to inode metadata
20 * and file data by issuing capabilities, granting clients permission
21 * to read and/or write both inode field and file data to OSDs
22 * (storage nodes). Each capability consists of a set of bits
23 * indicating which operations are allowed.
24 *
25 * If the client holds a *_SHARED cap, the client has a coherent value
26 * that can be safely read from the cached inode.
27 *
28 * In the case of a *_EXCL (exclusive) or FILE_WR capabilities, the
29 * client is allowed to change inode attributes (e.g., file size,
30 * mtime), note its dirty state in the ceph_cap, and asynchronously
31 * flush that metadata change to the MDS.
32 *
33 * In the event of a conflicting operation (perhaps by another
34 * client), the MDS will revoke the conflicting client capabilities.
35 *
36 * In order for a client to cache an inode, it must hold a capability
37 * with at least one MDS server. When inodes are released, release
38 * notifications are batched and periodically sent en masse to the MDS
39 * cluster to release server state.
40 */
41
42
43/*
44 * Generate readable cap strings for debugging output.
45 */
46#define MAX_CAP_STR 20
47static char cap_str[MAX_CAP_STR][40];
48static DEFINE_SPINLOCK(cap_str_lock);
49static int last_cap_str;
50
51static char *gcap_string(char *s, int c)
52{
53 if (c & CEPH_CAP_GSHARED)
54 *s++ = 's';
55 if (c & CEPH_CAP_GEXCL)
56 *s++ = 'x';
57 if (c & CEPH_CAP_GCACHE)
58 *s++ = 'c';
59 if (c & CEPH_CAP_GRD)
60 *s++ = 'r';
61 if (c & CEPH_CAP_GWR)
62 *s++ = 'w';
63 if (c & CEPH_CAP_GBUFFER)
64 *s++ = 'b';
65 if (c & CEPH_CAP_GLAZYIO)
66 *s++ = 'l';
67 return s;
68}
69
70const char *ceph_cap_string(int caps)
71{
72 int i;
73 char *s;
74 int c;
75
76 spin_lock(&cap_str_lock);
77 i = last_cap_str++;
78 if (last_cap_str == MAX_CAP_STR)
79 last_cap_str = 0;
80 spin_unlock(&cap_str_lock);
81
82 s = cap_str[i];
83
84 if (caps & CEPH_CAP_PIN)
85 *s++ = 'p';
86
87 c = (caps >> CEPH_CAP_SAUTH) & 3;
88 if (c) {
89 *s++ = 'A';
90 s = gcap_string(s, c);
91 }
92
93 c = (caps >> CEPH_CAP_SLINK) & 3;
94 if (c) {
95 *s++ = 'L';
96 s = gcap_string(s, c);
97 }
98
99 c = (caps >> CEPH_CAP_SXATTR) & 3;
100 if (c) {
101 *s++ = 'X';
102 s = gcap_string(s, c);
103 }
104
105 c = caps >> CEPH_CAP_SFILE;
106 if (c) {
107 *s++ = 'F';
108 s = gcap_string(s, c);
109 }
110
111 if (s == cap_str[i])
112 *s++ = '-';
113 *s = 0;
114 return cap_str[i];
115}
116
Yehuda Sadeh37151662010-06-17 16:16:12 -0700117void ceph_caps_init(struct ceph_mds_client *mdsc)
Sage Weila8599bd2009-10-06 11:31:12 -0700118{
Yehuda Sadeh37151662010-06-17 16:16:12 -0700119 INIT_LIST_HEAD(&mdsc->caps_list);
120 spin_lock_init(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700121}
122
Yehuda Sadeh37151662010-06-17 16:16:12 -0700123void ceph_caps_finalize(struct ceph_mds_client *mdsc)
Sage Weila8599bd2009-10-06 11:31:12 -0700124{
125 struct ceph_cap *cap;
126
Yehuda Sadeh37151662010-06-17 16:16:12 -0700127 spin_lock(&mdsc->caps_list_lock);
128 while (!list_empty(&mdsc->caps_list)) {
129 cap = list_first_entry(&mdsc->caps_list,
130 struct ceph_cap, caps_item);
Sage Weila8599bd2009-10-06 11:31:12 -0700131 list_del(&cap->caps_item);
132 kmem_cache_free(ceph_cap_cachep, cap);
133 }
Yehuda Sadeh37151662010-06-17 16:16:12 -0700134 mdsc->caps_total_count = 0;
135 mdsc->caps_avail_count = 0;
136 mdsc->caps_use_count = 0;
137 mdsc->caps_reserve_count = 0;
138 mdsc->caps_min_count = 0;
139 spin_unlock(&mdsc->caps_list_lock);
Sage Weil85ccce42010-02-17 10:02:43 -0800140}
141
Yehuda Sadeh37151662010-06-17 16:16:12 -0700142void ceph_adjust_min_caps(struct ceph_mds_client *mdsc, int delta)
Sage Weil85ccce42010-02-17 10:02:43 -0800143{
Yehuda Sadeh37151662010-06-17 16:16:12 -0700144 spin_lock(&mdsc->caps_list_lock);
145 mdsc->caps_min_count += delta;
146 BUG_ON(mdsc->caps_min_count < 0);
147 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700148}
149
Yehuda Sadeh37151662010-06-17 16:16:12 -0700150int ceph_reserve_caps(struct ceph_mds_client *mdsc,
151 struct ceph_cap_reservation *ctx, int need)
Sage Weila8599bd2009-10-06 11:31:12 -0700152{
153 int i;
154 struct ceph_cap *cap;
155 int have;
156 int alloc = 0;
157 LIST_HEAD(newcaps);
158 int ret = 0;
159
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);
177 if (!cap) {
178 ret = -ENOMEM;
179 goto out_alloc_count;
180 }
181 list_add(&cap->caps_item, &newcaps);
182 alloc++;
183 }
184 BUG_ON(have + alloc != need);
185
Yehuda Sadeh37151662010-06-17 16:16:12 -0700186 spin_lock(&mdsc->caps_list_lock);
187 mdsc->caps_total_count += alloc;
188 mdsc->caps_reserve_count += alloc;
189 list_splice(&newcaps, &mdsc->caps_list);
Sage Weila8599bd2009-10-06 11:31:12 -0700190
Yehuda Sadeh37151662010-06-17 16:16:12 -0700191 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
192 mdsc->caps_reserve_count +
193 mdsc->caps_avail_count);
194 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700195
196 ctx->count = need;
197 dout("reserve caps ctx=%p %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700198 ctx, mdsc->caps_total_count, mdsc->caps_use_count,
199 mdsc->caps_reserve_count, mdsc->caps_avail_count);
Sage Weila8599bd2009-10-06 11:31:12 -0700200 return 0;
201
202out_alloc_count:
203 /* we didn't manage to reserve as much as we needed */
204 pr_warning("reserve caps ctx=%p ENOMEM need=%d got=%d\n",
205 ctx, need, have);
206 return ret;
207}
208
Yehuda Sadeh37151662010-06-17 16:16:12 -0700209int ceph_unreserve_caps(struct ceph_mds_client *mdsc,
210 struct ceph_cap_reservation *ctx)
Sage Weila8599bd2009-10-06 11:31:12 -0700211{
212 dout("unreserve caps ctx=%p count=%d\n", ctx, ctx->count);
213 if (ctx->count) {
Yehuda Sadeh37151662010-06-17 16:16:12 -0700214 spin_lock(&mdsc->caps_list_lock);
215 BUG_ON(mdsc->caps_reserve_count < ctx->count);
216 mdsc->caps_reserve_count -= ctx->count;
217 mdsc->caps_avail_count += ctx->count;
Sage Weila8599bd2009-10-06 11:31:12 -0700218 ctx->count = 0;
219 dout("unreserve caps %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700220 mdsc->caps_total_count, mdsc->caps_use_count,
221 mdsc->caps_reserve_count, mdsc->caps_avail_count);
222 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
223 mdsc->caps_reserve_count +
224 mdsc->caps_avail_count);
225 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700226 }
227 return 0;
228}
229
Yehuda Sadeh37151662010-06-17 16:16:12 -0700230static struct ceph_cap *get_cap(struct ceph_mds_client *mdsc,
231 struct ceph_cap_reservation *ctx)
Sage Weila8599bd2009-10-06 11:31:12 -0700232{
233 struct ceph_cap *cap = NULL;
234
235 /* temporary, until we do something about cap import/export */
Sage Weil443b3762010-06-29 09:28:39 -0700236 if (!ctx) {
237 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
238 if (cap) {
Yan, Zheng4d1d0532012-11-03 10:32:37 +0800239 spin_lock(&mdsc->caps_list_lock);
Yehuda Sadeh37151662010-06-17 16:16:12 -0700240 mdsc->caps_use_count++;
241 mdsc->caps_total_count++;
Yan, Zheng4d1d0532012-11-03 10:32:37 +0800242 spin_unlock(&mdsc->caps_list_lock);
Sage Weil443b3762010-06-29 09:28:39 -0700243 }
244 return cap;
245 }
Sage Weila8599bd2009-10-06 11:31:12 -0700246
Yehuda Sadeh37151662010-06-17 16:16:12 -0700247 spin_lock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700248 dout("get_cap ctx=%p (%d) %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700249 ctx, ctx->count, mdsc->caps_total_count, mdsc->caps_use_count,
250 mdsc->caps_reserve_count, mdsc->caps_avail_count);
Sage Weila8599bd2009-10-06 11:31:12 -0700251 BUG_ON(!ctx->count);
Yehuda Sadeh37151662010-06-17 16:16:12 -0700252 BUG_ON(ctx->count > mdsc->caps_reserve_count);
253 BUG_ON(list_empty(&mdsc->caps_list));
Sage Weila8599bd2009-10-06 11:31:12 -0700254
255 ctx->count--;
Yehuda Sadeh37151662010-06-17 16:16:12 -0700256 mdsc->caps_reserve_count--;
257 mdsc->caps_use_count++;
Sage Weila8599bd2009-10-06 11:31:12 -0700258
Yehuda Sadeh37151662010-06-17 16:16:12 -0700259 cap = list_first_entry(&mdsc->caps_list, struct ceph_cap, caps_item);
Sage Weila8599bd2009-10-06 11:31:12 -0700260 list_del(&cap->caps_item);
261
Yehuda Sadeh37151662010-06-17 16:16:12 -0700262 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
263 mdsc->caps_reserve_count + mdsc->caps_avail_count);
264 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700265 return cap;
266}
267
Yehuda Sadeh37151662010-06-17 16:16:12 -0700268void ceph_put_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap)
Sage Weila8599bd2009-10-06 11:31:12 -0700269{
Yehuda Sadeh37151662010-06-17 16:16:12 -0700270 spin_lock(&mdsc->caps_list_lock);
Sage Weil7c1332b2010-02-16 11:39:45 -0800271 dout("put_cap %p %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700272 cap, mdsc->caps_total_count, mdsc->caps_use_count,
273 mdsc->caps_reserve_count, mdsc->caps_avail_count);
274 mdsc->caps_use_count--;
Sage Weila8599bd2009-10-06 11:31:12 -0700275 /*
Sage Weil85ccce42010-02-17 10:02:43 -0800276 * Keep some preallocated caps around (ceph_min_count), to
277 * avoid lots of free/alloc churn.
Sage Weila8599bd2009-10-06 11:31:12 -0700278 */
Yehuda Sadeh37151662010-06-17 16:16:12 -0700279 if (mdsc->caps_avail_count >= mdsc->caps_reserve_count +
280 mdsc->caps_min_count) {
281 mdsc->caps_total_count--;
Sage Weila8599bd2009-10-06 11:31:12 -0700282 kmem_cache_free(ceph_cap_cachep, cap);
283 } else {
Yehuda Sadeh37151662010-06-17 16:16:12 -0700284 mdsc->caps_avail_count++;
285 list_add(&cap->caps_item, &mdsc->caps_list);
Sage Weila8599bd2009-10-06 11:31:12 -0700286 }
287
Yehuda Sadeh37151662010-06-17 16:16:12 -0700288 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
289 mdsc->caps_reserve_count + mdsc->caps_avail_count);
290 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700291}
292
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700293void ceph_reservation_status(struct ceph_fs_client *fsc,
Sage Weil85ccce42010-02-17 10:02:43 -0800294 int *total, int *avail, int *used, int *reserved,
295 int *min)
Sage Weila8599bd2009-10-06 11:31:12 -0700296{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700297 struct ceph_mds_client *mdsc = fsc->mdsc;
Yehuda Sadeh37151662010-06-17 16:16:12 -0700298
Sage Weila8599bd2009-10-06 11:31:12 -0700299 if (total)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700300 *total = mdsc->caps_total_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700301 if (avail)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700302 *avail = mdsc->caps_avail_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700303 if (used)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700304 *used = mdsc->caps_use_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700305 if (reserved)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700306 *reserved = mdsc->caps_reserve_count;
Sage Weil85ccce42010-02-17 10:02:43 -0800307 if (min)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700308 *min = mdsc->caps_min_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700309}
310
311/*
312 * Find ceph_cap for given mds, if any.
313 *
Sage Weilbe655592011-11-30 09:47:09 -0800314 * Called with i_ceph_lock held.
Sage Weila8599bd2009-10-06 11:31:12 -0700315 */
316static struct ceph_cap *__get_cap_for_mds(struct ceph_inode_info *ci, int mds)
317{
318 struct ceph_cap *cap;
319 struct rb_node *n = ci->i_caps.rb_node;
320
321 while (n) {
322 cap = rb_entry(n, struct ceph_cap, ci_node);
323 if (mds < cap->mds)
324 n = n->rb_left;
325 else if (mds > cap->mds)
326 n = n->rb_right;
327 else
328 return cap;
329 }
330 return NULL;
331}
332
Greg Farnum2bc50252010-06-30 12:44:34 -0700333struct ceph_cap *ceph_get_cap_for_mds(struct ceph_inode_info *ci, int mds)
334{
335 struct ceph_cap *cap;
336
Sage Weilbe655592011-11-30 09:47:09 -0800337 spin_lock(&ci->i_ceph_lock);
Greg Farnum2bc50252010-06-30 12:44:34 -0700338 cap = __get_cap_for_mds(ci, mds);
Sage Weilbe655592011-11-30 09:47:09 -0800339 spin_unlock(&ci->i_ceph_lock);
Greg Farnum2bc50252010-06-30 12:44:34 -0700340 return cap;
341}
342
Sage Weila8599bd2009-10-06 11:31:12 -0700343/*
Sage Weil33caad32010-05-26 14:31:27 -0700344 * Return id of any MDS with a cap, preferably FILE_WR|BUFFER|EXCL, else -1.
Sage Weila8599bd2009-10-06 11:31:12 -0700345 */
Sage Weilca81f3f2010-06-10 14:21:36 -0700346static int __ceph_get_cap_mds(struct ceph_inode_info *ci)
Sage Weila8599bd2009-10-06 11:31:12 -0700347{
348 struct ceph_cap *cap;
349 int mds = -1;
350 struct rb_node *p;
351
Sage Weil33caad32010-05-26 14:31:27 -0700352 /* prefer mds with WR|BUFFER|EXCL caps */
Sage Weila8599bd2009-10-06 11:31:12 -0700353 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
354 cap = rb_entry(p, struct ceph_cap, ci_node);
355 mds = cap->mds;
Sage Weila8599bd2009-10-06 11:31:12 -0700356 if (cap->issued & (CEPH_CAP_FILE_WR |
357 CEPH_CAP_FILE_BUFFER |
358 CEPH_CAP_FILE_EXCL))
359 break;
360 }
361 return mds;
362}
363
364int ceph_get_cap_mds(struct inode *inode)
365{
Sage Weilbe655592011-11-30 09:47:09 -0800366 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weila8599bd2009-10-06 11:31:12 -0700367 int mds;
Sage Weilbe655592011-11-30 09:47:09 -0800368 spin_lock(&ci->i_ceph_lock);
Sage Weilca81f3f2010-06-10 14:21:36 -0700369 mds = __ceph_get_cap_mds(ceph_inode(inode));
Sage Weilbe655592011-11-30 09:47:09 -0800370 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700371 return mds;
372}
373
374/*
Sage Weilbe655592011-11-30 09:47:09 -0800375 * Called under i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -0700376 */
377static void __insert_cap_node(struct ceph_inode_info *ci,
378 struct ceph_cap *new)
379{
380 struct rb_node **p = &ci->i_caps.rb_node;
381 struct rb_node *parent = NULL;
382 struct ceph_cap *cap = NULL;
383
384 while (*p) {
385 parent = *p;
386 cap = rb_entry(parent, struct ceph_cap, ci_node);
387 if (new->mds < cap->mds)
388 p = &(*p)->rb_left;
389 else if (new->mds > cap->mds)
390 p = &(*p)->rb_right;
391 else
392 BUG();
393 }
394
395 rb_link_node(&new->ci_node, parent, p);
396 rb_insert_color(&new->ci_node, &ci->i_caps);
397}
398
399/*
400 * (re)set cap hold timeouts, which control the delayed release
401 * of unused caps back to the MDS. Should be called on cap use.
402 */
403static void __cap_set_timeouts(struct ceph_mds_client *mdsc,
404 struct ceph_inode_info *ci)
405{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700406 struct ceph_mount_options *ma = mdsc->fsc->mount_options;
Sage Weila8599bd2009-10-06 11:31:12 -0700407
408 ci->i_hold_caps_min = round_jiffies(jiffies +
409 ma->caps_wanted_delay_min * HZ);
410 ci->i_hold_caps_max = round_jiffies(jiffies +
411 ma->caps_wanted_delay_max * HZ);
412 dout("__cap_set_timeouts %p min %lu max %lu\n", &ci->vfs_inode,
413 ci->i_hold_caps_min - jiffies, ci->i_hold_caps_max - jiffies);
414}
415
416/*
417 * (Re)queue cap at the end of the delayed cap release list.
418 *
419 * If I_FLUSH is set, leave the inode at the front of the list.
420 *
Sage Weilbe655592011-11-30 09:47:09 -0800421 * Caller holds i_ceph_lock
Sage Weila8599bd2009-10-06 11:31:12 -0700422 * -> we take mdsc->cap_delay_lock
423 */
424static void __cap_delay_requeue(struct ceph_mds_client *mdsc,
425 struct ceph_inode_info *ci)
426{
427 __cap_set_timeouts(mdsc, ci);
428 dout("__cap_delay_requeue %p flags %d at %lu\n", &ci->vfs_inode,
429 ci->i_ceph_flags, ci->i_hold_caps_max);
430 if (!mdsc->stopping) {
431 spin_lock(&mdsc->cap_delay_lock);
432 if (!list_empty(&ci->i_cap_delay_list)) {
433 if (ci->i_ceph_flags & CEPH_I_FLUSH)
434 goto no_change;
435 list_del_init(&ci->i_cap_delay_list);
436 }
437 list_add_tail(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
438no_change:
439 spin_unlock(&mdsc->cap_delay_lock);
440 }
441}
442
443/*
444 * Queue an inode for immediate writeback. Mark inode with I_FLUSH,
445 * indicating we should send a cap message to flush dirty metadata
446 * asap, and move to the front of the delayed cap list.
447 */
448static void __cap_delay_requeue_front(struct ceph_mds_client *mdsc,
449 struct ceph_inode_info *ci)
450{
451 dout("__cap_delay_requeue_front %p\n", &ci->vfs_inode);
452 spin_lock(&mdsc->cap_delay_lock);
453 ci->i_ceph_flags |= CEPH_I_FLUSH;
454 if (!list_empty(&ci->i_cap_delay_list))
455 list_del_init(&ci->i_cap_delay_list);
456 list_add(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
457 spin_unlock(&mdsc->cap_delay_lock);
458}
459
460/*
461 * Cancel delayed work on cap.
462 *
Sage Weilbe655592011-11-30 09:47:09 -0800463 * Caller must hold i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -0700464 */
465static void __cap_delay_cancel(struct ceph_mds_client *mdsc,
466 struct ceph_inode_info *ci)
467{
468 dout("__cap_delay_cancel %p\n", &ci->vfs_inode);
469 if (list_empty(&ci->i_cap_delay_list))
470 return;
471 spin_lock(&mdsc->cap_delay_lock);
472 list_del_init(&ci->i_cap_delay_list);
473 spin_unlock(&mdsc->cap_delay_lock);
474}
475
476/*
477 * Common issue checks for add_cap, handle_cap_grant.
478 */
479static void __check_cap_issue(struct ceph_inode_info *ci, struct ceph_cap *cap,
480 unsigned issued)
481{
482 unsigned had = __ceph_caps_issued(ci, NULL);
483
484 /*
485 * Each time we receive FILE_CACHE anew, we increment
486 * i_rdcache_gen.
487 */
Sage Weil29625072010-05-27 10:40:43 -0700488 if ((issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
489 (had & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0)
Sage Weila8599bd2009-10-06 11:31:12 -0700490 ci->i_rdcache_gen++;
491
492 /*
Sage Weilc6ffe102011-11-03 09:23:36 -0700493 * if we are newly issued FILE_SHARED, clear D_COMPLETE; we
Sage Weila8599bd2009-10-06 11:31:12 -0700494 * don't know what happened to this directory while we didn't
495 * have the cap.
496 */
497 if ((issued & CEPH_CAP_FILE_SHARED) &&
498 (had & CEPH_CAP_FILE_SHARED) == 0) {
499 ci->i_shared_gen++;
Sage Weilc6ffe102011-11-03 09:23:36 -0700500 if (S_ISDIR(ci->vfs_inode.i_mode))
501 ceph_dir_clear_complete(&ci->vfs_inode);
Sage Weila8599bd2009-10-06 11:31:12 -0700502 }
503}
504
505/*
506 * Add a capability under the given MDS session.
507 *
508 * Caller should hold session snap_rwsem (read) and s_mutex.
509 *
510 * @fmode is the open file mode, if we are opening a file, otherwise
511 * it is < 0. (This is so we can atomically add the cap and add an
512 * open file reference to it.)
513 */
514int ceph_add_cap(struct inode *inode,
515 struct ceph_mds_session *session, u64 cap_id,
516 int fmode, unsigned issued, unsigned wanted,
517 unsigned seq, unsigned mseq, u64 realmino, int flags,
518 struct ceph_cap_reservation *caps_reservation)
519{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700520 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -0700521 struct ceph_inode_info *ci = ceph_inode(inode);
522 struct ceph_cap *new_cap = NULL;
523 struct ceph_cap *cap;
524 int mds = session->s_mds;
525 int actual_wanted;
526
527 dout("add_cap %p mds%d cap %llx %s seq %d\n", inode,
528 session->s_mds, cap_id, ceph_cap_string(issued), seq);
529
530 /*
531 * If we are opening the file, include file mode wanted bits
532 * in wanted.
533 */
534 if (fmode >= 0)
535 wanted |= ceph_caps_for_mode(fmode);
536
537retry:
Sage Weilbe655592011-11-30 09:47:09 -0800538 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700539 cap = __get_cap_for_mds(ci, mds);
540 if (!cap) {
541 if (new_cap) {
542 cap = new_cap;
543 new_cap = NULL;
544 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800545 spin_unlock(&ci->i_ceph_lock);
Yehuda Sadeh37151662010-06-17 16:16:12 -0700546 new_cap = get_cap(mdsc, caps_reservation);
Sage Weila8599bd2009-10-06 11:31:12 -0700547 if (new_cap == NULL)
548 return -ENOMEM;
549 goto retry;
550 }
551
552 cap->issued = 0;
553 cap->implemented = 0;
554 cap->mds = mds;
555 cap->mds_wanted = 0;
556
557 cap->ci = ci;
558 __insert_cap_node(ci, cap);
559
560 /* clear out old exporting info? (i.e. on cap import) */
561 if (ci->i_cap_exporting_mds == mds) {
562 ci->i_cap_exporting_issued = 0;
563 ci->i_cap_exporting_mseq = 0;
564 ci->i_cap_exporting_mds = -1;
565 }
566
567 /* add to session cap list */
568 cap->session = session;
569 spin_lock(&session->s_cap_lock);
570 list_add_tail(&cap->session_caps, &session->s_caps);
571 session->s_nr_caps++;
572 spin_unlock(&session->s_cap_lock);
Sage Weil35403032011-05-12 15:13:23 -0700573 } else if (new_cap)
574 ceph_put_cap(mdsc, new_cap);
Sage Weila8599bd2009-10-06 11:31:12 -0700575
576 if (!ci->i_snap_realm) {
577 /*
578 * add this inode to the appropriate snap realm
579 */
580 struct ceph_snap_realm *realm = ceph_lookup_snap_realm(mdsc,
581 realmino);
582 if (realm) {
583 ceph_get_snap_realm(mdsc, realm);
584 spin_lock(&realm->inodes_with_caps_lock);
585 ci->i_snap_realm = realm;
586 list_add(&ci->i_snap_realm_item,
587 &realm->inodes_with_caps);
588 spin_unlock(&realm->inodes_with_caps_lock);
589 } else {
590 pr_err("ceph_add_cap: couldn't find snap realm %llx\n",
591 realmino);
Sage Weilb8cd07e2010-07-16 12:00:02 -0700592 WARN_ON(!realm);
Sage Weila8599bd2009-10-06 11:31:12 -0700593 }
594 }
595
596 __check_cap_issue(ci, cap, issued);
597
598 /*
599 * If we are issued caps we don't want, or the mds' wanted
600 * value appears to be off, queue a check so we'll release
601 * later and/or update the mds wanted value.
602 */
603 actual_wanted = __ceph_caps_wanted(ci);
604 if ((wanted & ~actual_wanted) ||
605 (issued & ~actual_wanted & CEPH_CAP_ANY_WR)) {
606 dout(" issued %s, mds wanted %s, actual %s, queueing\n",
607 ceph_cap_string(issued), ceph_cap_string(wanted),
608 ceph_cap_string(actual_wanted));
609 __cap_delay_requeue(mdsc, ci);
610 }
611
612 if (flags & CEPH_CAP_FLAG_AUTH)
613 ci->i_auth_cap = cap;
Yan, Zheng8a92a112013-01-04 14:28:07 +0800614 else if (ci->i_auth_cap == cap) {
Sage Weila8599bd2009-10-06 11:31:12 -0700615 ci->i_auth_cap = NULL;
Yan, Zheng8a92a112013-01-04 14:28:07 +0800616 spin_lock(&mdsc->cap_dirty_lock);
617 if (!list_empty(&ci->i_dirty_item)) {
618 dout(" moving %p to cap_dirty_migrating\n", inode);
619 list_move(&ci->i_dirty_item,
620 &mdsc->cap_dirty_migrating);
621 }
622 spin_unlock(&mdsc->cap_dirty_lock);
623 }
Sage Weila8599bd2009-10-06 11:31:12 -0700624
625 dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
626 inode, ceph_vinop(inode), cap, ceph_cap_string(issued),
627 ceph_cap_string(issued|cap->issued), seq, mds);
628 cap->cap_id = cap_id;
629 cap->issued = issued;
630 cap->implemented |= issued;
631 cap->mds_wanted |= wanted;
632 cap->seq = seq;
633 cap->issue_seq = seq;
634 cap->mseq = mseq;
Sage Weil685f9a5d2009-11-09 12:05:48 -0800635 cap->cap_gen = session->s_cap_gen;
Sage Weila8599bd2009-10-06 11:31:12 -0700636
637 if (fmode >= 0)
638 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800639 spin_unlock(&ci->i_ceph_lock);
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700640 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -0700641 return 0;
642}
643
644/*
645 * Return true if cap has not timed out and belongs to the current
646 * generation of the MDS session (i.e. has not gone 'stale' due to
647 * us losing touch with the mds).
648 */
649static int __cap_is_valid(struct ceph_cap *cap)
650{
651 unsigned long ttl;
Sage Weilcdac8302009-11-10 16:02:23 -0800652 u32 gen;
Sage Weila8599bd2009-10-06 11:31:12 -0700653
Alex Elderd8fb02a2012-01-12 17:48:10 -0800654 spin_lock(&cap->session->s_gen_ttl_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700655 gen = cap->session->s_cap_gen;
656 ttl = cap->session->s_cap_ttl;
Alex Elderd8fb02a2012-01-12 17:48:10 -0800657 spin_unlock(&cap->session->s_gen_ttl_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700658
Sage Weil685f9a5d2009-11-09 12:05:48 -0800659 if (cap->cap_gen < gen || time_after_eq(jiffies, ttl)) {
Sage Weila8599bd2009-10-06 11:31:12 -0700660 dout("__cap_is_valid %p cap %p issued %s "
661 "but STALE (gen %u vs %u)\n", &cap->ci->vfs_inode,
Sage Weil685f9a5d2009-11-09 12:05:48 -0800662 cap, ceph_cap_string(cap->issued), cap->cap_gen, gen);
Sage Weila8599bd2009-10-06 11:31:12 -0700663 return 0;
664 }
665
666 return 1;
667}
668
669/*
670 * Return set of valid cap bits issued to us. Note that caps time
671 * out, and may be invalidated in bulk if the client session times out
672 * and session->s_cap_gen is bumped.
673 */
674int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented)
675{
Sage Weil7af8f1e2010-03-01 15:17:34 -0800676 int have = ci->i_snap_caps | ci->i_cap_exporting_issued;
Sage Weila8599bd2009-10-06 11:31:12 -0700677 struct ceph_cap *cap;
678 struct rb_node *p;
679
680 if (implemented)
681 *implemented = 0;
682 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
683 cap = rb_entry(p, struct ceph_cap, ci_node);
684 if (!__cap_is_valid(cap))
685 continue;
686 dout("__ceph_caps_issued %p cap %p issued %s\n",
687 &ci->vfs_inode, cap, ceph_cap_string(cap->issued));
688 have |= cap->issued;
689 if (implemented)
690 *implemented |= cap->implemented;
691 }
692 return have;
693}
694
695/*
696 * Get cap bits issued by caps other than @ocap
697 */
698int __ceph_caps_issued_other(struct ceph_inode_info *ci, struct ceph_cap *ocap)
699{
700 int have = ci->i_snap_caps;
701 struct ceph_cap *cap;
702 struct rb_node *p;
703
704 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
705 cap = rb_entry(p, struct ceph_cap, ci_node);
706 if (cap == ocap)
707 continue;
708 if (!__cap_is_valid(cap))
709 continue;
710 have |= cap->issued;
711 }
712 return have;
713}
714
715/*
716 * Move a cap to the end of the LRU (oldest caps at list head, newest
717 * at list tail).
718 */
719static void __touch_cap(struct ceph_cap *cap)
720{
721 struct ceph_mds_session *s = cap->session;
722
Sage Weila8599bd2009-10-06 11:31:12 -0700723 spin_lock(&s->s_cap_lock);
Sage Weil7c1332b2010-02-16 11:39:45 -0800724 if (s->s_cap_iterator == NULL) {
Sage Weil5dacf092009-12-21 20:40:34 -0800725 dout("__touch_cap %p cap %p mds%d\n", &cap->ci->vfs_inode, cap,
726 s->s_mds);
727 list_move_tail(&cap->session_caps, &s->s_caps);
728 } else {
729 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
730 &cap->ci->vfs_inode, cap, s->s_mds);
731 }
Sage Weila8599bd2009-10-06 11:31:12 -0700732 spin_unlock(&s->s_cap_lock);
733}
734
735/*
736 * Check if we hold the given mask. If so, move the cap(s) to the
737 * front of their respective LRUs. (This is the preferred way for
738 * callers to check for caps they want.)
739 */
740int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int touch)
741{
742 struct ceph_cap *cap;
743 struct rb_node *p;
744 int have = ci->i_snap_caps;
745
746 if ((have & mask) == mask) {
747 dout("__ceph_caps_issued_mask %p snap issued %s"
748 " (mask %s)\n", &ci->vfs_inode,
749 ceph_cap_string(have),
750 ceph_cap_string(mask));
751 return 1;
752 }
753
754 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
755 cap = rb_entry(p, struct ceph_cap, ci_node);
756 if (!__cap_is_valid(cap))
757 continue;
758 if ((cap->issued & mask) == mask) {
759 dout("__ceph_caps_issued_mask %p cap %p issued %s"
760 " (mask %s)\n", &ci->vfs_inode, cap,
761 ceph_cap_string(cap->issued),
762 ceph_cap_string(mask));
763 if (touch)
764 __touch_cap(cap);
765 return 1;
766 }
767
768 /* does a combination of caps satisfy mask? */
769 have |= cap->issued;
770 if ((have & mask) == mask) {
771 dout("__ceph_caps_issued_mask %p combo issued %s"
772 " (mask %s)\n", &ci->vfs_inode,
773 ceph_cap_string(cap->issued),
774 ceph_cap_string(mask));
775 if (touch) {
776 struct rb_node *q;
777
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300778 /* touch this + preceding caps */
Sage Weila8599bd2009-10-06 11:31:12 -0700779 __touch_cap(cap);
780 for (q = rb_first(&ci->i_caps); q != p;
781 q = rb_next(q)) {
782 cap = rb_entry(q, struct ceph_cap,
783 ci_node);
784 if (!__cap_is_valid(cap))
785 continue;
786 __touch_cap(cap);
787 }
788 }
789 return 1;
790 }
791 }
792
793 return 0;
794}
795
796/*
797 * Return true if mask caps are currently being revoked by an MDS.
798 */
799int ceph_caps_revoking(struct ceph_inode_info *ci, int mask)
800{
801 struct inode *inode = &ci->vfs_inode;
802 struct ceph_cap *cap;
803 struct rb_node *p;
804 int ret = 0;
805
Sage Weilbe655592011-11-30 09:47:09 -0800806 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700807 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
808 cap = rb_entry(p, struct ceph_cap, ci_node);
809 if (__cap_is_valid(cap) &&
810 (cap->implemented & ~cap->issued & mask)) {
811 ret = 1;
812 break;
813 }
814 }
Sage Weilbe655592011-11-30 09:47:09 -0800815 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700816 dout("ceph_caps_revoking %p %s = %d\n", inode,
817 ceph_cap_string(mask), ret);
818 return ret;
819}
820
821int __ceph_caps_used(struct ceph_inode_info *ci)
822{
823 int used = 0;
824 if (ci->i_pin_ref)
825 used |= CEPH_CAP_PIN;
826 if (ci->i_rd_ref)
827 used |= CEPH_CAP_FILE_RD;
Sage Weila43fb732010-09-17 09:54:08 -0700828 if (ci->i_rdcache_ref || ci->vfs_inode.i_data.nrpages)
Sage Weila8599bd2009-10-06 11:31:12 -0700829 used |= CEPH_CAP_FILE_CACHE;
830 if (ci->i_wr_ref)
831 used |= CEPH_CAP_FILE_WR;
Henry C Changd3d07202011-05-11 10:29:54 +0000832 if (ci->i_wb_ref || ci->i_wrbuffer_ref)
Sage Weila8599bd2009-10-06 11:31:12 -0700833 used |= CEPH_CAP_FILE_BUFFER;
834 return used;
835}
836
837/*
838 * wanted, by virtue of open file modes
839 */
840int __ceph_caps_file_wanted(struct ceph_inode_info *ci)
841{
842 int want = 0;
843 int mode;
Sage Weil33caad32010-05-26 14:31:27 -0700844 for (mode = 0; mode < CEPH_FILE_MODE_NUM; mode++)
Sage Weila8599bd2009-10-06 11:31:12 -0700845 if (ci->i_nr_by_mode[mode])
846 want |= ceph_caps_for_mode(mode);
847 return want;
848}
849
850/*
851 * Return caps we have registered with the MDS(s) as 'wanted'.
852 */
853int __ceph_caps_mds_wanted(struct ceph_inode_info *ci)
854{
855 struct ceph_cap *cap;
856 struct rb_node *p;
857 int mds_wanted = 0;
858
859 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
860 cap = rb_entry(p, struct ceph_cap, ci_node);
861 if (!__cap_is_valid(cap))
862 continue;
863 mds_wanted |= cap->mds_wanted;
864 }
865 return mds_wanted;
866}
867
868/*
Sage Weilbe655592011-11-30 09:47:09 -0800869 * called under i_ceph_lock
Sage Weila8599bd2009-10-06 11:31:12 -0700870 */
871static int __ceph_is_any_caps(struct ceph_inode_info *ci)
872{
873 return !RB_EMPTY_ROOT(&ci->i_caps) || ci->i_cap_exporting_mds >= 0;
874}
875
876/*
Sage Weilf818a732010-05-11 20:56:31 -0700877 * Remove a cap. Take steps to deal with a racing iterate_session_caps.
878 *
Sage Weilbe655592011-11-30 09:47:09 -0800879 * caller should hold i_ceph_lock.
Sage Weila6369742010-02-22 13:59:00 -0800880 * caller will not hold session s_mutex if called from destroy_inode.
Sage Weila8599bd2009-10-06 11:31:12 -0700881 */
Sage Weil7c1332b2010-02-16 11:39:45 -0800882void __ceph_remove_cap(struct ceph_cap *cap)
Sage Weila8599bd2009-10-06 11:31:12 -0700883{
884 struct ceph_mds_session *session = cap->session;
885 struct ceph_inode_info *ci = cap->ci;
Cheng Renquan640ef792010-03-26 17:40:33 +0800886 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700887 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
Sage Weilf818a732010-05-11 20:56:31 -0700888 int removed = 0;
Sage Weila8599bd2009-10-06 11:31:12 -0700889
890 dout("__ceph_remove_cap %p from %p\n", cap, &ci->vfs_inode);
891
Sage Weil7c1332b2010-02-16 11:39:45 -0800892 /* remove from session list */
893 spin_lock(&session->s_cap_lock);
894 if (session->s_cap_iterator == cap) {
895 /* not yet, we are iterating over this very cap */
896 dout("__ceph_remove_cap delaying %p removal from session %p\n",
897 cap, cap->session);
898 } else {
899 list_del_init(&cap->session_caps);
900 session->s_nr_caps--;
901 cap->session = NULL;
Sage Weilf818a732010-05-11 20:56:31 -0700902 removed = 1;
Sage Weil7c1332b2010-02-16 11:39:45 -0800903 }
Sage Weilf818a732010-05-11 20:56:31 -0700904 /* protect backpointer with s_cap_lock: see iterate_session_caps */
905 cap->ci = NULL;
Sage Weil7c1332b2010-02-16 11:39:45 -0800906 spin_unlock(&session->s_cap_lock);
907
Sage Weilf818a732010-05-11 20:56:31 -0700908 /* remove from inode list */
909 rb_erase(&cap->ci_node, &ci->i_caps);
910 if (ci->i_auth_cap == cap)
911 ci->i_auth_cap = NULL;
912
913 if (removed)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700914 ceph_put_cap(mdsc, cap);
Sage Weila8599bd2009-10-06 11:31:12 -0700915
916 if (!__ceph_is_any_caps(ci) && ci->i_snap_realm) {
917 struct ceph_snap_realm *realm = ci->i_snap_realm;
918 spin_lock(&realm->inodes_with_caps_lock);
919 list_del_init(&ci->i_snap_realm_item);
920 ci->i_snap_realm_counter++;
921 ci->i_snap_realm = NULL;
922 spin_unlock(&realm->inodes_with_caps_lock);
923 ceph_put_snap_realm(mdsc, realm);
924 }
925 if (!__ceph_is_any_real_caps(ci))
926 __cap_delay_cancel(mdsc, ci);
927}
928
929/*
930 * Build and send a cap message to the given MDS.
931 *
932 * Caller should be holding s_mutex.
933 */
934static int send_cap_msg(struct ceph_mds_session *session,
935 u64 ino, u64 cid, int op,
936 int caps, int wanted, int dirty,
937 u32 seq, u64 flush_tid, u32 issue_seq, u32 mseq,
938 u64 size, u64 max_size,
939 struct timespec *mtime, struct timespec *atime,
940 u64 time_warp_seq,
Al Viro5706b272011-07-26 04:52:22 -0400941 uid_t uid, gid_t gid, umode_t mode,
Sage Weila8599bd2009-10-06 11:31:12 -0700942 u64 xattr_version,
943 struct ceph_buffer *xattrs_buf,
944 u64 follows)
945{
946 struct ceph_mds_caps *fc;
947 struct ceph_msg *msg;
948
949 dout("send_cap_msg %s %llx %llx caps %s wanted %s dirty %s"
950 " seq %u/%u mseq %u follows %lld size %llu/%llu"
951 " xattr_ver %llu xattr_len %d\n", ceph_cap_op_name(op),
952 cid, ino, ceph_cap_string(caps), ceph_cap_string(wanted),
953 ceph_cap_string(dirty),
954 seq, issue_seq, mseq, follows, size, max_size,
955 xattr_version, xattrs_buf ? (int)xattrs_buf->vec.iov_len : 0);
956
Sage Weilb61c2762011-08-09 15:03:46 -0700957 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, sizeof(*fc), GFP_NOFS, false);
Sage Weila79832f2010-04-01 16:06:19 -0700958 if (!msg)
959 return -ENOMEM;
Sage Weila8599bd2009-10-06 11:31:12 -0700960
Sage Weil6df058c2009-12-22 11:24:33 -0800961 msg->hdr.tid = cpu_to_le64(flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -0700962
Sage Weil6df058c2009-12-22 11:24:33 -0800963 fc = msg->front.iov_base;
Sage Weila8599bd2009-10-06 11:31:12 -0700964 memset(fc, 0, sizeof(*fc));
965
966 fc->cap_id = cpu_to_le64(cid);
967 fc->op = cpu_to_le32(op);
968 fc->seq = cpu_to_le32(seq);
Sage Weila8599bd2009-10-06 11:31:12 -0700969 fc->issue_seq = cpu_to_le32(issue_seq);
970 fc->migrate_seq = cpu_to_le32(mseq);
971 fc->caps = cpu_to_le32(caps);
972 fc->wanted = cpu_to_le32(wanted);
973 fc->dirty = cpu_to_le32(dirty);
974 fc->ino = cpu_to_le64(ino);
975 fc->snap_follows = cpu_to_le64(follows);
976
977 fc->size = cpu_to_le64(size);
978 fc->max_size = cpu_to_le64(max_size);
979 if (mtime)
980 ceph_encode_timespec(&fc->mtime, mtime);
981 if (atime)
982 ceph_encode_timespec(&fc->atime, atime);
983 fc->time_warp_seq = cpu_to_le32(time_warp_seq);
984
985 fc->uid = cpu_to_le32(uid);
986 fc->gid = cpu_to_le32(gid);
987 fc->mode = cpu_to_le32(mode);
988
989 fc->xattr_version = cpu_to_le64(xattr_version);
990 if (xattrs_buf) {
991 msg->middle = ceph_buffer_get(xattrs_buf);
992 fc->xattr_len = cpu_to_le32(xattrs_buf->vec.iov_len);
993 msg->hdr.middle_len = cpu_to_le32(xattrs_buf->vec.iov_len);
994 }
995
996 ceph_con_send(&session->s_con, msg);
997 return 0;
998}
999
Sage Weil3d7ded42010-06-09 16:47:10 -07001000static void __queue_cap_release(struct ceph_mds_session *session,
1001 u64 ino, u64 cap_id, u32 migrate_seq,
1002 u32 issue_seq)
1003{
1004 struct ceph_msg *msg;
1005 struct ceph_mds_cap_release *head;
1006 struct ceph_mds_cap_item *item;
1007
1008 spin_lock(&session->s_cap_lock);
1009 BUG_ON(!session->s_num_cap_releases);
1010 msg = list_first_entry(&session->s_cap_releases,
1011 struct ceph_msg, list_head);
1012
1013 dout(" adding %llx release to mds%d msg %p (%d left)\n",
1014 ino, session->s_mds, msg, session->s_num_cap_releases);
1015
1016 BUG_ON(msg->front.iov_len + sizeof(*item) > PAGE_CACHE_SIZE);
1017 head = msg->front.iov_base;
Wei Yongjunb905a7f2012-09-28 12:59:16 +08001018 le32_add_cpu(&head->num, 1);
Sage Weil3d7ded42010-06-09 16:47:10 -07001019 item = msg->front.iov_base + msg->front.iov_len;
1020 item->ino = cpu_to_le64(ino);
1021 item->cap_id = cpu_to_le64(cap_id);
1022 item->migrate_seq = cpu_to_le32(migrate_seq);
1023 item->seq = cpu_to_le32(issue_seq);
1024
1025 session->s_num_cap_releases--;
1026
1027 msg->front.iov_len += sizeof(*item);
1028 if (le32_to_cpu(head->num) == CEPH_CAPS_PER_RELEASE) {
1029 dout(" release msg %p full\n", msg);
1030 list_move_tail(&msg->list_head, &session->s_cap_releases_done);
1031 } else {
1032 dout(" release msg %p at %d/%d (%d)\n", msg,
1033 (int)le32_to_cpu(head->num),
1034 (int)CEPH_CAPS_PER_RELEASE,
1035 (int)msg->front.iov_len);
1036 }
1037 spin_unlock(&session->s_cap_lock);
1038}
1039
Sage Weila8599bd2009-10-06 11:31:12 -07001040/*
Sage Weila6369742010-02-22 13:59:00 -08001041 * Queue cap releases when an inode is dropped from our cache. Since
Sage Weilbe655592011-11-30 09:47:09 -08001042 * inode is about to be destroyed, there is no need for i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -07001043 */
1044void ceph_queue_caps_release(struct inode *inode)
1045{
1046 struct ceph_inode_info *ci = ceph_inode(inode);
1047 struct rb_node *p;
1048
Sage Weila8599bd2009-10-06 11:31:12 -07001049 p = rb_first(&ci->i_caps);
1050 while (p) {
1051 struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
1052 struct ceph_mds_session *session = cap->session;
Sage Weila8599bd2009-10-06 11:31:12 -07001053
Sage Weil3d7ded42010-06-09 16:47:10 -07001054 __queue_cap_release(session, ceph_ino(inode), cap->cap_id,
1055 cap->mseq, cap->issue_seq);
Sage Weila8599bd2009-10-06 11:31:12 -07001056 p = rb_next(p);
Sage Weil7c1332b2010-02-16 11:39:45 -08001057 __ceph_remove_cap(cap);
Sage Weila8599bd2009-10-06 11:31:12 -07001058 }
Sage Weila8599bd2009-10-06 11:31:12 -07001059}
1060
1061/*
1062 * Send a cap msg on the given inode. Update our caps state, then
Sage Weilbe655592011-11-30 09:47:09 -08001063 * drop i_ceph_lock and send the message.
Sage Weila8599bd2009-10-06 11:31:12 -07001064 *
1065 * Make note of max_size reported/requested from mds, revoked caps
1066 * that have now been implemented.
1067 *
1068 * Make half-hearted attempt ot to invalidate page cache if we are
1069 * dropping RDCACHE. Note that this will leave behind locked pages
1070 * that we'll then need to deal with elsewhere.
1071 *
1072 * Return non-zero if delayed release, or we experienced an error
1073 * such that the caller should requeue + retry later.
1074 *
Sage Weilbe655592011-11-30 09:47:09 -08001075 * called with i_ceph_lock, then drops it.
Sage Weila8599bd2009-10-06 11:31:12 -07001076 * caller should hold snap_rwsem (read), s_mutex.
1077 */
1078static int __send_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap,
1079 int op, int used, int want, int retain, int flushing,
1080 unsigned *pflush_tid)
Sage Weilbe655592011-11-30 09:47:09 -08001081 __releases(cap->ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07001082{
1083 struct ceph_inode_info *ci = cap->ci;
1084 struct inode *inode = &ci->vfs_inode;
1085 u64 cap_id = cap->cap_id;
Sage Weil68c28322010-02-09 13:41:47 -08001086 int held, revoking, dropping, keep;
Sage Weila8599bd2009-10-06 11:31:12 -07001087 u64 seq, issue_seq, mseq, time_warp_seq, follows;
1088 u64 size, max_size;
1089 struct timespec mtime, atime;
1090 int wake = 0;
Al Viro5706b272011-07-26 04:52:22 -04001091 umode_t mode;
Sage Weila8599bd2009-10-06 11:31:12 -07001092 uid_t uid;
1093 gid_t gid;
1094 struct ceph_mds_session *session;
1095 u64 xattr_version = 0;
Sage Weil082afec2010-08-22 15:16:41 -07001096 struct ceph_buffer *xattr_blob = NULL;
Sage Weila8599bd2009-10-06 11:31:12 -07001097 int delayed = 0;
1098 u64 flush_tid = 0;
1099 int i;
1100 int ret;
1101
Sage Weil68c28322010-02-09 13:41:47 -08001102 held = cap->issued | cap->implemented;
1103 revoking = cap->implemented & ~cap->issued;
1104 retain &= ~revoking;
1105 dropping = cap->issued & ~retain;
1106
Sage Weila8599bd2009-10-06 11:31:12 -07001107 dout("__send_cap %p cap %p session %p %s -> %s (revoking %s)\n",
1108 inode, cap, cap->session,
1109 ceph_cap_string(held), ceph_cap_string(held & retain),
1110 ceph_cap_string(revoking));
1111 BUG_ON((retain & CEPH_CAP_PIN) == 0);
1112
1113 session = cap->session;
1114
1115 /* don't release wanted unless we've waited a bit. */
1116 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1117 time_before(jiffies, ci->i_hold_caps_min)) {
1118 dout(" delaying issued %s -> %s, wanted %s -> %s on send\n",
1119 ceph_cap_string(cap->issued),
1120 ceph_cap_string(cap->issued & retain),
1121 ceph_cap_string(cap->mds_wanted),
1122 ceph_cap_string(want));
1123 want |= cap->mds_wanted;
1124 retain |= cap->issued;
1125 delayed = 1;
1126 }
1127 ci->i_ceph_flags &= ~(CEPH_I_NODELAY | CEPH_I_FLUSH);
1128
1129 cap->issued &= retain; /* drop bits we don't want */
1130 if (cap->implemented & ~cap->issued) {
1131 /*
1132 * Wake up any waiters on wanted -> needed transition.
1133 * This is due to the weird transition from buffered
1134 * to sync IO... we need to flush dirty pages _before_
1135 * allowing sync writes to avoid reordering.
1136 */
1137 wake = 1;
1138 }
1139 cap->implemented &= cap->issued | used;
1140 cap->mds_wanted = want;
1141
1142 if (flushing) {
1143 /*
1144 * assign a tid for flush operations so we can avoid
1145 * flush1 -> dirty1 -> flush2 -> flushack1 -> mark
1146 * clean type races. track latest tid for every bit
1147 * so we can handle flush AxFw, flush Fw, and have the
1148 * first ack clean Ax.
1149 */
1150 flush_tid = ++ci->i_cap_flush_last_tid;
1151 if (pflush_tid)
1152 *pflush_tid = flush_tid;
1153 dout(" cap_flush_tid %d\n", (int)flush_tid);
1154 for (i = 0; i < CEPH_CAP_BITS; i++)
1155 if (flushing & (1 << i))
1156 ci->i_cap_flush_tid[i] = flush_tid;
Sage Weil7d8cb262010-08-24 08:44:16 -07001157
1158 follows = ci->i_head_snapc->seq;
1159 } else {
1160 follows = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001161 }
1162
1163 keep = cap->implemented;
1164 seq = cap->seq;
1165 issue_seq = cap->issue_seq;
1166 mseq = cap->mseq;
1167 size = inode->i_size;
1168 ci->i_reported_size = size;
1169 max_size = ci->i_wanted_max_size;
1170 ci->i_requested_max_size = max_size;
1171 mtime = inode->i_mtime;
1172 atime = inode->i_atime;
1173 time_warp_seq = ci->i_time_warp_seq;
Sage Weila8599bd2009-10-06 11:31:12 -07001174 uid = inode->i_uid;
1175 gid = inode->i_gid;
1176 mode = inode->i_mode;
1177
Sage Weil082afec2010-08-22 15:16:41 -07001178 if (flushing & CEPH_CAP_XATTR_EXCL) {
Sage Weila8599bd2009-10-06 11:31:12 -07001179 __ceph_build_xattrs_blob(ci);
Sage Weil082afec2010-08-22 15:16:41 -07001180 xattr_blob = ci->i_xattrs.blob;
1181 xattr_version = ci->i_xattrs.version;
Sage Weila8599bd2009-10-06 11:31:12 -07001182 }
1183
Sage Weilbe655592011-11-30 09:47:09 -08001184 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001185
Sage Weila8599bd2009-10-06 11:31:12 -07001186 ret = send_cap_msg(session, ceph_vino(inode).ino, cap_id,
1187 op, keep, want, flushing, seq, flush_tid, issue_seq, mseq,
1188 size, max_size, &mtime, &atime, time_warp_seq,
Sage Weil082afec2010-08-22 15:16:41 -07001189 uid, gid, mode, xattr_version, xattr_blob,
Sage Weila8599bd2009-10-06 11:31:12 -07001190 follows);
1191 if (ret < 0) {
1192 dout("error sending cap msg, must requeue %p\n", inode);
1193 delayed = 1;
1194 }
1195
1196 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07001197 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07001198
1199 return delayed;
1200}
1201
1202/*
1203 * When a snapshot is taken, clients accumulate dirty metadata on
1204 * inodes with capabilities in ceph_cap_snaps to describe the file
1205 * state at the time the snapshot was taken. This must be flushed
1206 * asynchronously back to the MDS once sync writes complete and dirty
1207 * data is written out.
1208 *
Sage Weile8351242010-09-17 08:03:08 -07001209 * Unless @again is true, skip cap_snaps that were already sent to
1210 * the MDS (i.e., during this session).
1211 *
Sage Weilbe655592011-11-30 09:47:09 -08001212 * Called under i_ceph_lock. Takes s_mutex as needed.
Sage Weila8599bd2009-10-06 11:31:12 -07001213 */
1214void __ceph_flush_snaps(struct ceph_inode_info *ci,
Sage Weile8351242010-09-17 08:03:08 -07001215 struct ceph_mds_session **psession,
1216 int again)
Sage Weilbe655592011-11-30 09:47:09 -08001217 __releases(ci->i_ceph_lock)
1218 __acquires(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07001219{
1220 struct inode *inode = &ci->vfs_inode;
1221 int mds;
1222 struct ceph_cap_snap *capsnap;
1223 u32 mseq;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001224 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001225 struct ceph_mds_session *session = NULL; /* if session != NULL, we hold
1226 session->s_mutex */
1227 u64 next_follows = 0; /* keep track of how far we've gotten through the
1228 i_cap_snaps list, and skip these entries next time
1229 around to avoid an infinite loop */
1230
1231 if (psession)
1232 session = *psession;
1233
1234 dout("__flush_snaps %p\n", inode);
1235retry:
1236 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
1237 /* avoid an infiniute loop after retry */
1238 if (capsnap->follows < next_follows)
1239 continue;
1240 /*
1241 * we need to wait for sync writes to complete and for dirty
1242 * pages to be written out.
1243 */
1244 if (capsnap->dirty_pages || capsnap->writing)
Sage Weilcfc0bf62010-09-14 15:50:59 -07001245 break;
Sage Weila8599bd2009-10-06 11:31:12 -07001246
Sage Weil819ccbf2010-04-01 09:33:46 -07001247 /*
1248 * if cap writeback already occurred, we should have dropped
1249 * the capsnap in ceph_put_wrbuffer_cap_refs.
1250 */
1251 BUG_ON(capsnap->dirty == 0);
1252
Sage Weila8599bd2009-10-06 11:31:12 -07001253 /* pick mds, take s_mutex */
Sage Weilca81f3f2010-06-10 14:21:36 -07001254 if (ci->i_auth_cap == NULL) {
1255 dout("no auth cap (migrating?), doing nothing\n");
1256 goto out;
1257 }
Sage Weile8351242010-09-17 08:03:08 -07001258
1259 /* only flush each capsnap once */
1260 if (!again && !list_empty(&capsnap->flushing_item)) {
1261 dout("already flushed %p, skipping\n", capsnap);
1262 continue;
1263 }
1264
Sage Weilca81f3f2010-06-10 14:21:36 -07001265 mds = ci->i_auth_cap->session->s_mds;
1266 mseq = ci->i_auth_cap->mseq;
1267
Sage Weila8599bd2009-10-06 11:31:12 -07001268 if (session && session->s_mds != mds) {
1269 dout("oops, wrong session %p mutex\n", session);
1270 mutex_unlock(&session->s_mutex);
1271 ceph_put_mds_session(session);
1272 session = NULL;
1273 }
1274 if (!session) {
Sage Weilbe655592011-11-30 09:47:09 -08001275 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001276 mutex_lock(&mdsc->mutex);
1277 session = __ceph_lookup_mds_session(mdsc, mds);
1278 mutex_unlock(&mdsc->mutex);
1279 if (session) {
1280 dout("inverting session/ino locks on %p\n",
1281 session);
1282 mutex_lock(&session->s_mutex);
1283 }
1284 /*
1285 * if session == NULL, we raced against a cap
Sage Weilca81f3f2010-06-10 14:21:36 -07001286 * deletion or migration. retry, and we'll
1287 * get a better @mds value next time.
Sage Weila8599bd2009-10-06 11:31:12 -07001288 */
Sage Weilbe655592011-11-30 09:47:09 -08001289 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001290 goto retry;
1291 }
1292
1293 capsnap->flush_tid = ++ci->i_cap_flush_last_tid;
1294 atomic_inc(&capsnap->nref);
1295 if (!list_empty(&capsnap->flushing_item))
1296 list_del_init(&capsnap->flushing_item);
1297 list_add_tail(&capsnap->flushing_item,
1298 &session->s_cap_snaps_flushing);
Sage Weilbe655592011-11-30 09:47:09 -08001299 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001300
Sage Weilcfc0bf62010-09-14 15:50:59 -07001301 dout("flush_snaps %p cap_snap %p follows %lld tid %llu\n",
1302 inode, capsnap, capsnap->follows, capsnap->flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -07001303 send_cap_msg(session, ceph_vino(inode).ino, 0,
1304 CEPH_CAP_OP_FLUSHSNAP, capsnap->issued, 0,
1305 capsnap->dirty, 0, capsnap->flush_tid, 0, mseq,
1306 capsnap->size, 0,
1307 &capsnap->mtime, &capsnap->atime,
1308 capsnap->time_warp_seq,
1309 capsnap->uid, capsnap->gid, capsnap->mode,
Sage Weil4a625be2010-08-22 15:03:56 -07001310 capsnap->xattr_version, capsnap->xattr_blob,
Sage Weila8599bd2009-10-06 11:31:12 -07001311 capsnap->follows);
1312
1313 next_follows = capsnap->follows + 1;
1314 ceph_put_cap_snap(capsnap);
1315
Sage Weilbe655592011-11-30 09:47:09 -08001316 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001317 goto retry;
1318 }
1319
1320 /* we flushed them all; remove this inode from the queue */
1321 spin_lock(&mdsc->snap_flush_lock);
1322 list_del_init(&ci->i_snap_flush_item);
1323 spin_unlock(&mdsc->snap_flush_lock);
1324
Sage Weilca81f3f2010-06-10 14:21:36 -07001325out:
Sage Weila8599bd2009-10-06 11:31:12 -07001326 if (psession)
1327 *psession = session;
1328 else if (session) {
1329 mutex_unlock(&session->s_mutex);
1330 ceph_put_mds_session(session);
1331 }
1332}
1333
1334static void ceph_flush_snaps(struct ceph_inode_info *ci)
1335{
Sage Weilbe655592011-11-30 09:47:09 -08001336 spin_lock(&ci->i_ceph_lock);
Sage Weile8351242010-09-17 08:03:08 -07001337 __ceph_flush_snaps(ci, NULL, 0);
Sage Weilbe655592011-11-30 09:47:09 -08001338 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001339}
1340
1341/*
Sage Weilfca65b42011-05-04 11:33:47 -07001342 * Mark caps dirty. If inode is newly dirty, return the dirty flags.
1343 * Caller is then responsible for calling __mark_inode_dirty with the
1344 * returned flags value.
Sage Weil76e3b392009-10-15 18:13:53 -07001345 */
Sage Weilfca65b42011-05-04 11:33:47 -07001346int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask)
Sage Weil76e3b392009-10-15 18:13:53 -07001347{
Cheng Renquan640ef792010-03-26 17:40:33 +08001348 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001349 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
Sage Weil76e3b392009-10-15 18:13:53 -07001350 struct inode *inode = &ci->vfs_inode;
1351 int was = ci->i_dirty_caps;
1352 int dirty = 0;
1353
1354 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci->vfs_inode,
1355 ceph_cap_string(mask), ceph_cap_string(was),
1356 ceph_cap_string(was | mask));
1357 ci->i_dirty_caps |= mask;
1358 if (was == 0) {
Sage Weil7d8cb262010-08-24 08:44:16 -07001359 if (!ci->i_head_snapc)
1360 ci->i_head_snapc = ceph_get_snap_context(
1361 ci->i_snap_realm->cached_context);
Yan, Zheng06852352012-11-19 10:49:07 +08001362 dout(" inode %p now dirty snapc %p auth cap %p\n",
1363 &ci->vfs_inode, ci->i_head_snapc, ci->i_auth_cap);
Sage Weil76e3b392009-10-15 18:13:53 -07001364 BUG_ON(!list_empty(&ci->i_dirty_item));
1365 spin_lock(&mdsc->cap_dirty_lock);
Yan, Zheng06852352012-11-19 10:49:07 +08001366 if (ci->i_auth_cap)
1367 list_add(&ci->i_dirty_item, &mdsc->cap_dirty);
1368 else
1369 list_add(&ci->i_dirty_item,
1370 &mdsc->cap_dirty_migrating);
Sage Weil76e3b392009-10-15 18:13:53 -07001371 spin_unlock(&mdsc->cap_dirty_lock);
1372 if (ci->i_flushing_caps == 0) {
Sage Weil3772d262011-05-03 09:28:08 -07001373 ihold(inode);
Sage Weil76e3b392009-10-15 18:13:53 -07001374 dirty |= I_DIRTY_SYNC;
1375 }
1376 }
1377 BUG_ON(list_empty(&ci->i_dirty_item));
1378 if (((was | ci->i_flushing_caps) & CEPH_CAP_FILE_BUFFER) &&
1379 (mask & CEPH_CAP_FILE_BUFFER))
1380 dirty |= I_DIRTY_DATASYNC;
Sage Weil76e3b392009-10-15 18:13:53 -07001381 __cap_delay_requeue(mdsc, ci);
Sage Weilfca65b42011-05-04 11:33:47 -07001382 return dirty;
Sage Weil76e3b392009-10-15 18:13:53 -07001383}
1384
1385/*
Sage Weila8599bd2009-10-06 11:31:12 -07001386 * Add dirty inode to the flushing list. Assigned a seq number so we
1387 * can wait for caps to flush without starving.
Sage Weilcdc35f92009-10-14 14:24:19 -07001388 *
Sage Weilbe655592011-11-30 09:47:09 -08001389 * Called under i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -07001390 */
Sage Weilcdc35f92009-10-14 14:24:19 -07001391static int __mark_caps_flushing(struct inode *inode,
Sage Weila8599bd2009-10-06 11:31:12 -07001392 struct ceph_mds_session *session)
1393{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001394 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001395 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weilcdc35f92009-10-14 14:24:19 -07001396 int flushing;
Sage Weil50b885b2009-12-01 14:12:07 -08001397
Sage Weilcdc35f92009-10-14 14:24:19 -07001398 BUG_ON(ci->i_dirty_caps == 0);
Sage Weila8599bd2009-10-06 11:31:12 -07001399 BUG_ON(list_empty(&ci->i_dirty_item));
Sage Weilcdc35f92009-10-14 14:24:19 -07001400
1401 flushing = ci->i_dirty_caps;
1402 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1403 ceph_cap_string(flushing),
1404 ceph_cap_string(ci->i_flushing_caps),
1405 ceph_cap_string(ci->i_flushing_caps | flushing));
1406 ci->i_flushing_caps |= flushing;
1407 ci->i_dirty_caps = 0;
Sage Weilafcdaea2009-10-14 14:27:38 -07001408 dout(" inode %p now !dirty\n", inode);
Sage Weilcdc35f92009-10-14 14:24:19 -07001409
Sage Weila8599bd2009-10-06 11:31:12 -07001410 spin_lock(&mdsc->cap_dirty_lock);
Sage Weilafcdaea2009-10-14 14:27:38 -07001411 list_del_init(&ci->i_dirty_item);
1412
1413 ci->i_cap_flush_seq = ++mdsc->cap_flush_seq;
Sage Weila8599bd2009-10-06 11:31:12 -07001414 if (list_empty(&ci->i_flushing_item)) {
1415 list_add_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1416 mdsc->num_cap_flushing++;
Sage Weilafcdaea2009-10-14 14:27:38 -07001417 dout(" inode %p now flushing seq %lld\n", inode,
1418 ci->i_cap_flush_seq);
1419 } else {
1420 list_move_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1421 dout(" inode %p now flushing (more) seq %lld\n", inode,
Sage Weila8599bd2009-10-06 11:31:12 -07001422 ci->i_cap_flush_seq);
1423 }
1424 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weilcdc35f92009-10-14 14:24:19 -07001425
1426 return flushing;
Sage Weila8599bd2009-10-06 11:31:12 -07001427}
1428
1429/*
Sage Weil5ecad6f2010-02-17 10:43:37 -08001430 * try to invalidate mapping pages without blocking.
1431 */
Sage Weil5ecad6f2010-02-17 10:43:37 -08001432static int try_nonblocking_invalidate(struct inode *inode)
1433{
1434 struct ceph_inode_info *ci = ceph_inode(inode);
1435 u32 invalidating_gen = ci->i_rdcache_gen;
1436
Sage Weilbe655592011-11-30 09:47:09 -08001437 spin_unlock(&ci->i_ceph_lock);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001438 invalidate_mapping_pages(&inode->i_data, 0, -1);
Sage Weilbe655592011-11-30 09:47:09 -08001439 spin_lock(&ci->i_ceph_lock);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001440
Sage Weil18a38192010-09-17 10:46:44 -07001441 if (inode->i_data.nrpages == 0 &&
Sage Weil5ecad6f2010-02-17 10:43:37 -08001442 invalidating_gen == ci->i_rdcache_gen) {
1443 /* success. */
1444 dout("try_nonblocking_invalidate %p success\n", inode);
Sage Weilcd045cb2010-11-04 11:05:05 -07001445 /* save any racing async invalidate some trouble */
1446 ci->i_rdcache_revoking = ci->i_rdcache_gen - 1;
Sage Weil5ecad6f2010-02-17 10:43:37 -08001447 return 0;
1448 }
1449 dout("try_nonblocking_invalidate %p failed\n", inode);
1450 return -1;
1451}
1452
1453/*
Sage Weila8599bd2009-10-06 11:31:12 -07001454 * Swiss army knife function to examine currently used and wanted
1455 * versus held caps. Release, flush, ack revoked caps to mds as
1456 * appropriate.
1457 *
1458 * CHECK_CAPS_NODELAY - caller is delayed work and we should not delay
1459 * cap release further.
1460 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1461 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1462 * further delay.
1463 */
1464void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1465 struct ceph_mds_session *session)
1466{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001467 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1468 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001469 struct inode *inode = &ci->vfs_inode;
1470 struct ceph_cap *cap;
Yan, Zheng395c3122013-01-04 14:37:57 +08001471 int file_wanted, used, cap_used;
Sage Weila8599bd2009-10-06 11:31:12 -07001472 int took_snap_rwsem = 0; /* true if mdsc->snap_rwsem held */
Sage Weilcbd03632010-02-09 13:41:18 -08001473 int issued, implemented, want, retain, revoking, flushing = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001474 int mds = -1; /* keep track of how far we've gone through i_caps list
1475 to avoid an infinite loop on retry */
1476 struct rb_node *p;
1477 int tried_invalidate = 0;
1478 int delayed = 0, sent = 0, force_requeue = 0, num;
Sage Weilcbd03632010-02-09 13:41:18 -08001479 int queue_invalidate = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001480 int is_delayed = flags & CHECK_CAPS_NODELAY;
1481
1482 /* if we are unmounting, flush any unused caps immediately. */
1483 if (mdsc->stopping)
1484 is_delayed = 1;
1485
Sage Weilbe655592011-11-30 09:47:09 -08001486 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001487
1488 if (ci->i_ceph_flags & CEPH_I_FLUSH)
1489 flags |= CHECK_CAPS_FLUSH;
1490
1491 /* flush snaps first time around only */
1492 if (!list_empty(&ci->i_cap_snaps))
Sage Weile8351242010-09-17 08:03:08 -07001493 __ceph_flush_snaps(ci, &session, 0);
Sage Weila8599bd2009-10-06 11:31:12 -07001494 goto retry_locked;
1495retry:
Sage Weilbe655592011-11-30 09:47:09 -08001496 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001497retry_locked:
1498 file_wanted = __ceph_caps_file_wanted(ci);
1499 used = __ceph_caps_used(ci);
1500 want = file_wanted | used;
Sage Weilcbd03632010-02-09 13:41:18 -08001501 issued = __ceph_caps_issued(ci, &implemented);
1502 revoking = implemented & ~issued;
Sage Weila8599bd2009-10-06 11:31:12 -07001503
1504 retain = want | CEPH_CAP_PIN;
1505 if (!mdsc->stopping && inode->i_nlink > 0) {
1506 if (want) {
1507 retain |= CEPH_CAP_ANY; /* be greedy */
1508 } else {
1509 retain |= CEPH_CAP_ANY_SHARED;
1510 /*
1511 * keep RD only if we didn't have the file open RW,
1512 * because then the mds would revoke it anyway to
1513 * journal max_size=0.
1514 */
1515 if (ci->i_max_size == 0)
1516 retain |= CEPH_CAP_ANY_RD;
1517 }
1518 }
1519
1520 dout("check_caps %p file_want %s used %s dirty %s flushing %s"
Sage Weilcbd03632010-02-09 13:41:18 -08001521 " issued %s revoking %s retain %s %s%s%s\n", inode,
Sage Weila8599bd2009-10-06 11:31:12 -07001522 ceph_cap_string(file_wanted),
1523 ceph_cap_string(used), ceph_cap_string(ci->i_dirty_caps),
1524 ceph_cap_string(ci->i_flushing_caps),
Sage Weilcbd03632010-02-09 13:41:18 -08001525 ceph_cap_string(issued), ceph_cap_string(revoking),
Sage Weila8599bd2009-10-06 11:31:12 -07001526 ceph_cap_string(retain),
1527 (flags & CHECK_CAPS_AUTHONLY) ? " AUTHONLY" : "",
1528 (flags & CHECK_CAPS_NODELAY) ? " NODELAY" : "",
1529 (flags & CHECK_CAPS_FLUSH) ? " FLUSH" : "");
1530
1531 /*
1532 * If we no longer need to hold onto old our caps, and we may
1533 * have cached pages, but don't want them, then try to invalidate.
1534 * If we fail, it's because pages are locked.... try again later.
1535 */
1536 if ((!is_delayed || mdsc->stopping) &&
1537 ci->i_wrbuffer_ref == 0 && /* no dirty pages... */
Sage Weil93afd442010-09-17 08:38:25 -07001538 inode->i_data.nrpages && /* have cached pages */
Sage Weilcbd03632010-02-09 13:41:18 -08001539 (file_wanted == 0 || /* no open files */
Sage Weil29625072010-05-27 10:40:43 -07001540 (revoking & (CEPH_CAP_FILE_CACHE|
1541 CEPH_CAP_FILE_LAZYIO))) && /* or revoking cache */
Sage Weila8599bd2009-10-06 11:31:12 -07001542 !tried_invalidate) {
Sage Weila8599bd2009-10-06 11:31:12 -07001543 dout("check_caps trying to invalidate on %p\n", inode);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001544 if (try_nonblocking_invalidate(inode) < 0) {
Sage Weil29625072010-05-27 10:40:43 -07001545 if (revoking & (CEPH_CAP_FILE_CACHE|
1546 CEPH_CAP_FILE_LAZYIO)) {
Sage Weil5ecad6f2010-02-17 10:43:37 -08001547 dout("check_caps queuing invalidate\n");
1548 queue_invalidate = 1;
1549 ci->i_rdcache_revoking = ci->i_rdcache_gen;
1550 } else {
1551 dout("check_caps failed to invalidate pages\n");
1552 /* we failed to invalidate pages. check these
1553 caps again later. */
1554 force_requeue = 1;
1555 __cap_set_timeouts(mdsc, ci);
1556 }
Sage Weila8599bd2009-10-06 11:31:12 -07001557 }
1558 tried_invalidate = 1;
1559 goto retry_locked;
1560 }
1561
1562 num = 0;
1563 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1564 cap = rb_entry(p, struct ceph_cap, ci_node);
1565 num++;
1566
1567 /* avoid looping forever */
1568 if (mds >= cap->mds ||
1569 ((flags & CHECK_CAPS_AUTHONLY) && cap != ci->i_auth_cap))
1570 continue;
1571
1572 /* NOTE: no side-effects allowed, until we take s_mutex */
1573
Yan, Zheng395c3122013-01-04 14:37:57 +08001574 cap_used = used;
1575 if (ci->i_auth_cap && cap != ci->i_auth_cap)
1576 cap_used &= ~ci->i_auth_cap->issued;
1577
Sage Weila8599bd2009-10-06 11:31:12 -07001578 revoking = cap->implemented & ~cap->issued;
Yan, Zheng395c3122013-01-04 14:37:57 +08001579 dout(" mds%d cap %p used %s issued %s implemented %s revoking %s\n",
Sage Weil088b3f52011-01-18 08:56:01 -08001580 cap->mds, cap, ceph_cap_string(cap->issued),
Yan, Zheng395c3122013-01-04 14:37:57 +08001581 ceph_cap_string(cap_used),
Sage Weil088b3f52011-01-18 08:56:01 -08001582 ceph_cap_string(cap->implemented),
1583 ceph_cap_string(revoking));
Sage Weila8599bd2009-10-06 11:31:12 -07001584
1585 if (cap == ci->i_auth_cap &&
1586 (cap->issued & CEPH_CAP_FILE_WR)) {
1587 /* request larger max_size from MDS? */
1588 if (ci->i_wanted_max_size > ci->i_max_size &&
1589 ci->i_wanted_max_size > ci->i_requested_max_size) {
1590 dout("requesting new max_size\n");
1591 goto ack;
1592 }
1593
1594 /* approaching file_max? */
1595 if ((inode->i_size << 1) >= ci->i_max_size &&
1596 (ci->i_reported_size << 1) < ci->i_max_size) {
1597 dout("i_size approaching max_size\n");
1598 goto ack;
1599 }
1600 }
1601 /* flush anything dirty? */
1602 if (cap == ci->i_auth_cap && (flags & CHECK_CAPS_FLUSH) &&
1603 ci->i_dirty_caps) {
1604 dout("flushing dirty caps\n");
1605 goto ack;
1606 }
1607
1608 /* completed revocation? going down and there are no caps? */
Yan, Zheng395c3122013-01-04 14:37:57 +08001609 if (revoking && (revoking & cap_used) == 0) {
Sage Weila8599bd2009-10-06 11:31:12 -07001610 dout("completed revocation of %s\n",
1611 ceph_cap_string(cap->implemented & ~cap->issued));
1612 goto ack;
1613 }
1614
1615 /* want more caps from mds? */
1616 if (want & ~(cap->mds_wanted | cap->issued))
1617 goto ack;
1618
1619 /* things we might delay */
1620 if ((cap->issued & ~retain) == 0 &&
1621 cap->mds_wanted == want)
1622 continue; /* nope, all good */
1623
1624 if (is_delayed)
1625 goto ack;
1626
1627 /* delay? */
1628 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1629 time_before(jiffies, ci->i_hold_caps_max)) {
1630 dout(" delaying issued %s -> %s, wanted %s -> %s\n",
1631 ceph_cap_string(cap->issued),
1632 ceph_cap_string(cap->issued & retain),
1633 ceph_cap_string(cap->mds_wanted),
1634 ceph_cap_string(want));
1635 delayed++;
1636 continue;
1637 }
1638
1639ack:
Sage Weile9964c12010-03-01 15:16:56 -08001640 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
1641 dout(" skipping %p I_NOFLUSH set\n", inode);
1642 continue;
1643 }
1644
Sage Weila8599bd2009-10-06 11:31:12 -07001645 if (session && session != cap->session) {
1646 dout("oops, wrong session %p mutex\n", session);
1647 mutex_unlock(&session->s_mutex);
1648 session = NULL;
1649 }
1650 if (!session) {
1651 session = cap->session;
1652 if (mutex_trylock(&session->s_mutex) == 0) {
1653 dout("inverting session/ino locks on %p\n",
1654 session);
Sage Weilbe655592011-11-30 09:47:09 -08001655 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001656 if (took_snap_rwsem) {
1657 up_read(&mdsc->snap_rwsem);
1658 took_snap_rwsem = 0;
1659 }
1660 mutex_lock(&session->s_mutex);
1661 goto retry;
1662 }
1663 }
1664 /* take snap_rwsem after session mutex */
1665 if (!took_snap_rwsem) {
1666 if (down_read_trylock(&mdsc->snap_rwsem) == 0) {
1667 dout("inverting snap/in locks on %p\n",
1668 inode);
Sage Weilbe655592011-11-30 09:47:09 -08001669 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001670 down_read(&mdsc->snap_rwsem);
1671 took_snap_rwsem = 1;
1672 goto retry;
1673 }
1674 took_snap_rwsem = 1;
1675 }
1676
Sage Weilcdc35f92009-10-14 14:24:19 -07001677 if (cap == ci->i_auth_cap && ci->i_dirty_caps)
1678 flushing = __mark_caps_flushing(inode, session);
Sage Weil24be0c42011-01-18 08:48:06 -08001679 else
1680 flushing = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001681
1682 mds = cap->mds; /* remember mds, so we don't repeat */
1683 sent++;
1684
Sage Weilbe655592011-11-30 09:47:09 -08001685 /* __send_cap drops i_ceph_lock */
Yan, Zheng395c3122013-01-04 14:37:57 +08001686 delayed += __send_cap(mdsc, cap, CEPH_CAP_OP_UPDATE, cap_used,
1687 want, retain, flushing, NULL);
Sage Weilbe655592011-11-30 09:47:09 -08001688 goto retry; /* retake i_ceph_lock and restart our cap scan. */
Sage Weila8599bd2009-10-06 11:31:12 -07001689 }
1690
1691 /*
1692 * Reschedule delayed caps release if we delayed anything,
1693 * otherwise cancel.
1694 */
1695 if (delayed && is_delayed)
1696 force_requeue = 1; /* __send_cap delayed release; requeue */
1697 if (!delayed && !is_delayed)
1698 __cap_delay_cancel(mdsc, ci);
1699 else if (!is_delayed || force_requeue)
1700 __cap_delay_requeue(mdsc, ci);
1701
Sage Weilbe655592011-11-30 09:47:09 -08001702 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001703
Sage Weilcbd03632010-02-09 13:41:18 -08001704 if (queue_invalidate)
Sage Weil3c6f6b72010-02-09 15:24:44 -08001705 ceph_queue_invalidate(inode);
Sage Weilcbd03632010-02-09 13:41:18 -08001706
Sage Weilcdc2ce02010-03-16 13:39:28 -07001707 if (session)
Sage Weila8599bd2009-10-06 11:31:12 -07001708 mutex_unlock(&session->s_mutex);
1709 if (took_snap_rwsem)
1710 up_read(&mdsc->snap_rwsem);
1711}
1712
1713/*
Sage Weila8599bd2009-10-06 11:31:12 -07001714 * Try to flush dirty caps back to the auth mds.
1715 */
1716static int try_flush_caps(struct inode *inode, struct ceph_mds_session *session,
1717 unsigned *flush_tid)
1718{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001719 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001720 struct ceph_inode_info *ci = ceph_inode(inode);
1721 int unlock_session = session ? 0 : 1;
1722 int flushing = 0;
1723
1724retry:
Sage Weilbe655592011-11-30 09:47:09 -08001725 spin_lock(&ci->i_ceph_lock);
Sage Weile9964c12010-03-01 15:16:56 -08001726 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
1727 dout("try_flush_caps skipping %p I_NOFLUSH set\n", inode);
1728 goto out;
1729 }
Sage Weila8599bd2009-10-06 11:31:12 -07001730 if (ci->i_dirty_caps && ci->i_auth_cap) {
1731 struct ceph_cap *cap = ci->i_auth_cap;
1732 int used = __ceph_caps_used(ci);
1733 int want = __ceph_caps_wanted(ci);
1734 int delayed;
1735
1736 if (!session) {
Sage Weilbe655592011-11-30 09:47:09 -08001737 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001738 session = cap->session;
1739 mutex_lock(&session->s_mutex);
1740 goto retry;
1741 }
1742 BUG_ON(session != cap->session);
1743 if (cap->session->s_state < CEPH_MDS_SESSION_OPEN)
1744 goto out;
1745
Sage Weilcdc35f92009-10-14 14:24:19 -07001746 flushing = __mark_caps_flushing(inode, session);
Sage Weila8599bd2009-10-06 11:31:12 -07001747
Sage Weilbe655592011-11-30 09:47:09 -08001748 /* __send_cap drops i_ceph_lock */
Sage Weila8599bd2009-10-06 11:31:12 -07001749 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH, used, want,
1750 cap->issued | cap->implemented, flushing,
1751 flush_tid);
1752 if (!delayed)
1753 goto out_unlocked;
1754
Sage Weilbe655592011-11-30 09:47:09 -08001755 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001756 __cap_delay_requeue(mdsc, ci);
1757 }
1758out:
Sage Weilbe655592011-11-30 09:47:09 -08001759 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001760out_unlocked:
1761 if (session && unlock_session)
1762 mutex_unlock(&session->s_mutex);
1763 return flushing;
1764}
1765
1766/*
1767 * Return true if we've flushed caps through the given flush_tid.
1768 */
1769static int caps_are_flushed(struct inode *inode, unsigned tid)
1770{
1771 struct ceph_inode_info *ci = ceph_inode(inode);
Dan Carpentera5ee7512010-05-07 10:27:14 +02001772 int i, ret = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07001773
Sage Weilbe655592011-11-30 09:47:09 -08001774 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001775 for (i = 0; i < CEPH_CAP_BITS; i++)
1776 if ((ci->i_flushing_caps & (1 << i)) &&
1777 ci->i_cap_flush_tid[i] <= tid) {
1778 /* still flushing this bit */
1779 ret = 0;
1780 break;
1781 }
Sage Weilbe655592011-11-30 09:47:09 -08001782 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001783 return ret;
1784}
1785
1786/*
1787 * Wait on any unsafe replies for the given inode. First wait on the
1788 * newest request, and make that the upper bound. Then, if there are
1789 * more requests, keep waiting on the oldest as long as it is still older
1790 * than the original request.
1791 */
1792static void sync_write_wait(struct inode *inode)
1793{
1794 struct ceph_inode_info *ci = ceph_inode(inode);
1795 struct list_head *head = &ci->i_unsafe_writes;
1796 struct ceph_osd_request *req;
1797 u64 last_tid;
1798
1799 spin_lock(&ci->i_unsafe_lock);
1800 if (list_empty(head))
1801 goto out;
1802
1803 /* set upper bound as _last_ entry in chain */
1804 req = list_entry(head->prev, struct ceph_osd_request,
1805 r_unsafe_item);
1806 last_tid = req->r_tid;
1807
1808 do {
1809 ceph_osdc_get_request(req);
1810 spin_unlock(&ci->i_unsafe_lock);
1811 dout("sync_write_wait on tid %llu (until %llu)\n",
1812 req->r_tid, last_tid);
1813 wait_for_completion(&req->r_safe_completion);
1814 spin_lock(&ci->i_unsafe_lock);
1815 ceph_osdc_put_request(req);
1816
1817 /*
1818 * from here on look at first entry in chain, since we
1819 * only want to wait for anything older than last_tid
1820 */
1821 if (list_empty(head))
1822 break;
1823 req = list_entry(head->next, struct ceph_osd_request,
1824 r_unsafe_item);
1825 } while (req->r_tid < last_tid);
1826out:
1827 spin_unlock(&ci->i_unsafe_lock);
1828}
1829
Josef Bacik02c24a82011-07-16 20:44:56 -04001830int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync)
Sage Weila8599bd2009-10-06 11:31:12 -07001831{
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001832 struct inode *inode = file->f_mapping->host;
Sage Weila8599bd2009-10-06 11:31:12 -07001833 struct ceph_inode_info *ci = ceph_inode(inode);
1834 unsigned flush_tid;
1835 int ret;
1836 int dirty;
1837
1838 dout("fsync %p%s\n", inode, datasync ? " datasync" : "");
1839 sync_write_wait(inode);
1840
Josef Bacik02c24a82011-07-16 20:44:56 -04001841 ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
Sage Weila8599bd2009-10-06 11:31:12 -07001842 if (ret < 0)
1843 return ret;
Josef Bacik02c24a82011-07-16 20:44:56 -04001844 mutex_lock(&inode->i_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07001845
1846 dirty = try_flush_caps(inode, NULL, &flush_tid);
1847 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty));
1848
1849 /*
1850 * only wait on non-file metadata writeback (the mds
1851 * can recover size and mtime, so we don't need to
1852 * wait for that)
1853 */
1854 if (!datasync && (dirty & ~CEPH_CAP_ANY_FILE_WR)) {
1855 dout("fsync waiting for flush_tid %u\n", flush_tid);
1856 ret = wait_event_interruptible(ci->i_cap_wq,
1857 caps_are_flushed(inode, flush_tid));
1858 }
1859
1860 dout("fsync %p%s done\n", inode, datasync ? " datasync" : "");
Josef Bacik02c24a82011-07-16 20:44:56 -04001861 mutex_unlock(&inode->i_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07001862 return ret;
1863}
1864
1865/*
1866 * Flush any dirty caps back to the mds. If we aren't asked to wait,
1867 * queue inode for flush but don't do so immediately, because we can
1868 * get by with fewer MDS messages if we wait for data writeback to
1869 * complete first.
1870 */
Stephen Rothwellf1a3d572010-01-18 11:53:08 +11001871int ceph_write_inode(struct inode *inode, struct writeback_control *wbc)
Sage Weila8599bd2009-10-06 11:31:12 -07001872{
1873 struct ceph_inode_info *ci = ceph_inode(inode);
1874 unsigned flush_tid;
1875 int err = 0;
1876 int dirty;
Stephen Rothwellf1a3d572010-01-18 11:53:08 +11001877 int wait = wbc->sync_mode == WB_SYNC_ALL;
Sage Weila8599bd2009-10-06 11:31:12 -07001878
1879 dout("write_inode %p wait=%d\n", inode, wait);
1880 if (wait) {
1881 dirty = try_flush_caps(inode, NULL, &flush_tid);
1882 if (dirty)
1883 err = wait_event_interruptible(ci->i_cap_wq,
1884 caps_are_flushed(inode, flush_tid));
1885 } else {
Cheng Renquan640ef792010-03-26 17:40:33 +08001886 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001887 ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001888
Sage Weilbe655592011-11-30 09:47:09 -08001889 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001890 if (__ceph_caps_dirty(ci))
1891 __cap_delay_requeue_front(mdsc, ci);
Sage Weilbe655592011-11-30 09:47:09 -08001892 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001893 }
1894 return err;
1895}
1896
1897/*
1898 * After a recovering MDS goes active, we need to resend any caps
1899 * we were flushing.
1900 *
1901 * Caller holds session->s_mutex.
1902 */
1903static void kick_flushing_capsnaps(struct ceph_mds_client *mdsc,
1904 struct ceph_mds_session *session)
1905{
1906 struct ceph_cap_snap *capsnap;
1907
1908 dout("kick_flushing_capsnaps mds%d\n", session->s_mds);
1909 list_for_each_entry(capsnap, &session->s_cap_snaps_flushing,
1910 flushing_item) {
1911 struct ceph_inode_info *ci = capsnap->ci;
1912 struct inode *inode = &ci->vfs_inode;
1913 struct ceph_cap *cap;
1914
Sage Weilbe655592011-11-30 09:47:09 -08001915 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001916 cap = ci->i_auth_cap;
1917 if (cap && cap->session == session) {
1918 dout("kick_flushing_caps %p cap %p capsnap %p\n", inode,
1919 cap, capsnap);
Sage Weile8351242010-09-17 08:03:08 -07001920 __ceph_flush_snaps(ci, &session, 1);
Sage Weila8599bd2009-10-06 11:31:12 -07001921 } else {
1922 pr_err("%p auth cap %p not mds%d ???\n", inode,
1923 cap, session->s_mds);
Sage Weila8599bd2009-10-06 11:31:12 -07001924 }
Sage Weilbe655592011-11-30 09:47:09 -08001925 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001926 }
1927}
1928
1929void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
1930 struct ceph_mds_session *session)
1931{
1932 struct ceph_inode_info *ci;
1933
1934 kick_flushing_capsnaps(mdsc, session);
1935
1936 dout("kick_flushing_caps mds%d\n", session->s_mds);
1937 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
1938 struct inode *inode = &ci->vfs_inode;
1939 struct ceph_cap *cap;
1940 int delayed = 0;
1941
Sage Weilbe655592011-11-30 09:47:09 -08001942 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001943 cap = ci->i_auth_cap;
1944 if (cap && cap->session == session) {
1945 dout("kick_flushing_caps %p cap %p %s\n", inode,
1946 cap, ceph_cap_string(ci->i_flushing_caps));
1947 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
1948 __ceph_caps_used(ci),
1949 __ceph_caps_wanted(ci),
1950 cap->issued | cap->implemented,
1951 ci->i_flushing_caps, NULL);
1952 if (delayed) {
Sage Weilbe655592011-11-30 09:47:09 -08001953 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001954 __cap_delay_requeue(mdsc, ci);
Sage Weilbe655592011-11-30 09:47:09 -08001955 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001956 }
1957 } else {
1958 pr_err("%p auth cap %p not mds%d ???\n", inode,
1959 cap, session->s_mds);
Sage Weilbe655592011-11-30 09:47:09 -08001960 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001961 }
1962 }
1963}
1964
Sage Weil088b3f52011-01-18 08:56:01 -08001965static void kick_flushing_inode_caps(struct ceph_mds_client *mdsc,
1966 struct ceph_mds_session *session,
1967 struct inode *inode)
1968{
1969 struct ceph_inode_info *ci = ceph_inode(inode);
1970 struct ceph_cap *cap;
1971 int delayed = 0;
1972
Sage Weilbe655592011-11-30 09:47:09 -08001973 spin_lock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08001974 cap = ci->i_auth_cap;
1975 dout("kick_flushing_inode_caps %p flushing %s flush_seq %lld\n", inode,
1976 ceph_cap_string(ci->i_flushing_caps), ci->i_cap_flush_seq);
1977 __ceph_flush_snaps(ci, &session, 1);
1978 if (ci->i_flushing_caps) {
1979 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
1980 __ceph_caps_used(ci),
1981 __ceph_caps_wanted(ci),
1982 cap->issued | cap->implemented,
1983 ci->i_flushing_caps, NULL);
1984 if (delayed) {
Sage Weilbe655592011-11-30 09:47:09 -08001985 spin_lock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08001986 __cap_delay_requeue(mdsc, ci);
Sage Weilbe655592011-11-30 09:47:09 -08001987 spin_unlock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08001988 }
1989 } else {
Sage Weilbe655592011-11-30 09:47:09 -08001990 spin_unlock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08001991 }
1992}
1993
Sage Weila8599bd2009-10-06 11:31:12 -07001994
1995/*
1996 * Take references to capabilities we hold, so that we don't release
1997 * them to the MDS prematurely.
1998 *
Sage Weilbe655592011-11-30 09:47:09 -08001999 * Protected by i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -07002000 */
2001static void __take_cap_refs(struct ceph_inode_info *ci, int got)
2002{
2003 if (got & CEPH_CAP_PIN)
2004 ci->i_pin_ref++;
2005 if (got & CEPH_CAP_FILE_RD)
2006 ci->i_rd_ref++;
2007 if (got & CEPH_CAP_FILE_CACHE)
2008 ci->i_rdcache_ref++;
2009 if (got & CEPH_CAP_FILE_WR)
2010 ci->i_wr_ref++;
2011 if (got & CEPH_CAP_FILE_BUFFER) {
Henry C Changd3d07202011-05-11 10:29:54 +00002012 if (ci->i_wb_ref == 0)
Sage Weil3772d262011-05-03 09:28:08 -07002013 ihold(&ci->vfs_inode);
Henry C Changd3d07202011-05-11 10:29:54 +00002014 ci->i_wb_ref++;
2015 dout("__take_cap_refs %p wb %d -> %d (?)\n",
2016 &ci->vfs_inode, ci->i_wb_ref-1, ci->i_wb_ref);
Sage Weila8599bd2009-10-06 11:31:12 -07002017 }
2018}
2019
2020/*
2021 * Try to grab cap references. Specify those refs we @want, and the
2022 * minimal set we @need. Also include the larger offset we are writing
2023 * to (when applicable), and check against max_size here as well.
2024 * Note that caller is responsible for ensuring max_size increases are
2025 * requested from the MDS.
2026 */
2027static int try_get_cap_refs(struct ceph_inode_info *ci, int need, int want,
2028 int *got, loff_t endoff, int *check_max, int *err)
2029{
2030 struct inode *inode = &ci->vfs_inode;
2031 int ret = 0;
2032 int have, implemented;
Sage Weil195d3ce2010-03-01 09:57:54 -08002033 int file_wanted;
Sage Weila8599bd2009-10-06 11:31:12 -07002034
2035 dout("get_cap_refs %p need %s want %s\n", inode,
2036 ceph_cap_string(need), ceph_cap_string(want));
Sage Weilbe655592011-11-30 09:47:09 -08002037 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002038
Sage Weil195d3ce2010-03-01 09:57:54 -08002039 /* make sure file is actually open */
2040 file_wanted = __ceph_caps_file_wanted(ci);
2041 if ((file_wanted & need) == 0) {
2042 dout("try_get_cap_refs need %s file_wanted %s, EBADF\n",
2043 ceph_cap_string(need), ceph_cap_string(file_wanted));
Sage Weila8599bd2009-10-06 11:31:12 -07002044 *err = -EBADF;
2045 ret = 1;
2046 goto out;
2047 }
2048
2049 if (need & CEPH_CAP_FILE_WR) {
2050 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2051 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2052 inode, endoff, ci->i_max_size);
2053 if (endoff > ci->i_wanted_max_size) {
2054 *check_max = 1;
2055 ret = 1;
2056 }
2057 goto out;
2058 }
2059 /*
2060 * If a sync write is in progress, we must wait, so that we
2061 * can get a final snapshot value for size+mtime.
2062 */
2063 if (__ceph_have_pending_cap_snap(ci)) {
2064 dout("get_cap_refs %p cap_snap_pending\n", inode);
2065 goto out;
2066 }
2067 }
2068 have = __ceph_caps_issued(ci, &implemented);
2069
2070 /*
2071 * disallow writes while a truncate is pending
2072 */
2073 if (ci->i_truncate_pending)
2074 have &= ~CEPH_CAP_FILE_WR;
2075
2076 if ((have & need) == need) {
2077 /*
2078 * Look at (implemented & ~have & not) so that we keep waiting
2079 * on transition from wanted -> needed caps. This is needed
2080 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2081 * going before a prior buffered writeback happens.
2082 */
2083 int not = want & ~(have & need);
2084 int revoking = implemented & ~have;
2085 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2086 inode, ceph_cap_string(have), ceph_cap_string(not),
2087 ceph_cap_string(revoking));
2088 if ((revoking & not) == 0) {
2089 *got = need | (have & want);
2090 __take_cap_refs(ci, *got);
2091 ret = 1;
2092 }
2093 } else {
2094 dout("get_cap_refs %p have %s needed %s\n", inode,
2095 ceph_cap_string(have), ceph_cap_string(need));
2096 }
2097out:
Sage Weilbe655592011-11-30 09:47:09 -08002098 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002099 dout("get_cap_refs %p ret %d got %s\n", inode,
2100 ret, ceph_cap_string(*got));
2101 return ret;
2102}
2103
2104/*
2105 * Check the offset we are writing up to against our current
2106 * max_size. If necessary, tell the MDS we want to write to
2107 * a larger offset.
2108 */
2109static void check_max_size(struct inode *inode, loff_t endoff)
2110{
2111 struct ceph_inode_info *ci = ceph_inode(inode);
2112 int check = 0;
2113
2114 /* do we need to explicitly request a larger max_size? */
Sage Weilbe655592011-11-30 09:47:09 -08002115 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002116 if ((endoff >= ci->i_max_size ||
2117 endoff > (inode->i_size << 1)) &&
2118 endoff > ci->i_wanted_max_size) {
2119 dout("write %p at large endoff %llu, req max_size\n",
2120 inode, endoff);
2121 ci->i_wanted_max_size = endoff;
2122 check = 1;
2123 }
Sage Weilbe655592011-11-30 09:47:09 -08002124 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002125 if (check)
2126 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2127}
2128
2129/*
2130 * Wait for caps, and take cap references. If we can't get a WR cap
2131 * due to a small max_size, make sure we check_max_size (and possibly
2132 * ask the mds) so we don't get hung up indefinitely.
2133 */
2134int ceph_get_caps(struct ceph_inode_info *ci, int need, int want, int *got,
2135 loff_t endoff)
2136{
2137 int check_max, ret, err;
2138
2139retry:
2140 if (endoff > 0)
2141 check_max_size(&ci->vfs_inode, endoff);
2142 check_max = 0;
2143 err = 0;
2144 ret = wait_event_interruptible(ci->i_cap_wq,
2145 try_get_cap_refs(ci, need, want,
2146 got, endoff,
2147 &check_max, &err));
2148 if (err)
2149 ret = err;
2150 if (check_max)
2151 goto retry;
2152 return ret;
2153}
2154
2155/*
2156 * Take cap refs. Caller must already know we hold at least one ref
2157 * on the caps in question or we don't know this is safe.
2158 */
2159void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
2160{
Sage Weilbe655592011-11-30 09:47:09 -08002161 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002162 __take_cap_refs(ci, caps);
Sage Weilbe655592011-11-30 09:47:09 -08002163 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002164}
2165
2166/*
2167 * Release cap refs.
2168 *
2169 * If we released the last ref on any given cap, call ceph_check_caps
2170 * to release (or schedule a release).
2171 *
2172 * If we are releasing a WR cap (from a sync write), finalize any affected
2173 * cap_snap, and wake up any waiters.
2174 */
2175void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
2176{
2177 struct inode *inode = &ci->vfs_inode;
2178 int last = 0, put = 0, flushsnaps = 0, wake = 0;
2179 struct ceph_cap_snap *capsnap;
2180
Sage Weilbe655592011-11-30 09:47:09 -08002181 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002182 if (had & CEPH_CAP_PIN)
2183 --ci->i_pin_ref;
2184 if (had & CEPH_CAP_FILE_RD)
2185 if (--ci->i_rd_ref == 0)
2186 last++;
2187 if (had & CEPH_CAP_FILE_CACHE)
2188 if (--ci->i_rdcache_ref == 0)
2189 last++;
2190 if (had & CEPH_CAP_FILE_BUFFER) {
Henry C Changd3d07202011-05-11 10:29:54 +00002191 if (--ci->i_wb_ref == 0) {
Sage Weila8599bd2009-10-06 11:31:12 -07002192 last++;
2193 put++;
2194 }
Henry C Changd3d07202011-05-11 10:29:54 +00002195 dout("put_cap_refs %p wb %d -> %d (?)\n",
2196 inode, ci->i_wb_ref+1, ci->i_wb_ref);
Sage Weila8599bd2009-10-06 11:31:12 -07002197 }
2198 if (had & CEPH_CAP_FILE_WR)
2199 if (--ci->i_wr_ref == 0) {
2200 last++;
2201 if (!list_empty(&ci->i_cap_snaps)) {
2202 capsnap = list_first_entry(&ci->i_cap_snaps,
2203 struct ceph_cap_snap,
2204 ci_item);
2205 if (capsnap->writing) {
2206 capsnap->writing = 0;
2207 flushsnaps =
2208 __ceph_finish_cap_snap(ci,
2209 capsnap);
2210 wake = 1;
2211 }
2212 }
2213 }
Sage Weilbe655592011-11-30 09:47:09 -08002214 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002215
Sage Weil819ccbf2010-04-01 09:33:46 -07002216 dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
2217 last ? " last" : "", put ? " put" : "");
Sage Weila8599bd2009-10-06 11:31:12 -07002218
2219 if (last && !flushsnaps)
2220 ceph_check_caps(ci, 0, NULL);
2221 else if (flushsnaps)
2222 ceph_flush_snaps(ci);
2223 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002224 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002225 if (put)
2226 iput(inode);
2227}
2228
2229/*
2230 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
2231 * context. Adjust per-snap dirty page accounting as appropriate.
2232 * Once all dirty data for a cap_snap is flushed, flush snapped file
2233 * metadata back to the MDS. If we dropped the last ref, call
2234 * ceph_check_caps.
2235 */
2236void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
2237 struct ceph_snap_context *snapc)
2238{
2239 struct inode *inode = &ci->vfs_inode;
2240 int last = 0;
Sage Weil819ccbf2010-04-01 09:33:46 -07002241 int complete_capsnap = 0;
2242 int drop_capsnap = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002243 int found = 0;
2244 struct ceph_cap_snap *capsnap = NULL;
2245
Sage Weilbe655592011-11-30 09:47:09 -08002246 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002247 ci->i_wrbuffer_ref -= nr;
2248 last = !ci->i_wrbuffer_ref;
2249
2250 if (ci->i_head_snapc == snapc) {
2251 ci->i_wrbuffer_ref_head -= nr;
Sage Weil7d8cb262010-08-24 08:44:16 -07002252 if (ci->i_wrbuffer_ref_head == 0 &&
2253 ci->i_dirty_caps == 0 && ci->i_flushing_caps == 0) {
2254 BUG_ON(!ci->i_head_snapc);
Sage Weila8599bd2009-10-06 11:31:12 -07002255 ceph_put_snap_context(ci->i_head_snapc);
2256 ci->i_head_snapc = NULL;
2257 }
2258 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
2259 inode,
2260 ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
2261 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
2262 last ? " LAST" : "");
2263 } else {
2264 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2265 if (capsnap->context == snapc) {
2266 found = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07002267 break;
2268 }
2269 }
2270 BUG_ON(!found);
Sage Weil819ccbf2010-04-01 09:33:46 -07002271 capsnap->dirty_pages -= nr;
2272 if (capsnap->dirty_pages == 0) {
2273 complete_capsnap = 1;
2274 if (capsnap->dirty == 0)
2275 /* cap writeback completed before we created
2276 * the cap_snap; no FLUSHSNAP is needed */
2277 drop_capsnap = 1;
2278 }
Sage Weila8599bd2009-10-06 11:31:12 -07002279 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
Sage Weil819ccbf2010-04-01 09:33:46 -07002280 " snap %lld %d/%d -> %d/%d %s%s%s\n",
Sage Weila8599bd2009-10-06 11:31:12 -07002281 inode, capsnap, capsnap->context->seq,
2282 ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
2283 ci->i_wrbuffer_ref, capsnap->dirty_pages,
2284 last ? " (wrbuffer last)" : "",
Sage Weil819ccbf2010-04-01 09:33:46 -07002285 complete_capsnap ? " (complete capsnap)" : "",
2286 drop_capsnap ? " (drop capsnap)" : "");
2287 if (drop_capsnap) {
2288 ceph_put_snap_context(capsnap->context);
2289 list_del(&capsnap->ci_item);
2290 list_del(&capsnap->flushing_item);
2291 ceph_put_cap_snap(capsnap);
2292 }
Sage Weila8599bd2009-10-06 11:31:12 -07002293 }
2294
Sage Weilbe655592011-11-30 09:47:09 -08002295 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002296
2297 if (last) {
2298 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2299 iput(inode);
Sage Weil819ccbf2010-04-01 09:33:46 -07002300 } else if (complete_capsnap) {
Sage Weila8599bd2009-10-06 11:31:12 -07002301 ceph_flush_snaps(ci);
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002302 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002303 }
Sage Weil819ccbf2010-04-01 09:33:46 -07002304 if (drop_capsnap)
2305 iput(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002306}
2307
2308/*
2309 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
2310 * actually be a revocation if it specifies a smaller cap set.)
2311 *
Sage Weilbe655592011-11-30 09:47:09 -08002312 * caller holds s_mutex and i_ceph_lock, we drop both.
Sage Weil15637c82010-03-16 13:42:00 -07002313 *
Sage Weila8599bd2009-10-06 11:31:12 -07002314 * return value:
2315 * 0 - ok
2316 * 1 - check_caps on auth cap only (writeback)
2317 * 2 - check_caps (ack revoke)
2318 */
Sage Weil15637c82010-03-16 13:42:00 -07002319static void handle_cap_grant(struct inode *inode, struct ceph_mds_caps *grant,
2320 struct ceph_mds_session *session,
2321 struct ceph_cap *cap,
2322 struct ceph_buffer *xattr_buf)
Sage Weilbe655592011-11-30 09:47:09 -08002323 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07002324{
2325 struct ceph_inode_info *ci = ceph_inode(inode);
2326 int mds = session->s_mds;
Sage Weil2f56f562010-10-27 20:59:49 -07002327 int seq = le32_to_cpu(grant->seq);
Sage Weila8599bd2009-10-06 11:31:12 -07002328 int newcaps = le32_to_cpu(grant->caps);
2329 int issued, implemented, used, wanted, dirty;
2330 u64 size = le64_to_cpu(grant->size);
2331 u64 max_size = le64_to_cpu(grant->max_size);
2332 struct timespec mtime, atime, ctime;
Sage Weil15637c82010-03-16 13:42:00 -07002333 int check_caps = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002334 int wake = 0;
2335 int writeback = 0;
2336 int revoked_rdcache = 0;
Sage Weil3c6f6b72010-02-09 15:24:44 -08002337 int queue_invalidate = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002338
Sage Weil2f56f562010-10-27 20:59:49 -07002339 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
2340 inode, cap, mds, seq, ceph_cap_string(newcaps));
Sage Weila8599bd2009-10-06 11:31:12 -07002341 dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
2342 inode->i_size);
2343
2344 /*
2345 * If CACHE is being revoked, and we have no dirty buffers,
2346 * try to invalidate (once). (If there are dirty buffers, we
2347 * will invalidate _after_ writeback.)
2348 */
Sage Weil3b454c42010-06-10 13:20:33 -07002349 if (((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
2350 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
Yehuda Sadehbcd2cbd2010-02-19 00:12:21 +00002351 !ci->i_wrbuffer_ref) {
Sage Weil5ecad6f2010-02-17 10:43:37 -08002352 if (try_nonblocking_invalidate(inode) == 0) {
2353 revoked_rdcache = 1;
2354 } else {
Sage Weila8599bd2009-10-06 11:31:12 -07002355 /* there were locked pages.. invalidate later
2356 in a separate thread. */
2357 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
Sage Weil3c6f6b72010-02-09 15:24:44 -08002358 queue_invalidate = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07002359 ci->i_rdcache_revoking = ci->i_rdcache_gen;
2360 }
Sage Weila8599bd2009-10-06 11:31:12 -07002361 }
Sage Weila8599bd2009-10-06 11:31:12 -07002362 }
2363
2364 /* side effects now are allowed */
2365
2366 issued = __ceph_caps_issued(ci, &implemented);
2367 issued |= implemented | __ceph_caps_dirty(ci);
2368
Sage Weil685f9a5d2009-11-09 12:05:48 -08002369 cap->cap_gen = session->s_cap_gen;
Sage Weila8599bd2009-10-06 11:31:12 -07002370
2371 __check_cap_issue(ci, cap, newcaps);
2372
2373 if ((issued & CEPH_CAP_AUTH_EXCL) == 0) {
2374 inode->i_mode = le32_to_cpu(grant->mode);
2375 inode->i_uid = le32_to_cpu(grant->uid);
2376 inode->i_gid = le32_to_cpu(grant->gid);
2377 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
2378 inode->i_uid, inode->i_gid);
2379 }
2380
2381 if ((issued & CEPH_CAP_LINK_EXCL) == 0)
Miklos Szeredibfe86842011-10-28 14:13:29 +02002382 set_nlink(inode, le32_to_cpu(grant->nlink));
Sage Weila8599bd2009-10-06 11:31:12 -07002383
2384 if ((issued & CEPH_CAP_XATTR_EXCL) == 0 && grant->xattr_len) {
2385 int len = le32_to_cpu(grant->xattr_len);
2386 u64 version = le64_to_cpu(grant->xattr_version);
2387
2388 if (version > ci->i_xattrs.version) {
2389 dout(" got new xattrs v%llu on %p len %d\n",
2390 version, inode, len);
2391 if (ci->i_xattrs.blob)
2392 ceph_buffer_put(ci->i_xattrs.blob);
2393 ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
2394 ci->i_xattrs.version = version;
2395 }
2396 }
2397
2398 /* size/ctime/mtime/atime? */
2399 ceph_fill_file_size(inode, issued,
2400 le32_to_cpu(grant->truncate_seq),
2401 le64_to_cpu(grant->truncate_size), size);
2402 ceph_decode_timespec(&mtime, &grant->mtime);
2403 ceph_decode_timespec(&atime, &grant->atime);
2404 ceph_decode_timespec(&ctime, &grant->ctime);
2405 ceph_fill_file_time(inode, issued,
2406 le32_to_cpu(grant->time_warp_seq), &ctime, &mtime,
2407 &atime);
2408
2409 /* max size increase? */
Yan, Zheng5e62ad32012-11-19 10:49:04 +08002410 if (ci->i_auth_cap == cap && max_size != ci->i_max_size) {
Sage Weila8599bd2009-10-06 11:31:12 -07002411 dout("max_size %lld -> %llu\n", ci->i_max_size, max_size);
2412 ci->i_max_size = max_size;
2413 if (max_size >= ci->i_wanted_max_size) {
2414 ci->i_wanted_max_size = 0; /* reset */
2415 ci->i_requested_max_size = 0;
2416 }
2417 wake = 1;
2418 }
2419
2420 /* check cap bits */
2421 wanted = __ceph_caps_wanted(ci);
2422 used = __ceph_caps_used(ci);
2423 dirty = __ceph_caps_dirty(ci);
2424 dout(" my wanted = %s, used = %s, dirty %s\n",
2425 ceph_cap_string(wanted),
2426 ceph_cap_string(used),
2427 ceph_cap_string(dirty));
2428 if (wanted != le32_to_cpu(grant->wanted)) {
2429 dout("mds wanted %s -> %s\n",
2430 ceph_cap_string(le32_to_cpu(grant->wanted)),
2431 ceph_cap_string(wanted));
2432 grant->wanted = cpu_to_le32(wanted);
2433 }
2434
2435 cap->seq = seq;
2436
2437 /* file layout may have changed */
2438 ci->i_layout = grant->layout;
2439
2440 /* revocation, grant, or no-op? */
2441 if (cap->issued & ~newcaps) {
Sage Weil3b454c42010-06-10 13:20:33 -07002442 int revoking = cap->issued & ~newcaps;
2443
2444 dout("revocation: %s -> %s (revoking %s)\n",
2445 ceph_cap_string(cap->issued),
2446 ceph_cap_string(newcaps),
2447 ceph_cap_string(revoking));
Sage Weil0eb6cd42010-08-05 13:53:18 -07002448 if (revoking & used & CEPH_CAP_FILE_BUFFER)
Sage Weil3b454c42010-06-10 13:20:33 -07002449 writeback = 1; /* initiate writeback; will delay ack */
2450 else if (revoking == CEPH_CAP_FILE_CACHE &&
2451 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
2452 queue_invalidate)
2453 ; /* do nothing yet, invalidation will be queued */
2454 else if (cap == ci->i_auth_cap)
2455 check_caps = 1; /* check auth cap only */
2456 else
2457 check_caps = 2; /* check all caps */
Sage Weila8599bd2009-10-06 11:31:12 -07002458 cap->issued = newcaps;
Sage Weil978097c2010-03-08 15:27:53 -08002459 cap->implemented |= newcaps;
Sage Weila8599bd2009-10-06 11:31:12 -07002460 } else if (cap->issued == newcaps) {
2461 dout("caps unchanged: %s -> %s\n",
2462 ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
2463 } else {
2464 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
2465 ceph_cap_string(newcaps));
2466 cap->issued = newcaps;
2467 cap->implemented |= newcaps; /* add bits only, to
2468 * avoid stepping on a
2469 * pending revocation */
2470 wake = 1;
2471 }
Sage Weil978097c2010-03-08 15:27:53 -08002472 BUG_ON(cap->issued & ~cap->implemented);
Sage Weila8599bd2009-10-06 11:31:12 -07002473
Sage Weilbe655592011-11-30 09:47:09 -08002474 spin_unlock(&ci->i_ceph_lock);
Sage Weil3c6f6b72010-02-09 15:24:44 -08002475 if (writeback)
Sage Weila8599bd2009-10-06 11:31:12 -07002476 /*
2477 * queue inode for writeback: we can't actually call
2478 * filemap_write_and_wait, etc. from message handler
2479 * context.
2480 */
Sage Weil3c6f6b72010-02-09 15:24:44 -08002481 ceph_queue_writeback(inode);
2482 if (queue_invalidate)
2483 ceph_queue_invalidate(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002484 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002485 wake_up_all(&ci->i_cap_wq);
Sage Weil15637c82010-03-16 13:42:00 -07002486
2487 if (check_caps == 1)
2488 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_AUTHONLY,
2489 session);
2490 else if (check_caps == 2)
2491 ceph_check_caps(ci, CHECK_CAPS_NODELAY, session);
2492 else
2493 mutex_unlock(&session->s_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07002494}
2495
2496/*
2497 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
2498 * MDS has been safely committed.
2499 */
Sage Weil6df058c2009-12-22 11:24:33 -08002500static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
Sage Weila8599bd2009-10-06 11:31:12 -07002501 struct ceph_mds_caps *m,
2502 struct ceph_mds_session *session,
2503 struct ceph_cap *cap)
Sage Weilbe655592011-11-30 09:47:09 -08002504 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07002505{
2506 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002507 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07002508 unsigned seq = le32_to_cpu(m->seq);
2509 int dirty = le32_to_cpu(m->dirty);
2510 int cleaned = 0;
Sage Weilafcdaea2009-10-14 14:27:38 -07002511 int drop = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002512 int i;
2513
2514 for (i = 0; i < CEPH_CAP_BITS; i++)
2515 if ((dirty & (1 << i)) &&
2516 flush_tid == ci->i_cap_flush_tid[i])
2517 cleaned |= 1 << i;
2518
2519 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
2520 " flushing %s -> %s\n",
2521 inode, session->s_mds, seq, ceph_cap_string(dirty),
2522 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
2523 ceph_cap_string(ci->i_flushing_caps & ~cleaned));
2524
2525 if (ci->i_flushing_caps == (ci->i_flushing_caps & ~cleaned))
2526 goto out;
2527
Sage Weila8599bd2009-10-06 11:31:12 -07002528 ci->i_flushing_caps &= ~cleaned;
Sage Weila8599bd2009-10-06 11:31:12 -07002529
2530 spin_lock(&mdsc->cap_dirty_lock);
2531 if (ci->i_flushing_caps == 0) {
2532 list_del_init(&ci->i_flushing_item);
2533 if (!list_empty(&session->s_cap_flushing))
2534 dout(" mds%d still flushing cap on %p\n",
2535 session->s_mds,
2536 &list_entry(session->s_cap_flushing.next,
2537 struct ceph_inode_info,
2538 i_flushing_item)->vfs_inode);
2539 mdsc->num_cap_flushing--;
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002540 wake_up_all(&mdsc->cap_flushing_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002541 dout(" inode %p now !flushing\n", inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07002542
2543 if (ci->i_dirty_caps == 0) {
2544 dout(" inode %p now clean\n", inode);
2545 BUG_ON(!list_empty(&ci->i_dirty_item));
2546 drop = 1;
Sage Weil7d8cb262010-08-24 08:44:16 -07002547 if (ci->i_wrbuffer_ref_head == 0) {
2548 BUG_ON(!ci->i_head_snapc);
2549 ceph_put_snap_context(ci->i_head_snapc);
2550 ci->i_head_snapc = NULL;
2551 }
Sage Weil76e3b392009-10-15 18:13:53 -07002552 } else {
2553 BUG_ON(list_empty(&ci->i_dirty_item));
Sage Weilafcdaea2009-10-14 14:27:38 -07002554 }
Sage Weila8599bd2009-10-06 11:31:12 -07002555 }
2556 spin_unlock(&mdsc->cap_dirty_lock);
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002557 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002558
2559out:
Sage Weilbe655592011-11-30 09:47:09 -08002560 spin_unlock(&ci->i_ceph_lock);
Sage Weilafcdaea2009-10-14 14:27:38 -07002561 if (drop)
Sage Weila8599bd2009-10-06 11:31:12 -07002562 iput(inode);
2563}
2564
2565/*
2566 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
2567 * throw away our cap_snap.
2568 *
2569 * Caller hold s_mutex.
2570 */
Sage Weil6df058c2009-12-22 11:24:33 -08002571static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
Sage Weila8599bd2009-10-06 11:31:12 -07002572 struct ceph_mds_caps *m,
2573 struct ceph_mds_session *session)
2574{
2575 struct ceph_inode_info *ci = ceph_inode(inode);
2576 u64 follows = le64_to_cpu(m->snap_follows);
Sage Weila8599bd2009-10-06 11:31:12 -07002577 struct ceph_cap_snap *capsnap;
2578 int drop = 0;
2579
2580 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
2581 inode, ci, session->s_mds, follows);
2582
Sage Weilbe655592011-11-30 09:47:09 -08002583 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002584 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2585 if (capsnap->follows == follows) {
2586 if (capsnap->flush_tid != flush_tid) {
2587 dout(" cap_snap %p follows %lld tid %lld !="
2588 " %lld\n", capsnap, follows,
2589 flush_tid, capsnap->flush_tid);
2590 break;
2591 }
2592 WARN_ON(capsnap->dirty_pages || capsnap->writing);
Sage Weil819ccbf2010-04-01 09:33:46 -07002593 dout(" removing %p cap_snap %p follows %lld\n",
2594 inode, capsnap, follows);
Sage Weila8599bd2009-10-06 11:31:12 -07002595 ceph_put_snap_context(capsnap->context);
2596 list_del(&capsnap->ci_item);
2597 list_del(&capsnap->flushing_item);
2598 ceph_put_cap_snap(capsnap);
2599 drop = 1;
2600 break;
2601 } else {
2602 dout(" skipping cap_snap %p follows %lld\n",
2603 capsnap, capsnap->follows);
2604 }
2605 }
Sage Weilbe655592011-11-30 09:47:09 -08002606 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002607 if (drop)
2608 iput(inode);
2609}
2610
2611/*
2612 * Handle TRUNC from MDS, indicating file truncation.
2613 *
2614 * caller hold s_mutex.
2615 */
2616static void handle_cap_trunc(struct inode *inode,
2617 struct ceph_mds_caps *trunc,
2618 struct ceph_mds_session *session)
Sage Weilbe655592011-11-30 09:47:09 -08002619 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07002620{
2621 struct ceph_inode_info *ci = ceph_inode(inode);
2622 int mds = session->s_mds;
2623 int seq = le32_to_cpu(trunc->seq);
2624 u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
2625 u64 truncate_size = le64_to_cpu(trunc->truncate_size);
2626 u64 size = le64_to_cpu(trunc->size);
2627 int implemented = 0;
2628 int dirty = __ceph_caps_dirty(ci);
2629 int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
2630 int queue_trunc = 0;
2631
2632 issued |= implemented | dirty;
2633
2634 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
2635 inode, mds, seq, truncate_size, truncate_seq);
2636 queue_trunc = ceph_fill_file_size(inode, issued,
2637 truncate_seq, truncate_size, size);
Sage Weilbe655592011-11-30 09:47:09 -08002638 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002639
2640 if (queue_trunc)
Sage Weil3c6f6b72010-02-09 15:24:44 -08002641 ceph_queue_vmtruncate(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002642}
2643
2644/*
2645 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
2646 * different one. If we are the most recent migration we've seen (as
2647 * indicated by mseq), make note of the migrating cap bits for the
2648 * duration (until we see the corresponding IMPORT).
2649 *
2650 * caller holds s_mutex
2651 */
2652static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
Sage Weil154f42c2010-06-21 13:45:04 -07002653 struct ceph_mds_session *session,
2654 int *open_target_sessions)
Sage Weila8599bd2009-10-06 11:31:12 -07002655{
Sage Weildb354052011-05-24 11:46:31 -07002656 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07002657 struct ceph_inode_info *ci = ceph_inode(inode);
2658 int mds = session->s_mds;
2659 unsigned mseq = le32_to_cpu(ex->migrate_seq);
2660 struct ceph_cap *cap = NULL, *t;
2661 struct rb_node *p;
2662 int remember = 1;
2663
2664 dout("handle_cap_export inode %p ci %p mds%d mseq %d\n",
2665 inode, ci, mds, mseq);
2666
Sage Weilbe655592011-11-30 09:47:09 -08002667 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002668
2669 /* make sure we haven't seen a higher mseq */
2670 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
2671 t = rb_entry(p, struct ceph_cap, ci_node);
2672 if (ceph_seq_cmp(t->mseq, mseq) > 0) {
2673 dout(" higher mseq on cap from mds%d\n",
2674 t->session->s_mds);
2675 remember = 0;
2676 }
2677 if (t->session->s_mds == mds)
2678 cap = t;
2679 }
2680
2681 if (cap) {
2682 if (remember) {
2683 /* make note */
2684 ci->i_cap_exporting_mds = mds;
2685 ci->i_cap_exporting_mseq = mseq;
2686 ci->i_cap_exporting_issued = cap->issued;
Sage Weil154f42c2010-06-21 13:45:04 -07002687
2688 /*
2689 * make sure we have open sessions with all possible
2690 * export targets, so that we get the matching IMPORT
2691 */
2692 *open_target_sessions = 1;
Sage Weildb354052011-05-24 11:46:31 -07002693
2694 /*
2695 * we can't flush dirty caps that we've seen the
2696 * EXPORT but no IMPORT for
2697 */
2698 spin_lock(&mdsc->cap_dirty_lock);
2699 if (!list_empty(&ci->i_dirty_item)) {
2700 dout(" moving %p to cap_dirty_migrating\n",
2701 inode);
2702 list_move(&ci->i_dirty_item,
2703 &mdsc->cap_dirty_migrating);
2704 }
2705 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002706 }
Sage Weil7c1332b2010-02-16 11:39:45 -08002707 __ceph_remove_cap(cap);
Sage Weila8599bd2009-10-06 11:31:12 -07002708 }
Sage Weil4ea00432010-03-16 10:36:40 -07002709 /* else, we already released it */
Sage Weila8599bd2009-10-06 11:31:12 -07002710
Sage Weilbe655592011-11-30 09:47:09 -08002711 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002712}
2713
2714/*
2715 * Handle cap IMPORT. If there are temp bits from an older EXPORT,
2716 * clean them up.
2717 *
2718 * caller holds s_mutex.
2719 */
2720static void handle_cap_import(struct ceph_mds_client *mdsc,
2721 struct inode *inode, struct ceph_mds_caps *im,
2722 struct ceph_mds_session *session,
2723 void *snaptrace, int snaptrace_len)
2724{
2725 struct ceph_inode_info *ci = ceph_inode(inode);
2726 int mds = session->s_mds;
2727 unsigned issued = le32_to_cpu(im->caps);
2728 unsigned wanted = le32_to_cpu(im->wanted);
2729 unsigned seq = le32_to_cpu(im->seq);
2730 unsigned mseq = le32_to_cpu(im->migrate_seq);
2731 u64 realmino = le64_to_cpu(im->realm);
2732 u64 cap_id = le64_to_cpu(im->cap_id);
2733
2734 if (ci->i_cap_exporting_mds >= 0 &&
2735 ceph_seq_cmp(ci->i_cap_exporting_mseq, mseq) < 0) {
2736 dout("handle_cap_import inode %p ci %p mds%d mseq %d"
2737 " - cleared exporting from mds%d\n",
2738 inode, ci, mds, mseq,
2739 ci->i_cap_exporting_mds);
2740 ci->i_cap_exporting_issued = 0;
2741 ci->i_cap_exporting_mseq = 0;
2742 ci->i_cap_exporting_mds = -1;
Sage Weildb354052011-05-24 11:46:31 -07002743
2744 spin_lock(&mdsc->cap_dirty_lock);
2745 if (!list_empty(&ci->i_dirty_item)) {
2746 dout(" moving %p back to cap_dirty\n", inode);
2747 list_move(&ci->i_dirty_item, &mdsc->cap_dirty);
2748 }
2749 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002750 } else {
2751 dout("handle_cap_import inode %p ci %p mds%d mseq %d\n",
2752 inode, ci, mds, mseq);
2753 }
2754
2755 down_write(&mdsc->snap_rwsem);
2756 ceph_update_snap_trace(mdsc, snaptrace, snaptrace+snaptrace_len,
2757 false);
2758 downgrade_write(&mdsc->snap_rwsem);
2759 ceph_add_cap(inode, session, cap_id, -1,
2760 issued, wanted, seq, mseq, realmino, CEPH_CAP_FLAG_AUTH,
2761 NULL /* no caps context */);
Sage Weil088b3f52011-01-18 08:56:01 -08002762 kick_flushing_inode_caps(mdsc, session, inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002763 up_read(&mdsc->snap_rwsem);
Sage Weilfeb4cc92010-11-07 09:39:00 -08002764
2765 /* make sure we re-request max_size, if necessary */
Sage Weilbe655592011-11-30 09:47:09 -08002766 spin_lock(&ci->i_ceph_lock);
Yan, Zheng0e5e1772012-11-19 10:49:09 +08002767 ci->i_wanted_max_size = 0; /* reset */
Sage Weilfeb4cc92010-11-07 09:39:00 -08002768 ci->i_requested_max_size = 0;
Sage Weilbe655592011-11-30 09:47:09 -08002769 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002770}
2771
2772/*
2773 * Handle a caps message from the MDS.
2774 *
2775 * Identify the appropriate session, inode, and call the right handler
2776 * based on the cap op.
2777 */
2778void ceph_handle_caps(struct ceph_mds_session *session,
2779 struct ceph_msg *msg)
2780{
2781 struct ceph_mds_client *mdsc = session->s_mdsc;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002782 struct super_block *sb = mdsc->fsc->sb;
Sage Weila8599bd2009-10-06 11:31:12 -07002783 struct inode *inode;
Sage Weilbe655592011-11-30 09:47:09 -08002784 struct ceph_inode_info *ci;
Sage Weila8599bd2009-10-06 11:31:12 -07002785 struct ceph_cap *cap;
2786 struct ceph_mds_caps *h;
Sage Weil2600d2d2010-02-22 15:12:16 -08002787 int mds = session->s_mds;
Sage Weila8599bd2009-10-06 11:31:12 -07002788 int op;
Sage Weil3d7ded42010-06-09 16:47:10 -07002789 u32 seq, mseq;
Sage Weila8599bd2009-10-06 11:31:12 -07002790 struct ceph_vino vino;
2791 u64 cap_id;
2792 u64 size, max_size;
Sage Weil6df058c2009-12-22 11:24:33 -08002793 u64 tid;
Sage Weil70edb552010-03-01 13:20:50 -08002794 void *snaptrace;
Sage Weilce1fbc82010-08-02 15:09:39 -07002795 size_t snaptrace_len;
2796 void *flock;
2797 u32 flock_len;
Sage Weil154f42c2010-06-21 13:45:04 -07002798 int open_target_sessions = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002799
2800 dout("handle_caps from mds%d\n", mds);
2801
2802 /* decode */
Sage Weil6df058c2009-12-22 11:24:33 -08002803 tid = le64_to_cpu(msg->hdr.tid);
Sage Weila8599bd2009-10-06 11:31:12 -07002804 if (msg->front.iov_len < sizeof(*h))
2805 goto bad;
2806 h = msg->front.iov_base;
2807 op = le32_to_cpu(h->op);
2808 vino.ino = le64_to_cpu(h->ino);
2809 vino.snap = CEPH_NOSNAP;
2810 cap_id = le64_to_cpu(h->cap_id);
2811 seq = le32_to_cpu(h->seq);
Sage Weil3d7ded42010-06-09 16:47:10 -07002812 mseq = le32_to_cpu(h->migrate_seq);
Sage Weila8599bd2009-10-06 11:31:12 -07002813 size = le64_to_cpu(h->size);
2814 max_size = le64_to_cpu(h->max_size);
2815
Sage Weilce1fbc82010-08-02 15:09:39 -07002816 snaptrace = h + 1;
2817 snaptrace_len = le32_to_cpu(h->snap_trace_len);
2818
2819 if (le16_to_cpu(msg->hdr.version) >= 2) {
2820 void *p, *end;
2821
2822 p = snaptrace + snaptrace_len;
2823 end = msg->front.iov_base + msg->front.iov_len;
2824 ceph_decode_32_safe(&p, end, flock_len, bad);
2825 flock = p;
2826 } else {
2827 flock = NULL;
2828 flock_len = 0;
2829 }
2830
Sage Weila8599bd2009-10-06 11:31:12 -07002831 mutex_lock(&session->s_mutex);
2832 session->s_seq++;
2833 dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
2834 (unsigned)seq);
2835
Yan, Zheng66f58692013-01-04 14:45:18 +08002836 if (op == CEPH_CAP_OP_IMPORT)
2837 ceph_add_cap_releases(mdsc, session);
2838
Sage Weila8599bd2009-10-06 11:31:12 -07002839 /* lookup ino */
2840 inode = ceph_find_inode(sb, vino);
Sage Weilbe655592011-11-30 09:47:09 -08002841 ci = ceph_inode(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002842 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
2843 vino.snap, inode);
2844 if (!inode) {
2845 dout(" i don't have ino %llx\n", vino.ino);
Sage Weil3d7ded42010-06-09 16:47:10 -07002846
2847 if (op == CEPH_CAP_OP_IMPORT)
2848 __queue_cap_release(session, vino.ino, cap_id,
2849 mseq, seq);
Greg Farnum21b559d2010-10-06 15:46:30 -07002850 goto flush_cap_releases;
Sage Weila8599bd2009-10-06 11:31:12 -07002851 }
2852
2853 /* these will work even if we don't have a cap yet */
2854 switch (op) {
2855 case CEPH_CAP_OP_FLUSHSNAP_ACK:
Sage Weil6df058c2009-12-22 11:24:33 -08002856 handle_cap_flushsnap_ack(inode, tid, h, session);
Sage Weila8599bd2009-10-06 11:31:12 -07002857 goto done;
2858
2859 case CEPH_CAP_OP_EXPORT:
Sage Weil154f42c2010-06-21 13:45:04 -07002860 handle_cap_export(inode, h, session, &open_target_sessions);
Sage Weila8599bd2009-10-06 11:31:12 -07002861 goto done;
2862
2863 case CEPH_CAP_OP_IMPORT:
2864 handle_cap_import(mdsc, inode, h, session,
Sage Weilce1fbc82010-08-02 15:09:39 -07002865 snaptrace, snaptrace_len);
Sage Weila8599bd2009-10-06 11:31:12 -07002866 }
2867
2868 /* the rest require a cap */
Sage Weilbe655592011-11-30 09:47:09 -08002869 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002870 cap = __get_cap_for_mds(ceph_inode(inode), mds);
2871 if (!cap) {
Sage Weil9dbd4122010-06-10 13:21:20 -07002872 dout(" no cap on %p ino %llx.%llx from mds%d\n",
Sage Weila8599bd2009-10-06 11:31:12 -07002873 inode, ceph_ino(inode), ceph_snap(inode), mds);
Sage Weilbe655592011-11-30 09:47:09 -08002874 spin_unlock(&ci->i_ceph_lock);
Greg Farnum21b559d2010-10-06 15:46:30 -07002875 goto flush_cap_releases;
Sage Weila8599bd2009-10-06 11:31:12 -07002876 }
2877
Sage Weilbe655592011-11-30 09:47:09 -08002878 /* note that each of these drops i_ceph_lock for us */
Sage Weila8599bd2009-10-06 11:31:12 -07002879 switch (op) {
2880 case CEPH_CAP_OP_REVOKE:
2881 case CEPH_CAP_OP_GRANT:
Yan, Zheng0e5e1772012-11-19 10:49:09 +08002882 case CEPH_CAP_OP_IMPORT:
Sage Weil15637c82010-03-16 13:42:00 -07002883 handle_cap_grant(inode, h, session, cap, msg->middle);
2884 goto done_unlocked;
Sage Weila8599bd2009-10-06 11:31:12 -07002885
2886 case CEPH_CAP_OP_FLUSH_ACK:
Sage Weil6df058c2009-12-22 11:24:33 -08002887 handle_cap_flush_ack(inode, tid, h, session, cap);
Sage Weila8599bd2009-10-06 11:31:12 -07002888 break;
2889
2890 case CEPH_CAP_OP_TRUNC:
2891 handle_cap_trunc(inode, h, session);
2892 break;
2893
2894 default:
Sage Weilbe655592011-11-30 09:47:09 -08002895 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002896 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
2897 ceph_cap_op_name(op));
2898 }
2899
Greg Farnum21b559d2010-10-06 15:46:30 -07002900 goto done;
2901
2902flush_cap_releases:
2903 /*
2904 * send any full release message to try to move things
2905 * along for the mds (who clearly thinks we still have this
2906 * cap).
2907 */
2908 ceph_add_cap_releases(mdsc, session);
2909 ceph_send_cap_releases(mdsc, session);
2910
Sage Weila8599bd2009-10-06 11:31:12 -07002911done:
Sage Weil15637c82010-03-16 13:42:00 -07002912 mutex_unlock(&session->s_mutex);
2913done_unlocked:
Sage Weila8599bd2009-10-06 11:31:12 -07002914 if (inode)
2915 iput(inode);
Sage Weil154f42c2010-06-21 13:45:04 -07002916 if (open_target_sessions)
2917 ceph_mdsc_open_export_target_sessions(mdsc, session);
Sage Weila8599bd2009-10-06 11:31:12 -07002918 return;
2919
2920bad:
2921 pr_err("ceph_handle_caps: corrupt message\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -08002922 ceph_msg_dump(msg);
Sage Weila8599bd2009-10-06 11:31:12 -07002923 return;
2924}
2925
2926/*
2927 * Delayed work handler to process end of delayed cap release LRU list.
2928 */
Sage Weilafcdaea2009-10-14 14:27:38 -07002929void ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
Sage Weila8599bd2009-10-06 11:31:12 -07002930{
2931 struct ceph_inode_info *ci;
2932 int flags = CHECK_CAPS_NODELAY;
2933
Sage Weila8599bd2009-10-06 11:31:12 -07002934 dout("check_delayed_caps\n");
2935 while (1) {
2936 spin_lock(&mdsc->cap_delay_lock);
2937 if (list_empty(&mdsc->cap_delay_list))
2938 break;
2939 ci = list_first_entry(&mdsc->cap_delay_list,
2940 struct ceph_inode_info,
2941 i_cap_delay_list);
2942 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
2943 time_before(jiffies, ci->i_hold_caps_max))
2944 break;
2945 list_del_init(&ci->i_cap_delay_list);
2946 spin_unlock(&mdsc->cap_delay_lock);
2947 dout("check_delayed_caps on %p\n", &ci->vfs_inode);
2948 ceph_check_caps(ci, flags, NULL);
2949 }
2950 spin_unlock(&mdsc->cap_delay_lock);
2951}
2952
2953/*
Sage Weilafcdaea2009-10-14 14:27:38 -07002954 * Flush all dirty caps to the mds
2955 */
2956void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
2957{
Sage Weildb354052011-05-24 11:46:31 -07002958 struct ceph_inode_info *ci;
2959 struct inode *inode;
Sage Weilafcdaea2009-10-14 14:27:38 -07002960
2961 dout("flush_dirty_caps\n");
2962 spin_lock(&mdsc->cap_dirty_lock);
Sage Weildb354052011-05-24 11:46:31 -07002963 while (!list_empty(&mdsc->cap_dirty)) {
2964 ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info,
2965 i_dirty_item);
Sage Weil70b666c2011-05-27 09:24:26 -07002966 inode = &ci->vfs_inode;
2967 ihold(inode);
Sage Weildb354052011-05-24 11:46:31 -07002968 dout("flush_dirty_caps %p\n", inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07002969 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weil70b666c2011-05-27 09:24:26 -07002970 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_FLUSH, NULL);
2971 iput(inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07002972 spin_lock(&mdsc->cap_dirty_lock);
2973 }
2974 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weildb354052011-05-24 11:46:31 -07002975 dout("flush_dirty_caps done\n");
Sage Weilafcdaea2009-10-14 14:27:38 -07002976}
2977
2978/*
Sage Weila8599bd2009-10-06 11:31:12 -07002979 * Drop open file reference. If we were the last open file,
2980 * we may need to release capabilities to the MDS (or schedule
2981 * their delayed release).
2982 */
2983void ceph_put_fmode(struct ceph_inode_info *ci, int fmode)
2984{
2985 struct inode *inode = &ci->vfs_inode;
2986 int last = 0;
2987
Sage Weilbe655592011-11-30 09:47:09 -08002988 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002989 dout("put_fmode %p fmode %d %d -> %d\n", inode, fmode,
2990 ci->i_nr_by_mode[fmode], ci->i_nr_by_mode[fmode]-1);
2991 BUG_ON(ci->i_nr_by_mode[fmode] == 0);
2992 if (--ci->i_nr_by_mode[fmode] == 0)
2993 last++;
Sage Weilbe655592011-11-30 09:47:09 -08002994 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002995
2996 if (last && ci->i_vino.snap == CEPH_NOSNAP)
2997 ceph_check_caps(ci, 0, NULL);
2998}
2999
3000/*
3001 * Helpers for embedding cap and dentry lease releases into mds
3002 * requests.
3003 *
3004 * @force is used by dentry_release (below) to force inclusion of a
3005 * record for the directory inode, even when there aren't any caps to
3006 * drop.
3007 */
3008int ceph_encode_inode_release(void **p, struct inode *inode,
3009 int mds, int drop, int unless, int force)
3010{
3011 struct ceph_inode_info *ci = ceph_inode(inode);
3012 struct ceph_cap *cap;
3013 struct ceph_mds_request_release *rel = *p;
Sage Weilec97f882010-06-24 15:12:37 -07003014 int used, dirty;
Sage Weila8599bd2009-10-06 11:31:12 -07003015 int ret = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07003016
Sage Weilbe655592011-11-30 09:47:09 -08003017 spin_lock(&ci->i_ceph_lock);
Sage Weil916623d2010-03-16 15:01:07 -07003018 used = __ceph_caps_used(ci);
Sage Weilec97f882010-06-24 15:12:37 -07003019 dirty = __ceph_caps_dirty(ci);
Sage Weil916623d2010-03-16 15:01:07 -07003020
Sage Weilec97f882010-06-24 15:12:37 -07003021 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
3022 inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
Sage Weil916623d2010-03-16 15:01:07 -07003023 ceph_cap_string(unless));
3024
Sage Weilec97f882010-06-24 15:12:37 -07003025 /* only drop unused, clean caps */
3026 drop &= ~(used | dirty);
Sage Weil916623d2010-03-16 15:01:07 -07003027
Sage Weila8599bd2009-10-06 11:31:12 -07003028 cap = __get_cap_for_mds(ci, mds);
3029 if (cap && __cap_is_valid(cap)) {
3030 if (force ||
3031 ((cap->issued & drop) &&
3032 (cap->issued & unless) == 0)) {
3033 if ((cap->issued & drop) &&
3034 (cap->issued & unless) == 0) {
3035 dout("encode_inode_release %p cap %p %s -> "
3036 "%s\n", inode, cap,
3037 ceph_cap_string(cap->issued),
3038 ceph_cap_string(cap->issued & ~drop));
3039 cap->issued &= ~drop;
3040 cap->implemented &= ~drop;
3041 if (ci->i_ceph_flags & CEPH_I_NODELAY) {
3042 int wanted = __ceph_caps_wanted(ci);
3043 dout(" wanted %s -> %s (act %s)\n",
3044 ceph_cap_string(cap->mds_wanted),
3045 ceph_cap_string(cap->mds_wanted &
3046 ~wanted),
3047 ceph_cap_string(wanted));
3048 cap->mds_wanted &= wanted;
3049 }
3050 } else {
3051 dout("encode_inode_release %p cap %p %s"
3052 " (force)\n", inode, cap,
3053 ceph_cap_string(cap->issued));
3054 }
3055
3056 rel->ino = cpu_to_le64(ceph_ino(inode));
3057 rel->cap_id = cpu_to_le64(cap->cap_id);
3058 rel->seq = cpu_to_le32(cap->seq);
3059 rel->issue_seq = cpu_to_le32(cap->issue_seq),
3060 rel->mseq = cpu_to_le32(cap->mseq);
3061 rel->caps = cpu_to_le32(cap->issued);
3062 rel->wanted = cpu_to_le32(cap->mds_wanted);
3063 rel->dname_len = 0;
3064 rel->dname_seq = 0;
3065 *p += sizeof(*rel);
3066 ret = 1;
3067 } else {
3068 dout("encode_inode_release %p cap %p %s\n",
3069 inode, cap, ceph_cap_string(cap->issued));
3070 }
3071 }
Sage Weilbe655592011-11-30 09:47:09 -08003072 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003073 return ret;
3074}
3075
3076int ceph_encode_dentry_release(void **p, struct dentry *dentry,
3077 int mds, int drop, int unless)
3078{
3079 struct inode *dir = dentry->d_parent->d_inode;
3080 struct ceph_mds_request_release *rel = *p;
3081 struct ceph_dentry_info *di = ceph_dentry(dentry);
3082 int force = 0;
3083 int ret;
3084
3085 /*
3086 * force an record for the directory caps if we have a dentry lease.
Sage Weilbe655592011-11-30 09:47:09 -08003087 * this is racy (can't take i_ceph_lock and d_lock together), but it
Sage Weila8599bd2009-10-06 11:31:12 -07003088 * doesn't have to be perfect; the mds will revoke anything we don't
3089 * release.
3090 */
3091 spin_lock(&dentry->d_lock);
3092 if (di->lease_session && di->lease_session->s_mds == mds)
3093 force = 1;
3094 spin_unlock(&dentry->d_lock);
3095
3096 ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
3097
3098 spin_lock(&dentry->d_lock);
3099 if (ret && di->lease_session && di->lease_session->s_mds == mds) {
3100 dout("encode_dentry_release %p mds%d seq %d\n",
3101 dentry, mds, (int)di->lease_seq);
3102 rel->dname_len = cpu_to_le32(dentry->d_name.len);
3103 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
3104 *p += dentry->d_name.len;
3105 rel->dname_seq = cpu_to_le32(di->lease_seq);
Sage Weil1dadcce2010-07-23 13:54:21 -07003106 __ceph_mdsc_drop_dentry_lease(dentry);
Sage Weila8599bd2009-10-06 11:31:12 -07003107 }
3108 spin_unlock(&dentry->d_lock);
3109 return ret;
3110}