blob: ae2be696eb5b32e5e2cbad2a591582c3d802aab5 [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;
614 else if (ci->i_auth_cap == cap)
615 ci->i_auth_cap = NULL;
616
617 dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
618 inode, ceph_vinop(inode), cap, ceph_cap_string(issued),
619 ceph_cap_string(issued|cap->issued), seq, mds);
620 cap->cap_id = cap_id;
621 cap->issued = issued;
622 cap->implemented |= issued;
623 cap->mds_wanted |= wanted;
624 cap->seq = seq;
625 cap->issue_seq = seq;
626 cap->mseq = mseq;
Sage Weil685f9a5d2009-11-09 12:05:48 -0800627 cap->cap_gen = session->s_cap_gen;
Sage Weila8599bd2009-10-06 11:31:12 -0700628
629 if (fmode >= 0)
630 __ceph_get_fmode(ci, fmode);
Sage Weilbe655592011-11-30 09:47:09 -0800631 spin_unlock(&ci->i_ceph_lock);
Yehuda Sadeh03066f22010-07-27 13:11:08 -0700632 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -0700633 return 0;
634}
635
636/*
637 * Return true if cap has not timed out and belongs to the current
638 * generation of the MDS session (i.e. has not gone 'stale' due to
639 * us losing touch with the mds).
640 */
641static int __cap_is_valid(struct ceph_cap *cap)
642{
643 unsigned long ttl;
Sage Weilcdac8302009-11-10 16:02:23 -0800644 u32 gen;
Sage Weila8599bd2009-10-06 11:31:12 -0700645
Alex Elderd8fb02a2012-01-12 17:48:10 -0800646 spin_lock(&cap->session->s_gen_ttl_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700647 gen = cap->session->s_cap_gen;
648 ttl = cap->session->s_cap_ttl;
Alex Elderd8fb02a2012-01-12 17:48:10 -0800649 spin_unlock(&cap->session->s_gen_ttl_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700650
Sage Weil685f9a5d2009-11-09 12:05:48 -0800651 if (cap->cap_gen < gen || time_after_eq(jiffies, ttl)) {
Sage Weila8599bd2009-10-06 11:31:12 -0700652 dout("__cap_is_valid %p cap %p issued %s "
653 "but STALE (gen %u vs %u)\n", &cap->ci->vfs_inode,
Sage Weil685f9a5d2009-11-09 12:05:48 -0800654 cap, ceph_cap_string(cap->issued), cap->cap_gen, gen);
Sage Weila8599bd2009-10-06 11:31:12 -0700655 return 0;
656 }
657
658 return 1;
659}
660
661/*
662 * Return set of valid cap bits issued to us. Note that caps time
663 * out, and may be invalidated in bulk if the client session times out
664 * and session->s_cap_gen is bumped.
665 */
666int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented)
667{
Sage Weil7af8f1e2010-03-01 15:17:34 -0800668 int have = ci->i_snap_caps | ci->i_cap_exporting_issued;
Sage Weila8599bd2009-10-06 11:31:12 -0700669 struct ceph_cap *cap;
670 struct rb_node *p;
671
672 if (implemented)
673 *implemented = 0;
674 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
675 cap = rb_entry(p, struct ceph_cap, ci_node);
676 if (!__cap_is_valid(cap))
677 continue;
678 dout("__ceph_caps_issued %p cap %p issued %s\n",
679 &ci->vfs_inode, cap, ceph_cap_string(cap->issued));
680 have |= cap->issued;
681 if (implemented)
682 *implemented |= cap->implemented;
683 }
684 return have;
685}
686
687/*
688 * Get cap bits issued by caps other than @ocap
689 */
690int __ceph_caps_issued_other(struct ceph_inode_info *ci, struct ceph_cap *ocap)
691{
692 int have = ci->i_snap_caps;
693 struct ceph_cap *cap;
694 struct rb_node *p;
695
696 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
697 cap = rb_entry(p, struct ceph_cap, ci_node);
698 if (cap == ocap)
699 continue;
700 if (!__cap_is_valid(cap))
701 continue;
702 have |= cap->issued;
703 }
704 return have;
705}
706
707/*
708 * Move a cap to the end of the LRU (oldest caps at list head, newest
709 * at list tail).
710 */
711static void __touch_cap(struct ceph_cap *cap)
712{
713 struct ceph_mds_session *s = cap->session;
714
Sage Weila8599bd2009-10-06 11:31:12 -0700715 spin_lock(&s->s_cap_lock);
Sage Weil7c1332b2010-02-16 11:39:45 -0800716 if (s->s_cap_iterator == NULL) {
Sage Weil5dacf092009-12-21 20:40:34 -0800717 dout("__touch_cap %p cap %p mds%d\n", &cap->ci->vfs_inode, cap,
718 s->s_mds);
719 list_move_tail(&cap->session_caps, &s->s_caps);
720 } else {
721 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
722 &cap->ci->vfs_inode, cap, s->s_mds);
723 }
Sage Weila8599bd2009-10-06 11:31:12 -0700724 spin_unlock(&s->s_cap_lock);
725}
726
727/*
728 * Check if we hold the given mask. If so, move the cap(s) to the
729 * front of their respective LRUs. (This is the preferred way for
730 * callers to check for caps they want.)
731 */
732int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int touch)
733{
734 struct ceph_cap *cap;
735 struct rb_node *p;
736 int have = ci->i_snap_caps;
737
738 if ((have & mask) == mask) {
739 dout("__ceph_caps_issued_mask %p snap issued %s"
740 " (mask %s)\n", &ci->vfs_inode,
741 ceph_cap_string(have),
742 ceph_cap_string(mask));
743 return 1;
744 }
745
746 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
747 cap = rb_entry(p, struct ceph_cap, ci_node);
748 if (!__cap_is_valid(cap))
749 continue;
750 if ((cap->issued & mask) == mask) {
751 dout("__ceph_caps_issued_mask %p cap %p issued %s"
752 " (mask %s)\n", &ci->vfs_inode, cap,
753 ceph_cap_string(cap->issued),
754 ceph_cap_string(mask));
755 if (touch)
756 __touch_cap(cap);
757 return 1;
758 }
759
760 /* does a combination of caps satisfy mask? */
761 have |= cap->issued;
762 if ((have & mask) == mask) {
763 dout("__ceph_caps_issued_mask %p combo issued %s"
764 " (mask %s)\n", &ci->vfs_inode,
765 ceph_cap_string(cap->issued),
766 ceph_cap_string(mask));
767 if (touch) {
768 struct rb_node *q;
769
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300770 /* touch this + preceding caps */
Sage Weila8599bd2009-10-06 11:31:12 -0700771 __touch_cap(cap);
772 for (q = rb_first(&ci->i_caps); q != p;
773 q = rb_next(q)) {
774 cap = rb_entry(q, struct ceph_cap,
775 ci_node);
776 if (!__cap_is_valid(cap))
777 continue;
778 __touch_cap(cap);
779 }
780 }
781 return 1;
782 }
783 }
784
785 return 0;
786}
787
788/*
789 * Return true if mask caps are currently being revoked by an MDS.
790 */
791int ceph_caps_revoking(struct ceph_inode_info *ci, int mask)
792{
793 struct inode *inode = &ci->vfs_inode;
794 struct ceph_cap *cap;
795 struct rb_node *p;
796 int ret = 0;
797
Sage Weilbe655592011-11-30 09:47:09 -0800798 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700799 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
800 cap = rb_entry(p, struct ceph_cap, ci_node);
801 if (__cap_is_valid(cap) &&
802 (cap->implemented & ~cap->issued & mask)) {
803 ret = 1;
804 break;
805 }
806 }
Sage Weilbe655592011-11-30 09:47:09 -0800807 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700808 dout("ceph_caps_revoking %p %s = %d\n", inode,
809 ceph_cap_string(mask), ret);
810 return ret;
811}
812
813int __ceph_caps_used(struct ceph_inode_info *ci)
814{
815 int used = 0;
816 if (ci->i_pin_ref)
817 used |= CEPH_CAP_PIN;
818 if (ci->i_rd_ref)
819 used |= CEPH_CAP_FILE_RD;
Sage Weila43fb732010-09-17 09:54:08 -0700820 if (ci->i_rdcache_ref || ci->vfs_inode.i_data.nrpages)
Sage Weila8599bd2009-10-06 11:31:12 -0700821 used |= CEPH_CAP_FILE_CACHE;
822 if (ci->i_wr_ref)
823 used |= CEPH_CAP_FILE_WR;
Henry C Changd3d07202011-05-11 10:29:54 +0000824 if (ci->i_wb_ref || ci->i_wrbuffer_ref)
Sage Weila8599bd2009-10-06 11:31:12 -0700825 used |= CEPH_CAP_FILE_BUFFER;
826 return used;
827}
828
829/*
830 * wanted, by virtue of open file modes
831 */
832int __ceph_caps_file_wanted(struct ceph_inode_info *ci)
833{
834 int want = 0;
835 int mode;
Sage Weil33caad32010-05-26 14:31:27 -0700836 for (mode = 0; mode < CEPH_FILE_MODE_NUM; mode++)
Sage Weila8599bd2009-10-06 11:31:12 -0700837 if (ci->i_nr_by_mode[mode])
838 want |= ceph_caps_for_mode(mode);
839 return want;
840}
841
842/*
843 * Return caps we have registered with the MDS(s) as 'wanted'.
844 */
845int __ceph_caps_mds_wanted(struct ceph_inode_info *ci)
846{
847 struct ceph_cap *cap;
848 struct rb_node *p;
849 int mds_wanted = 0;
850
851 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
852 cap = rb_entry(p, struct ceph_cap, ci_node);
853 if (!__cap_is_valid(cap))
854 continue;
855 mds_wanted |= cap->mds_wanted;
856 }
857 return mds_wanted;
858}
859
860/*
Sage Weilbe655592011-11-30 09:47:09 -0800861 * called under i_ceph_lock
Sage Weila8599bd2009-10-06 11:31:12 -0700862 */
863static int __ceph_is_any_caps(struct ceph_inode_info *ci)
864{
865 return !RB_EMPTY_ROOT(&ci->i_caps) || ci->i_cap_exporting_mds >= 0;
866}
867
868/*
Sage Weilf818a732010-05-11 20:56:31 -0700869 * Remove a cap. Take steps to deal with a racing iterate_session_caps.
870 *
Sage Weilbe655592011-11-30 09:47:09 -0800871 * caller should hold i_ceph_lock.
Sage Weila6369742010-02-22 13:59:00 -0800872 * caller will not hold session s_mutex if called from destroy_inode.
Sage Weila8599bd2009-10-06 11:31:12 -0700873 */
Sage Weil7c1332b2010-02-16 11:39:45 -0800874void __ceph_remove_cap(struct ceph_cap *cap)
Sage Weila8599bd2009-10-06 11:31:12 -0700875{
876 struct ceph_mds_session *session = cap->session;
877 struct ceph_inode_info *ci = cap->ci;
Cheng Renquan640ef792010-03-26 17:40:33 +0800878 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700879 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
Sage Weilf818a732010-05-11 20:56:31 -0700880 int removed = 0;
Sage Weila8599bd2009-10-06 11:31:12 -0700881
882 dout("__ceph_remove_cap %p from %p\n", cap, &ci->vfs_inode);
883
Sage Weil7c1332b2010-02-16 11:39:45 -0800884 /* remove from session list */
885 spin_lock(&session->s_cap_lock);
886 if (session->s_cap_iterator == cap) {
887 /* not yet, we are iterating over this very cap */
888 dout("__ceph_remove_cap delaying %p removal from session %p\n",
889 cap, cap->session);
890 } else {
891 list_del_init(&cap->session_caps);
892 session->s_nr_caps--;
893 cap->session = NULL;
Sage Weilf818a732010-05-11 20:56:31 -0700894 removed = 1;
Sage Weil7c1332b2010-02-16 11:39:45 -0800895 }
Sage Weilf818a732010-05-11 20:56:31 -0700896 /* protect backpointer with s_cap_lock: see iterate_session_caps */
897 cap->ci = NULL;
Sage Weil7c1332b2010-02-16 11:39:45 -0800898 spin_unlock(&session->s_cap_lock);
899
Sage Weilf818a732010-05-11 20:56:31 -0700900 /* remove from inode list */
901 rb_erase(&cap->ci_node, &ci->i_caps);
902 if (ci->i_auth_cap == cap)
903 ci->i_auth_cap = NULL;
904
905 if (removed)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700906 ceph_put_cap(mdsc, cap);
Sage Weila8599bd2009-10-06 11:31:12 -0700907
908 if (!__ceph_is_any_caps(ci) && ci->i_snap_realm) {
909 struct ceph_snap_realm *realm = ci->i_snap_realm;
910 spin_lock(&realm->inodes_with_caps_lock);
911 list_del_init(&ci->i_snap_realm_item);
912 ci->i_snap_realm_counter++;
913 ci->i_snap_realm = NULL;
914 spin_unlock(&realm->inodes_with_caps_lock);
915 ceph_put_snap_realm(mdsc, realm);
916 }
917 if (!__ceph_is_any_real_caps(ci))
918 __cap_delay_cancel(mdsc, ci);
919}
920
921/*
922 * Build and send a cap message to the given MDS.
923 *
924 * Caller should be holding s_mutex.
925 */
926static int send_cap_msg(struct ceph_mds_session *session,
927 u64 ino, u64 cid, int op,
928 int caps, int wanted, int dirty,
929 u32 seq, u64 flush_tid, u32 issue_seq, u32 mseq,
930 u64 size, u64 max_size,
931 struct timespec *mtime, struct timespec *atime,
932 u64 time_warp_seq,
Eric W. Biederman05cb11c2013-01-31 02:56:19 -0800933 kuid_t uid, kgid_t gid, umode_t mode,
Sage Weila8599bd2009-10-06 11:31:12 -0700934 u64 xattr_version,
935 struct ceph_buffer *xattrs_buf,
936 u64 follows)
937{
938 struct ceph_mds_caps *fc;
939 struct ceph_msg *msg;
940
941 dout("send_cap_msg %s %llx %llx caps %s wanted %s dirty %s"
942 " seq %u/%u mseq %u follows %lld size %llu/%llu"
943 " xattr_ver %llu xattr_len %d\n", ceph_cap_op_name(op),
944 cid, ino, ceph_cap_string(caps), ceph_cap_string(wanted),
945 ceph_cap_string(dirty),
946 seq, issue_seq, mseq, follows, size, max_size,
947 xattr_version, xattrs_buf ? (int)xattrs_buf->vec.iov_len : 0);
948
Sage Weilb61c2762011-08-09 15:03:46 -0700949 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, sizeof(*fc), GFP_NOFS, false);
Sage Weila79832f2010-04-01 16:06:19 -0700950 if (!msg)
951 return -ENOMEM;
Sage Weila8599bd2009-10-06 11:31:12 -0700952
Sage Weil6df058c2009-12-22 11:24:33 -0800953 msg->hdr.tid = cpu_to_le64(flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -0700954
Sage Weil6df058c2009-12-22 11:24:33 -0800955 fc = msg->front.iov_base;
Sage Weila8599bd2009-10-06 11:31:12 -0700956 memset(fc, 0, sizeof(*fc));
957
958 fc->cap_id = cpu_to_le64(cid);
959 fc->op = cpu_to_le32(op);
960 fc->seq = cpu_to_le32(seq);
Sage Weila8599bd2009-10-06 11:31:12 -0700961 fc->issue_seq = cpu_to_le32(issue_seq);
962 fc->migrate_seq = cpu_to_le32(mseq);
963 fc->caps = cpu_to_le32(caps);
964 fc->wanted = cpu_to_le32(wanted);
965 fc->dirty = cpu_to_le32(dirty);
966 fc->ino = cpu_to_le64(ino);
967 fc->snap_follows = cpu_to_le64(follows);
968
969 fc->size = cpu_to_le64(size);
970 fc->max_size = cpu_to_le64(max_size);
971 if (mtime)
972 ceph_encode_timespec(&fc->mtime, mtime);
973 if (atime)
974 ceph_encode_timespec(&fc->atime, atime);
975 fc->time_warp_seq = cpu_to_le32(time_warp_seq);
976
Eric W. Biederman05cb11c2013-01-31 02:56:19 -0800977 fc->uid = cpu_to_le32(from_kuid(&init_user_ns, uid));
978 fc->gid = cpu_to_le32(from_kgid(&init_user_ns, gid));
Sage Weila8599bd2009-10-06 11:31:12 -0700979 fc->mode = cpu_to_le32(mode);
980
981 fc->xattr_version = cpu_to_le64(xattr_version);
982 if (xattrs_buf) {
983 msg->middle = ceph_buffer_get(xattrs_buf);
984 fc->xattr_len = cpu_to_le32(xattrs_buf->vec.iov_len);
985 msg->hdr.middle_len = cpu_to_le32(xattrs_buf->vec.iov_len);
986 }
987
988 ceph_con_send(&session->s_con, msg);
989 return 0;
990}
991
Sage Weil3d7ded42010-06-09 16:47:10 -0700992static void __queue_cap_release(struct ceph_mds_session *session,
993 u64 ino, u64 cap_id, u32 migrate_seq,
994 u32 issue_seq)
995{
996 struct ceph_msg *msg;
997 struct ceph_mds_cap_release *head;
998 struct ceph_mds_cap_item *item;
999
1000 spin_lock(&session->s_cap_lock);
1001 BUG_ON(!session->s_num_cap_releases);
1002 msg = list_first_entry(&session->s_cap_releases,
1003 struct ceph_msg, list_head);
1004
1005 dout(" adding %llx release to mds%d msg %p (%d left)\n",
1006 ino, session->s_mds, msg, session->s_num_cap_releases);
1007
1008 BUG_ON(msg->front.iov_len + sizeof(*item) > PAGE_CACHE_SIZE);
1009 head = msg->front.iov_base;
Wei Yongjunb905a7f2012-09-28 12:59:16 +08001010 le32_add_cpu(&head->num, 1);
Sage Weil3d7ded42010-06-09 16:47:10 -07001011 item = msg->front.iov_base + msg->front.iov_len;
1012 item->ino = cpu_to_le64(ino);
1013 item->cap_id = cpu_to_le64(cap_id);
1014 item->migrate_seq = cpu_to_le32(migrate_seq);
1015 item->seq = cpu_to_le32(issue_seq);
1016
1017 session->s_num_cap_releases--;
1018
1019 msg->front.iov_len += sizeof(*item);
1020 if (le32_to_cpu(head->num) == CEPH_CAPS_PER_RELEASE) {
1021 dout(" release msg %p full\n", msg);
1022 list_move_tail(&msg->list_head, &session->s_cap_releases_done);
1023 } else {
1024 dout(" release msg %p at %d/%d (%d)\n", msg,
1025 (int)le32_to_cpu(head->num),
1026 (int)CEPH_CAPS_PER_RELEASE,
1027 (int)msg->front.iov_len);
1028 }
1029 spin_unlock(&session->s_cap_lock);
1030}
1031
Sage Weila8599bd2009-10-06 11:31:12 -07001032/*
Sage Weila6369742010-02-22 13:59:00 -08001033 * Queue cap releases when an inode is dropped from our cache. Since
Sage Weilbe655592011-11-30 09:47:09 -08001034 * inode is about to be destroyed, there is no need for i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -07001035 */
1036void ceph_queue_caps_release(struct inode *inode)
1037{
1038 struct ceph_inode_info *ci = ceph_inode(inode);
1039 struct rb_node *p;
1040
Sage Weila8599bd2009-10-06 11:31:12 -07001041 p = rb_first(&ci->i_caps);
1042 while (p) {
1043 struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
1044 struct ceph_mds_session *session = cap->session;
Sage Weila8599bd2009-10-06 11:31:12 -07001045
Sage Weil3d7ded42010-06-09 16:47:10 -07001046 __queue_cap_release(session, ceph_ino(inode), cap->cap_id,
1047 cap->mseq, cap->issue_seq);
Sage Weila8599bd2009-10-06 11:31:12 -07001048 p = rb_next(p);
Sage Weil7c1332b2010-02-16 11:39:45 -08001049 __ceph_remove_cap(cap);
Sage Weila8599bd2009-10-06 11:31:12 -07001050 }
Sage Weila8599bd2009-10-06 11:31:12 -07001051}
1052
1053/*
1054 * Send a cap msg on the given inode. Update our caps state, then
Sage Weilbe655592011-11-30 09:47:09 -08001055 * drop i_ceph_lock and send the message.
Sage Weila8599bd2009-10-06 11:31:12 -07001056 *
1057 * Make note of max_size reported/requested from mds, revoked caps
1058 * that have now been implemented.
1059 *
1060 * Make half-hearted attempt ot to invalidate page cache if we are
1061 * dropping RDCACHE. Note that this will leave behind locked pages
1062 * that we'll then need to deal with elsewhere.
1063 *
1064 * Return non-zero if delayed release, or we experienced an error
1065 * such that the caller should requeue + retry later.
1066 *
Sage Weilbe655592011-11-30 09:47:09 -08001067 * called with i_ceph_lock, then drops it.
Sage Weila8599bd2009-10-06 11:31:12 -07001068 * caller should hold snap_rwsem (read), s_mutex.
1069 */
1070static int __send_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap,
1071 int op, int used, int want, int retain, int flushing,
1072 unsigned *pflush_tid)
Sage Weilbe655592011-11-30 09:47:09 -08001073 __releases(cap->ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07001074{
1075 struct ceph_inode_info *ci = cap->ci;
1076 struct inode *inode = &ci->vfs_inode;
1077 u64 cap_id = cap->cap_id;
Sage Weil68c28322010-02-09 13:41:47 -08001078 int held, revoking, dropping, keep;
Sage Weila8599bd2009-10-06 11:31:12 -07001079 u64 seq, issue_seq, mseq, time_warp_seq, follows;
1080 u64 size, max_size;
1081 struct timespec mtime, atime;
1082 int wake = 0;
Al Viro5706b272011-07-26 04:52:22 -04001083 umode_t mode;
Eric W. Biederman05cb11c2013-01-31 02:56:19 -08001084 kuid_t uid;
1085 kgid_t gid;
Sage Weila8599bd2009-10-06 11:31:12 -07001086 struct ceph_mds_session *session;
1087 u64 xattr_version = 0;
Sage Weil082afec2010-08-22 15:16:41 -07001088 struct ceph_buffer *xattr_blob = NULL;
Sage Weila8599bd2009-10-06 11:31:12 -07001089 int delayed = 0;
1090 u64 flush_tid = 0;
1091 int i;
1092 int ret;
1093
Sage Weil68c28322010-02-09 13:41:47 -08001094 held = cap->issued | cap->implemented;
1095 revoking = cap->implemented & ~cap->issued;
1096 retain &= ~revoking;
1097 dropping = cap->issued & ~retain;
1098
Sage Weila8599bd2009-10-06 11:31:12 -07001099 dout("__send_cap %p cap %p session %p %s -> %s (revoking %s)\n",
1100 inode, cap, cap->session,
1101 ceph_cap_string(held), ceph_cap_string(held & retain),
1102 ceph_cap_string(revoking));
1103 BUG_ON((retain & CEPH_CAP_PIN) == 0);
1104
1105 session = cap->session;
1106
1107 /* don't release wanted unless we've waited a bit. */
1108 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1109 time_before(jiffies, ci->i_hold_caps_min)) {
1110 dout(" delaying issued %s -> %s, wanted %s -> %s on send\n",
1111 ceph_cap_string(cap->issued),
1112 ceph_cap_string(cap->issued & retain),
1113 ceph_cap_string(cap->mds_wanted),
1114 ceph_cap_string(want));
1115 want |= cap->mds_wanted;
1116 retain |= cap->issued;
1117 delayed = 1;
1118 }
1119 ci->i_ceph_flags &= ~(CEPH_I_NODELAY | CEPH_I_FLUSH);
1120
1121 cap->issued &= retain; /* drop bits we don't want */
1122 if (cap->implemented & ~cap->issued) {
1123 /*
1124 * Wake up any waiters on wanted -> needed transition.
1125 * This is due to the weird transition from buffered
1126 * to sync IO... we need to flush dirty pages _before_
1127 * allowing sync writes to avoid reordering.
1128 */
1129 wake = 1;
1130 }
1131 cap->implemented &= cap->issued | used;
1132 cap->mds_wanted = want;
1133
1134 if (flushing) {
1135 /*
1136 * assign a tid for flush operations so we can avoid
1137 * flush1 -> dirty1 -> flush2 -> flushack1 -> mark
1138 * clean type races. track latest tid for every bit
1139 * so we can handle flush AxFw, flush Fw, and have the
1140 * first ack clean Ax.
1141 */
1142 flush_tid = ++ci->i_cap_flush_last_tid;
1143 if (pflush_tid)
1144 *pflush_tid = flush_tid;
1145 dout(" cap_flush_tid %d\n", (int)flush_tid);
1146 for (i = 0; i < CEPH_CAP_BITS; i++)
1147 if (flushing & (1 << i))
1148 ci->i_cap_flush_tid[i] = flush_tid;
Sage Weil7d8cb262010-08-24 08:44:16 -07001149
1150 follows = ci->i_head_snapc->seq;
1151 } else {
1152 follows = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001153 }
1154
1155 keep = cap->implemented;
1156 seq = cap->seq;
1157 issue_seq = cap->issue_seq;
1158 mseq = cap->mseq;
1159 size = inode->i_size;
1160 ci->i_reported_size = size;
1161 max_size = ci->i_wanted_max_size;
1162 ci->i_requested_max_size = max_size;
1163 mtime = inode->i_mtime;
1164 atime = inode->i_atime;
1165 time_warp_seq = ci->i_time_warp_seq;
Sage Weila8599bd2009-10-06 11:31:12 -07001166 uid = inode->i_uid;
1167 gid = inode->i_gid;
1168 mode = inode->i_mode;
1169
Sage Weil082afec2010-08-22 15:16:41 -07001170 if (flushing & CEPH_CAP_XATTR_EXCL) {
Sage Weila8599bd2009-10-06 11:31:12 -07001171 __ceph_build_xattrs_blob(ci);
Sage Weil082afec2010-08-22 15:16:41 -07001172 xattr_blob = ci->i_xattrs.blob;
1173 xattr_version = ci->i_xattrs.version;
Sage Weila8599bd2009-10-06 11:31:12 -07001174 }
1175
Sage Weilbe655592011-11-30 09:47:09 -08001176 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001177
Sage Weila8599bd2009-10-06 11:31:12 -07001178 ret = send_cap_msg(session, ceph_vino(inode).ino, cap_id,
1179 op, keep, want, flushing, seq, flush_tid, issue_seq, mseq,
1180 size, max_size, &mtime, &atime, time_warp_seq,
Sage Weil082afec2010-08-22 15:16:41 -07001181 uid, gid, mode, xattr_version, xattr_blob,
Sage Weila8599bd2009-10-06 11:31:12 -07001182 follows);
1183 if (ret < 0) {
1184 dout("error sending cap msg, must requeue %p\n", inode);
1185 delayed = 1;
1186 }
1187
1188 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07001189 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07001190
1191 return delayed;
1192}
1193
1194/*
1195 * When a snapshot is taken, clients accumulate dirty metadata on
1196 * inodes with capabilities in ceph_cap_snaps to describe the file
1197 * state at the time the snapshot was taken. This must be flushed
1198 * asynchronously back to the MDS once sync writes complete and dirty
1199 * data is written out.
1200 *
Sage Weile8351242010-09-17 08:03:08 -07001201 * Unless @again is true, skip cap_snaps that were already sent to
1202 * the MDS (i.e., during this session).
1203 *
Sage Weilbe655592011-11-30 09:47:09 -08001204 * Called under i_ceph_lock. Takes s_mutex as needed.
Sage Weila8599bd2009-10-06 11:31:12 -07001205 */
1206void __ceph_flush_snaps(struct ceph_inode_info *ci,
Sage Weile8351242010-09-17 08:03:08 -07001207 struct ceph_mds_session **psession,
1208 int again)
Sage Weilbe655592011-11-30 09:47:09 -08001209 __releases(ci->i_ceph_lock)
1210 __acquires(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07001211{
1212 struct inode *inode = &ci->vfs_inode;
1213 int mds;
1214 struct ceph_cap_snap *capsnap;
1215 u32 mseq;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001216 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001217 struct ceph_mds_session *session = NULL; /* if session != NULL, we hold
1218 session->s_mutex */
1219 u64 next_follows = 0; /* keep track of how far we've gotten through the
1220 i_cap_snaps list, and skip these entries next time
1221 around to avoid an infinite loop */
1222
1223 if (psession)
1224 session = *psession;
1225
1226 dout("__flush_snaps %p\n", inode);
1227retry:
1228 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
1229 /* avoid an infiniute loop after retry */
1230 if (capsnap->follows < next_follows)
1231 continue;
1232 /*
1233 * we need to wait for sync writes to complete and for dirty
1234 * pages to be written out.
1235 */
1236 if (capsnap->dirty_pages || capsnap->writing)
Sage Weilcfc0bf62010-09-14 15:50:59 -07001237 break;
Sage Weila8599bd2009-10-06 11:31:12 -07001238
Sage Weil819ccbf2010-04-01 09:33:46 -07001239 /*
1240 * if cap writeback already occurred, we should have dropped
1241 * the capsnap in ceph_put_wrbuffer_cap_refs.
1242 */
1243 BUG_ON(capsnap->dirty == 0);
1244
Sage Weila8599bd2009-10-06 11:31:12 -07001245 /* pick mds, take s_mutex */
Sage Weilca81f3f2010-06-10 14:21:36 -07001246 if (ci->i_auth_cap == NULL) {
1247 dout("no auth cap (migrating?), doing nothing\n");
1248 goto out;
1249 }
Sage Weile8351242010-09-17 08:03:08 -07001250
1251 /* only flush each capsnap once */
1252 if (!again && !list_empty(&capsnap->flushing_item)) {
1253 dout("already flushed %p, skipping\n", capsnap);
1254 continue;
1255 }
1256
Sage Weilca81f3f2010-06-10 14:21:36 -07001257 mds = ci->i_auth_cap->session->s_mds;
1258 mseq = ci->i_auth_cap->mseq;
1259
Sage Weila8599bd2009-10-06 11:31:12 -07001260 if (session && session->s_mds != mds) {
1261 dout("oops, wrong session %p mutex\n", session);
1262 mutex_unlock(&session->s_mutex);
1263 ceph_put_mds_session(session);
1264 session = NULL;
1265 }
1266 if (!session) {
Sage Weilbe655592011-11-30 09:47:09 -08001267 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001268 mutex_lock(&mdsc->mutex);
1269 session = __ceph_lookup_mds_session(mdsc, mds);
1270 mutex_unlock(&mdsc->mutex);
1271 if (session) {
1272 dout("inverting session/ino locks on %p\n",
1273 session);
1274 mutex_lock(&session->s_mutex);
1275 }
1276 /*
1277 * if session == NULL, we raced against a cap
Sage Weilca81f3f2010-06-10 14:21:36 -07001278 * deletion or migration. retry, and we'll
1279 * get a better @mds value next time.
Sage Weila8599bd2009-10-06 11:31:12 -07001280 */
Sage Weilbe655592011-11-30 09:47:09 -08001281 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001282 goto retry;
1283 }
1284
1285 capsnap->flush_tid = ++ci->i_cap_flush_last_tid;
1286 atomic_inc(&capsnap->nref);
1287 if (!list_empty(&capsnap->flushing_item))
1288 list_del_init(&capsnap->flushing_item);
1289 list_add_tail(&capsnap->flushing_item,
1290 &session->s_cap_snaps_flushing);
Sage Weilbe655592011-11-30 09:47:09 -08001291 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001292
Sage Weilcfc0bf62010-09-14 15:50:59 -07001293 dout("flush_snaps %p cap_snap %p follows %lld tid %llu\n",
1294 inode, capsnap, capsnap->follows, capsnap->flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -07001295 send_cap_msg(session, ceph_vino(inode).ino, 0,
1296 CEPH_CAP_OP_FLUSHSNAP, capsnap->issued, 0,
1297 capsnap->dirty, 0, capsnap->flush_tid, 0, mseq,
1298 capsnap->size, 0,
1299 &capsnap->mtime, &capsnap->atime,
1300 capsnap->time_warp_seq,
1301 capsnap->uid, capsnap->gid, capsnap->mode,
Sage Weil4a625be2010-08-22 15:03:56 -07001302 capsnap->xattr_version, capsnap->xattr_blob,
Sage Weila8599bd2009-10-06 11:31:12 -07001303 capsnap->follows);
1304
1305 next_follows = capsnap->follows + 1;
1306 ceph_put_cap_snap(capsnap);
1307
Sage Weilbe655592011-11-30 09:47:09 -08001308 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001309 goto retry;
1310 }
1311
1312 /* we flushed them all; remove this inode from the queue */
1313 spin_lock(&mdsc->snap_flush_lock);
1314 list_del_init(&ci->i_snap_flush_item);
1315 spin_unlock(&mdsc->snap_flush_lock);
1316
Sage Weilca81f3f2010-06-10 14:21:36 -07001317out:
Sage Weila8599bd2009-10-06 11:31:12 -07001318 if (psession)
1319 *psession = session;
1320 else if (session) {
1321 mutex_unlock(&session->s_mutex);
1322 ceph_put_mds_session(session);
1323 }
1324}
1325
1326static void ceph_flush_snaps(struct ceph_inode_info *ci)
1327{
Sage Weilbe655592011-11-30 09:47:09 -08001328 spin_lock(&ci->i_ceph_lock);
Sage Weile8351242010-09-17 08:03:08 -07001329 __ceph_flush_snaps(ci, NULL, 0);
Sage Weilbe655592011-11-30 09:47:09 -08001330 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001331}
1332
1333/*
Sage Weilfca65b42011-05-04 11:33:47 -07001334 * Mark caps dirty. If inode is newly dirty, return the dirty flags.
1335 * Caller is then responsible for calling __mark_inode_dirty with the
1336 * returned flags value.
Sage Weil76e3b392009-10-15 18:13:53 -07001337 */
Sage Weilfca65b42011-05-04 11:33:47 -07001338int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask)
Sage Weil76e3b392009-10-15 18:13:53 -07001339{
Cheng Renquan640ef792010-03-26 17:40:33 +08001340 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001341 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
Sage Weil76e3b392009-10-15 18:13:53 -07001342 struct inode *inode = &ci->vfs_inode;
1343 int was = ci->i_dirty_caps;
1344 int dirty = 0;
1345
1346 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci->vfs_inode,
1347 ceph_cap_string(mask), ceph_cap_string(was),
1348 ceph_cap_string(was | mask));
1349 ci->i_dirty_caps |= mask;
1350 if (was == 0) {
Sage Weil7d8cb262010-08-24 08:44:16 -07001351 if (!ci->i_head_snapc)
1352 ci->i_head_snapc = ceph_get_snap_context(
1353 ci->i_snap_realm->cached_context);
Yan, Zheng06852352012-11-19 10:49:07 +08001354 dout(" inode %p now dirty snapc %p auth cap %p\n",
1355 &ci->vfs_inode, ci->i_head_snapc, ci->i_auth_cap);
Sage Weil76e3b392009-10-15 18:13:53 -07001356 BUG_ON(!list_empty(&ci->i_dirty_item));
1357 spin_lock(&mdsc->cap_dirty_lock);
Yan, Zheng06852352012-11-19 10:49:07 +08001358 if (ci->i_auth_cap)
1359 list_add(&ci->i_dirty_item, &mdsc->cap_dirty);
1360 else
1361 list_add(&ci->i_dirty_item,
1362 &mdsc->cap_dirty_migrating);
Sage Weil76e3b392009-10-15 18:13:53 -07001363 spin_unlock(&mdsc->cap_dirty_lock);
1364 if (ci->i_flushing_caps == 0) {
Sage Weil3772d262011-05-03 09:28:08 -07001365 ihold(inode);
Sage Weil76e3b392009-10-15 18:13:53 -07001366 dirty |= I_DIRTY_SYNC;
1367 }
1368 }
1369 BUG_ON(list_empty(&ci->i_dirty_item));
1370 if (((was | ci->i_flushing_caps) & CEPH_CAP_FILE_BUFFER) &&
1371 (mask & CEPH_CAP_FILE_BUFFER))
1372 dirty |= I_DIRTY_DATASYNC;
Sage Weil76e3b392009-10-15 18:13:53 -07001373 __cap_delay_requeue(mdsc, ci);
Sage Weilfca65b42011-05-04 11:33:47 -07001374 return dirty;
Sage Weil76e3b392009-10-15 18:13:53 -07001375}
1376
1377/*
Sage Weila8599bd2009-10-06 11:31:12 -07001378 * Add dirty inode to the flushing list. Assigned a seq number so we
1379 * can wait for caps to flush without starving.
Sage Weilcdc35f92009-10-14 14:24:19 -07001380 *
Sage Weilbe655592011-11-30 09:47:09 -08001381 * Called under i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -07001382 */
Sage Weilcdc35f92009-10-14 14:24:19 -07001383static int __mark_caps_flushing(struct inode *inode,
Sage Weila8599bd2009-10-06 11:31:12 -07001384 struct ceph_mds_session *session)
1385{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001386 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001387 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weilcdc35f92009-10-14 14:24:19 -07001388 int flushing;
Sage Weil50b885b2009-12-01 14:12:07 -08001389
Sage Weilcdc35f92009-10-14 14:24:19 -07001390 BUG_ON(ci->i_dirty_caps == 0);
Sage Weila8599bd2009-10-06 11:31:12 -07001391 BUG_ON(list_empty(&ci->i_dirty_item));
Sage Weilcdc35f92009-10-14 14:24:19 -07001392
1393 flushing = ci->i_dirty_caps;
1394 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1395 ceph_cap_string(flushing),
1396 ceph_cap_string(ci->i_flushing_caps),
1397 ceph_cap_string(ci->i_flushing_caps | flushing));
1398 ci->i_flushing_caps |= flushing;
1399 ci->i_dirty_caps = 0;
Sage Weilafcdaea2009-10-14 14:27:38 -07001400 dout(" inode %p now !dirty\n", inode);
Sage Weilcdc35f92009-10-14 14:24:19 -07001401
Sage Weila8599bd2009-10-06 11:31:12 -07001402 spin_lock(&mdsc->cap_dirty_lock);
Sage Weilafcdaea2009-10-14 14:27:38 -07001403 list_del_init(&ci->i_dirty_item);
1404
1405 ci->i_cap_flush_seq = ++mdsc->cap_flush_seq;
Sage Weila8599bd2009-10-06 11:31:12 -07001406 if (list_empty(&ci->i_flushing_item)) {
1407 list_add_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1408 mdsc->num_cap_flushing++;
Sage Weilafcdaea2009-10-14 14:27:38 -07001409 dout(" inode %p now flushing seq %lld\n", inode,
1410 ci->i_cap_flush_seq);
1411 } else {
1412 list_move_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1413 dout(" inode %p now flushing (more) seq %lld\n", inode,
Sage Weila8599bd2009-10-06 11:31:12 -07001414 ci->i_cap_flush_seq);
1415 }
1416 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weilcdc35f92009-10-14 14:24:19 -07001417
1418 return flushing;
Sage Weila8599bd2009-10-06 11:31:12 -07001419}
1420
1421/*
Sage Weil5ecad6f2010-02-17 10:43:37 -08001422 * try to invalidate mapping pages without blocking.
1423 */
Sage Weil5ecad6f2010-02-17 10:43:37 -08001424static int try_nonblocking_invalidate(struct inode *inode)
1425{
1426 struct ceph_inode_info *ci = ceph_inode(inode);
1427 u32 invalidating_gen = ci->i_rdcache_gen;
1428
Sage Weilbe655592011-11-30 09:47:09 -08001429 spin_unlock(&ci->i_ceph_lock);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001430 invalidate_mapping_pages(&inode->i_data, 0, -1);
Sage Weilbe655592011-11-30 09:47:09 -08001431 spin_lock(&ci->i_ceph_lock);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001432
Sage Weil18a38192010-09-17 10:46:44 -07001433 if (inode->i_data.nrpages == 0 &&
Sage Weil5ecad6f2010-02-17 10:43:37 -08001434 invalidating_gen == ci->i_rdcache_gen) {
1435 /* success. */
1436 dout("try_nonblocking_invalidate %p success\n", inode);
Sage Weilcd045cb2010-11-04 11:05:05 -07001437 /* save any racing async invalidate some trouble */
1438 ci->i_rdcache_revoking = ci->i_rdcache_gen - 1;
Sage Weil5ecad6f2010-02-17 10:43:37 -08001439 return 0;
1440 }
1441 dout("try_nonblocking_invalidate %p failed\n", inode);
1442 return -1;
1443}
1444
1445/*
Sage Weila8599bd2009-10-06 11:31:12 -07001446 * Swiss army knife function to examine currently used and wanted
1447 * versus held caps. Release, flush, ack revoked caps to mds as
1448 * appropriate.
1449 *
1450 * CHECK_CAPS_NODELAY - caller is delayed work and we should not delay
1451 * cap release further.
1452 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1453 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1454 * further delay.
1455 */
1456void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1457 struct ceph_mds_session *session)
1458{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001459 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1460 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001461 struct inode *inode = &ci->vfs_inode;
1462 struct ceph_cap *cap;
1463 int file_wanted, used;
1464 int took_snap_rwsem = 0; /* true if mdsc->snap_rwsem held */
Sage Weilcbd03632010-02-09 13:41:18 -08001465 int issued, implemented, want, retain, revoking, flushing = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001466 int mds = -1; /* keep track of how far we've gone through i_caps list
1467 to avoid an infinite loop on retry */
1468 struct rb_node *p;
1469 int tried_invalidate = 0;
1470 int delayed = 0, sent = 0, force_requeue = 0, num;
Sage Weilcbd03632010-02-09 13:41:18 -08001471 int queue_invalidate = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001472 int is_delayed = flags & CHECK_CAPS_NODELAY;
1473
1474 /* if we are unmounting, flush any unused caps immediately. */
1475 if (mdsc->stopping)
1476 is_delayed = 1;
1477
Sage Weilbe655592011-11-30 09:47:09 -08001478 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001479
1480 if (ci->i_ceph_flags & CEPH_I_FLUSH)
1481 flags |= CHECK_CAPS_FLUSH;
1482
1483 /* flush snaps first time around only */
1484 if (!list_empty(&ci->i_cap_snaps))
Sage Weile8351242010-09-17 08:03:08 -07001485 __ceph_flush_snaps(ci, &session, 0);
Sage Weila8599bd2009-10-06 11:31:12 -07001486 goto retry_locked;
1487retry:
Sage Weilbe655592011-11-30 09:47:09 -08001488 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001489retry_locked:
1490 file_wanted = __ceph_caps_file_wanted(ci);
1491 used = __ceph_caps_used(ci);
1492 want = file_wanted | used;
Sage Weilcbd03632010-02-09 13:41:18 -08001493 issued = __ceph_caps_issued(ci, &implemented);
1494 revoking = implemented & ~issued;
Sage Weila8599bd2009-10-06 11:31:12 -07001495
1496 retain = want | CEPH_CAP_PIN;
1497 if (!mdsc->stopping && inode->i_nlink > 0) {
1498 if (want) {
1499 retain |= CEPH_CAP_ANY; /* be greedy */
1500 } else {
1501 retain |= CEPH_CAP_ANY_SHARED;
1502 /*
1503 * keep RD only if we didn't have the file open RW,
1504 * because then the mds would revoke it anyway to
1505 * journal max_size=0.
1506 */
1507 if (ci->i_max_size == 0)
1508 retain |= CEPH_CAP_ANY_RD;
1509 }
1510 }
1511
1512 dout("check_caps %p file_want %s used %s dirty %s flushing %s"
Sage Weilcbd03632010-02-09 13:41:18 -08001513 " issued %s revoking %s retain %s %s%s%s\n", inode,
Sage Weila8599bd2009-10-06 11:31:12 -07001514 ceph_cap_string(file_wanted),
1515 ceph_cap_string(used), ceph_cap_string(ci->i_dirty_caps),
1516 ceph_cap_string(ci->i_flushing_caps),
Sage Weilcbd03632010-02-09 13:41:18 -08001517 ceph_cap_string(issued), ceph_cap_string(revoking),
Sage Weila8599bd2009-10-06 11:31:12 -07001518 ceph_cap_string(retain),
1519 (flags & CHECK_CAPS_AUTHONLY) ? " AUTHONLY" : "",
1520 (flags & CHECK_CAPS_NODELAY) ? " NODELAY" : "",
1521 (flags & CHECK_CAPS_FLUSH) ? " FLUSH" : "");
1522
1523 /*
1524 * If we no longer need to hold onto old our caps, and we may
1525 * have cached pages, but don't want them, then try to invalidate.
1526 * If we fail, it's because pages are locked.... try again later.
1527 */
1528 if ((!is_delayed || mdsc->stopping) &&
1529 ci->i_wrbuffer_ref == 0 && /* no dirty pages... */
Sage Weil93afd442010-09-17 08:38:25 -07001530 inode->i_data.nrpages && /* have cached pages */
Sage Weilcbd03632010-02-09 13:41:18 -08001531 (file_wanted == 0 || /* no open files */
Sage Weil29625072010-05-27 10:40:43 -07001532 (revoking & (CEPH_CAP_FILE_CACHE|
1533 CEPH_CAP_FILE_LAZYIO))) && /* or revoking cache */
Sage Weila8599bd2009-10-06 11:31:12 -07001534 !tried_invalidate) {
Sage Weila8599bd2009-10-06 11:31:12 -07001535 dout("check_caps trying to invalidate on %p\n", inode);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001536 if (try_nonblocking_invalidate(inode) < 0) {
Sage Weil29625072010-05-27 10:40:43 -07001537 if (revoking & (CEPH_CAP_FILE_CACHE|
1538 CEPH_CAP_FILE_LAZYIO)) {
Sage Weil5ecad6f2010-02-17 10:43:37 -08001539 dout("check_caps queuing invalidate\n");
1540 queue_invalidate = 1;
1541 ci->i_rdcache_revoking = ci->i_rdcache_gen;
1542 } else {
1543 dout("check_caps failed to invalidate pages\n");
1544 /* we failed to invalidate pages. check these
1545 caps again later. */
1546 force_requeue = 1;
1547 __cap_set_timeouts(mdsc, ci);
1548 }
Sage Weila8599bd2009-10-06 11:31:12 -07001549 }
1550 tried_invalidate = 1;
1551 goto retry_locked;
1552 }
1553
1554 num = 0;
1555 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1556 cap = rb_entry(p, struct ceph_cap, ci_node);
1557 num++;
1558
1559 /* avoid looping forever */
1560 if (mds >= cap->mds ||
1561 ((flags & CHECK_CAPS_AUTHONLY) && cap != ci->i_auth_cap))
1562 continue;
1563
1564 /* NOTE: no side-effects allowed, until we take s_mutex */
1565
1566 revoking = cap->implemented & ~cap->issued;
Sage Weil088b3f52011-01-18 08:56:01 -08001567 dout(" mds%d cap %p issued %s implemented %s revoking %s\n",
1568 cap->mds, cap, ceph_cap_string(cap->issued),
1569 ceph_cap_string(cap->implemented),
1570 ceph_cap_string(revoking));
Sage Weila8599bd2009-10-06 11:31:12 -07001571
1572 if (cap == ci->i_auth_cap &&
1573 (cap->issued & CEPH_CAP_FILE_WR)) {
1574 /* request larger max_size from MDS? */
1575 if (ci->i_wanted_max_size > ci->i_max_size &&
1576 ci->i_wanted_max_size > ci->i_requested_max_size) {
1577 dout("requesting new max_size\n");
1578 goto ack;
1579 }
1580
1581 /* approaching file_max? */
1582 if ((inode->i_size << 1) >= ci->i_max_size &&
1583 (ci->i_reported_size << 1) < ci->i_max_size) {
1584 dout("i_size approaching max_size\n");
1585 goto ack;
1586 }
1587 }
1588 /* flush anything dirty? */
1589 if (cap == ci->i_auth_cap && (flags & CHECK_CAPS_FLUSH) &&
1590 ci->i_dirty_caps) {
1591 dout("flushing dirty caps\n");
1592 goto ack;
1593 }
1594
1595 /* completed revocation? going down and there are no caps? */
1596 if (revoking && (revoking & used) == 0) {
1597 dout("completed revocation of %s\n",
1598 ceph_cap_string(cap->implemented & ~cap->issued));
1599 goto ack;
1600 }
1601
1602 /* want more caps from mds? */
1603 if (want & ~(cap->mds_wanted | cap->issued))
1604 goto ack;
1605
1606 /* things we might delay */
1607 if ((cap->issued & ~retain) == 0 &&
1608 cap->mds_wanted == want)
1609 continue; /* nope, all good */
1610
1611 if (is_delayed)
1612 goto ack;
1613
1614 /* delay? */
1615 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1616 time_before(jiffies, ci->i_hold_caps_max)) {
1617 dout(" delaying issued %s -> %s, wanted %s -> %s\n",
1618 ceph_cap_string(cap->issued),
1619 ceph_cap_string(cap->issued & retain),
1620 ceph_cap_string(cap->mds_wanted),
1621 ceph_cap_string(want));
1622 delayed++;
1623 continue;
1624 }
1625
1626ack:
Sage Weile9964c12010-03-01 15:16:56 -08001627 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
1628 dout(" skipping %p I_NOFLUSH set\n", inode);
1629 continue;
1630 }
1631
Sage Weila8599bd2009-10-06 11:31:12 -07001632 if (session && session != cap->session) {
1633 dout("oops, wrong session %p mutex\n", session);
1634 mutex_unlock(&session->s_mutex);
1635 session = NULL;
1636 }
1637 if (!session) {
1638 session = cap->session;
1639 if (mutex_trylock(&session->s_mutex) == 0) {
1640 dout("inverting session/ino locks on %p\n",
1641 session);
Sage Weilbe655592011-11-30 09:47:09 -08001642 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001643 if (took_snap_rwsem) {
1644 up_read(&mdsc->snap_rwsem);
1645 took_snap_rwsem = 0;
1646 }
1647 mutex_lock(&session->s_mutex);
1648 goto retry;
1649 }
1650 }
1651 /* take snap_rwsem after session mutex */
1652 if (!took_snap_rwsem) {
1653 if (down_read_trylock(&mdsc->snap_rwsem) == 0) {
1654 dout("inverting snap/in locks on %p\n",
1655 inode);
Sage Weilbe655592011-11-30 09:47:09 -08001656 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001657 down_read(&mdsc->snap_rwsem);
1658 took_snap_rwsem = 1;
1659 goto retry;
1660 }
1661 took_snap_rwsem = 1;
1662 }
1663
Sage Weilcdc35f92009-10-14 14:24:19 -07001664 if (cap == ci->i_auth_cap && ci->i_dirty_caps)
1665 flushing = __mark_caps_flushing(inode, session);
Sage Weil24be0c42011-01-18 08:48:06 -08001666 else
1667 flushing = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001668
1669 mds = cap->mds; /* remember mds, so we don't repeat */
1670 sent++;
1671
Sage Weilbe655592011-11-30 09:47:09 -08001672 /* __send_cap drops i_ceph_lock */
Sage Weila8599bd2009-10-06 11:31:12 -07001673 delayed += __send_cap(mdsc, cap, CEPH_CAP_OP_UPDATE, used, want,
1674 retain, flushing, NULL);
Sage Weilbe655592011-11-30 09:47:09 -08001675 goto retry; /* retake i_ceph_lock and restart our cap scan. */
Sage Weila8599bd2009-10-06 11:31:12 -07001676 }
1677
1678 /*
1679 * Reschedule delayed caps release if we delayed anything,
1680 * otherwise cancel.
1681 */
1682 if (delayed && is_delayed)
1683 force_requeue = 1; /* __send_cap delayed release; requeue */
1684 if (!delayed && !is_delayed)
1685 __cap_delay_cancel(mdsc, ci);
1686 else if (!is_delayed || force_requeue)
1687 __cap_delay_requeue(mdsc, ci);
1688
Sage Weilbe655592011-11-30 09:47:09 -08001689 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001690
Sage Weilcbd03632010-02-09 13:41:18 -08001691 if (queue_invalidate)
Sage Weil3c6f6b72010-02-09 15:24:44 -08001692 ceph_queue_invalidate(inode);
Sage Weilcbd03632010-02-09 13:41:18 -08001693
Sage Weilcdc2ce02010-03-16 13:39:28 -07001694 if (session)
Sage Weila8599bd2009-10-06 11:31:12 -07001695 mutex_unlock(&session->s_mutex);
1696 if (took_snap_rwsem)
1697 up_read(&mdsc->snap_rwsem);
1698}
1699
1700/*
Sage Weila8599bd2009-10-06 11:31:12 -07001701 * Try to flush dirty caps back to the auth mds.
1702 */
1703static int try_flush_caps(struct inode *inode, struct ceph_mds_session *session,
1704 unsigned *flush_tid)
1705{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001706 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001707 struct ceph_inode_info *ci = ceph_inode(inode);
1708 int unlock_session = session ? 0 : 1;
1709 int flushing = 0;
1710
1711retry:
Sage Weilbe655592011-11-30 09:47:09 -08001712 spin_lock(&ci->i_ceph_lock);
Sage Weile9964c12010-03-01 15:16:56 -08001713 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
1714 dout("try_flush_caps skipping %p I_NOFLUSH set\n", inode);
1715 goto out;
1716 }
Sage Weila8599bd2009-10-06 11:31:12 -07001717 if (ci->i_dirty_caps && ci->i_auth_cap) {
1718 struct ceph_cap *cap = ci->i_auth_cap;
1719 int used = __ceph_caps_used(ci);
1720 int want = __ceph_caps_wanted(ci);
1721 int delayed;
1722
1723 if (!session) {
Sage Weilbe655592011-11-30 09:47:09 -08001724 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001725 session = cap->session;
1726 mutex_lock(&session->s_mutex);
1727 goto retry;
1728 }
1729 BUG_ON(session != cap->session);
1730 if (cap->session->s_state < CEPH_MDS_SESSION_OPEN)
1731 goto out;
1732
Sage Weilcdc35f92009-10-14 14:24:19 -07001733 flushing = __mark_caps_flushing(inode, session);
Sage Weila8599bd2009-10-06 11:31:12 -07001734
Sage Weilbe655592011-11-30 09:47:09 -08001735 /* __send_cap drops i_ceph_lock */
Sage Weila8599bd2009-10-06 11:31:12 -07001736 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH, used, want,
1737 cap->issued | cap->implemented, flushing,
1738 flush_tid);
1739 if (!delayed)
1740 goto out_unlocked;
1741
Sage Weilbe655592011-11-30 09:47:09 -08001742 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001743 __cap_delay_requeue(mdsc, ci);
1744 }
1745out:
Sage Weilbe655592011-11-30 09:47:09 -08001746 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001747out_unlocked:
1748 if (session && unlock_session)
1749 mutex_unlock(&session->s_mutex);
1750 return flushing;
1751}
1752
1753/*
1754 * Return true if we've flushed caps through the given flush_tid.
1755 */
1756static int caps_are_flushed(struct inode *inode, unsigned tid)
1757{
1758 struct ceph_inode_info *ci = ceph_inode(inode);
Dan Carpentera5ee7512010-05-07 10:27:14 +02001759 int i, ret = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07001760
Sage Weilbe655592011-11-30 09:47:09 -08001761 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001762 for (i = 0; i < CEPH_CAP_BITS; i++)
1763 if ((ci->i_flushing_caps & (1 << i)) &&
1764 ci->i_cap_flush_tid[i] <= tid) {
1765 /* still flushing this bit */
1766 ret = 0;
1767 break;
1768 }
Sage Weilbe655592011-11-30 09:47:09 -08001769 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001770 return ret;
1771}
1772
1773/*
1774 * Wait on any unsafe replies for the given inode. First wait on the
1775 * newest request, and make that the upper bound. Then, if there are
1776 * more requests, keep waiting on the oldest as long as it is still older
1777 * than the original request.
1778 */
1779static void sync_write_wait(struct inode *inode)
1780{
1781 struct ceph_inode_info *ci = ceph_inode(inode);
1782 struct list_head *head = &ci->i_unsafe_writes;
1783 struct ceph_osd_request *req;
1784 u64 last_tid;
1785
1786 spin_lock(&ci->i_unsafe_lock);
1787 if (list_empty(head))
1788 goto out;
1789
1790 /* set upper bound as _last_ entry in chain */
1791 req = list_entry(head->prev, struct ceph_osd_request,
1792 r_unsafe_item);
1793 last_tid = req->r_tid;
1794
1795 do {
1796 ceph_osdc_get_request(req);
1797 spin_unlock(&ci->i_unsafe_lock);
1798 dout("sync_write_wait on tid %llu (until %llu)\n",
1799 req->r_tid, last_tid);
1800 wait_for_completion(&req->r_safe_completion);
1801 spin_lock(&ci->i_unsafe_lock);
1802 ceph_osdc_put_request(req);
1803
1804 /*
1805 * from here on look at first entry in chain, since we
1806 * only want to wait for anything older than last_tid
1807 */
1808 if (list_empty(head))
1809 break;
1810 req = list_entry(head->next, struct ceph_osd_request,
1811 r_unsafe_item);
1812 } while (req->r_tid < last_tid);
1813out:
1814 spin_unlock(&ci->i_unsafe_lock);
1815}
1816
Josef Bacik02c24a82011-07-16 20:44:56 -04001817int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync)
Sage Weila8599bd2009-10-06 11:31:12 -07001818{
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001819 struct inode *inode = file->f_mapping->host;
Sage Weila8599bd2009-10-06 11:31:12 -07001820 struct ceph_inode_info *ci = ceph_inode(inode);
1821 unsigned flush_tid;
1822 int ret;
1823 int dirty;
1824
1825 dout("fsync %p%s\n", inode, datasync ? " datasync" : "");
1826 sync_write_wait(inode);
1827
Josef Bacik02c24a82011-07-16 20:44:56 -04001828 ret = filemap_write_and_wait_range(inode->i_mapping, start, end);
Sage Weila8599bd2009-10-06 11:31:12 -07001829 if (ret < 0)
1830 return ret;
Josef Bacik02c24a82011-07-16 20:44:56 -04001831 mutex_lock(&inode->i_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07001832
1833 dirty = try_flush_caps(inode, NULL, &flush_tid);
1834 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty));
1835
1836 /*
1837 * only wait on non-file metadata writeback (the mds
1838 * can recover size and mtime, so we don't need to
1839 * wait for that)
1840 */
1841 if (!datasync && (dirty & ~CEPH_CAP_ANY_FILE_WR)) {
1842 dout("fsync waiting for flush_tid %u\n", flush_tid);
1843 ret = wait_event_interruptible(ci->i_cap_wq,
1844 caps_are_flushed(inode, flush_tid));
1845 }
1846
1847 dout("fsync %p%s done\n", inode, datasync ? " datasync" : "");
Josef Bacik02c24a82011-07-16 20:44:56 -04001848 mutex_unlock(&inode->i_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07001849 return ret;
1850}
1851
1852/*
1853 * Flush any dirty caps back to the mds. If we aren't asked to wait,
1854 * queue inode for flush but don't do so immediately, because we can
1855 * get by with fewer MDS messages if we wait for data writeback to
1856 * complete first.
1857 */
Stephen Rothwellf1a3d572010-01-18 11:53:08 +11001858int ceph_write_inode(struct inode *inode, struct writeback_control *wbc)
Sage Weila8599bd2009-10-06 11:31:12 -07001859{
1860 struct ceph_inode_info *ci = ceph_inode(inode);
1861 unsigned flush_tid;
1862 int err = 0;
1863 int dirty;
Stephen Rothwellf1a3d572010-01-18 11:53:08 +11001864 int wait = wbc->sync_mode == WB_SYNC_ALL;
Sage Weila8599bd2009-10-06 11:31:12 -07001865
1866 dout("write_inode %p wait=%d\n", inode, wait);
1867 if (wait) {
1868 dirty = try_flush_caps(inode, NULL, &flush_tid);
1869 if (dirty)
1870 err = wait_event_interruptible(ci->i_cap_wq,
1871 caps_are_flushed(inode, flush_tid));
1872 } else {
Cheng Renquan640ef792010-03-26 17:40:33 +08001873 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001874 ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001875
Sage Weilbe655592011-11-30 09:47:09 -08001876 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001877 if (__ceph_caps_dirty(ci))
1878 __cap_delay_requeue_front(mdsc, ci);
Sage Weilbe655592011-11-30 09:47:09 -08001879 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001880 }
1881 return err;
1882}
1883
1884/*
1885 * After a recovering MDS goes active, we need to resend any caps
1886 * we were flushing.
1887 *
1888 * Caller holds session->s_mutex.
1889 */
1890static void kick_flushing_capsnaps(struct ceph_mds_client *mdsc,
1891 struct ceph_mds_session *session)
1892{
1893 struct ceph_cap_snap *capsnap;
1894
1895 dout("kick_flushing_capsnaps mds%d\n", session->s_mds);
1896 list_for_each_entry(capsnap, &session->s_cap_snaps_flushing,
1897 flushing_item) {
1898 struct ceph_inode_info *ci = capsnap->ci;
1899 struct inode *inode = &ci->vfs_inode;
1900 struct ceph_cap *cap;
1901
Sage Weilbe655592011-11-30 09:47:09 -08001902 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001903 cap = ci->i_auth_cap;
1904 if (cap && cap->session == session) {
1905 dout("kick_flushing_caps %p cap %p capsnap %p\n", inode,
1906 cap, capsnap);
Sage Weile8351242010-09-17 08:03:08 -07001907 __ceph_flush_snaps(ci, &session, 1);
Sage Weila8599bd2009-10-06 11:31:12 -07001908 } else {
1909 pr_err("%p auth cap %p not mds%d ???\n", inode,
1910 cap, session->s_mds);
Sage Weila8599bd2009-10-06 11:31:12 -07001911 }
Sage Weilbe655592011-11-30 09:47:09 -08001912 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001913 }
1914}
1915
1916void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
1917 struct ceph_mds_session *session)
1918{
1919 struct ceph_inode_info *ci;
1920
1921 kick_flushing_capsnaps(mdsc, session);
1922
1923 dout("kick_flushing_caps mds%d\n", session->s_mds);
1924 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
1925 struct inode *inode = &ci->vfs_inode;
1926 struct ceph_cap *cap;
1927 int delayed = 0;
1928
Sage Weilbe655592011-11-30 09:47:09 -08001929 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001930 cap = ci->i_auth_cap;
1931 if (cap && cap->session == session) {
1932 dout("kick_flushing_caps %p cap %p %s\n", inode,
1933 cap, ceph_cap_string(ci->i_flushing_caps));
1934 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
1935 __ceph_caps_used(ci),
1936 __ceph_caps_wanted(ci),
1937 cap->issued | cap->implemented,
1938 ci->i_flushing_caps, NULL);
1939 if (delayed) {
Sage Weilbe655592011-11-30 09:47:09 -08001940 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001941 __cap_delay_requeue(mdsc, ci);
Sage Weilbe655592011-11-30 09:47:09 -08001942 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001943 }
1944 } else {
1945 pr_err("%p auth cap %p not mds%d ???\n", inode,
1946 cap, session->s_mds);
Sage Weilbe655592011-11-30 09:47:09 -08001947 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001948 }
1949 }
1950}
1951
Sage Weil088b3f52011-01-18 08:56:01 -08001952static void kick_flushing_inode_caps(struct ceph_mds_client *mdsc,
1953 struct ceph_mds_session *session,
1954 struct inode *inode)
1955{
1956 struct ceph_inode_info *ci = ceph_inode(inode);
1957 struct ceph_cap *cap;
1958 int delayed = 0;
1959
Sage Weilbe655592011-11-30 09:47:09 -08001960 spin_lock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08001961 cap = ci->i_auth_cap;
1962 dout("kick_flushing_inode_caps %p flushing %s flush_seq %lld\n", inode,
1963 ceph_cap_string(ci->i_flushing_caps), ci->i_cap_flush_seq);
1964 __ceph_flush_snaps(ci, &session, 1);
1965 if (ci->i_flushing_caps) {
1966 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
1967 __ceph_caps_used(ci),
1968 __ceph_caps_wanted(ci),
1969 cap->issued | cap->implemented,
1970 ci->i_flushing_caps, NULL);
1971 if (delayed) {
Sage Weilbe655592011-11-30 09:47:09 -08001972 spin_lock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08001973 __cap_delay_requeue(mdsc, ci);
Sage Weilbe655592011-11-30 09:47:09 -08001974 spin_unlock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08001975 }
1976 } else {
Sage Weilbe655592011-11-30 09:47:09 -08001977 spin_unlock(&ci->i_ceph_lock);
Sage Weil088b3f52011-01-18 08:56:01 -08001978 }
1979}
1980
Sage Weila8599bd2009-10-06 11:31:12 -07001981
1982/*
1983 * Take references to capabilities we hold, so that we don't release
1984 * them to the MDS prematurely.
1985 *
Sage Weilbe655592011-11-30 09:47:09 -08001986 * Protected by i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -07001987 */
1988static void __take_cap_refs(struct ceph_inode_info *ci, int got)
1989{
1990 if (got & CEPH_CAP_PIN)
1991 ci->i_pin_ref++;
1992 if (got & CEPH_CAP_FILE_RD)
1993 ci->i_rd_ref++;
1994 if (got & CEPH_CAP_FILE_CACHE)
1995 ci->i_rdcache_ref++;
1996 if (got & CEPH_CAP_FILE_WR)
1997 ci->i_wr_ref++;
1998 if (got & CEPH_CAP_FILE_BUFFER) {
Henry C Changd3d07202011-05-11 10:29:54 +00001999 if (ci->i_wb_ref == 0)
Sage Weil3772d262011-05-03 09:28:08 -07002000 ihold(&ci->vfs_inode);
Henry C Changd3d07202011-05-11 10:29:54 +00002001 ci->i_wb_ref++;
2002 dout("__take_cap_refs %p wb %d -> %d (?)\n",
2003 &ci->vfs_inode, ci->i_wb_ref-1, ci->i_wb_ref);
Sage Weila8599bd2009-10-06 11:31:12 -07002004 }
2005}
2006
2007/*
2008 * Try to grab cap references. Specify those refs we @want, and the
2009 * minimal set we @need. Also include the larger offset we are writing
2010 * to (when applicable), and check against max_size here as well.
2011 * Note that caller is responsible for ensuring max_size increases are
2012 * requested from the MDS.
2013 */
2014static int try_get_cap_refs(struct ceph_inode_info *ci, int need, int want,
2015 int *got, loff_t endoff, int *check_max, int *err)
2016{
2017 struct inode *inode = &ci->vfs_inode;
2018 int ret = 0;
2019 int have, implemented;
Sage Weil195d3ce2010-03-01 09:57:54 -08002020 int file_wanted;
Sage Weila8599bd2009-10-06 11:31:12 -07002021
2022 dout("get_cap_refs %p need %s want %s\n", inode,
2023 ceph_cap_string(need), ceph_cap_string(want));
Sage Weilbe655592011-11-30 09:47:09 -08002024 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002025
Sage Weil195d3ce2010-03-01 09:57:54 -08002026 /* make sure file is actually open */
2027 file_wanted = __ceph_caps_file_wanted(ci);
2028 if ((file_wanted & need) == 0) {
2029 dout("try_get_cap_refs need %s file_wanted %s, EBADF\n",
2030 ceph_cap_string(need), ceph_cap_string(file_wanted));
Sage Weila8599bd2009-10-06 11:31:12 -07002031 *err = -EBADF;
2032 ret = 1;
2033 goto out;
2034 }
2035
2036 if (need & CEPH_CAP_FILE_WR) {
2037 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2038 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2039 inode, endoff, ci->i_max_size);
2040 if (endoff > ci->i_wanted_max_size) {
2041 *check_max = 1;
2042 ret = 1;
2043 }
2044 goto out;
2045 }
2046 /*
2047 * If a sync write is in progress, we must wait, so that we
2048 * can get a final snapshot value for size+mtime.
2049 */
2050 if (__ceph_have_pending_cap_snap(ci)) {
2051 dout("get_cap_refs %p cap_snap_pending\n", inode);
2052 goto out;
2053 }
2054 }
2055 have = __ceph_caps_issued(ci, &implemented);
2056
2057 /*
2058 * disallow writes while a truncate is pending
2059 */
2060 if (ci->i_truncate_pending)
2061 have &= ~CEPH_CAP_FILE_WR;
2062
2063 if ((have & need) == need) {
2064 /*
2065 * Look at (implemented & ~have & not) so that we keep waiting
2066 * on transition from wanted -> needed caps. This is needed
2067 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2068 * going before a prior buffered writeback happens.
2069 */
2070 int not = want & ~(have & need);
2071 int revoking = implemented & ~have;
2072 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2073 inode, ceph_cap_string(have), ceph_cap_string(not),
2074 ceph_cap_string(revoking));
2075 if ((revoking & not) == 0) {
2076 *got = need | (have & want);
2077 __take_cap_refs(ci, *got);
2078 ret = 1;
2079 }
2080 } else {
2081 dout("get_cap_refs %p have %s needed %s\n", inode,
2082 ceph_cap_string(have), ceph_cap_string(need));
2083 }
2084out:
Sage Weilbe655592011-11-30 09:47:09 -08002085 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002086 dout("get_cap_refs %p ret %d got %s\n", inode,
2087 ret, ceph_cap_string(*got));
2088 return ret;
2089}
2090
2091/*
2092 * Check the offset we are writing up to against our current
2093 * max_size. If necessary, tell the MDS we want to write to
2094 * a larger offset.
2095 */
2096static void check_max_size(struct inode *inode, loff_t endoff)
2097{
2098 struct ceph_inode_info *ci = ceph_inode(inode);
2099 int check = 0;
2100
2101 /* do we need to explicitly request a larger max_size? */
Sage Weilbe655592011-11-30 09:47:09 -08002102 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002103 if ((endoff >= ci->i_max_size ||
2104 endoff > (inode->i_size << 1)) &&
2105 endoff > ci->i_wanted_max_size) {
2106 dout("write %p at large endoff %llu, req max_size\n",
2107 inode, endoff);
2108 ci->i_wanted_max_size = endoff;
2109 check = 1;
2110 }
Sage Weilbe655592011-11-30 09:47:09 -08002111 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002112 if (check)
2113 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2114}
2115
2116/*
2117 * Wait for caps, and take cap references. If we can't get a WR cap
2118 * due to a small max_size, make sure we check_max_size (and possibly
2119 * ask the mds) so we don't get hung up indefinitely.
2120 */
2121int ceph_get_caps(struct ceph_inode_info *ci, int need, int want, int *got,
2122 loff_t endoff)
2123{
2124 int check_max, ret, err;
2125
2126retry:
2127 if (endoff > 0)
2128 check_max_size(&ci->vfs_inode, endoff);
2129 check_max = 0;
2130 err = 0;
2131 ret = wait_event_interruptible(ci->i_cap_wq,
2132 try_get_cap_refs(ci, need, want,
2133 got, endoff,
2134 &check_max, &err));
2135 if (err)
2136 ret = err;
2137 if (check_max)
2138 goto retry;
2139 return ret;
2140}
2141
2142/*
2143 * Take cap refs. Caller must already know we hold at least one ref
2144 * on the caps in question or we don't know this is safe.
2145 */
2146void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
2147{
Sage Weilbe655592011-11-30 09:47:09 -08002148 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002149 __take_cap_refs(ci, caps);
Sage Weilbe655592011-11-30 09:47:09 -08002150 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002151}
2152
2153/*
2154 * Release cap refs.
2155 *
2156 * If we released the last ref on any given cap, call ceph_check_caps
2157 * to release (or schedule a release).
2158 *
2159 * If we are releasing a WR cap (from a sync write), finalize any affected
2160 * cap_snap, and wake up any waiters.
2161 */
2162void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
2163{
2164 struct inode *inode = &ci->vfs_inode;
2165 int last = 0, put = 0, flushsnaps = 0, wake = 0;
2166 struct ceph_cap_snap *capsnap;
2167
Sage Weilbe655592011-11-30 09:47:09 -08002168 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002169 if (had & CEPH_CAP_PIN)
2170 --ci->i_pin_ref;
2171 if (had & CEPH_CAP_FILE_RD)
2172 if (--ci->i_rd_ref == 0)
2173 last++;
2174 if (had & CEPH_CAP_FILE_CACHE)
2175 if (--ci->i_rdcache_ref == 0)
2176 last++;
2177 if (had & CEPH_CAP_FILE_BUFFER) {
Henry C Changd3d07202011-05-11 10:29:54 +00002178 if (--ci->i_wb_ref == 0) {
Sage Weila8599bd2009-10-06 11:31:12 -07002179 last++;
2180 put++;
2181 }
Henry C Changd3d07202011-05-11 10:29:54 +00002182 dout("put_cap_refs %p wb %d -> %d (?)\n",
2183 inode, ci->i_wb_ref+1, ci->i_wb_ref);
Sage Weila8599bd2009-10-06 11:31:12 -07002184 }
2185 if (had & CEPH_CAP_FILE_WR)
2186 if (--ci->i_wr_ref == 0) {
2187 last++;
2188 if (!list_empty(&ci->i_cap_snaps)) {
2189 capsnap = list_first_entry(&ci->i_cap_snaps,
2190 struct ceph_cap_snap,
2191 ci_item);
2192 if (capsnap->writing) {
2193 capsnap->writing = 0;
2194 flushsnaps =
2195 __ceph_finish_cap_snap(ci,
2196 capsnap);
2197 wake = 1;
2198 }
2199 }
2200 }
Sage Weilbe655592011-11-30 09:47:09 -08002201 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002202
Sage Weil819ccbf2010-04-01 09:33:46 -07002203 dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
2204 last ? " last" : "", put ? " put" : "");
Sage Weila8599bd2009-10-06 11:31:12 -07002205
2206 if (last && !flushsnaps)
2207 ceph_check_caps(ci, 0, NULL);
2208 else if (flushsnaps)
2209 ceph_flush_snaps(ci);
2210 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002211 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002212 if (put)
2213 iput(inode);
2214}
2215
2216/*
2217 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
2218 * context. Adjust per-snap dirty page accounting as appropriate.
2219 * Once all dirty data for a cap_snap is flushed, flush snapped file
2220 * metadata back to the MDS. If we dropped the last ref, call
2221 * ceph_check_caps.
2222 */
2223void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
2224 struct ceph_snap_context *snapc)
2225{
2226 struct inode *inode = &ci->vfs_inode;
2227 int last = 0;
Sage Weil819ccbf2010-04-01 09:33:46 -07002228 int complete_capsnap = 0;
2229 int drop_capsnap = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002230 int found = 0;
2231 struct ceph_cap_snap *capsnap = NULL;
2232
Sage Weilbe655592011-11-30 09:47:09 -08002233 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002234 ci->i_wrbuffer_ref -= nr;
2235 last = !ci->i_wrbuffer_ref;
2236
2237 if (ci->i_head_snapc == snapc) {
2238 ci->i_wrbuffer_ref_head -= nr;
Sage Weil7d8cb262010-08-24 08:44:16 -07002239 if (ci->i_wrbuffer_ref_head == 0 &&
2240 ci->i_dirty_caps == 0 && ci->i_flushing_caps == 0) {
2241 BUG_ON(!ci->i_head_snapc);
Sage Weila8599bd2009-10-06 11:31:12 -07002242 ceph_put_snap_context(ci->i_head_snapc);
2243 ci->i_head_snapc = NULL;
2244 }
2245 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
2246 inode,
2247 ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
2248 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
2249 last ? " LAST" : "");
2250 } else {
2251 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2252 if (capsnap->context == snapc) {
2253 found = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07002254 break;
2255 }
2256 }
2257 BUG_ON(!found);
Sage Weil819ccbf2010-04-01 09:33:46 -07002258 capsnap->dirty_pages -= nr;
2259 if (capsnap->dirty_pages == 0) {
2260 complete_capsnap = 1;
2261 if (capsnap->dirty == 0)
2262 /* cap writeback completed before we created
2263 * the cap_snap; no FLUSHSNAP is needed */
2264 drop_capsnap = 1;
2265 }
Sage Weila8599bd2009-10-06 11:31:12 -07002266 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
Sage Weil819ccbf2010-04-01 09:33:46 -07002267 " snap %lld %d/%d -> %d/%d %s%s%s\n",
Sage Weila8599bd2009-10-06 11:31:12 -07002268 inode, capsnap, capsnap->context->seq,
2269 ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
2270 ci->i_wrbuffer_ref, capsnap->dirty_pages,
2271 last ? " (wrbuffer last)" : "",
Sage Weil819ccbf2010-04-01 09:33:46 -07002272 complete_capsnap ? " (complete capsnap)" : "",
2273 drop_capsnap ? " (drop capsnap)" : "");
2274 if (drop_capsnap) {
2275 ceph_put_snap_context(capsnap->context);
2276 list_del(&capsnap->ci_item);
2277 list_del(&capsnap->flushing_item);
2278 ceph_put_cap_snap(capsnap);
2279 }
Sage Weila8599bd2009-10-06 11:31:12 -07002280 }
2281
Sage Weilbe655592011-11-30 09:47:09 -08002282 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002283
2284 if (last) {
2285 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2286 iput(inode);
Sage Weil819ccbf2010-04-01 09:33:46 -07002287 } else if (complete_capsnap) {
Sage Weila8599bd2009-10-06 11:31:12 -07002288 ceph_flush_snaps(ci);
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002289 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002290 }
Sage Weil819ccbf2010-04-01 09:33:46 -07002291 if (drop_capsnap)
2292 iput(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002293}
2294
2295/*
2296 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
2297 * actually be a revocation if it specifies a smaller cap set.)
2298 *
Sage Weilbe655592011-11-30 09:47:09 -08002299 * caller holds s_mutex and i_ceph_lock, we drop both.
Sage Weil15637c82010-03-16 13:42:00 -07002300 *
Sage Weila8599bd2009-10-06 11:31:12 -07002301 * return value:
2302 * 0 - ok
2303 * 1 - check_caps on auth cap only (writeback)
2304 * 2 - check_caps (ack revoke)
2305 */
Sage Weil15637c82010-03-16 13:42:00 -07002306static void handle_cap_grant(struct inode *inode, struct ceph_mds_caps *grant,
2307 struct ceph_mds_session *session,
2308 struct ceph_cap *cap,
2309 struct ceph_buffer *xattr_buf)
Sage Weilbe655592011-11-30 09:47:09 -08002310 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07002311{
2312 struct ceph_inode_info *ci = ceph_inode(inode);
2313 int mds = session->s_mds;
Sage Weil2f56f562010-10-27 20:59:49 -07002314 int seq = le32_to_cpu(grant->seq);
Sage Weila8599bd2009-10-06 11:31:12 -07002315 int newcaps = le32_to_cpu(grant->caps);
2316 int issued, implemented, used, wanted, dirty;
2317 u64 size = le64_to_cpu(grant->size);
2318 u64 max_size = le64_to_cpu(grant->max_size);
2319 struct timespec mtime, atime, ctime;
Sage Weil15637c82010-03-16 13:42:00 -07002320 int check_caps = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002321 int wake = 0;
2322 int writeback = 0;
2323 int revoked_rdcache = 0;
Sage Weil3c6f6b72010-02-09 15:24:44 -08002324 int queue_invalidate = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002325
Sage Weil2f56f562010-10-27 20:59:49 -07002326 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
2327 inode, cap, mds, seq, ceph_cap_string(newcaps));
Sage Weila8599bd2009-10-06 11:31:12 -07002328 dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
2329 inode->i_size);
2330
2331 /*
2332 * If CACHE is being revoked, and we have no dirty buffers,
2333 * try to invalidate (once). (If there are dirty buffers, we
2334 * will invalidate _after_ writeback.)
2335 */
Sage Weil3b454c42010-06-10 13:20:33 -07002336 if (((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
2337 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
Yehuda Sadehbcd2cbd2010-02-19 00:12:21 +00002338 !ci->i_wrbuffer_ref) {
Sage Weil5ecad6f2010-02-17 10:43:37 -08002339 if (try_nonblocking_invalidate(inode) == 0) {
2340 revoked_rdcache = 1;
2341 } else {
Sage Weila8599bd2009-10-06 11:31:12 -07002342 /* there were locked pages.. invalidate later
2343 in a separate thread. */
2344 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
Sage Weil3c6f6b72010-02-09 15:24:44 -08002345 queue_invalidate = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07002346 ci->i_rdcache_revoking = ci->i_rdcache_gen;
2347 }
Sage Weila8599bd2009-10-06 11:31:12 -07002348 }
Sage Weila8599bd2009-10-06 11:31:12 -07002349 }
2350
2351 /* side effects now are allowed */
2352
2353 issued = __ceph_caps_issued(ci, &implemented);
2354 issued |= implemented | __ceph_caps_dirty(ci);
2355
Sage Weil685f9a5d2009-11-09 12:05:48 -08002356 cap->cap_gen = session->s_cap_gen;
Sage Weila8599bd2009-10-06 11:31:12 -07002357
2358 __check_cap_issue(ci, cap, newcaps);
2359
2360 if ((issued & CEPH_CAP_AUTH_EXCL) == 0) {
2361 inode->i_mode = le32_to_cpu(grant->mode);
Eric W. Biederman05cb11c2013-01-31 02:56:19 -08002362 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(grant->uid));
2363 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(grant->gid));
Sage Weila8599bd2009-10-06 11:31:12 -07002364 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
Eric W. Biedermanbd2bae62013-01-31 04:05:39 -08002365 from_kuid(&init_user_ns, inode->i_uid),
2366 from_kgid(&init_user_ns, inode->i_gid));
Sage Weila8599bd2009-10-06 11:31:12 -07002367 }
2368
2369 if ((issued & CEPH_CAP_LINK_EXCL) == 0)
Miklos Szeredibfe86842011-10-28 14:13:29 +02002370 set_nlink(inode, le32_to_cpu(grant->nlink));
Sage Weila8599bd2009-10-06 11:31:12 -07002371
2372 if ((issued & CEPH_CAP_XATTR_EXCL) == 0 && grant->xattr_len) {
2373 int len = le32_to_cpu(grant->xattr_len);
2374 u64 version = le64_to_cpu(grant->xattr_version);
2375
2376 if (version > ci->i_xattrs.version) {
2377 dout(" got new xattrs v%llu on %p len %d\n",
2378 version, inode, len);
2379 if (ci->i_xattrs.blob)
2380 ceph_buffer_put(ci->i_xattrs.blob);
2381 ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
2382 ci->i_xattrs.version = version;
2383 }
2384 }
2385
2386 /* size/ctime/mtime/atime? */
2387 ceph_fill_file_size(inode, issued,
2388 le32_to_cpu(grant->truncate_seq),
2389 le64_to_cpu(grant->truncate_size), size);
2390 ceph_decode_timespec(&mtime, &grant->mtime);
2391 ceph_decode_timespec(&atime, &grant->atime);
2392 ceph_decode_timespec(&ctime, &grant->ctime);
2393 ceph_fill_file_time(inode, issued,
2394 le32_to_cpu(grant->time_warp_seq), &ctime, &mtime,
2395 &atime);
2396
2397 /* max size increase? */
Yan, Zheng5e62ad32012-11-19 10:49:04 +08002398 if (ci->i_auth_cap == cap && max_size != ci->i_max_size) {
Sage Weila8599bd2009-10-06 11:31:12 -07002399 dout("max_size %lld -> %llu\n", ci->i_max_size, max_size);
2400 ci->i_max_size = max_size;
2401 if (max_size >= ci->i_wanted_max_size) {
2402 ci->i_wanted_max_size = 0; /* reset */
2403 ci->i_requested_max_size = 0;
2404 }
2405 wake = 1;
2406 }
2407
2408 /* check cap bits */
2409 wanted = __ceph_caps_wanted(ci);
2410 used = __ceph_caps_used(ci);
2411 dirty = __ceph_caps_dirty(ci);
2412 dout(" my wanted = %s, used = %s, dirty %s\n",
2413 ceph_cap_string(wanted),
2414 ceph_cap_string(used),
2415 ceph_cap_string(dirty));
2416 if (wanted != le32_to_cpu(grant->wanted)) {
2417 dout("mds wanted %s -> %s\n",
2418 ceph_cap_string(le32_to_cpu(grant->wanted)),
2419 ceph_cap_string(wanted));
2420 grant->wanted = cpu_to_le32(wanted);
2421 }
2422
2423 cap->seq = seq;
2424
2425 /* file layout may have changed */
2426 ci->i_layout = grant->layout;
2427
2428 /* revocation, grant, or no-op? */
2429 if (cap->issued & ~newcaps) {
Sage Weil3b454c42010-06-10 13:20:33 -07002430 int revoking = cap->issued & ~newcaps;
2431
2432 dout("revocation: %s -> %s (revoking %s)\n",
2433 ceph_cap_string(cap->issued),
2434 ceph_cap_string(newcaps),
2435 ceph_cap_string(revoking));
Sage Weil0eb6cd42010-08-05 13:53:18 -07002436 if (revoking & used & CEPH_CAP_FILE_BUFFER)
Sage Weil3b454c42010-06-10 13:20:33 -07002437 writeback = 1; /* initiate writeback; will delay ack */
2438 else if (revoking == CEPH_CAP_FILE_CACHE &&
2439 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
2440 queue_invalidate)
2441 ; /* do nothing yet, invalidation will be queued */
2442 else if (cap == ci->i_auth_cap)
2443 check_caps = 1; /* check auth cap only */
2444 else
2445 check_caps = 2; /* check all caps */
Sage Weila8599bd2009-10-06 11:31:12 -07002446 cap->issued = newcaps;
Sage Weil978097c2010-03-08 15:27:53 -08002447 cap->implemented |= newcaps;
Sage Weila8599bd2009-10-06 11:31:12 -07002448 } else if (cap->issued == newcaps) {
2449 dout("caps unchanged: %s -> %s\n",
2450 ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
2451 } else {
2452 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
2453 ceph_cap_string(newcaps));
2454 cap->issued = newcaps;
2455 cap->implemented |= newcaps; /* add bits only, to
2456 * avoid stepping on a
2457 * pending revocation */
2458 wake = 1;
2459 }
Sage Weil978097c2010-03-08 15:27:53 -08002460 BUG_ON(cap->issued & ~cap->implemented);
Sage Weila8599bd2009-10-06 11:31:12 -07002461
Sage Weilbe655592011-11-30 09:47:09 -08002462 spin_unlock(&ci->i_ceph_lock);
Sage Weil3c6f6b72010-02-09 15:24:44 -08002463 if (writeback)
Sage Weila8599bd2009-10-06 11:31:12 -07002464 /*
2465 * queue inode for writeback: we can't actually call
2466 * filemap_write_and_wait, etc. from message handler
2467 * context.
2468 */
Sage Weil3c6f6b72010-02-09 15:24:44 -08002469 ceph_queue_writeback(inode);
2470 if (queue_invalidate)
2471 ceph_queue_invalidate(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002472 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002473 wake_up_all(&ci->i_cap_wq);
Sage Weil15637c82010-03-16 13:42:00 -07002474
2475 if (check_caps == 1)
2476 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_AUTHONLY,
2477 session);
2478 else if (check_caps == 2)
2479 ceph_check_caps(ci, CHECK_CAPS_NODELAY, session);
2480 else
2481 mutex_unlock(&session->s_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07002482}
2483
2484/*
2485 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
2486 * MDS has been safely committed.
2487 */
Sage Weil6df058c2009-12-22 11:24:33 -08002488static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
Sage Weila8599bd2009-10-06 11:31:12 -07002489 struct ceph_mds_caps *m,
2490 struct ceph_mds_session *session,
2491 struct ceph_cap *cap)
Sage Weilbe655592011-11-30 09:47:09 -08002492 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07002493{
2494 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002495 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07002496 unsigned seq = le32_to_cpu(m->seq);
2497 int dirty = le32_to_cpu(m->dirty);
2498 int cleaned = 0;
Sage Weilafcdaea2009-10-14 14:27:38 -07002499 int drop = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002500 int i;
2501
2502 for (i = 0; i < CEPH_CAP_BITS; i++)
2503 if ((dirty & (1 << i)) &&
2504 flush_tid == ci->i_cap_flush_tid[i])
2505 cleaned |= 1 << i;
2506
2507 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
2508 " flushing %s -> %s\n",
2509 inode, session->s_mds, seq, ceph_cap_string(dirty),
2510 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
2511 ceph_cap_string(ci->i_flushing_caps & ~cleaned));
2512
2513 if (ci->i_flushing_caps == (ci->i_flushing_caps & ~cleaned))
2514 goto out;
2515
Sage Weila8599bd2009-10-06 11:31:12 -07002516 ci->i_flushing_caps &= ~cleaned;
Sage Weila8599bd2009-10-06 11:31:12 -07002517
2518 spin_lock(&mdsc->cap_dirty_lock);
2519 if (ci->i_flushing_caps == 0) {
2520 list_del_init(&ci->i_flushing_item);
2521 if (!list_empty(&session->s_cap_flushing))
2522 dout(" mds%d still flushing cap on %p\n",
2523 session->s_mds,
2524 &list_entry(session->s_cap_flushing.next,
2525 struct ceph_inode_info,
2526 i_flushing_item)->vfs_inode);
2527 mdsc->num_cap_flushing--;
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002528 wake_up_all(&mdsc->cap_flushing_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002529 dout(" inode %p now !flushing\n", inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07002530
2531 if (ci->i_dirty_caps == 0) {
2532 dout(" inode %p now clean\n", inode);
2533 BUG_ON(!list_empty(&ci->i_dirty_item));
2534 drop = 1;
Sage Weil7d8cb262010-08-24 08:44:16 -07002535 if (ci->i_wrbuffer_ref_head == 0) {
2536 BUG_ON(!ci->i_head_snapc);
2537 ceph_put_snap_context(ci->i_head_snapc);
2538 ci->i_head_snapc = NULL;
2539 }
Sage Weil76e3b392009-10-15 18:13:53 -07002540 } else {
2541 BUG_ON(list_empty(&ci->i_dirty_item));
Sage Weilafcdaea2009-10-14 14:27:38 -07002542 }
Sage Weila8599bd2009-10-06 11:31:12 -07002543 }
2544 spin_unlock(&mdsc->cap_dirty_lock);
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002545 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07002546
2547out:
Sage Weilbe655592011-11-30 09:47:09 -08002548 spin_unlock(&ci->i_ceph_lock);
Sage Weilafcdaea2009-10-14 14:27:38 -07002549 if (drop)
Sage Weila8599bd2009-10-06 11:31:12 -07002550 iput(inode);
2551}
2552
2553/*
2554 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
2555 * throw away our cap_snap.
2556 *
2557 * Caller hold s_mutex.
2558 */
Sage Weil6df058c2009-12-22 11:24:33 -08002559static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
Sage Weila8599bd2009-10-06 11:31:12 -07002560 struct ceph_mds_caps *m,
2561 struct ceph_mds_session *session)
2562{
2563 struct ceph_inode_info *ci = ceph_inode(inode);
2564 u64 follows = le64_to_cpu(m->snap_follows);
Sage Weila8599bd2009-10-06 11:31:12 -07002565 struct ceph_cap_snap *capsnap;
2566 int drop = 0;
2567
2568 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
2569 inode, ci, session->s_mds, follows);
2570
Sage Weilbe655592011-11-30 09:47:09 -08002571 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002572 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2573 if (capsnap->follows == follows) {
2574 if (capsnap->flush_tid != flush_tid) {
2575 dout(" cap_snap %p follows %lld tid %lld !="
2576 " %lld\n", capsnap, follows,
2577 flush_tid, capsnap->flush_tid);
2578 break;
2579 }
2580 WARN_ON(capsnap->dirty_pages || capsnap->writing);
Sage Weil819ccbf2010-04-01 09:33:46 -07002581 dout(" removing %p cap_snap %p follows %lld\n",
2582 inode, capsnap, follows);
Sage Weila8599bd2009-10-06 11:31:12 -07002583 ceph_put_snap_context(capsnap->context);
2584 list_del(&capsnap->ci_item);
2585 list_del(&capsnap->flushing_item);
2586 ceph_put_cap_snap(capsnap);
2587 drop = 1;
2588 break;
2589 } else {
2590 dout(" skipping cap_snap %p follows %lld\n",
2591 capsnap, capsnap->follows);
2592 }
2593 }
Sage Weilbe655592011-11-30 09:47:09 -08002594 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002595 if (drop)
2596 iput(inode);
2597}
2598
2599/*
2600 * Handle TRUNC from MDS, indicating file truncation.
2601 *
2602 * caller hold s_mutex.
2603 */
2604static void handle_cap_trunc(struct inode *inode,
2605 struct ceph_mds_caps *trunc,
2606 struct ceph_mds_session *session)
Sage Weilbe655592011-11-30 09:47:09 -08002607 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07002608{
2609 struct ceph_inode_info *ci = ceph_inode(inode);
2610 int mds = session->s_mds;
2611 int seq = le32_to_cpu(trunc->seq);
2612 u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
2613 u64 truncate_size = le64_to_cpu(trunc->truncate_size);
2614 u64 size = le64_to_cpu(trunc->size);
2615 int implemented = 0;
2616 int dirty = __ceph_caps_dirty(ci);
2617 int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
2618 int queue_trunc = 0;
2619
2620 issued |= implemented | dirty;
2621
2622 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
2623 inode, mds, seq, truncate_size, truncate_seq);
2624 queue_trunc = ceph_fill_file_size(inode, issued,
2625 truncate_seq, truncate_size, size);
Sage Weilbe655592011-11-30 09:47:09 -08002626 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002627
2628 if (queue_trunc)
Sage Weil3c6f6b72010-02-09 15:24:44 -08002629 ceph_queue_vmtruncate(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002630}
2631
2632/*
2633 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
2634 * different one. If we are the most recent migration we've seen (as
2635 * indicated by mseq), make note of the migrating cap bits for the
2636 * duration (until we see the corresponding IMPORT).
2637 *
2638 * caller holds s_mutex
2639 */
2640static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
Sage Weil154f42c2010-06-21 13:45:04 -07002641 struct ceph_mds_session *session,
2642 int *open_target_sessions)
Sage Weila8599bd2009-10-06 11:31:12 -07002643{
Sage Weildb354052011-05-24 11:46:31 -07002644 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07002645 struct ceph_inode_info *ci = ceph_inode(inode);
2646 int mds = session->s_mds;
2647 unsigned mseq = le32_to_cpu(ex->migrate_seq);
2648 struct ceph_cap *cap = NULL, *t;
2649 struct rb_node *p;
2650 int remember = 1;
2651
2652 dout("handle_cap_export inode %p ci %p mds%d mseq %d\n",
2653 inode, ci, mds, mseq);
2654
Sage Weilbe655592011-11-30 09:47:09 -08002655 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002656
2657 /* make sure we haven't seen a higher mseq */
2658 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
2659 t = rb_entry(p, struct ceph_cap, ci_node);
2660 if (ceph_seq_cmp(t->mseq, mseq) > 0) {
2661 dout(" higher mseq on cap from mds%d\n",
2662 t->session->s_mds);
2663 remember = 0;
2664 }
2665 if (t->session->s_mds == mds)
2666 cap = t;
2667 }
2668
2669 if (cap) {
2670 if (remember) {
2671 /* make note */
2672 ci->i_cap_exporting_mds = mds;
2673 ci->i_cap_exporting_mseq = mseq;
2674 ci->i_cap_exporting_issued = cap->issued;
Sage Weil154f42c2010-06-21 13:45:04 -07002675
2676 /*
2677 * make sure we have open sessions with all possible
2678 * export targets, so that we get the matching IMPORT
2679 */
2680 *open_target_sessions = 1;
Sage Weildb354052011-05-24 11:46:31 -07002681
2682 /*
2683 * we can't flush dirty caps that we've seen the
2684 * EXPORT but no IMPORT for
2685 */
2686 spin_lock(&mdsc->cap_dirty_lock);
2687 if (!list_empty(&ci->i_dirty_item)) {
2688 dout(" moving %p to cap_dirty_migrating\n",
2689 inode);
2690 list_move(&ci->i_dirty_item,
2691 &mdsc->cap_dirty_migrating);
2692 }
2693 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002694 }
Sage Weil7c1332b2010-02-16 11:39:45 -08002695 __ceph_remove_cap(cap);
Sage Weila8599bd2009-10-06 11:31:12 -07002696 }
Sage Weil4ea00432010-03-16 10:36:40 -07002697 /* else, we already released it */
Sage Weila8599bd2009-10-06 11:31:12 -07002698
Sage Weilbe655592011-11-30 09:47:09 -08002699 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002700}
2701
2702/*
2703 * Handle cap IMPORT. If there are temp bits from an older EXPORT,
2704 * clean them up.
2705 *
2706 * caller holds s_mutex.
2707 */
2708static void handle_cap_import(struct ceph_mds_client *mdsc,
2709 struct inode *inode, struct ceph_mds_caps *im,
2710 struct ceph_mds_session *session,
2711 void *snaptrace, int snaptrace_len)
2712{
2713 struct ceph_inode_info *ci = ceph_inode(inode);
2714 int mds = session->s_mds;
2715 unsigned issued = le32_to_cpu(im->caps);
2716 unsigned wanted = le32_to_cpu(im->wanted);
2717 unsigned seq = le32_to_cpu(im->seq);
2718 unsigned mseq = le32_to_cpu(im->migrate_seq);
2719 u64 realmino = le64_to_cpu(im->realm);
2720 u64 cap_id = le64_to_cpu(im->cap_id);
2721
2722 if (ci->i_cap_exporting_mds >= 0 &&
2723 ceph_seq_cmp(ci->i_cap_exporting_mseq, mseq) < 0) {
2724 dout("handle_cap_import inode %p ci %p mds%d mseq %d"
2725 " - cleared exporting from mds%d\n",
2726 inode, ci, mds, mseq,
2727 ci->i_cap_exporting_mds);
2728 ci->i_cap_exporting_issued = 0;
2729 ci->i_cap_exporting_mseq = 0;
2730 ci->i_cap_exporting_mds = -1;
Sage Weildb354052011-05-24 11:46:31 -07002731
2732 spin_lock(&mdsc->cap_dirty_lock);
2733 if (!list_empty(&ci->i_dirty_item)) {
2734 dout(" moving %p back to cap_dirty\n", inode);
2735 list_move(&ci->i_dirty_item, &mdsc->cap_dirty);
2736 }
2737 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002738 } else {
2739 dout("handle_cap_import inode %p ci %p mds%d mseq %d\n",
2740 inode, ci, mds, mseq);
2741 }
2742
2743 down_write(&mdsc->snap_rwsem);
2744 ceph_update_snap_trace(mdsc, snaptrace, snaptrace+snaptrace_len,
2745 false);
2746 downgrade_write(&mdsc->snap_rwsem);
2747 ceph_add_cap(inode, session, cap_id, -1,
2748 issued, wanted, seq, mseq, realmino, CEPH_CAP_FLAG_AUTH,
2749 NULL /* no caps context */);
Sage Weil088b3f52011-01-18 08:56:01 -08002750 kick_flushing_inode_caps(mdsc, session, inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002751 up_read(&mdsc->snap_rwsem);
Sage Weilfeb4cc92010-11-07 09:39:00 -08002752
2753 /* make sure we re-request max_size, if necessary */
Sage Weilbe655592011-11-30 09:47:09 -08002754 spin_lock(&ci->i_ceph_lock);
Yan, Zheng0e5e1772012-11-19 10:49:09 +08002755 ci->i_wanted_max_size = 0; /* reset */
Sage Weilfeb4cc92010-11-07 09:39:00 -08002756 ci->i_requested_max_size = 0;
Sage Weilbe655592011-11-30 09:47:09 -08002757 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002758}
2759
2760/*
2761 * Handle a caps message from the MDS.
2762 *
2763 * Identify the appropriate session, inode, and call the right handler
2764 * based on the cap op.
2765 */
2766void ceph_handle_caps(struct ceph_mds_session *session,
2767 struct ceph_msg *msg)
2768{
2769 struct ceph_mds_client *mdsc = session->s_mdsc;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002770 struct super_block *sb = mdsc->fsc->sb;
Sage Weila8599bd2009-10-06 11:31:12 -07002771 struct inode *inode;
Sage Weilbe655592011-11-30 09:47:09 -08002772 struct ceph_inode_info *ci;
Sage Weila8599bd2009-10-06 11:31:12 -07002773 struct ceph_cap *cap;
2774 struct ceph_mds_caps *h;
Sage Weil2600d2d2010-02-22 15:12:16 -08002775 int mds = session->s_mds;
Sage Weila8599bd2009-10-06 11:31:12 -07002776 int op;
Sage Weil3d7ded42010-06-09 16:47:10 -07002777 u32 seq, mseq;
Sage Weila8599bd2009-10-06 11:31:12 -07002778 struct ceph_vino vino;
2779 u64 cap_id;
2780 u64 size, max_size;
Sage Weil6df058c2009-12-22 11:24:33 -08002781 u64 tid;
Sage Weil70edb552010-03-01 13:20:50 -08002782 void *snaptrace;
Sage Weilce1fbc82010-08-02 15:09:39 -07002783 size_t snaptrace_len;
2784 void *flock;
2785 u32 flock_len;
Sage Weil154f42c2010-06-21 13:45:04 -07002786 int open_target_sessions = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002787
2788 dout("handle_caps from mds%d\n", mds);
2789
2790 /* decode */
Sage Weil6df058c2009-12-22 11:24:33 -08002791 tid = le64_to_cpu(msg->hdr.tid);
Sage Weila8599bd2009-10-06 11:31:12 -07002792 if (msg->front.iov_len < sizeof(*h))
2793 goto bad;
2794 h = msg->front.iov_base;
2795 op = le32_to_cpu(h->op);
2796 vino.ino = le64_to_cpu(h->ino);
2797 vino.snap = CEPH_NOSNAP;
2798 cap_id = le64_to_cpu(h->cap_id);
2799 seq = le32_to_cpu(h->seq);
Sage Weil3d7ded42010-06-09 16:47:10 -07002800 mseq = le32_to_cpu(h->migrate_seq);
Sage Weila8599bd2009-10-06 11:31:12 -07002801 size = le64_to_cpu(h->size);
2802 max_size = le64_to_cpu(h->max_size);
2803
Sage Weilce1fbc82010-08-02 15:09:39 -07002804 snaptrace = h + 1;
2805 snaptrace_len = le32_to_cpu(h->snap_trace_len);
2806
2807 if (le16_to_cpu(msg->hdr.version) >= 2) {
2808 void *p, *end;
2809
2810 p = snaptrace + snaptrace_len;
2811 end = msg->front.iov_base + msg->front.iov_len;
2812 ceph_decode_32_safe(&p, end, flock_len, bad);
2813 flock = p;
2814 } else {
2815 flock = NULL;
2816 flock_len = 0;
2817 }
2818
Sage Weila8599bd2009-10-06 11:31:12 -07002819 mutex_lock(&session->s_mutex);
2820 session->s_seq++;
2821 dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
2822 (unsigned)seq);
2823
2824 /* lookup ino */
2825 inode = ceph_find_inode(sb, vino);
Sage Weilbe655592011-11-30 09:47:09 -08002826 ci = ceph_inode(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07002827 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
2828 vino.snap, inode);
2829 if (!inode) {
2830 dout(" i don't have ino %llx\n", vino.ino);
Sage Weil3d7ded42010-06-09 16:47:10 -07002831
2832 if (op == CEPH_CAP_OP_IMPORT)
2833 __queue_cap_release(session, vino.ino, cap_id,
2834 mseq, seq);
Greg Farnum21b559d2010-10-06 15:46:30 -07002835 goto flush_cap_releases;
Sage Weila8599bd2009-10-06 11:31:12 -07002836 }
2837
2838 /* these will work even if we don't have a cap yet */
2839 switch (op) {
2840 case CEPH_CAP_OP_FLUSHSNAP_ACK:
Sage Weil6df058c2009-12-22 11:24:33 -08002841 handle_cap_flushsnap_ack(inode, tid, h, session);
Sage Weila8599bd2009-10-06 11:31:12 -07002842 goto done;
2843
2844 case CEPH_CAP_OP_EXPORT:
Sage Weil154f42c2010-06-21 13:45:04 -07002845 handle_cap_export(inode, h, session, &open_target_sessions);
Sage Weila8599bd2009-10-06 11:31:12 -07002846 goto done;
2847
2848 case CEPH_CAP_OP_IMPORT:
2849 handle_cap_import(mdsc, inode, h, session,
Sage Weilce1fbc82010-08-02 15:09:39 -07002850 snaptrace, snaptrace_len);
Sage Weila8599bd2009-10-06 11:31:12 -07002851 }
2852
2853 /* the rest require a cap */
Sage Weilbe655592011-11-30 09:47:09 -08002854 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002855 cap = __get_cap_for_mds(ceph_inode(inode), mds);
2856 if (!cap) {
Sage Weil9dbd4122010-06-10 13:21:20 -07002857 dout(" no cap on %p ino %llx.%llx from mds%d\n",
Sage Weila8599bd2009-10-06 11:31:12 -07002858 inode, ceph_ino(inode), ceph_snap(inode), mds);
Sage Weilbe655592011-11-30 09:47:09 -08002859 spin_unlock(&ci->i_ceph_lock);
Greg Farnum21b559d2010-10-06 15:46:30 -07002860 goto flush_cap_releases;
Sage Weila8599bd2009-10-06 11:31:12 -07002861 }
2862
Sage Weilbe655592011-11-30 09:47:09 -08002863 /* note that each of these drops i_ceph_lock for us */
Sage Weila8599bd2009-10-06 11:31:12 -07002864 switch (op) {
2865 case CEPH_CAP_OP_REVOKE:
2866 case CEPH_CAP_OP_GRANT:
Yan, Zheng0e5e1772012-11-19 10:49:09 +08002867 case CEPH_CAP_OP_IMPORT:
Sage Weil15637c82010-03-16 13:42:00 -07002868 handle_cap_grant(inode, h, session, cap, msg->middle);
2869 goto done_unlocked;
Sage Weila8599bd2009-10-06 11:31:12 -07002870
2871 case CEPH_CAP_OP_FLUSH_ACK:
Sage Weil6df058c2009-12-22 11:24:33 -08002872 handle_cap_flush_ack(inode, tid, h, session, cap);
Sage Weila8599bd2009-10-06 11:31:12 -07002873 break;
2874
2875 case CEPH_CAP_OP_TRUNC:
2876 handle_cap_trunc(inode, h, session);
2877 break;
2878
2879 default:
Sage Weilbe655592011-11-30 09:47:09 -08002880 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002881 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
2882 ceph_cap_op_name(op));
2883 }
2884
Greg Farnum21b559d2010-10-06 15:46:30 -07002885 goto done;
2886
2887flush_cap_releases:
2888 /*
2889 * send any full release message to try to move things
2890 * along for the mds (who clearly thinks we still have this
2891 * cap).
2892 */
2893 ceph_add_cap_releases(mdsc, session);
2894 ceph_send_cap_releases(mdsc, session);
2895
Sage Weila8599bd2009-10-06 11:31:12 -07002896done:
Sage Weil15637c82010-03-16 13:42:00 -07002897 mutex_unlock(&session->s_mutex);
2898done_unlocked:
Sage Weila8599bd2009-10-06 11:31:12 -07002899 if (inode)
2900 iput(inode);
Sage Weil154f42c2010-06-21 13:45:04 -07002901 if (open_target_sessions)
2902 ceph_mdsc_open_export_target_sessions(mdsc, session);
Sage Weila8599bd2009-10-06 11:31:12 -07002903 return;
2904
2905bad:
2906 pr_err("ceph_handle_caps: corrupt message\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -08002907 ceph_msg_dump(msg);
Sage Weila8599bd2009-10-06 11:31:12 -07002908 return;
2909}
2910
2911/*
2912 * Delayed work handler to process end of delayed cap release LRU list.
2913 */
Sage Weilafcdaea2009-10-14 14:27:38 -07002914void ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
Sage Weila8599bd2009-10-06 11:31:12 -07002915{
2916 struct ceph_inode_info *ci;
2917 int flags = CHECK_CAPS_NODELAY;
2918
Sage Weila8599bd2009-10-06 11:31:12 -07002919 dout("check_delayed_caps\n");
2920 while (1) {
2921 spin_lock(&mdsc->cap_delay_lock);
2922 if (list_empty(&mdsc->cap_delay_list))
2923 break;
2924 ci = list_first_entry(&mdsc->cap_delay_list,
2925 struct ceph_inode_info,
2926 i_cap_delay_list);
2927 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
2928 time_before(jiffies, ci->i_hold_caps_max))
2929 break;
2930 list_del_init(&ci->i_cap_delay_list);
2931 spin_unlock(&mdsc->cap_delay_lock);
2932 dout("check_delayed_caps on %p\n", &ci->vfs_inode);
2933 ceph_check_caps(ci, flags, NULL);
2934 }
2935 spin_unlock(&mdsc->cap_delay_lock);
2936}
2937
2938/*
Sage Weilafcdaea2009-10-14 14:27:38 -07002939 * Flush all dirty caps to the mds
2940 */
2941void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
2942{
Sage Weildb354052011-05-24 11:46:31 -07002943 struct ceph_inode_info *ci;
2944 struct inode *inode;
Sage Weilafcdaea2009-10-14 14:27:38 -07002945
2946 dout("flush_dirty_caps\n");
2947 spin_lock(&mdsc->cap_dirty_lock);
Sage Weildb354052011-05-24 11:46:31 -07002948 while (!list_empty(&mdsc->cap_dirty)) {
2949 ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info,
2950 i_dirty_item);
Sage Weil70b666c2011-05-27 09:24:26 -07002951 inode = &ci->vfs_inode;
2952 ihold(inode);
Sage Weildb354052011-05-24 11:46:31 -07002953 dout("flush_dirty_caps %p\n", inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07002954 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weil70b666c2011-05-27 09:24:26 -07002955 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_FLUSH, NULL);
2956 iput(inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07002957 spin_lock(&mdsc->cap_dirty_lock);
2958 }
2959 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weildb354052011-05-24 11:46:31 -07002960 dout("flush_dirty_caps done\n");
Sage Weilafcdaea2009-10-14 14:27:38 -07002961}
2962
2963/*
Sage Weila8599bd2009-10-06 11:31:12 -07002964 * Drop open file reference. If we were the last open file,
2965 * we may need to release capabilities to the MDS (or schedule
2966 * their delayed release).
2967 */
2968void ceph_put_fmode(struct ceph_inode_info *ci, int fmode)
2969{
2970 struct inode *inode = &ci->vfs_inode;
2971 int last = 0;
2972
Sage Weilbe655592011-11-30 09:47:09 -08002973 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002974 dout("put_fmode %p fmode %d %d -> %d\n", inode, fmode,
2975 ci->i_nr_by_mode[fmode], ci->i_nr_by_mode[fmode]-1);
2976 BUG_ON(ci->i_nr_by_mode[fmode] == 0);
2977 if (--ci->i_nr_by_mode[fmode] == 0)
2978 last++;
Sage Weilbe655592011-11-30 09:47:09 -08002979 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002980
2981 if (last && ci->i_vino.snap == CEPH_NOSNAP)
2982 ceph_check_caps(ci, 0, NULL);
2983}
2984
2985/*
2986 * Helpers for embedding cap and dentry lease releases into mds
2987 * requests.
2988 *
2989 * @force is used by dentry_release (below) to force inclusion of a
2990 * record for the directory inode, even when there aren't any caps to
2991 * drop.
2992 */
2993int ceph_encode_inode_release(void **p, struct inode *inode,
2994 int mds, int drop, int unless, int force)
2995{
2996 struct ceph_inode_info *ci = ceph_inode(inode);
2997 struct ceph_cap *cap;
2998 struct ceph_mds_request_release *rel = *p;
Sage Weilec97f882010-06-24 15:12:37 -07002999 int used, dirty;
Sage Weila8599bd2009-10-06 11:31:12 -07003000 int ret = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07003001
Sage Weilbe655592011-11-30 09:47:09 -08003002 spin_lock(&ci->i_ceph_lock);
Sage Weil916623d2010-03-16 15:01:07 -07003003 used = __ceph_caps_used(ci);
Sage Weilec97f882010-06-24 15:12:37 -07003004 dirty = __ceph_caps_dirty(ci);
Sage Weil916623d2010-03-16 15:01:07 -07003005
Sage Weilec97f882010-06-24 15:12:37 -07003006 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
3007 inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
Sage Weil916623d2010-03-16 15:01:07 -07003008 ceph_cap_string(unless));
3009
Sage Weilec97f882010-06-24 15:12:37 -07003010 /* only drop unused, clean caps */
3011 drop &= ~(used | dirty);
Sage Weil916623d2010-03-16 15:01:07 -07003012
Sage Weila8599bd2009-10-06 11:31:12 -07003013 cap = __get_cap_for_mds(ci, mds);
3014 if (cap && __cap_is_valid(cap)) {
3015 if (force ||
3016 ((cap->issued & drop) &&
3017 (cap->issued & unless) == 0)) {
3018 if ((cap->issued & drop) &&
3019 (cap->issued & unless) == 0) {
3020 dout("encode_inode_release %p cap %p %s -> "
3021 "%s\n", inode, cap,
3022 ceph_cap_string(cap->issued),
3023 ceph_cap_string(cap->issued & ~drop));
3024 cap->issued &= ~drop;
3025 cap->implemented &= ~drop;
3026 if (ci->i_ceph_flags & CEPH_I_NODELAY) {
3027 int wanted = __ceph_caps_wanted(ci);
3028 dout(" wanted %s -> %s (act %s)\n",
3029 ceph_cap_string(cap->mds_wanted),
3030 ceph_cap_string(cap->mds_wanted &
3031 ~wanted),
3032 ceph_cap_string(wanted));
3033 cap->mds_wanted &= wanted;
3034 }
3035 } else {
3036 dout("encode_inode_release %p cap %p %s"
3037 " (force)\n", inode, cap,
3038 ceph_cap_string(cap->issued));
3039 }
3040
3041 rel->ino = cpu_to_le64(ceph_ino(inode));
3042 rel->cap_id = cpu_to_le64(cap->cap_id);
3043 rel->seq = cpu_to_le32(cap->seq);
3044 rel->issue_seq = cpu_to_le32(cap->issue_seq),
3045 rel->mseq = cpu_to_le32(cap->mseq);
3046 rel->caps = cpu_to_le32(cap->issued);
3047 rel->wanted = cpu_to_le32(cap->mds_wanted);
3048 rel->dname_len = 0;
3049 rel->dname_seq = 0;
3050 *p += sizeof(*rel);
3051 ret = 1;
3052 } else {
3053 dout("encode_inode_release %p cap %p %s\n",
3054 inode, cap, ceph_cap_string(cap->issued));
3055 }
3056 }
Sage Weilbe655592011-11-30 09:47:09 -08003057 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003058 return ret;
3059}
3060
3061int ceph_encode_dentry_release(void **p, struct dentry *dentry,
3062 int mds, int drop, int unless)
3063{
3064 struct inode *dir = dentry->d_parent->d_inode;
3065 struct ceph_mds_request_release *rel = *p;
3066 struct ceph_dentry_info *di = ceph_dentry(dentry);
3067 int force = 0;
3068 int ret;
3069
3070 /*
3071 * force an record for the directory caps if we have a dentry lease.
Sage Weilbe655592011-11-30 09:47:09 -08003072 * this is racy (can't take i_ceph_lock and d_lock together), but it
Sage Weila8599bd2009-10-06 11:31:12 -07003073 * doesn't have to be perfect; the mds will revoke anything we don't
3074 * release.
3075 */
3076 spin_lock(&dentry->d_lock);
3077 if (di->lease_session && di->lease_session->s_mds == mds)
3078 force = 1;
3079 spin_unlock(&dentry->d_lock);
3080
3081 ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
3082
3083 spin_lock(&dentry->d_lock);
3084 if (ret && di->lease_session && di->lease_session->s_mds == mds) {
3085 dout("encode_dentry_release %p mds%d seq %d\n",
3086 dentry, mds, (int)di->lease_seq);
3087 rel->dname_len = cpu_to_le32(dentry->d_name.len);
3088 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
3089 *p += dentry->d_name.len;
3090 rel->dname_seq = cpu_to_le32(di->lease_seq);
Sage Weil1dadcce2010-07-23 13:54:21 -07003091 __ceph_mdsc_drop_dentry_lease(dentry);
Sage Weila8599bd2009-10-06 11:31:12 -07003092 }
3093 spin_unlock(&dentry->d_lock);
3094 return ret;
3095}