blob: 0b3a36310033297b567616396e08daa6a359cc45 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Sage Weila8599bd2009-10-06 11:31:12 -07003
4#include <linux/fs.h>
5#include <linux/kernel.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +01006#include <linux/sched/signal.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Sage Weila8599bd2009-10-06 11:31:12 -07008#include <linux/vmalloc.h>
9#include <linux/wait.h>
Stephen Rothwellf1a3d572010-01-18 11:53:08 +110010#include <linux/writeback.h>
Jeff Layton176c77c2019-06-06 08:06:40 -040011#include <linux/iversion.h>
Sage Weila8599bd2009-10-06 11:31:12 -070012
13#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070014#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040015#include "cache.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070016#include <linux/ceph/decode.h>
17#include <linux/ceph/messenger.h>
Sage Weila8599bd2009-10-06 11:31:12 -070018
19/*
20 * Capability management
21 *
22 * The Ceph metadata servers control client access to inode metadata
23 * and file data by issuing capabilities, granting clients permission
24 * to read and/or write both inode field and file data to OSDs
25 * (storage nodes). Each capability consists of a set of bits
26 * indicating which operations are allowed.
27 *
28 * If the client holds a *_SHARED cap, the client has a coherent value
29 * that can be safely read from the cached inode.
30 *
31 * In the case of a *_EXCL (exclusive) or FILE_WR capabilities, the
32 * client is allowed to change inode attributes (e.g., file size,
33 * mtime), note its dirty state in the ceph_cap, and asynchronously
34 * flush that metadata change to the MDS.
35 *
36 * In the event of a conflicting operation (perhaps by another
37 * client), the MDS will revoke the conflicting client capabilities.
38 *
39 * In order for a client to cache an inode, it must hold a capability
40 * with at least one MDS server. When inodes are released, release
41 * notifications are batched and periodically sent en masse to the MDS
42 * cluster to release server state.
43 */
44
Yan, Zheng0e294382016-07-04 18:06:41 +080045static u64 __get_oldest_flush_tid(struct ceph_mds_client *mdsc);
Yan, Zheng7bc00fd2016-07-07 18:34:45 +080046static void __kick_flushing_caps(struct ceph_mds_client *mdsc,
47 struct ceph_mds_session *session,
48 struct ceph_inode_info *ci,
49 u64 oldest_flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -070050
51/*
52 * Generate readable cap strings for debugging output.
53 */
54#define MAX_CAP_STR 20
55static char cap_str[MAX_CAP_STR][40];
56static DEFINE_SPINLOCK(cap_str_lock);
57static int last_cap_str;
58
59static char *gcap_string(char *s, int c)
60{
61 if (c & CEPH_CAP_GSHARED)
62 *s++ = 's';
63 if (c & CEPH_CAP_GEXCL)
64 *s++ = 'x';
65 if (c & CEPH_CAP_GCACHE)
66 *s++ = 'c';
67 if (c & CEPH_CAP_GRD)
68 *s++ = 'r';
69 if (c & CEPH_CAP_GWR)
70 *s++ = 'w';
71 if (c & CEPH_CAP_GBUFFER)
72 *s++ = 'b';
Yan, Zheng49a9f4f2018-04-25 17:30:23 +080073 if (c & CEPH_CAP_GWREXTEND)
74 *s++ = 'a';
Sage Weila8599bd2009-10-06 11:31:12 -070075 if (c & CEPH_CAP_GLAZYIO)
76 *s++ = 'l';
77 return s;
78}
79
80const char *ceph_cap_string(int caps)
81{
82 int i;
83 char *s;
84 int c;
85
86 spin_lock(&cap_str_lock);
87 i = last_cap_str++;
88 if (last_cap_str == MAX_CAP_STR)
89 last_cap_str = 0;
90 spin_unlock(&cap_str_lock);
91
92 s = cap_str[i];
93
94 if (caps & CEPH_CAP_PIN)
95 *s++ = 'p';
96
97 c = (caps >> CEPH_CAP_SAUTH) & 3;
98 if (c) {
99 *s++ = 'A';
100 s = gcap_string(s, c);
101 }
102
103 c = (caps >> CEPH_CAP_SLINK) & 3;
104 if (c) {
105 *s++ = 'L';
106 s = gcap_string(s, c);
107 }
108
109 c = (caps >> CEPH_CAP_SXATTR) & 3;
110 if (c) {
111 *s++ = 'X';
112 s = gcap_string(s, c);
113 }
114
115 c = caps >> CEPH_CAP_SFILE;
116 if (c) {
117 *s++ = 'F';
118 s = gcap_string(s, c);
119 }
120
121 if (s == cap_str[i])
122 *s++ = '-';
123 *s = 0;
124 return cap_str[i];
125}
126
Yehuda Sadeh37151662010-06-17 16:16:12 -0700127void ceph_caps_init(struct ceph_mds_client *mdsc)
Sage Weila8599bd2009-10-06 11:31:12 -0700128{
Yehuda Sadeh37151662010-06-17 16:16:12 -0700129 INIT_LIST_HEAD(&mdsc->caps_list);
130 spin_lock_init(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700131}
132
Yehuda Sadeh37151662010-06-17 16:16:12 -0700133void ceph_caps_finalize(struct ceph_mds_client *mdsc)
Sage Weila8599bd2009-10-06 11:31:12 -0700134{
135 struct ceph_cap *cap;
136
Yehuda Sadeh37151662010-06-17 16:16:12 -0700137 spin_lock(&mdsc->caps_list_lock);
138 while (!list_empty(&mdsc->caps_list)) {
139 cap = list_first_entry(&mdsc->caps_list,
140 struct ceph_cap, caps_item);
Sage Weila8599bd2009-10-06 11:31:12 -0700141 list_del(&cap->caps_item);
142 kmem_cache_free(ceph_cap_cachep, cap);
143 }
Yehuda Sadeh37151662010-06-17 16:16:12 -0700144 mdsc->caps_total_count = 0;
145 mdsc->caps_avail_count = 0;
146 mdsc->caps_use_count = 0;
147 mdsc->caps_reserve_count = 0;
148 mdsc->caps_min_count = 0;
149 spin_unlock(&mdsc->caps_list_lock);
Sage Weil85ccce42010-02-17 10:02:43 -0800150}
151
Yan, Zhengfe330322019-02-01 14:57:15 +0800152void ceph_adjust_caps_max_min(struct ceph_mds_client *mdsc,
153 struct ceph_mount_options *fsopt)
Sage Weil85ccce42010-02-17 10:02:43 -0800154{
Yehuda Sadeh37151662010-06-17 16:16:12 -0700155 spin_lock(&mdsc->caps_list_lock);
Yan, Zhengfe330322019-02-01 14:57:15 +0800156 mdsc->caps_min_count = fsopt->max_readdir;
157 if (mdsc->caps_min_count < 1024)
158 mdsc->caps_min_count = 1024;
159 mdsc->caps_use_max = fsopt->caps_max;
160 if (mdsc->caps_use_max > 0 &&
161 mdsc->caps_use_max < mdsc->caps_min_count)
162 mdsc->caps_use_max = mdsc->caps_min_count;
Yehuda Sadeh37151662010-06-17 16:16:12 -0700163 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700164}
165
Chengguang Xu7bf8f732018-07-28 23:15:35 +0800166static void __ceph_unreserve_caps(struct ceph_mds_client *mdsc, int nr_caps)
167{
168 struct ceph_cap *cap;
169 int i;
170
171 if (nr_caps) {
172 BUG_ON(mdsc->caps_reserve_count < nr_caps);
173 mdsc->caps_reserve_count -= nr_caps;
174 if (mdsc->caps_avail_count >=
175 mdsc->caps_reserve_count + mdsc->caps_min_count) {
176 mdsc->caps_total_count -= nr_caps;
177 for (i = 0; i < nr_caps; i++) {
178 cap = list_first_entry(&mdsc->caps_list,
179 struct ceph_cap, caps_item);
180 list_del(&cap->caps_item);
181 kmem_cache_free(ceph_cap_cachep, cap);
182 }
183 } else {
184 mdsc->caps_avail_count += nr_caps;
185 }
186
187 dout("%s: caps %d = %d used + %d resv + %d avail\n",
188 __func__,
189 mdsc->caps_total_count, mdsc->caps_use_count,
190 mdsc->caps_reserve_count, mdsc->caps_avail_count);
191 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
192 mdsc->caps_reserve_count +
193 mdsc->caps_avail_count);
194 }
195}
196
Zhi Zhange30ee582018-01-24 21:24:33 +0800197/*
198 * Called under mdsc->mutex.
199 */
200int ceph_reserve_caps(struct ceph_mds_client *mdsc,
Yehuda Sadeh37151662010-06-17 16:16:12 -0700201 struct ceph_cap_reservation *ctx, int need)
Sage Weila8599bd2009-10-06 11:31:12 -0700202{
Zhi Zhange30ee582018-01-24 21:24:33 +0800203 int i, j;
Sage Weila8599bd2009-10-06 11:31:12 -0700204 struct ceph_cap *cap;
205 int have;
206 int alloc = 0;
Zhi Zhange30ee582018-01-24 21:24:33 +0800207 int max_caps;
Chengguang Xue5bc08d2018-07-28 23:15:37 +0800208 int err = 0;
Zhi Zhange30ee582018-01-24 21:24:33 +0800209 bool trimmed = false;
210 struct ceph_mds_session *s;
Sage Weila8599bd2009-10-06 11:31:12 -0700211 LIST_HEAD(newcaps);
Sage Weila8599bd2009-10-06 11:31:12 -0700212
213 dout("reserve caps ctx=%p need=%d\n", ctx, need);
214
215 /* first reserve any caps that are already allocated */
Yehuda Sadeh37151662010-06-17 16:16:12 -0700216 spin_lock(&mdsc->caps_list_lock);
217 if (mdsc->caps_avail_count >= need)
Sage Weila8599bd2009-10-06 11:31:12 -0700218 have = need;
219 else
Yehuda Sadeh37151662010-06-17 16:16:12 -0700220 have = mdsc->caps_avail_count;
221 mdsc->caps_avail_count -= have;
222 mdsc->caps_reserve_count += have;
223 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
224 mdsc->caps_reserve_count +
225 mdsc->caps_avail_count);
226 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700227
Chengguang Xu79cd6742018-02-24 18:36:02 +0800228 for (i = have; i < need; ) {
Sage Weila8599bd2009-10-06 11:31:12 -0700229 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
Chengguang Xu79cd6742018-02-24 18:36:02 +0800230 if (cap) {
231 list_add(&cap->caps_item, &newcaps);
232 alloc++;
233 i++;
234 continue;
Zhi Zhange30ee582018-01-24 21:24:33 +0800235 }
Chengguang Xu79cd6742018-02-24 18:36:02 +0800236
237 if (!trimmed) {
238 for (j = 0; j < mdsc->max_sessions; j++) {
239 s = __ceph_lookup_mds_session(mdsc, j);
240 if (!s)
241 continue;
242 mutex_unlock(&mdsc->mutex);
243
244 mutex_lock(&s->s_mutex);
245 max_caps = s->s_nr_caps - (need - i);
246 ceph_trim_caps(mdsc, s, max_caps);
247 mutex_unlock(&s->s_mutex);
248
249 ceph_put_mds_session(s);
250 mutex_lock(&mdsc->mutex);
251 }
252 trimmed = true;
253
254 spin_lock(&mdsc->caps_list_lock);
255 if (mdsc->caps_avail_count) {
256 int more_have;
257 if (mdsc->caps_avail_count >= need - i)
258 more_have = need - i;
259 else
260 more_have = mdsc->caps_avail_count;
261
262 i += more_have;
263 have += more_have;
264 mdsc->caps_avail_count -= more_have;
265 mdsc->caps_reserve_count += more_have;
266
267 }
268 spin_unlock(&mdsc->caps_list_lock);
269
270 continue;
271 }
272
273 pr_warn("reserve caps ctx=%p ENOMEM need=%d got=%d\n",
274 ctx, need, have + alloc);
Chengguang Xue5bc08d2018-07-28 23:15:37 +0800275 err = -ENOMEM;
276 break;
Sage Weila8599bd2009-10-06 11:31:12 -0700277 }
Chengguang Xue5bc08d2018-07-28 23:15:37 +0800278
279 if (!err) {
280 BUG_ON(have + alloc != need);
281 ctx->count = need;
Yan, Zhengfe330322019-02-01 14:57:15 +0800282 ctx->used = 0;
Chengguang Xue5bc08d2018-07-28 23:15:37 +0800283 }
Sage Weila8599bd2009-10-06 11:31:12 -0700284
Yehuda Sadeh37151662010-06-17 16:16:12 -0700285 spin_lock(&mdsc->caps_list_lock);
286 mdsc->caps_total_count += alloc;
287 mdsc->caps_reserve_count += alloc;
288 list_splice(&newcaps, &mdsc->caps_list);
Sage Weila8599bd2009-10-06 11:31:12 -0700289
Yehuda Sadeh37151662010-06-17 16:16:12 -0700290 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
291 mdsc->caps_reserve_count +
292 mdsc->caps_avail_count);
Chengguang Xue5bc08d2018-07-28 23:15:37 +0800293
294 if (err)
295 __ceph_unreserve_caps(mdsc, have + alloc);
296
Yehuda Sadeh37151662010-06-17 16:16:12 -0700297 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700298
Sage Weila8599bd2009-10-06 11:31:12 -0700299 dout("reserve caps ctx=%p %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700300 ctx, mdsc->caps_total_count, mdsc->caps_use_count,
301 mdsc->caps_reserve_count, mdsc->caps_avail_count);
Chengguang Xue5bc08d2018-07-28 23:15:37 +0800302 return err;
Sage Weila8599bd2009-10-06 11:31:12 -0700303}
304
Chengguang Xu7bf8f732018-07-28 23:15:35 +0800305void ceph_unreserve_caps(struct ceph_mds_client *mdsc,
Yan, Zhengfe330322019-02-01 14:57:15 +0800306 struct ceph_cap_reservation *ctx)
Sage Weila8599bd2009-10-06 11:31:12 -0700307{
Yan, Zhengfe330322019-02-01 14:57:15 +0800308 bool reclaim = false;
309 if (!ctx->count)
310 return;
311
Sage Weila8599bd2009-10-06 11:31:12 -0700312 dout("unreserve caps ctx=%p count=%d\n", ctx, ctx->count);
Chengguang Xu7bf8f732018-07-28 23:15:35 +0800313 spin_lock(&mdsc->caps_list_lock);
314 __ceph_unreserve_caps(mdsc, ctx->count);
315 ctx->count = 0;
Yan, Zhengfe330322019-02-01 14:57:15 +0800316
317 if (mdsc->caps_use_max > 0 &&
318 mdsc->caps_use_count > mdsc->caps_use_max)
319 reclaim = true;
Chengguang Xu7bf8f732018-07-28 23:15:35 +0800320 spin_unlock(&mdsc->caps_list_lock);
Yan, Zhengfe330322019-02-01 14:57:15 +0800321
322 if (reclaim)
323 ceph_reclaim_caps_nr(mdsc, ctx->used);
Sage Weila8599bd2009-10-06 11:31:12 -0700324}
325
Yan, Zhengd9df2782014-04-18 09:57:11 +0800326struct ceph_cap *ceph_get_cap(struct ceph_mds_client *mdsc,
327 struct ceph_cap_reservation *ctx)
Sage Weila8599bd2009-10-06 11:31:12 -0700328{
329 struct ceph_cap *cap = NULL;
330
331 /* temporary, until we do something about cap import/export */
Sage Weil443b3762010-06-29 09:28:39 -0700332 if (!ctx) {
333 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
334 if (cap) {
Yan, Zheng4d1d05342012-11-03 10:32:37 +0800335 spin_lock(&mdsc->caps_list_lock);
Yehuda Sadeh37151662010-06-17 16:16:12 -0700336 mdsc->caps_use_count++;
337 mdsc->caps_total_count++;
Yan, Zheng4d1d05342012-11-03 10:32:37 +0800338 spin_unlock(&mdsc->caps_list_lock);
Chengguang Xue327ce02018-02-24 18:35:29 +0800339 } else {
340 spin_lock(&mdsc->caps_list_lock);
341 if (mdsc->caps_avail_count) {
342 BUG_ON(list_empty(&mdsc->caps_list));
343
344 mdsc->caps_avail_count--;
345 mdsc->caps_use_count++;
346 cap = list_first_entry(&mdsc->caps_list,
347 struct ceph_cap, caps_item);
348 list_del(&cap->caps_item);
349
350 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
351 mdsc->caps_reserve_count + mdsc->caps_avail_count);
352 }
353 spin_unlock(&mdsc->caps_list_lock);
Sage Weil443b3762010-06-29 09:28:39 -0700354 }
Chengguang Xue327ce02018-02-24 18:35:29 +0800355
Sage Weil443b3762010-06-29 09:28:39 -0700356 return cap;
357 }
Sage Weila8599bd2009-10-06 11:31:12 -0700358
Yehuda Sadeh37151662010-06-17 16:16:12 -0700359 spin_lock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700360 dout("get_cap ctx=%p (%d) %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700361 ctx, ctx->count, mdsc->caps_total_count, mdsc->caps_use_count,
362 mdsc->caps_reserve_count, mdsc->caps_avail_count);
Sage Weila8599bd2009-10-06 11:31:12 -0700363 BUG_ON(!ctx->count);
Yehuda Sadeh37151662010-06-17 16:16:12 -0700364 BUG_ON(ctx->count > mdsc->caps_reserve_count);
365 BUG_ON(list_empty(&mdsc->caps_list));
Sage Weila8599bd2009-10-06 11:31:12 -0700366
367 ctx->count--;
Yan, Zhengfe330322019-02-01 14:57:15 +0800368 ctx->used++;
Yehuda Sadeh37151662010-06-17 16:16:12 -0700369 mdsc->caps_reserve_count--;
370 mdsc->caps_use_count++;
Sage Weila8599bd2009-10-06 11:31:12 -0700371
Yehuda Sadeh37151662010-06-17 16:16:12 -0700372 cap = list_first_entry(&mdsc->caps_list, struct ceph_cap, caps_item);
Sage Weila8599bd2009-10-06 11:31:12 -0700373 list_del(&cap->caps_item);
374
Yehuda Sadeh37151662010-06-17 16:16:12 -0700375 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
376 mdsc->caps_reserve_count + mdsc->caps_avail_count);
377 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700378 return cap;
379}
380
Yehuda Sadeh37151662010-06-17 16:16:12 -0700381void ceph_put_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap)
Sage Weila8599bd2009-10-06 11:31:12 -0700382{
Yehuda Sadeh37151662010-06-17 16:16:12 -0700383 spin_lock(&mdsc->caps_list_lock);
Sage Weil7c1332b2010-02-16 11:39:45 -0800384 dout("put_cap %p %d = %d used + %d resv + %d avail\n",
Yehuda Sadeh37151662010-06-17 16:16:12 -0700385 cap, mdsc->caps_total_count, mdsc->caps_use_count,
386 mdsc->caps_reserve_count, mdsc->caps_avail_count);
387 mdsc->caps_use_count--;
Sage Weila8599bd2009-10-06 11:31:12 -0700388 /*
Sage Weil85ccce42010-02-17 10:02:43 -0800389 * Keep some preallocated caps around (ceph_min_count), to
390 * avoid lots of free/alloc churn.
Sage Weila8599bd2009-10-06 11:31:12 -0700391 */
Yehuda Sadeh37151662010-06-17 16:16:12 -0700392 if (mdsc->caps_avail_count >= mdsc->caps_reserve_count +
393 mdsc->caps_min_count) {
394 mdsc->caps_total_count--;
Sage Weila8599bd2009-10-06 11:31:12 -0700395 kmem_cache_free(ceph_cap_cachep, cap);
396 } else {
Yehuda Sadeh37151662010-06-17 16:16:12 -0700397 mdsc->caps_avail_count++;
398 list_add(&cap->caps_item, &mdsc->caps_list);
Sage Weila8599bd2009-10-06 11:31:12 -0700399 }
400
Yehuda Sadeh37151662010-06-17 16:16:12 -0700401 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
402 mdsc->caps_reserve_count + mdsc->caps_avail_count);
403 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700404}
405
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700406void ceph_reservation_status(struct ceph_fs_client *fsc,
Sage Weil85ccce42010-02-17 10:02:43 -0800407 int *total, int *avail, int *used, int *reserved,
408 int *min)
Sage Weila8599bd2009-10-06 11:31:12 -0700409{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700410 struct ceph_mds_client *mdsc = fsc->mdsc;
Yehuda Sadeh37151662010-06-17 16:16:12 -0700411
Chengguang Xub8840142018-02-23 17:09:38 +0800412 spin_lock(&mdsc->caps_list_lock);
413
Sage Weila8599bd2009-10-06 11:31:12 -0700414 if (total)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700415 *total = mdsc->caps_total_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700416 if (avail)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700417 *avail = mdsc->caps_avail_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700418 if (used)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700419 *used = mdsc->caps_use_count;
Sage Weila8599bd2009-10-06 11:31:12 -0700420 if (reserved)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700421 *reserved = mdsc->caps_reserve_count;
Sage Weil85ccce42010-02-17 10:02:43 -0800422 if (min)
Yehuda Sadeh37151662010-06-17 16:16:12 -0700423 *min = mdsc->caps_min_count;
Chengguang Xub8840142018-02-23 17:09:38 +0800424
425 spin_unlock(&mdsc->caps_list_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700426}
427
428/*
429 * Find ceph_cap for given mds, if any.
430 *
Sage Weilbe655592011-11-30 09:47:09 -0800431 * Called with i_ceph_lock held.
Sage Weila8599bd2009-10-06 11:31:12 -0700432 */
433static struct ceph_cap *__get_cap_for_mds(struct ceph_inode_info *ci, int mds)
434{
435 struct ceph_cap *cap;
436 struct rb_node *n = ci->i_caps.rb_node;
437
438 while (n) {
439 cap = rb_entry(n, struct ceph_cap, ci_node);
440 if (mds < cap->mds)
441 n = n->rb_left;
442 else if (mds > cap->mds)
443 n = n->rb_right;
444 else
445 return cap;
446 }
447 return NULL;
448}
449
Greg Farnum2bc50252010-06-30 12:44:34 -0700450struct ceph_cap *ceph_get_cap_for_mds(struct ceph_inode_info *ci, int mds)
451{
452 struct ceph_cap *cap;
453
Sage Weilbe655592011-11-30 09:47:09 -0800454 spin_lock(&ci->i_ceph_lock);
Greg Farnum2bc50252010-06-30 12:44:34 -0700455 cap = __get_cap_for_mds(ci, mds);
Sage Weilbe655592011-11-30 09:47:09 -0800456 spin_unlock(&ci->i_ceph_lock);
Greg Farnum2bc50252010-06-30 12:44:34 -0700457 return cap;
458}
459
Sage Weila8599bd2009-10-06 11:31:12 -0700460/*
Sage Weilbe655592011-11-30 09:47:09 -0800461 * Called under i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -0700462 */
463static void __insert_cap_node(struct ceph_inode_info *ci,
464 struct ceph_cap *new)
465{
466 struct rb_node **p = &ci->i_caps.rb_node;
467 struct rb_node *parent = NULL;
468 struct ceph_cap *cap = NULL;
469
470 while (*p) {
471 parent = *p;
472 cap = rb_entry(parent, struct ceph_cap, ci_node);
473 if (new->mds < cap->mds)
474 p = &(*p)->rb_left;
475 else if (new->mds > cap->mds)
476 p = &(*p)->rb_right;
477 else
478 BUG();
479 }
480
481 rb_link_node(&new->ci_node, parent, p);
482 rb_insert_color(&new->ci_node, &ci->i_caps);
483}
484
485/*
486 * (re)set cap hold timeouts, which control the delayed release
487 * of unused caps back to the MDS. Should be called on cap use.
488 */
489static void __cap_set_timeouts(struct ceph_mds_client *mdsc,
490 struct ceph_inode_info *ci)
491{
Yan, Zhengfe330322019-02-01 14:57:15 +0800492 struct ceph_mount_options *opt = mdsc->fsc->mount_options;
Sage Weila8599bd2009-10-06 11:31:12 -0700493 ci->i_hold_caps_max = round_jiffies(jiffies +
Yan, Zhengfe330322019-02-01 14:57:15 +0800494 opt->caps_wanted_delay_max * HZ);
Yan, Zhenga0d93e32020-03-05 20:21:01 +0800495 dout("__cap_set_timeouts %p %lu\n", &ci->vfs_inode,
496 ci->i_hold_caps_max - jiffies);
Sage Weila8599bd2009-10-06 11:31:12 -0700497}
498
499/*
500 * (Re)queue cap at the end of the delayed cap release list.
501 *
502 * If I_FLUSH is set, leave the inode at the front of the list.
503 *
Sage Weilbe655592011-11-30 09:47:09 -0800504 * Caller holds i_ceph_lock
Sage Weila8599bd2009-10-06 11:31:12 -0700505 * -> we take mdsc->cap_delay_lock
506 */
507static void __cap_delay_requeue(struct ceph_mds_client *mdsc,
Yan, Zhenga0d93e32020-03-05 20:21:01 +0800508 struct ceph_inode_info *ci)
Sage Weila8599bd2009-10-06 11:31:12 -0700509{
Jeff Layton891f3f52020-01-14 15:06:40 -0500510 dout("__cap_delay_requeue %p flags 0x%lx at %lu\n", &ci->vfs_inode,
Sage Weila8599bd2009-10-06 11:31:12 -0700511 ci->i_ceph_flags, ci->i_hold_caps_max);
512 if (!mdsc->stopping) {
513 spin_lock(&mdsc->cap_delay_lock);
514 if (!list_empty(&ci->i_cap_delay_list)) {
515 if (ci->i_ceph_flags & CEPH_I_FLUSH)
516 goto no_change;
517 list_del_init(&ci->i_cap_delay_list);
518 }
Yan, Zhenga0d93e32020-03-05 20:21:01 +0800519 __cap_set_timeouts(mdsc, ci);
Sage Weila8599bd2009-10-06 11:31:12 -0700520 list_add_tail(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
521no_change:
522 spin_unlock(&mdsc->cap_delay_lock);
523 }
524}
525
526/*
527 * Queue an inode for immediate writeback. Mark inode with I_FLUSH,
528 * indicating we should send a cap message to flush dirty metadata
529 * asap, and move to the front of the delayed cap list.
530 */
531static void __cap_delay_requeue_front(struct ceph_mds_client *mdsc,
532 struct ceph_inode_info *ci)
533{
534 dout("__cap_delay_requeue_front %p\n", &ci->vfs_inode);
535 spin_lock(&mdsc->cap_delay_lock);
536 ci->i_ceph_flags |= CEPH_I_FLUSH;
537 if (!list_empty(&ci->i_cap_delay_list))
538 list_del_init(&ci->i_cap_delay_list);
539 list_add(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
540 spin_unlock(&mdsc->cap_delay_lock);
541}
542
543/*
544 * Cancel delayed work on cap.
545 *
Sage Weilbe655592011-11-30 09:47:09 -0800546 * Caller must hold i_ceph_lock.
Sage Weila8599bd2009-10-06 11:31:12 -0700547 */
548static void __cap_delay_cancel(struct ceph_mds_client *mdsc,
549 struct ceph_inode_info *ci)
550{
551 dout("__cap_delay_cancel %p\n", &ci->vfs_inode);
552 if (list_empty(&ci->i_cap_delay_list))
553 return;
554 spin_lock(&mdsc->cap_delay_lock);
555 list_del_init(&ci->i_cap_delay_list);
556 spin_unlock(&mdsc->cap_delay_lock);
557}
558
Jeff Layton785892f2020-01-02 07:11:38 -0500559/* Common issue checks for add_cap, handle_cap_grant. */
Sage Weila8599bd2009-10-06 11:31:12 -0700560static void __check_cap_issue(struct ceph_inode_info *ci, struct ceph_cap *cap,
561 unsigned issued)
562{
563 unsigned had = __ceph_caps_issued(ci, NULL);
564
Jeff Layton785892f2020-01-02 07:11:38 -0500565 lockdep_assert_held(&ci->i_ceph_lock);
566
Sage Weila8599bd2009-10-06 11:31:12 -0700567 /*
568 * Each time we receive FILE_CACHE anew, we increment
569 * i_rdcache_gen.
570 */
Yan, Zheng525d15e2019-05-11 17:27:59 +0800571 if (S_ISREG(ci->vfs_inode.i_mode) &&
572 (issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400573 (had & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0) {
Sage Weila8599bd2009-10-06 11:31:12 -0700574 ci->i_rdcache_gen++;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400575 }
Sage Weila8599bd2009-10-06 11:31:12 -0700576
577 /*
Yan, Zheng15b51bd2017-09-06 10:15:16 +0800578 * If FILE_SHARED is newly issued, mark dir not complete. We don't
579 * know what happened to this directory while we didn't have the cap.
580 * If FILE_SHARED is being revoked, also mark dir not complete. It
581 * stops on-going cached readdir.
Sage Weila8599bd2009-10-06 11:31:12 -0700582 */
Yan, Zheng15b51bd2017-09-06 10:15:16 +0800583 if ((issued & CEPH_CAP_FILE_SHARED) != (had & CEPH_CAP_FILE_SHARED)) {
584 if (issued & CEPH_CAP_FILE_SHARED)
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800585 atomic_inc(&ci->i_shared_gen);
Yan, Zhenga8673d62013-02-18 16:38:14 +0800586 if (S_ISDIR(ci->vfs_inode.i_mode)) {
587 dout(" marking %p NOT complete\n", &ci->vfs_inode);
Yan, Zheng2f276c52013-03-13 19:44:32 +0800588 __ceph_dir_clear_complete(ci);
Yan, Zhenga8673d62013-02-18 16:38:14 +0800589 }
Sage Weila8599bd2009-10-06 11:31:12 -0700590 }
Jeff Layton785892f2020-01-02 07:11:38 -0500591
592 /* Wipe saved layout if we're losing DIR_CREATE caps */
593 if (S_ISDIR(ci->vfs_inode.i_mode) && (had & CEPH_CAP_DIR_CREATE) &&
594 !(issued & CEPH_CAP_DIR_CREATE)) {
595 ceph_put_string(rcu_dereference_raw(ci->i_cached_layout.pool_ns));
596 memset(&ci->i_cached_layout, 0, sizeof(ci->i_cached_layout));
597 }
Sage Weila8599bd2009-10-06 11:31:12 -0700598}
599
600/*
601 * Add a capability under the given MDS session.
602 *
Jeff Layton354c63a2019-07-19 09:41:02 -0400603 * Caller should hold session snap_rwsem (read) and ci->i_ceph_lock
Sage Weila8599bd2009-10-06 11:31:12 -0700604 *
605 * @fmode is the open file mode, if we are opening a file, otherwise
606 * it is < 0. (This is so we can atomically add the cap and add an
607 * open file reference to it.)
608 */
Yan, Zhengd9df2782014-04-18 09:57:11 +0800609void ceph_add_cap(struct inode *inode,
610 struct ceph_mds_session *session, u64 cap_id,
Yan, Zheng135e6712020-03-05 20:21:02 +0800611 unsigned issued, unsigned wanted,
Yan, Zhengd9df2782014-04-18 09:57:11 +0800612 unsigned seq, unsigned mseq, u64 realmino, int flags,
613 struct ceph_cap **new_cap)
Sage Weila8599bd2009-10-06 11:31:12 -0700614{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700615 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -0700616 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weila8599bd2009-10-06 11:31:12 -0700617 struct ceph_cap *cap;
618 int mds = session->s_mds;
619 int actual_wanted;
Jeff Layton606d1022019-07-22 13:12:01 -0400620 u32 gen;
Sage Weila8599bd2009-10-06 11:31:12 -0700621
Jeff Layton354c63a2019-07-19 09:41:02 -0400622 lockdep_assert_held(&ci->i_ceph_lock);
623
Sage Weila8599bd2009-10-06 11:31:12 -0700624 dout("add_cap %p mds%d cap %llx %s seq %d\n", inode,
625 session->s_mds, cap_id, ceph_cap_string(issued), seq);
626
Jeff Layton606d1022019-07-22 13:12:01 -0400627 spin_lock(&session->s_gen_ttl_lock);
628 gen = session->s_cap_gen;
629 spin_unlock(&session->s_gen_ttl_lock);
630
Sage Weila8599bd2009-10-06 11:31:12 -0700631 cap = __get_cap_for_mds(ci, mds);
632 if (!cap) {
Yan, Zhengd9df2782014-04-18 09:57:11 +0800633 cap = *new_cap;
634 *new_cap = NULL;
Sage Weila8599bd2009-10-06 11:31:12 -0700635
636 cap->issued = 0;
637 cap->implemented = 0;
638 cap->mds = mds;
639 cap->mds_wanted = 0;
Yan, Zheng964266c2013-02-27 09:26:09 +0800640 cap->mseq = 0;
Sage Weila8599bd2009-10-06 11:31:12 -0700641
642 cap->ci = ci;
643 __insert_cap_node(ci, cap);
644
Sage Weila8599bd2009-10-06 11:31:12 -0700645 /* add to session cap list */
646 cap->session = session;
647 spin_lock(&session->s_cap_lock);
648 list_add_tail(&cap->session_caps, &session->s_caps);
649 session->s_nr_caps++;
650 spin_unlock(&session->s_cap_lock);
Yan, Zheng11df2df2013-11-24 14:44:38 +0800651 } else {
Yan, Zheng32f65112019-01-23 11:20:00 +0800652 spin_lock(&session->s_cap_lock);
653 list_move_tail(&cap->session_caps, &session->s_caps);
654 spin_unlock(&session->s_cap_lock);
655
Jeff Layton606d1022019-07-22 13:12:01 -0400656 if (cap->cap_gen < gen)
Yan, Zhengd2f8bb22018-12-10 16:35:09 +0800657 cap->issued = cap->implemented = CEPH_CAP_PIN;
658
Yan, Zheng11df2df2013-11-24 14:44:38 +0800659 /*
660 * auth mds of the inode changed. we received the cap export
661 * message, but still haven't received the cap import message.
662 * handle_cap_export() updated the new auth MDS' cap.
663 *
664 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing
665 * a message that was send before the cap import message. So
666 * don't remove caps.
667 */
668 if (ceph_seq_cmp(seq, cap->seq) <= 0) {
669 WARN_ON(cap != ci->i_auth_cap);
670 WARN_ON(cap->cap_id != cap_id);
671 seq = cap->seq;
672 mseq = cap->mseq;
673 issued |= cap->issued;
674 flags |= CEPH_CAP_FLAG_AUTH;
675 }
676 }
Sage Weila8599bd2009-10-06 11:31:12 -0700677
Yan, Zheng7d9c9192017-12-19 18:00:54 +0800678 if (!ci->i_snap_realm ||
679 ((flags & CEPH_CAP_FLAG_AUTH) &&
680 realmino != (u64)-1 && ci->i_snap_realm->ino != realmino)) {
Sage Weila8599bd2009-10-06 11:31:12 -0700681 /*
682 * add this inode to the appropriate snap realm
683 */
684 struct ceph_snap_realm *realm = ceph_lookup_snap_realm(mdsc,
685 realmino);
686 if (realm) {
Yan, Zheng7d9c9192017-12-19 18:00:54 +0800687 struct ceph_snap_realm *oldrealm = ci->i_snap_realm;
688 if (oldrealm) {
689 spin_lock(&oldrealm->inodes_with_caps_lock);
690 list_del_init(&ci->i_snap_realm_item);
691 spin_unlock(&oldrealm->inodes_with_caps_lock);
692 }
693
Sage Weila8599bd2009-10-06 11:31:12 -0700694 spin_lock(&realm->inodes_with_caps_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700695 list_add(&ci->i_snap_realm_item,
696 &realm->inodes_with_caps);
Luis Henriquese3161f12018-01-12 17:19:28 +0000697 ci->i_snap_realm = realm;
698 if (realm->ino == ci->i_vino.ino)
699 realm->inode = inode;
Sage Weila8599bd2009-10-06 11:31:12 -0700700 spin_unlock(&realm->inodes_with_caps_lock);
Yan, Zheng7d9c9192017-12-19 18:00:54 +0800701
702 if (oldrealm)
703 ceph_put_snap_realm(mdsc, oldrealm);
Sage Weila8599bd2009-10-06 11:31:12 -0700704 } else {
705 pr_err("ceph_add_cap: couldn't find snap realm %llx\n",
706 realmino);
Sage Weilb8cd07e2010-07-16 12:00:02 -0700707 WARN_ON(!realm);
Sage Weila8599bd2009-10-06 11:31:12 -0700708 }
709 }
710
711 __check_cap_issue(ci, cap, issued);
712
713 /*
714 * If we are issued caps we don't want, or the mds' wanted
715 * value appears to be off, queue a check so we'll release
716 * later and/or update the mds wanted value.
717 */
718 actual_wanted = __ceph_caps_wanted(ci);
719 if ((wanted & ~actual_wanted) ||
720 (issued & ~actual_wanted & CEPH_CAP_ANY_WR)) {
721 dout(" issued %s, mds wanted %s, actual %s, queueing\n",
722 ceph_cap_string(issued), ceph_cap_string(wanted),
723 ceph_cap_string(actual_wanted));
Yan, Zhenga0d93e32020-03-05 20:21:01 +0800724 __cap_delay_requeue(mdsc, ci);
Sage Weila8599bd2009-10-06 11:31:12 -0700725 }
726
Yan, Zhengb8c2f3a2013-05-31 16:37:11 +0800727 if (flags & CEPH_CAP_FLAG_AUTH) {
Markus Elfringd37b1d92017-08-20 20:22:02 +0200728 if (!ci->i_auth_cap ||
Yan, Zhengd9ffc4f2014-03-18 10:15:29 +0800729 ceph_seq_cmp(ci->i_auth_cap->mseq, mseq) < 0) {
Yan, Zhengb8c2f3a2013-05-31 16:37:11 +0800730 ci->i_auth_cap = cap;
Yan, Zhengd9ffc4f2014-03-18 10:15:29 +0800731 cap->mds_wanted = wanted;
732 }
Yan, Zheng11df2df2013-11-24 14:44:38 +0800733 } else {
734 WARN_ON(ci->i_auth_cap == cap);
Yan, Zheng8a92a112013-01-04 14:28:07 +0800735 }
Sage Weila8599bd2009-10-06 11:31:12 -0700736
737 dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
738 inode, ceph_vinop(inode), cap, ceph_cap_string(issued),
739 ceph_cap_string(issued|cap->issued), seq, mds);
740 cap->cap_id = cap_id;
741 cap->issued = issued;
742 cap->implemented |= issued;
Yan, Zhengd1b87802013-11-13 14:47:19 +0800743 if (ceph_seq_cmp(mseq, cap->mseq) > 0)
Yan, Zheng964266c2013-02-27 09:26:09 +0800744 cap->mds_wanted = wanted;
745 else
746 cap->mds_wanted |= wanted;
Sage Weila8599bd2009-10-06 11:31:12 -0700747 cap->seq = seq;
748 cap->issue_seq = seq;
749 cap->mseq = mseq;
Jeff Layton606d1022019-07-22 13:12:01 -0400750 cap->cap_gen = gen;
Sage Weila8599bd2009-10-06 11:31:12 -0700751}
752
753/*
754 * Return true if cap has not timed out and belongs to the current
755 * generation of the MDS session (i.e. has not gone 'stale' due to
756 * us losing touch with the mds).
757 */
758static int __cap_is_valid(struct ceph_cap *cap)
759{
760 unsigned long ttl;
Sage Weilcdac8302009-11-10 16:02:23 -0800761 u32 gen;
Sage Weila8599bd2009-10-06 11:31:12 -0700762
Alex Elderd8fb02a2012-01-12 17:48:10 -0800763 spin_lock(&cap->session->s_gen_ttl_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700764 gen = cap->session->s_cap_gen;
765 ttl = cap->session->s_cap_ttl;
Alex Elderd8fb02a2012-01-12 17:48:10 -0800766 spin_unlock(&cap->session->s_gen_ttl_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700767
Sage Weil685f9a5d2009-11-09 12:05:48 -0800768 if (cap->cap_gen < gen || time_after_eq(jiffies, ttl)) {
Sage Weila8599bd2009-10-06 11:31:12 -0700769 dout("__cap_is_valid %p cap %p issued %s "
770 "but STALE (gen %u vs %u)\n", &cap->ci->vfs_inode,
Sage Weil685f9a5d2009-11-09 12:05:48 -0800771 cap, ceph_cap_string(cap->issued), cap->cap_gen, gen);
Sage Weila8599bd2009-10-06 11:31:12 -0700772 return 0;
773 }
774
775 return 1;
776}
777
778/*
779 * Return set of valid cap bits issued to us. Note that caps time
780 * out, and may be invalidated in bulk if the client session times out
781 * and session->s_cap_gen is bumped.
782 */
783int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented)
784{
Yan, Zhengd9df2782014-04-18 09:57:11 +0800785 int have = ci->i_snap_caps;
Sage Weila8599bd2009-10-06 11:31:12 -0700786 struct ceph_cap *cap;
787 struct rb_node *p;
788
789 if (implemented)
790 *implemented = 0;
791 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
792 cap = rb_entry(p, struct ceph_cap, ci_node);
793 if (!__cap_is_valid(cap))
794 continue;
795 dout("__ceph_caps_issued %p cap %p issued %s\n",
796 &ci->vfs_inode, cap, ceph_cap_string(cap->issued));
797 have |= cap->issued;
798 if (implemented)
799 *implemented |= cap->implemented;
800 }
Yan, Zhengb1530f52013-07-02 12:40:20 +0800801 /*
802 * exclude caps issued by non-auth MDS, but are been revoking
803 * by the auth MDS. The non-auth MDS should be revoking/exporting
804 * these caps, but the message is delayed.
805 */
806 if (ci->i_auth_cap) {
807 cap = ci->i_auth_cap;
808 have &= ~cap->implemented | cap->issued;
809 }
Sage Weila8599bd2009-10-06 11:31:12 -0700810 return have;
811}
812
813/*
814 * Get cap bits issued by caps other than @ocap
815 */
816int __ceph_caps_issued_other(struct ceph_inode_info *ci, struct ceph_cap *ocap)
817{
818 int have = ci->i_snap_caps;
819 struct ceph_cap *cap;
820 struct rb_node *p;
821
822 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
823 cap = rb_entry(p, struct ceph_cap, ci_node);
824 if (cap == ocap)
825 continue;
826 if (!__cap_is_valid(cap))
827 continue;
828 have |= cap->issued;
829 }
830 return have;
831}
832
833/*
834 * Move a cap to the end of the LRU (oldest caps at list head, newest
835 * at list tail).
836 */
837static void __touch_cap(struct ceph_cap *cap)
838{
839 struct ceph_mds_session *s = cap->session;
840
Sage Weila8599bd2009-10-06 11:31:12 -0700841 spin_lock(&s->s_cap_lock);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200842 if (!s->s_cap_iterator) {
Sage Weil5dacf092009-12-21 20:40:34 -0800843 dout("__touch_cap %p cap %p mds%d\n", &cap->ci->vfs_inode, cap,
844 s->s_mds);
845 list_move_tail(&cap->session_caps, &s->s_caps);
846 } else {
847 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
848 &cap->ci->vfs_inode, cap, s->s_mds);
849 }
Sage Weila8599bd2009-10-06 11:31:12 -0700850 spin_unlock(&s->s_cap_lock);
851}
852
853/*
854 * Check if we hold the given mask. If so, move the cap(s) to the
855 * front of their respective LRUs. (This is the preferred way for
856 * callers to check for caps they want.)
857 */
858int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int touch)
859{
860 struct ceph_cap *cap;
861 struct rb_node *p;
862 int have = ci->i_snap_caps;
863
864 if ((have & mask) == mask) {
Jeff Layton5ddc61f2019-04-23 13:40:02 -0400865 dout("__ceph_caps_issued_mask ino 0x%lx snap issued %s"
866 " (mask %s)\n", ci->vfs_inode.i_ino,
Sage Weila8599bd2009-10-06 11:31:12 -0700867 ceph_cap_string(have),
868 ceph_cap_string(mask));
869 return 1;
870 }
871
872 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
873 cap = rb_entry(p, struct ceph_cap, ci_node);
874 if (!__cap_is_valid(cap))
875 continue;
876 if ((cap->issued & mask) == mask) {
Jeff Layton5ddc61f2019-04-23 13:40:02 -0400877 dout("__ceph_caps_issued_mask ino 0x%lx cap %p issued %s"
878 " (mask %s)\n", ci->vfs_inode.i_ino, cap,
Sage Weila8599bd2009-10-06 11:31:12 -0700879 ceph_cap_string(cap->issued),
880 ceph_cap_string(mask));
881 if (touch)
882 __touch_cap(cap);
883 return 1;
884 }
885
886 /* does a combination of caps satisfy mask? */
887 have |= cap->issued;
888 if ((have & mask) == mask) {
Jeff Layton5ddc61f2019-04-23 13:40:02 -0400889 dout("__ceph_caps_issued_mask ino 0x%lx combo issued %s"
890 " (mask %s)\n", ci->vfs_inode.i_ino,
Sage Weila8599bd2009-10-06 11:31:12 -0700891 ceph_cap_string(cap->issued),
892 ceph_cap_string(mask));
893 if (touch) {
894 struct rb_node *q;
895
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300896 /* touch this + preceding caps */
Sage Weila8599bd2009-10-06 11:31:12 -0700897 __touch_cap(cap);
898 for (q = rb_first(&ci->i_caps); q != p;
899 q = rb_next(q)) {
900 cap = rb_entry(q, struct ceph_cap,
901 ci_node);
902 if (!__cap_is_valid(cap))
903 continue;
Xiubo Li9f8b72b2019-12-16 00:12:07 -0500904 if (cap->issued & mask)
905 __touch_cap(cap);
Sage Weila8599bd2009-10-06 11:31:12 -0700906 }
907 }
908 return 1;
909 }
910 }
911
912 return 0;
913}
914
915/*
916 * Return true if mask caps are currently being revoked by an MDS.
917 */
Yan, Zheng6ee6b9532013-07-02 12:40:21 +0800918int __ceph_caps_revoking_other(struct ceph_inode_info *ci,
919 struct ceph_cap *ocap, int mask)
920{
921 struct ceph_cap *cap;
922 struct rb_node *p;
923
924 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
925 cap = rb_entry(p, struct ceph_cap, ci_node);
Yan, Zheng9563f882013-11-22 13:50:45 +0800926 if (cap != ocap &&
Yan, Zheng6ee6b9532013-07-02 12:40:21 +0800927 (cap->implemented & ~cap->issued & mask))
928 return 1;
929 }
930 return 0;
931}
932
Sage Weila8599bd2009-10-06 11:31:12 -0700933int ceph_caps_revoking(struct ceph_inode_info *ci, int mask)
934{
935 struct inode *inode = &ci->vfs_inode;
Yan, Zheng6ee6b9532013-07-02 12:40:21 +0800936 int ret;
Sage Weila8599bd2009-10-06 11:31:12 -0700937
Sage Weilbe655592011-11-30 09:47:09 -0800938 spin_lock(&ci->i_ceph_lock);
Yan, Zheng6ee6b9532013-07-02 12:40:21 +0800939 ret = __ceph_caps_revoking_other(ci, NULL, mask);
Sage Weilbe655592011-11-30 09:47:09 -0800940 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -0700941 dout("ceph_caps_revoking %p %s = %d\n", inode,
942 ceph_cap_string(mask), ret);
943 return ret;
944}
945
946int __ceph_caps_used(struct ceph_inode_info *ci)
947{
948 int used = 0;
949 if (ci->i_pin_ref)
950 used |= CEPH_CAP_PIN;
951 if (ci->i_rd_ref)
952 used |= CEPH_CAP_FILE_RD;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800953 if (ci->i_rdcache_ref ||
Yan, Zheng525d15e2019-05-11 17:27:59 +0800954 (S_ISREG(ci->vfs_inode.i_mode) &&
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800955 ci->vfs_inode.i_data.nrpages))
Sage Weila8599bd2009-10-06 11:31:12 -0700956 used |= CEPH_CAP_FILE_CACHE;
957 if (ci->i_wr_ref)
958 used |= CEPH_CAP_FILE_WR;
Henry C Changd3d07202011-05-11 10:29:54 +0000959 if (ci->i_wb_ref || ci->i_wrbuffer_ref)
Sage Weila8599bd2009-10-06 11:31:12 -0700960 used |= CEPH_CAP_FILE_BUFFER;
Jeff Laytonf85122a2019-04-02 08:04:30 -0400961 if (ci->i_fx_ref)
962 used |= CEPH_CAP_FILE_EXCL;
Sage Weila8599bd2009-10-06 11:31:12 -0700963 return used;
964}
965
Yan, Zheng719a2512020-03-05 20:21:00 +0800966#define FMODE_WAIT_BIAS 1000
967
Sage Weila8599bd2009-10-06 11:31:12 -0700968/*
969 * wanted, by virtue of open file modes
970 */
971int __ceph_caps_file_wanted(struct ceph_inode_info *ci)
972{
Yan, Zheng719a2512020-03-05 20:21:00 +0800973 const int PIN_SHIFT = ffs(CEPH_FILE_MODE_PIN);
974 const int RD_SHIFT = ffs(CEPH_FILE_MODE_RD);
975 const int WR_SHIFT = ffs(CEPH_FILE_MODE_WR);
976 const int LAZY_SHIFT = ffs(CEPH_FILE_MODE_LAZY);
977 struct ceph_mount_options *opt =
978 ceph_inode_to_client(&ci->vfs_inode)->mount_options;
979 unsigned long used_cutoff = jiffies - opt->caps_wanted_delay_max * HZ;
980 unsigned long idle_cutoff = jiffies - opt->caps_wanted_delay_min * HZ;
981
982 if (S_ISDIR(ci->vfs_inode.i_mode)) {
983 int want = 0;
984
985 /* use used_cutoff here, to keep dir's wanted caps longer */
986 if (ci->i_nr_by_mode[RD_SHIFT] > 0 ||
987 time_after(ci->i_last_rd, used_cutoff))
988 want |= CEPH_CAP_ANY_SHARED;
989
990 if (ci->i_nr_by_mode[WR_SHIFT] > 0 ||
991 time_after(ci->i_last_wr, used_cutoff)) {
992 want |= CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL;
993 if (opt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS)
994 want |= CEPH_CAP_ANY_DIR_OPS;
995 }
996
997 if (want || ci->i_nr_by_mode[PIN_SHIFT] > 0)
998 want |= CEPH_CAP_PIN;
999
1000 return want;
1001 } else {
1002 int bits = 0;
1003
1004 if (ci->i_nr_by_mode[RD_SHIFT] > 0) {
1005 if (ci->i_nr_by_mode[RD_SHIFT] >= FMODE_WAIT_BIAS ||
1006 time_after(ci->i_last_rd, used_cutoff))
1007 bits |= 1 << RD_SHIFT;
1008 } else if (time_after(ci->i_last_rd, idle_cutoff)) {
1009 bits |= 1 << RD_SHIFT;
1010 }
1011
1012 if (ci->i_nr_by_mode[WR_SHIFT] > 0) {
1013 if (ci->i_nr_by_mode[WR_SHIFT] >= FMODE_WAIT_BIAS ||
1014 time_after(ci->i_last_wr, used_cutoff))
1015 bits |= 1 << WR_SHIFT;
1016 } else if (time_after(ci->i_last_wr, idle_cutoff)) {
1017 bits |= 1 << WR_SHIFT;
1018 }
1019
1020 /* check lazyio only when read/write is wanted */
1021 if ((bits & (CEPH_FILE_MODE_RDWR << 1)) &&
1022 ci->i_nr_by_mode[LAZY_SHIFT] > 0)
1023 bits |= 1 << LAZY_SHIFT;
1024
1025 return bits ? ceph_caps_for_mode(bits >> 1) : 0;
Yan, Zheng774a6a12016-06-06 16:01:39 +08001026 }
Sage Weila8599bd2009-10-06 11:31:12 -07001027}
1028
1029/*
Yan, Zheng525d15e2019-05-11 17:27:59 +08001030 * wanted, by virtue of open file modes AND cap refs (buffered/cached data)
1031 */
1032int __ceph_caps_wanted(struct ceph_inode_info *ci)
1033{
1034 int w = __ceph_caps_file_wanted(ci) | __ceph_caps_used(ci);
Jeff Laytona25949b2020-02-18 14:12:45 -05001035 if (S_ISDIR(ci->vfs_inode.i_mode)) {
1036 /* we want EXCL if holding caps of dir ops */
1037 if (w & CEPH_CAP_ANY_DIR_OPS)
1038 w |= CEPH_CAP_FILE_EXCL;
1039 } else {
Yan, Zheng525d15e2019-05-11 17:27:59 +08001040 /* we want EXCL if dirty data */
1041 if (w & CEPH_CAP_FILE_BUFFER)
1042 w |= CEPH_CAP_FILE_EXCL;
1043 }
1044 return w;
1045}
1046
1047/*
Sage Weila8599bd2009-10-06 11:31:12 -07001048 * Return caps we have registered with the MDS(s) as 'wanted'.
1049 */
Yan, Zhengc1944fe2017-01-29 22:15:47 +08001050int __ceph_caps_mds_wanted(struct ceph_inode_info *ci, bool check)
Sage Weila8599bd2009-10-06 11:31:12 -07001051{
1052 struct ceph_cap *cap;
1053 struct rb_node *p;
1054 int mds_wanted = 0;
1055
1056 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1057 cap = rb_entry(p, struct ceph_cap, ci_node);
Yan, Zhengc1944fe2017-01-29 22:15:47 +08001058 if (check && !__cap_is_valid(cap))
Sage Weila8599bd2009-10-06 11:31:12 -07001059 continue;
Yan, Zhenga2550602014-03-08 09:51:45 +08001060 if (cap == ci->i_auth_cap)
1061 mds_wanted |= cap->mds_wanted;
1062 else
1063 mds_wanted |= (cap->mds_wanted & ~CEPH_CAP_ANY_FILE_WR);
Sage Weila8599bd2009-10-06 11:31:12 -07001064 }
1065 return mds_wanted;
1066}
1067
Yan, Zheng9215aee2013-11-30 12:47:41 +08001068int ceph_is_any_caps(struct inode *inode)
1069{
1070 struct ceph_inode_info *ci = ceph_inode(inode);
1071 int ret;
1072
1073 spin_lock(&ci->i_ceph_lock);
Xiubo Libd84fbc2019-12-03 03:00:51 -05001074 ret = __ceph_is_any_real_caps(ci);
Yan, Zheng9215aee2013-11-30 12:47:41 +08001075 spin_unlock(&ci->i_ceph_lock);
1076
1077 return ret;
1078}
1079
Yan, Zhengdb40cc12015-03-23 20:12:20 +08001080static void drop_inode_snap_realm(struct ceph_inode_info *ci)
1081{
1082 struct ceph_snap_realm *realm = ci->i_snap_realm;
1083 spin_lock(&realm->inodes_with_caps_lock);
1084 list_del_init(&ci->i_snap_realm_item);
1085 ci->i_snap_realm_counter++;
1086 ci->i_snap_realm = NULL;
Yan, Zhengd95e6742019-01-10 15:41:09 +08001087 if (realm->ino == ci->i_vino.ino)
1088 realm->inode = NULL;
Yan, Zhengdb40cc12015-03-23 20:12:20 +08001089 spin_unlock(&realm->inodes_with_caps_lock);
1090 ceph_put_snap_realm(ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc,
1091 realm);
1092}
1093
Sage Weila8599bd2009-10-06 11:31:12 -07001094/*
Sage Weilf818a732010-05-11 20:56:31 -07001095 * Remove a cap. Take steps to deal with a racing iterate_session_caps.
1096 *
Sage Weilbe655592011-11-30 09:47:09 -08001097 * caller should hold i_ceph_lock.
Sage Weila6369742010-02-22 13:59:00 -08001098 * caller will not hold session s_mutex if called from destroy_inode.
Sage Weila8599bd2009-10-06 11:31:12 -07001099 */
Yan, Zhenga096b092013-09-22 10:15:58 +08001100void __ceph_remove_cap(struct ceph_cap *cap, bool queue_release)
Sage Weila8599bd2009-10-06 11:31:12 -07001101{
1102 struct ceph_mds_session *session = cap->session;
1103 struct ceph_inode_info *ci = cap->ci;
Cheng Renquan640ef792010-03-26 17:40:33 +08001104 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001105 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
Sage Weilf818a732010-05-11 20:56:31 -07001106 int removed = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001107
1108 dout("__ceph_remove_cap %p from %p\n", cap, &ci->vfs_inode);
1109
Luis Henriquesea60ed62019-10-25 14:05:24 +01001110 /* remove from inode's cap rbtree, and clear auth cap */
1111 rb_erase(&cap->ci_node, &ci->i_caps);
1112 if (ci->i_auth_cap == cap)
1113 ci->i_auth_cap = NULL;
1114
Sage Weil7c1332b2010-02-16 11:39:45 -08001115 /* remove from session list */
1116 spin_lock(&session->s_cap_lock);
1117 if (session->s_cap_iterator == cap) {
1118 /* not yet, we are iterating over this very cap */
1119 dout("__ceph_remove_cap delaying %p removal from session %p\n",
1120 cap, cap->session);
1121 } else {
1122 list_del_init(&cap->session_caps);
1123 session->s_nr_caps--;
1124 cap->session = NULL;
Sage Weilf818a732010-05-11 20:56:31 -07001125 removed = 1;
Sage Weil7c1332b2010-02-16 11:39:45 -08001126 }
Sage Weilf818a732010-05-11 20:56:31 -07001127 /* protect backpointer with s_cap_lock: see iterate_session_caps */
1128 cap->ci = NULL;
Yan, Zheng745a8e32015-05-14 17:22:42 +08001129
1130 /*
1131 * s_cap_reconnect is protected by s_cap_lock. no one changes
1132 * s_cap_gen while session is in the reconnect state.
1133 */
1134 if (queue_release &&
1135 (!session->s_cap_reconnect || cap->cap_gen == session->s_cap_gen)) {
1136 cap->queue_release = 1;
1137 if (removed) {
Yan, Zhenge3ec8d62019-01-14 17:21:19 +08001138 __ceph_queue_cap_release(session, cap);
Yan, Zheng745a8e32015-05-14 17:22:42 +08001139 removed = 0;
1140 }
1141 } else {
1142 cap->queue_release = 0;
1143 }
1144 cap->cap_ino = ci->i_vino.ino;
1145
Sage Weil7c1332b2010-02-16 11:39:45 -08001146 spin_unlock(&session->s_cap_lock);
1147
Sage Weilf818a732010-05-11 20:56:31 -07001148 if (removed)
Yehuda Sadeh37151662010-06-17 16:16:12 -07001149 ceph_put_cap(mdsc, cap);
Sage Weila8599bd2009-10-06 11:31:12 -07001150
Xiubo Libd84fbc2019-12-03 03:00:51 -05001151 if (!__ceph_is_any_real_caps(ci)) {
1152 /* when reconnect denied, we remove session caps forcibly,
1153 * i_wr_ref can be non-zero. If there are ongoing write,
1154 * keep i_snap_realm.
1155 */
1156 if (ci->i_wr_ref == 0 && ci->i_snap_realm)
1157 drop_inode_snap_realm(ci);
Yan, Zhengdb40cc12015-03-23 20:12:20 +08001158
Sage Weila8599bd2009-10-06 11:31:12 -07001159 __cap_delay_cancel(mdsc, ci);
Xiubo Libd84fbc2019-12-03 03:00:51 -05001160 }
Sage Weila8599bd2009-10-06 11:31:12 -07001161}
1162
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001163struct cap_msg_args {
1164 struct ceph_mds_session *session;
1165 u64 ino, cid, follows;
1166 u64 flush_tid, oldest_flush_tid, size, max_size;
1167 u64 xattr_version;
Jeff Layton176c77c2019-06-06 08:06:40 -04001168 u64 change_attr;
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001169 struct ceph_buffer *xattr_buf;
Jeff Laytonec62b892019-05-29 12:23:14 -04001170 struct timespec64 atime, mtime, ctime, btime;
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001171 int op, caps, wanted, dirty;
1172 u32 seq, issue_seq, mseq, time_warp_seq;
Jeff Layton1e4ef0c2016-11-10 07:42:06 -05001173 u32 flags;
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001174 kuid_t uid;
1175 kgid_t gid;
1176 umode_t mode;
1177 bool inline_data;
1178};
1179
Sage Weila8599bd2009-10-06 11:31:12 -07001180/*
1181 * Build and send a cap message to the given MDS.
1182 *
1183 * Caller should be holding s_mutex.
1184 */
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001185static int send_cap_msg(struct cap_msg_args *arg)
Sage Weila8599bd2009-10-06 11:31:12 -07001186{
1187 struct ceph_mds_caps *fc;
1188 struct ceph_msg *msg;
Yan, Zhenge20d2582014-11-14 22:39:13 +08001189 void *p;
1190 size_t extra_len;
Jeff Layton92475f02017-04-13 11:07:04 -04001191 struct ceph_osd_client *osdc = &arg->session->s_mdsc->fsc->client->osdc;
Sage Weila8599bd2009-10-06 11:31:12 -07001192
1193 dout("send_cap_msg %s %llx %llx caps %s wanted %s dirty %s"
Yan, Zhenga2971c82015-06-10 11:09:32 +08001194 " seq %u/%u tid %llu/%llu mseq %u follows %lld size %llu/%llu"
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001195 " xattr_ver %llu xattr_len %d\n", ceph_cap_op_name(arg->op),
1196 arg->cid, arg->ino, ceph_cap_string(arg->caps),
1197 ceph_cap_string(arg->wanted), ceph_cap_string(arg->dirty),
1198 arg->seq, arg->issue_seq, arg->flush_tid, arg->oldest_flush_tid,
1199 arg->mseq, arg->follows, arg->size, arg->max_size,
1200 arg->xattr_version,
1201 arg->xattr_buf ? (int)arg->xattr_buf->vec.iov_len : 0);
Sage Weila8599bd2009-10-06 11:31:12 -07001202
Yan, Zhenga2971c82015-06-10 11:09:32 +08001203 /* flock buffer size + inline version + inline data size +
1204 * osd_epoch_barrier + oldest_flush_tid */
Jeff Layton43b29672016-11-10 07:42:05 -05001205 extra_len = 4 + 8 + 4 + 4 + 8 + 4 + 4 + 4 + 8 + 8 + 4;
Yan, Zhenge20d2582014-11-14 22:39:13 +08001206 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, sizeof(*fc) + extra_len,
1207 GFP_NOFS, false);
Sage Weila79832f2010-04-01 16:06:19 -07001208 if (!msg)
1209 return -ENOMEM;
Sage Weila8599bd2009-10-06 11:31:12 -07001210
Jeff Layton43b29672016-11-10 07:42:05 -05001211 msg->hdr.version = cpu_to_le16(10);
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001212 msg->hdr.tid = cpu_to_le64(arg->flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -07001213
Sage Weil6df058c2009-12-22 11:24:33 -08001214 fc = msg->front.iov_base;
Sage Weila8599bd2009-10-06 11:31:12 -07001215 memset(fc, 0, sizeof(*fc));
1216
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001217 fc->cap_id = cpu_to_le64(arg->cid);
1218 fc->op = cpu_to_le32(arg->op);
1219 fc->seq = cpu_to_le32(arg->seq);
1220 fc->issue_seq = cpu_to_le32(arg->issue_seq);
1221 fc->migrate_seq = cpu_to_le32(arg->mseq);
1222 fc->caps = cpu_to_le32(arg->caps);
1223 fc->wanted = cpu_to_le32(arg->wanted);
1224 fc->dirty = cpu_to_le32(arg->dirty);
1225 fc->ino = cpu_to_le64(arg->ino);
1226 fc->snap_follows = cpu_to_le64(arg->follows);
Sage Weila8599bd2009-10-06 11:31:12 -07001227
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001228 fc->size = cpu_to_le64(arg->size);
1229 fc->max_size = cpu_to_le64(arg->max_size);
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02001230 ceph_encode_timespec64(&fc->mtime, &arg->mtime);
1231 ceph_encode_timespec64(&fc->atime, &arg->atime);
1232 ceph_encode_timespec64(&fc->ctime, &arg->ctime);
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001233 fc->time_warp_seq = cpu_to_le32(arg->time_warp_seq);
Sage Weila8599bd2009-10-06 11:31:12 -07001234
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001235 fc->uid = cpu_to_le32(from_kuid(&init_user_ns, arg->uid));
1236 fc->gid = cpu_to_le32(from_kgid(&init_user_ns, arg->gid));
1237 fc->mode = cpu_to_le32(arg->mode);
Sage Weila8599bd2009-10-06 11:31:12 -07001238
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001239 fc->xattr_version = cpu_to_le64(arg->xattr_version);
1240 if (arg->xattr_buf) {
1241 msg->middle = ceph_buffer_get(arg->xattr_buf);
1242 fc->xattr_len = cpu_to_le32(arg->xattr_buf->vec.iov_len);
1243 msg->hdr.middle_len = cpu_to_le32(arg->xattr_buf->vec.iov_len);
Jeff Layton96700792016-11-10 07:42:02 -05001244 }
1245
Yan, Zhenge20d2582014-11-14 22:39:13 +08001246 p = fc + 1;
Jeff Layton43b29672016-11-10 07:42:05 -05001247 /* flock buffer size (version 2) */
Yan, Zhenge20d2582014-11-14 22:39:13 +08001248 ceph_encode_32(&p, 0);
Jeff Layton43b29672016-11-10 07:42:05 -05001249 /* inline version (version 4) */
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001250 ceph_encode_64(&p, arg->inline_data ? 0 : CEPH_INLINE_NONE);
Yan, Zhenge20d2582014-11-14 22:39:13 +08001251 /* inline data size */
1252 ceph_encode_32(&p, 0);
Jeff Layton92475f02017-04-13 11:07:04 -04001253 /*
1254 * osd_epoch_barrier (version 5)
1255 * The epoch_barrier is protected osdc->lock, so READ_ONCE here in
1256 * case it was recently changed
1257 */
1258 ceph_encode_32(&p, READ_ONCE(osdc->epoch_barrier));
Jeff Layton43b29672016-11-10 07:42:05 -05001259 /* oldest_flush_tid (version 6) */
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001260 ceph_encode_64(&p, arg->oldest_flush_tid);
Yan, Zhenge20d2582014-11-14 22:39:13 +08001261
Jeff Layton43b29672016-11-10 07:42:05 -05001262 /*
1263 * caller_uid/caller_gid (version 7)
1264 *
1265 * Currently, we don't properly track which caller dirtied the caps
1266 * last, and force a flush of them when there is a conflict. For now,
1267 * just set this to 0:0, to emulate how the MDS has worked up to now.
1268 */
1269 ceph_encode_32(&p, 0);
1270 ceph_encode_32(&p, 0);
1271
1272 /* pool namespace (version 8) (mds always ignores this) */
1273 ceph_encode_32(&p, 0);
1274
Jeff Layton176c77c2019-06-06 08:06:40 -04001275 /* btime and change_attr (version 9) */
Jeff Laytonec62b892019-05-29 12:23:14 -04001276 ceph_encode_timespec64(p, &arg->btime);
Jeff Layton43b29672016-11-10 07:42:05 -05001277 p += sizeof(struct ceph_timespec);
Jeff Layton176c77c2019-06-06 08:06:40 -04001278 ceph_encode_64(&p, arg->change_attr);
Jeff Layton43b29672016-11-10 07:42:05 -05001279
1280 /* Advisory flags (version 10) */
Jeff Layton1e4ef0c2016-11-10 07:42:06 -05001281 ceph_encode_32(&p, arg->flags);
Jeff Layton43b29672016-11-10 07:42:05 -05001282
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001283 ceph_con_send(&arg->session->s_con, msg);
Sage Weila8599bd2009-10-06 11:31:12 -07001284 return 0;
1285}
1286
1287/*
Yan, Zhengd6e47812019-05-23 11:01:37 +08001288 * Queue cap releases when an inode is dropped from our cache.
Sage Weila8599bd2009-10-06 11:31:12 -07001289 */
Yan, Zhengd6e47812019-05-23 11:01:37 +08001290void __ceph_remove_caps(struct ceph_inode_info *ci)
Sage Weila8599bd2009-10-06 11:31:12 -07001291{
Sage Weila8599bd2009-10-06 11:31:12 -07001292 struct rb_node *p;
1293
Yan, Zhengd6e47812019-05-23 11:01:37 +08001294 /* lock i_ceph_lock, because ceph_d_revalidate(..., LOOKUP_RCU)
1295 * may call __ceph_caps_issued_mask() on a freeing inode. */
1296 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001297 p = rb_first(&ci->i_caps);
1298 while (p) {
1299 struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
Sage Weila8599bd2009-10-06 11:31:12 -07001300 p = rb_next(p);
Yan, Zhenga096b092013-09-22 10:15:58 +08001301 __ceph_remove_cap(cap, true);
Sage Weila8599bd2009-10-06 11:31:12 -07001302 }
Yan, Zhengd6e47812019-05-23 11:01:37 +08001303 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001304}
1305
1306/*
1307 * Send a cap msg on the given inode. Update our caps state, then
Sage Weilbe655592011-11-30 09:47:09 -08001308 * drop i_ceph_lock and send the message.
Sage Weila8599bd2009-10-06 11:31:12 -07001309 *
1310 * Make note of max_size reported/requested from mds, revoked caps
1311 * that have now been implemented.
1312 *
Sage Weila8599bd2009-10-06 11:31:12 -07001313 * Return non-zero if delayed release, or we experienced an error
1314 * such that the caller should requeue + retry later.
1315 *
Sage Weilbe655592011-11-30 09:47:09 -08001316 * called with i_ceph_lock, then drops it.
Sage Weila8599bd2009-10-06 11:31:12 -07001317 * caller should hold snap_rwsem (read), s_mutex.
1318 */
1319static int __send_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap,
Yan, Zheng49ada6e2019-06-20 12:09:08 +08001320 int op, int flags, int used, int want, int retain,
Jeff Layton1e4ef0c2016-11-10 07:42:06 -05001321 int flushing, u64 flush_tid, u64 oldest_flush_tid)
Sage Weilbe655592011-11-30 09:47:09 -08001322 __releases(cap->ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07001323{
1324 struct ceph_inode_info *ci = cap->ci;
1325 struct inode *inode = &ci->vfs_inode;
Luis Henriques12fe3dd2019-07-19 15:32:21 +01001326 struct ceph_buffer *old_blob = NULL;
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001327 struct cap_msg_args arg;
Colin Ian Kingbb0581f2017-10-18 12:34:25 +01001328 int held, revoking;
Sage Weila8599bd2009-10-06 11:31:12 -07001329 int wake = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001330 int ret;
1331
Jeff Layton891f3f52020-01-14 15:06:40 -05001332 /* Don't send anything if it's still being created. Return delayed */
1333 if (ci->i_ceph_flags & CEPH_I_ASYNC_CREATE) {
1334 spin_unlock(&ci->i_ceph_lock);
1335 dout("%s async create in flight for %p\n", __func__, inode);
1336 return 1;
1337 }
1338
Sage Weil68c28322010-02-09 13:41:47 -08001339 held = cap->issued | cap->implemented;
1340 revoking = cap->implemented & ~cap->issued;
1341 retain &= ~revoking;
Sage Weil68c28322010-02-09 13:41:47 -08001342
Sage Weila8599bd2009-10-06 11:31:12 -07001343 dout("__send_cap %p cap %p session %p %s -> %s (revoking %s)\n",
1344 inode, cap, cap->session,
1345 ceph_cap_string(held), ceph_cap_string(held & retain),
1346 ceph_cap_string(revoking));
1347 BUG_ON((retain & CEPH_CAP_PIN) == 0);
1348
Yan, Zhenga0d93e32020-03-05 20:21:01 +08001349 ci->i_ceph_flags &= ~CEPH_I_FLUSH;
Sage Weila8599bd2009-10-06 11:31:12 -07001350
1351 cap->issued &= retain; /* drop bits we don't want */
1352 if (cap->implemented & ~cap->issued) {
1353 /*
1354 * Wake up any waiters on wanted -> needed transition.
1355 * This is due to the weird transition from buffered
1356 * to sync IO... we need to flush dirty pages _before_
1357 * allowing sync writes to avoid reordering.
1358 */
1359 wake = 1;
1360 }
1361 cap->implemented &= cap->issued | used;
1362 cap->mds_wanted = want;
1363
Yan, Zhenga0d93e32020-03-05 20:21:01 +08001364 arg.session = cap->session;
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001365 arg.ino = ceph_vino(inode).ino;
1366 arg.cid = cap->cap_id;
1367 arg.follows = flushing ? ci->i_head_snapc->seq : 0;
1368 arg.flush_tid = flush_tid;
1369 arg.oldest_flush_tid = oldest_flush_tid;
Sage Weila8599bd2009-10-06 11:31:12 -07001370
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001371 arg.size = inode->i_size;
1372 ci->i_reported_size = arg.size;
1373 arg.max_size = ci->i_wanted_max_size;
Yan, Zheng11ba6b92020-03-05 20:21:03 +08001374 if (cap == ci->i_auth_cap)
1375 ci->i_requested_max_size = arg.max_size;
Sage Weila8599bd2009-10-06 11:31:12 -07001376
Sage Weil082afec2010-08-22 15:16:41 -07001377 if (flushing & CEPH_CAP_XATTR_EXCL) {
Luis Henriques12fe3dd2019-07-19 15:32:21 +01001378 old_blob = __ceph_build_xattrs_blob(ci);
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001379 arg.xattr_version = ci->i_xattrs.version;
1380 arg.xattr_buf = ci->i_xattrs.blob;
1381 } else {
1382 arg.xattr_buf = NULL;
Sage Weila8599bd2009-10-06 11:31:12 -07001383 }
1384
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02001385 arg.mtime = inode->i_mtime;
1386 arg.atime = inode->i_atime;
1387 arg.ctime = inode->i_ctime;
Jeff Laytonec62b892019-05-29 12:23:14 -04001388 arg.btime = ci->i_btime;
Jeff Layton176c77c2019-06-06 08:06:40 -04001389 arg.change_attr = inode_peek_iversion_raw(inode);
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001390
1391 arg.op = op;
1392 arg.caps = cap->implemented;
1393 arg.wanted = want;
1394 arg.dirty = flushing;
1395
1396 arg.seq = cap->seq;
1397 arg.issue_seq = cap->issue_seq;
1398 arg.mseq = cap->mseq;
1399 arg.time_warp_seq = ci->i_time_warp_seq;
1400
1401 arg.uid = inode->i_uid;
1402 arg.gid = inode->i_gid;
1403 arg.mode = inode->i_mode;
1404
1405 arg.inline_data = ci->i_inline_version != CEPH_INLINE_NONE;
Yan, Zheng49ada6e2019-06-20 12:09:08 +08001406 if (!(flags & CEPH_CLIENT_CAPS_PENDING_CAPSNAP) &&
1407 !list_empty(&ci->i_cap_snaps)) {
1408 struct ceph_cap_snap *capsnap;
1409 list_for_each_entry_reverse(capsnap, &ci->i_cap_snaps, ci_item) {
1410 if (capsnap->cap_flush.tid)
1411 break;
1412 if (capsnap->need_flush) {
1413 flags |= CEPH_CLIENT_CAPS_PENDING_CAPSNAP;
1414 break;
1415 }
1416 }
1417 }
1418 arg.flags = flags;
Yan, Zhenge20d2582014-11-14 22:39:13 +08001419
Sage Weilbe655592011-11-30 09:47:09 -08001420 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001421
Luis Henriques12fe3dd2019-07-19 15:32:21 +01001422 ceph_buffer_put(old_blob);
1423
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001424 ret = send_cap_msg(&arg);
Sage Weila8599bd2009-10-06 11:31:12 -07001425 if (ret < 0) {
Yan, Zhenga0d93e32020-03-05 20:21:01 +08001426 pr_err("error sending cap msg, ino (%llx.%llx) "
1427 "flushing %s tid %llu, requeue\n",
1428 ceph_vinop(inode), ceph_cap_string(flushing),
1429 flush_tid);
1430 spin_lock(&ci->i_ceph_lock);
1431 __cap_delay_requeue(mdsc, ci);
1432 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001433 }
1434
1435 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07001436 wake_up_all(&ci->i_cap_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07001437
Yan, Zhenga0d93e32020-03-05 20:21:01 +08001438 return ret;
Sage Weila8599bd2009-10-06 11:31:12 -07001439}
1440
Yan, Zheng0e294382016-07-04 18:06:41 +08001441static inline int __send_flush_snap(struct inode *inode,
1442 struct ceph_mds_session *session,
1443 struct ceph_cap_snap *capsnap,
1444 u32 mseq, u64 oldest_flush_tid)
1445{
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001446 struct cap_msg_args arg;
1447
1448 arg.session = session;
1449 arg.ino = ceph_vino(inode).ino;
1450 arg.cid = 0;
1451 arg.follows = capsnap->follows;
1452 arg.flush_tid = capsnap->cap_flush.tid;
1453 arg.oldest_flush_tid = oldest_flush_tid;
1454
1455 arg.size = capsnap->size;
1456 arg.max_size = 0;
1457 arg.xattr_version = capsnap->xattr_version;
1458 arg.xattr_buf = capsnap->xattr_blob;
1459
1460 arg.atime = capsnap->atime;
1461 arg.mtime = capsnap->mtime;
1462 arg.ctime = capsnap->ctime;
Jeff Laytonec62b892019-05-29 12:23:14 -04001463 arg.btime = capsnap->btime;
Jeff Layton176c77c2019-06-06 08:06:40 -04001464 arg.change_attr = capsnap->change_attr;
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001465
1466 arg.op = CEPH_CAP_OP_FLUSHSNAP;
1467 arg.caps = capsnap->issued;
1468 arg.wanted = 0;
1469 arg.dirty = capsnap->dirty;
1470
1471 arg.seq = 0;
1472 arg.issue_seq = 0;
1473 arg.mseq = mseq;
1474 arg.time_warp_seq = capsnap->time_warp_seq;
1475
1476 arg.uid = capsnap->uid;
1477 arg.gid = capsnap->gid;
1478 arg.mode = capsnap->mode;
1479
1480 arg.inline_data = capsnap->inline_data;
Jeff Layton1e4ef0c2016-11-10 07:42:06 -05001481 arg.flags = 0;
Jeff Layton0ff8bfb2016-11-10 07:42:03 -05001482
1483 return send_cap_msg(&arg);
Yan, Zheng0e294382016-07-04 18:06:41 +08001484}
1485
Sage Weila8599bd2009-10-06 11:31:12 -07001486/*
1487 * When a snapshot is taken, clients accumulate dirty metadata on
1488 * inodes with capabilities in ceph_cap_snaps to describe the file
1489 * state at the time the snapshot was taken. This must be flushed
1490 * asynchronously back to the MDS once sync writes complete and dirty
1491 * data is written out.
1492 *
Sage Weilbe655592011-11-30 09:47:09 -08001493 * Called under i_ceph_lock. Takes s_mutex as needed.
Sage Weila8599bd2009-10-06 11:31:12 -07001494 */
Yan, Zhenged9b4302016-07-05 21:08:07 +08001495static void __ceph_flush_snaps(struct ceph_inode_info *ci,
1496 struct ceph_mds_session *session)
Sage Weilbe655592011-11-30 09:47:09 -08001497 __releases(ci->i_ceph_lock)
1498 __acquires(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07001499{
1500 struct inode *inode = &ci->vfs_inode;
Yan, Zhenged9b4302016-07-05 21:08:07 +08001501 struct ceph_mds_client *mdsc = session->s_mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001502 struct ceph_cap_snap *capsnap;
Yan, Zhenged9b4302016-07-05 21:08:07 +08001503 u64 oldest_flush_tid = 0;
1504 u64 first_tid = 1, last_tid = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001505
Yan, Zhenged9b4302016-07-05 21:08:07 +08001506 dout("__flush_snaps %p session %p\n", inode, session);
Sage Weila8599bd2009-10-06 11:31:12 -07001507
Sage Weila8599bd2009-10-06 11:31:12 -07001508 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
Sage Weila8599bd2009-10-06 11:31:12 -07001509 /*
1510 * we need to wait for sync writes to complete and for dirty
1511 * pages to be written out.
1512 */
1513 if (capsnap->dirty_pages || capsnap->writing)
Sage Weilcfc0bf62010-09-14 15:50:59 -07001514 break;
Sage Weila8599bd2009-10-06 11:31:12 -07001515
Yan, Zheng86056092015-05-01 16:57:16 +08001516 /* should be removed by ceph_try_drop_cap_snap() */
1517 BUG_ON(!capsnap->need_flush);
Sage Weil819ccbf2010-04-01 09:33:46 -07001518
Sage Weile8351242010-09-17 08:03:08 -07001519 /* only flush each capsnap once */
Yan, Zheng0e294382016-07-04 18:06:41 +08001520 if (capsnap->cap_flush.tid > 0) {
Yan, Zhenged9b4302016-07-05 21:08:07 +08001521 dout(" already flushed %p, skipping\n", capsnap);
Sage Weile8351242010-09-17 08:03:08 -07001522 continue;
1523 }
1524
Yan, Zheng553adfd2015-06-09 15:48:57 +08001525 spin_lock(&mdsc->cap_dirty_lock);
Yan, Zheng0e294382016-07-04 18:06:41 +08001526 capsnap->cap_flush.tid = ++mdsc->last_cap_flush_tid;
1527 list_add_tail(&capsnap->cap_flush.g_list,
1528 &mdsc->cap_flush_list);
Yan, Zhenged9b4302016-07-05 21:08:07 +08001529 if (oldest_flush_tid == 0)
1530 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
Yan, Zheng0e294382016-07-04 18:06:41 +08001531 if (list_empty(&ci->i_flushing_item)) {
1532 list_add_tail(&ci->i_flushing_item,
1533 &session->s_cap_flushing);
1534 }
Yan, Zheng553adfd2015-06-09 15:48:57 +08001535 spin_unlock(&mdsc->cap_dirty_lock);
1536
Yan, Zheng0e294382016-07-04 18:06:41 +08001537 list_add_tail(&capsnap->cap_flush.i_list,
1538 &ci->i_cap_flush_list);
1539
Yan, Zhenged9b4302016-07-05 21:08:07 +08001540 if (first_tid == 1)
1541 first_tid = capsnap->cap_flush.tid;
1542 last_tid = capsnap->cap_flush.tid;
1543 }
1544
1545 ci->i_ceph_flags &= ~CEPH_I_FLUSH_SNAPS;
1546
1547 while (first_tid <= last_tid) {
1548 struct ceph_cap *cap = ci->i_auth_cap;
1549 struct ceph_cap_flush *cf;
1550 int ret;
1551
1552 if (!(cap && cap->session == session)) {
1553 dout("__flush_snaps %p auth cap %p not mds%d, "
1554 "stop\n", inode, cap, session->s_mds);
1555 break;
1556 }
1557
1558 ret = -ENOENT;
1559 list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
1560 if (cf->tid >= first_tid) {
1561 ret = 0;
1562 break;
1563 }
1564 }
1565 if (ret < 0)
1566 break;
1567
1568 first_tid = cf->tid + 1;
1569
1570 capsnap = container_of(cf, struct ceph_cap_snap, cap_flush);
Elena Reshetova805692d2017-03-03 11:15:07 +02001571 refcount_inc(&capsnap->nref);
Sage Weilbe655592011-11-30 09:47:09 -08001572 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001573
Yan, Zhenged9b4302016-07-05 21:08:07 +08001574 dout("__flush_snaps %p capsnap %p tid %llu %s\n",
1575 inode, capsnap, cf->tid, ceph_cap_string(capsnap->dirty));
Sage Weila8599bd2009-10-06 11:31:12 -07001576
Yan, Zhenged9b4302016-07-05 21:08:07 +08001577 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
1578 oldest_flush_tid);
1579 if (ret < 0) {
1580 pr_err("__flush_snaps: error sending cap flushsnap, "
1581 "ino (%llx.%llx) tid %llu follows %llu\n",
1582 ceph_vinop(inode), cf->tid, capsnap->follows);
1583 }
1584
Sage Weila8599bd2009-10-06 11:31:12 -07001585 ceph_put_cap_snap(capsnap);
Sage Weilbe655592011-11-30 09:47:09 -08001586 spin_lock(&ci->i_ceph_lock);
Yan, Zhenged9b4302016-07-05 21:08:07 +08001587 }
1588}
1589
1590void ceph_flush_snaps(struct ceph_inode_info *ci,
1591 struct ceph_mds_session **psession)
1592{
1593 struct inode *inode = &ci->vfs_inode;
1594 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Yan, Zhenge4d2b162016-08-04 08:43:33 +08001595 struct ceph_mds_session *session = NULL;
Yan, Zhenged9b4302016-07-05 21:08:07 +08001596 int mds;
Yan, Zhenge4d2b162016-08-04 08:43:33 +08001597
Yan, Zhenged9b4302016-07-05 21:08:07 +08001598 dout("ceph_flush_snaps %p\n", inode);
Yan, Zhenge4d2b162016-08-04 08:43:33 +08001599 if (psession)
1600 session = *psession;
Yan, Zhenged9b4302016-07-05 21:08:07 +08001601retry:
1602 spin_lock(&ci->i_ceph_lock);
1603 if (!(ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)) {
1604 dout(" no capsnap needs flush, doing nothing\n");
1605 goto out;
1606 }
1607 if (!ci->i_auth_cap) {
1608 dout(" no auth cap (migrating?), doing nothing\n");
1609 goto out;
1610 }
1611
1612 mds = ci->i_auth_cap->session->s_mds;
1613 if (session && session->s_mds != mds) {
1614 dout(" oops, wrong session %p mutex\n", session);
1615 mutex_unlock(&session->s_mutex);
1616 ceph_put_mds_session(session);
1617 session = NULL;
1618 }
1619 if (!session) {
1620 spin_unlock(&ci->i_ceph_lock);
1621 mutex_lock(&mdsc->mutex);
1622 session = __ceph_lookup_mds_session(mdsc, mds);
1623 mutex_unlock(&mdsc->mutex);
1624 if (session) {
1625 dout(" inverting session/ino locks on %p\n", session);
1626 mutex_lock(&session->s_mutex);
1627 }
Sage Weila8599bd2009-10-06 11:31:12 -07001628 goto retry;
1629 }
1630
Yan, Zheng24d063a2017-08-15 11:37:32 +08001631 // make sure flushsnap messages are sent in proper order.
Yan, Zheng054f8d42019-06-20 16:00:31 +08001632 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
Yan, Zheng24d063a2017-08-15 11:37:32 +08001633 __kick_flushing_caps(mdsc, session, ci, 0);
Yan, Zheng24d063a2017-08-15 11:37:32 +08001634
Yan, Zhenged9b4302016-07-05 21:08:07 +08001635 __ceph_flush_snaps(ci, session);
1636out:
1637 spin_unlock(&ci->i_ceph_lock);
1638
1639 if (psession) {
1640 *psession = session;
Yan, Zhengc858a072017-08-28 15:02:42 +08001641 } else if (session) {
Yan, Zhenged9b4302016-07-05 21:08:07 +08001642 mutex_unlock(&session->s_mutex);
1643 ceph_put_mds_session(session);
1644 }
Sage Weila8599bd2009-10-06 11:31:12 -07001645 /* we flushed them all; remove this inode from the queue */
1646 spin_lock(&mdsc->snap_flush_lock);
1647 list_del_init(&ci->i_snap_flush_item);
1648 spin_unlock(&mdsc->snap_flush_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001649}
1650
1651/*
Sage Weilfca65b42011-05-04 11:33:47 -07001652 * Mark caps dirty. If inode is newly dirty, return the dirty flags.
1653 * Caller is then responsible for calling __mark_inode_dirty with the
1654 * returned flags value.
Sage Weil76e3b392009-10-15 18:13:53 -07001655 */
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001656int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask,
1657 struct ceph_cap_flush **pcf)
Sage Weil76e3b392009-10-15 18:13:53 -07001658{
Cheng Renquan640ef792010-03-26 17:40:33 +08001659 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001660 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
Sage Weil76e3b392009-10-15 18:13:53 -07001661 struct inode *inode = &ci->vfs_inode;
1662 int was = ci->i_dirty_caps;
1663 int dirty = 0;
1664
Jeff Laytonc7e4f852020-02-25 11:08:33 -08001665 lockdep_assert_held(&ci->i_ceph_lock);
1666
Yan, Zheng571ade32015-03-24 11:36:08 +08001667 if (!ci->i_auth_cap) {
1668 pr_warn("__mark_dirty_caps %p %llx mask %s, "
1669 "but no auth cap (session was closed?)\n",
1670 inode, ceph_ino(inode), ceph_cap_string(mask));
1671 return 0;
1672 }
1673
Sage Weil76e3b392009-10-15 18:13:53 -07001674 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci->vfs_inode,
1675 ceph_cap_string(mask), ceph_cap_string(was),
1676 ceph_cap_string(was | mask));
1677 ci->i_dirty_caps |= mask;
1678 if (was == 0) {
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001679 WARN_ON_ONCE(ci->i_prealloc_cap_flush);
1680 swap(ci->i_prealloc_cap_flush, *pcf);
1681
Yan, Zheng604d1b02015-05-01 17:49:16 +08001682 if (!ci->i_head_snapc) {
1683 WARN_ON_ONCE(!rwsem_is_locked(&mdsc->snap_rwsem));
Sage Weil7d8cb262010-08-24 08:44:16 -07001684 ci->i_head_snapc = ceph_get_snap_context(
1685 ci->i_snap_realm->cached_context);
Yan, Zheng604d1b02015-05-01 17:49:16 +08001686 }
Yan, Zheng06852352012-11-19 10:49:07 +08001687 dout(" inode %p now dirty snapc %p auth cap %p\n",
1688 &ci->vfs_inode, ci->i_head_snapc, ci->i_auth_cap);
Sage Weil76e3b392009-10-15 18:13:53 -07001689 BUG_ON(!list_empty(&ci->i_dirty_item));
1690 spin_lock(&mdsc->cap_dirty_lock);
Yan, Zheng11df2df2013-11-24 14:44:38 +08001691 list_add(&ci->i_dirty_item, &mdsc->cap_dirty);
Sage Weil76e3b392009-10-15 18:13:53 -07001692 spin_unlock(&mdsc->cap_dirty_lock);
1693 if (ci->i_flushing_caps == 0) {
Sage Weil3772d262011-05-03 09:28:08 -07001694 ihold(inode);
Sage Weil76e3b392009-10-15 18:13:53 -07001695 dirty |= I_DIRTY_SYNC;
1696 }
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001697 } else {
1698 WARN_ON_ONCE(!ci->i_prealloc_cap_flush);
Sage Weil76e3b392009-10-15 18:13:53 -07001699 }
1700 BUG_ON(list_empty(&ci->i_dirty_item));
1701 if (((was | ci->i_flushing_caps) & CEPH_CAP_FILE_BUFFER) &&
1702 (mask & CEPH_CAP_FILE_BUFFER))
1703 dirty |= I_DIRTY_DATASYNC;
Yan, Zhenga0d93e32020-03-05 20:21:01 +08001704 __cap_delay_requeue(mdsc, ci);
Sage Weilfca65b42011-05-04 11:33:47 -07001705 return dirty;
Sage Weil76e3b392009-10-15 18:13:53 -07001706}
1707
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001708struct ceph_cap_flush *ceph_alloc_cap_flush(void)
1709{
1710 return kmem_cache_alloc(ceph_cap_flush_cachep, GFP_KERNEL);
1711}
1712
1713void ceph_free_cap_flush(struct ceph_cap_flush *cf)
1714{
1715 if (cf)
1716 kmem_cache_free(ceph_cap_flush_cachep, cf);
1717}
1718
Yan, Zhenga2971c82015-06-10 11:09:32 +08001719static u64 __get_oldest_flush_tid(struct ceph_mds_client *mdsc)
1720{
Yan, Zhenge4500b52016-07-06 11:12:56 +08001721 if (!list_empty(&mdsc->cap_flush_list)) {
Yan, Zhenga2971c82015-06-10 11:09:32 +08001722 struct ceph_cap_flush *cf =
Yan, Zhenge4500b52016-07-06 11:12:56 +08001723 list_first_entry(&mdsc->cap_flush_list,
1724 struct ceph_cap_flush, g_list);
Yan, Zhenga2971c82015-06-10 11:09:32 +08001725 return cf->tid;
1726 }
1727 return 0;
1728}
1729
Sage Weil76e3b392009-10-15 18:13:53 -07001730/*
Yan, Zhengc8799fc2016-07-07 15:22:38 +08001731 * Remove cap_flush from the mdsc's or inode's flushing cap list.
1732 * Return true if caller needs to wake up flush waiters.
1733 */
1734static bool __finish_cap_flush(struct ceph_mds_client *mdsc,
1735 struct ceph_inode_info *ci,
1736 struct ceph_cap_flush *cf)
1737{
1738 struct ceph_cap_flush *prev;
1739 bool wake = cf->wake;
1740 if (mdsc) {
1741 /* are there older pending cap flushes? */
1742 if (wake && cf->g_list.prev != &mdsc->cap_flush_list) {
1743 prev = list_prev_entry(cf, g_list);
1744 prev->wake = true;
1745 wake = false;
1746 }
1747 list_del(&cf->g_list);
1748 } else if (ci) {
1749 if (wake && cf->i_list.prev != &ci->i_cap_flush_list) {
1750 prev = list_prev_entry(cf, i_list);
1751 prev->wake = true;
1752 wake = false;
1753 }
1754 list_del(&cf->i_list);
1755 } else {
1756 BUG_ON(1);
1757 }
1758 return wake;
1759}
1760
1761/*
Sage Weila8599bd2009-10-06 11:31:12 -07001762 * Add dirty inode to the flushing list. Assigned a seq number so we
1763 * can wait for caps to flush without starving.
Sage Weilcdc35f92009-10-14 14:24:19 -07001764 *
Jeff Layton9f3345d2019-07-08 12:27:57 -04001765 * Called under i_ceph_lock. Returns the flush tid.
Sage Weila8599bd2009-10-06 11:31:12 -07001766 */
Jeff Layton9f3345d2019-07-08 12:27:57 -04001767static u64 __mark_caps_flushing(struct inode *inode,
Yan, Zhengc8799fc2016-07-07 15:22:38 +08001768 struct ceph_mds_session *session, bool wake,
Jeff Layton9f3345d2019-07-08 12:27:57 -04001769 u64 *oldest_flush_tid)
Sage Weila8599bd2009-10-06 11:31:12 -07001770{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001771 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001772 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001773 struct ceph_cap_flush *cf = NULL;
Sage Weilcdc35f92009-10-14 14:24:19 -07001774 int flushing;
Sage Weil50b885b2009-12-01 14:12:07 -08001775
Jeff Laytonc7e4f852020-02-25 11:08:33 -08001776 lockdep_assert_held(&ci->i_ceph_lock);
Sage Weilcdc35f92009-10-14 14:24:19 -07001777 BUG_ON(ci->i_dirty_caps == 0);
Sage Weila8599bd2009-10-06 11:31:12 -07001778 BUG_ON(list_empty(&ci->i_dirty_item));
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001779 BUG_ON(!ci->i_prealloc_cap_flush);
Sage Weilcdc35f92009-10-14 14:24:19 -07001780
1781 flushing = ci->i_dirty_caps;
1782 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1783 ceph_cap_string(flushing),
1784 ceph_cap_string(ci->i_flushing_caps),
1785 ceph_cap_string(ci->i_flushing_caps | flushing));
1786 ci->i_flushing_caps |= flushing;
1787 ci->i_dirty_caps = 0;
Sage Weilafcdaea2009-10-14 14:27:38 -07001788 dout(" inode %p now !dirty\n", inode);
Sage Weilcdc35f92009-10-14 14:24:19 -07001789
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001790 swap(cf, ci->i_prealloc_cap_flush);
Yan, Zheng553adfd2015-06-09 15:48:57 +08001791 cf->caps = flushing;
Yan, Zhengc8799fc2016-07-07 15:22:38 +08001792 cf->wake = wake;
Yan, Zheng553adfd2015-06-09 15:48:57 +08001793
Sage Weila8599bd2009-10-06 11:31:12 -07001794 spin_lock(&mdsc->cap_dirty_lock);
Sage Weilafcdaea2009-10-14 14:27:38 -07001795 list_del_init(&ci->i_dirty_item);
1796
Yan, Zheng553adfd2015-06-09 15:48:57 +08001797 cf->tid = ++mdsc->last_cap_flush_tid;
Yan, Zhenge4500b52016-07-06 11:12:56 +08001798 list_add_tail(&cf->g_list, &mdsc->cap_flush_list);
Yan, Zhenga2971c82015-06-10 11:09:32 +08001799 *oldest_flush_tid = __get_oldest_flush_tid(mdsc);
Yan, Zheng553adfd2015-06-09 15:48:57 +08001800
Sage Weila8599bd2009-10-06 11:31:12 -07001801 if (list_empty(&ci->i_flushing_item)) {
1802 list_add_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1803 mdsc->num_cap_flushing++;
Sage Weila8599bd2009-10-06 11:31:12 -07001804 }
1805 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weilcdc35f92009-10-14 14:24:19 -07001806
Yan, Zhenge4500b52016-07-06 11:12:56 +08001807 list_add_tail(&cf->i_list, &ci->i_cap_flush_list);
Yan, Zheng553adfd2015-06-09 15:48:57 +08001808
Jeff Layton9f3345d2019-07-08 12:27:57 -04001809 return cf->tid;
Sage Weila8599bd2009-10-06 11:31:12 -07001810}
1811
1812/*
Sage Weil5ecad6f2010-02-17 10:43:37 -08001813 * try to invalidate mapping pages without blocking.
1814 */
Sage Weil5ecad6f2010-02-17 10:43:37 -08001815static int try_nonblocking_invalidate(struct inode *inode)
1816{
1817 struct ceph_inode_info *ci = ceph_inode(inode);
1818 u32 invalidating_gen = ci->i_rdcache_gen;
1819
Sage Weilbe655592011-11-30 09:47:09 -08001820 spin_unlock(&ci->i_ceph_lock);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001821 invalidate_mapping_pages(&inode->i_data, 0, -1);
Sage Weilbe655592011-11-30 09:47:09 -08001822 spin_lock(&ci->i_ceph_lock);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001823
Sage Weil18a38192010-09-17 10:46:44 -07001824 if (inode->i_data.nrpages == 0 &&
Sage Weil5ecad6f2010-02-17 10:43:37 -08001825 invalidating_gen == ci->i_rdcache_gen) {
1826 /* success. */
1827 dout("try_nonblocking_invalidate %p success\n", inode);
Sage Weilcd045cb2010-11-04 11:05:05 -07001828 /* save any racing async invalidate some trouble */
1829 ci->i_rdcache_revoking = ci->i_rdcache_gen - 1;
Sage Weil5ecad6f2010-02-17 10:43:37 -08001830 return 0;
1831 }
1832 dout("try_nonblocking_invalidate %p failed\n", inode);
1833 return -1;
1834}
1835
Yan, Zhengefb0ca72017-05-22 12:03:32 +08001836bool __ceph_should_report_size(struct ceph_inode_info *ci)
1837{
1838 loff_t size = ci->vfs_inode.i_size;
1839 /* mds will adjust max size according to the reported size */
1840 if (ci->i_flushing_caps & CEPH_CAP_FILE_WR)
1841 return false;
1842 if (size >= ci->i_max_size)
1843 return true;
1844 /* half of previous max_size increment has been used */
1845 if (ci->i_max_size > ci->i_reported_size &&
1846 (size << 1) >= ci->i_max_size + ci->i_reported_size)
1847 return true;
1848 return false;
1849}
1850
Sage Weil5ecad6f2010-02-17 10:43:37 -08001851/*
Sage Weila8599bd2009-10-06 11:31:12 -07001852 * Swiss army knife function to examine currently used and wanted
1853 * versus held caps. Release, flush, ack revoked caps to mds as
1854 * appropriate.
1855 *
Sage Weila8599bd2009-10-06 11:31:12 -07001856 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1857 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1858 * further delay.
1859 */
1860void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1861 struct ceph_mds_session *session)
1862{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001863 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1864 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07001865 struct inode *inode = &ci->vfs_inode;
1866 struct ceph_cap *cap;
Yan, Zhenga2971c82015-06-10 11:09:32 +08001867 u64 flush_tid, oldest_flush_tid;
Yan, Zheng395c3122013-01-04 14:37:57 +08001868 int file_wanted, used, cap_used;
Sage Weila8599bd2009-10-06 11:31:12 -07001869 int took_snap_rwsem = 0; /* true if mdsc->snap_rwsem held */
Sage Weilcbd03632010-02-09 13:41:18 -08001870 int issued, implemented, want, retain, revoking, flushing = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07001871 int mds = -1; /* keep track of how far we've gone through i_caps list
1872 to avoid an infinite loop on retry */
1873 struct rb_node *p;
Yan, Zheng36094042016-07-06 15:37:42 +08001874 bool queue_invalidate = false;
Yan, Zheng36094042016-07-06 15:37:42 +08001875 bool tried_invalidate = false;
Sage Weila8599bd2009-10-06 11:31:12 -07001876
Sage Weilbe655592011-11-30 09:47:09 -08001877 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001878 if (ci->i_ceph_flags & CEPH_I_FLUSH)
1879 flags |= CHECK_CAPS_FLUSH;
1880
Sage Weila8599bd2009-10-06 11:31:12 -07001881 goto retry_locked;
1882retry:
Sage Weilbe655592011-11-30 09:47:09 -08001883 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07001884retry_locked:
1885 file_wanted = __ceph_caps_file_wanted(ci);
1886 used = __ceph_caps_used(ci);
Sage Weilcbd03632010-02-09 13:41:18 -08001887 issued = __ceph_caps_issued(ci, &implemented);
1888 revoking = implemented & ~issued;
Sage Weila8599bd2009-10-06 11:31:12 -07001889
Yan, Zheng41445992015-05-25 17:36:42 +08001890 want = file_wanted;
1891 retain = file_wanted | used | CEPH_CAP_PIN;
Sage Weila8599bd2009-10-06 11:31:12 -07001892 if (!mdsc->stopping && inode->i_nlink > 0) {
Yan, Zheng41445992015-05-25 17:36:42 +08001893 if (file_wanted) {
Sage Weila8599bd2009-10-06 11:31:12 -07001894 retain |= CEPH_CAP_ANY; /* be greedy */
Yan, Zheng32ec4392015-03-26 19:06:00 +08001895 } else if (S_ISDIR(inode->i_mode) &&
1896 (issued & CEPH_CAP_FILE_SHARED) &&
Yan, Zheng8a2ac3a2018-12-05 11:29:35 +08001897 __ceph_dir_is_complete(ci)) {
Yan, Zheng32ec4392015-03-26 19:06:00 +08001898 /*
1899 * If a directory is complete, we want to keep
1900 * the exclusive cap. So that MDS does not end up
1901 * revoking the shared cap on every create/unlink
1902 * operation.
1903 */
Jeff Laytona25949b2020-02-18 14:12:45 -05001904 if (IS_RDONLY(inode)) {
Yan, Zheng8a2ac3a2018-12-05 11:29:35 +08001905 want = CEPH_CAP_ANY_SHARED;
Jeff Laytona25949b2020-02-18 14:12:45 -05001906 } else {
Yan, Zheng719a2512020-03-05 20:21:00 +08001907 want |= CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL;
Jeff Laytona25949b2020-02-18 14:12:45 -05001908 }
Yan, Zheng32ec4392015-03-26 19:06:00 +08001909 retain |= want;
Sage Weila8599bd2009-10-06 11:31:12 -07001910 } else {
Yan, Zheng32ec4392015-03-26 19:06:00 +08001911
Sage Weila8599bd2009-10-06 11:31:12 -07001912 retain |= CEPH_CAP_ANY_SHARED;
1913 /*
1914 * keep RD only if we didn't have the file open RW,
1915 * because then the mds would revoke it anyway to
1916 * journal max_size=0.
1917 */
1918 if (ci->i_max_size == 0)
1919 retain |= CEPH_CAP_ANY_RD;
1920 }
1921 }
1922
1923 dout("check_caps %p file_want %s used %s dirty %s flushing %s"
Yan, Zhenga0d93e32020-03-05 20:21:01 +08001924 " issued %s revoking %s retain %s %s%s\n", inode,
Sage Weila8599bd2009-10-06 11:31:12 -07001925 ceph_cap_string(file_wanted),
1926 ceph_cap_string(used), ceph_cap_string(ci->i_dirty_caps),
1927 ceph_cap_string(ci->i_flushing_caps),
Sage Weilcbd03632010-02-09 13:41:18 -08001928 ceph_cap_string(issued), ceph_cap_string(revoking),
Sage Weila8599bd2009-10-06 11:31:12 -07001929 ceph_cap_string(retain),
1930 (flags & CHECK_CAPS_AUTHONLY) ? " AUTHONLY" : "",
Sage Weila8599bd2009-10-06 11:31:12 -07001931 (flags & CHECK_CAPS_FLUSH) ? " FLUSH" : "");
1932
1933 /*
1934 * If we no longer need to hold onto old our caps, and we may
1935 * have cached pages, but don't want them, then try to invalidate.
1936 * If we fail, it's because pages are locked.... try again later.
1937 */
Yan, Zhenga0d93e32020-03-05 20:21:01 +08001938 if ((!(flags & CHECK_CAPS_NOINVAL) || mdsc->stopping) &&
Yan, Zheng525d15e2019-05-11 17:27:59 +08001939 S_ISREG(inode->i_mode) &&
Yan, Zheng9abd4db2016-05-18 20:58:26 +08001940 !(ci->i_wb_ref || ci->i_wrbuffer_ref) && /* no dirty pages... */
Yan, Zhengfdd4e152015-06-16 20:48:56 +08001941 inode->i_data.nrpages && /* have cached pages */
Yan, Zheng5e804ac2015-10-26 16:08:43 +08001942 (revoking & (CEPH_CAP_FILE_CACHE|
1943 CEPH_CAP_FILE_LAZYIO)) && /* or revoking cache */
Sage Weila8599bd2009-10-06 11:31:12 -07001944 !tried_invalidate) {
Sage Weila8599bd2009-10-06 11:31:12 -07001945 dout("check_caps trying to invalidate on %p\n", inode);
Sage Weil5ecad6f2010-02-17 10:43:37 -08001946 if (try_nonblocking_invalidate(inode) < 0) {
Yan, Zhengee612d92018-01-08 14:36:25 +08001947 dout("check_caps queuing invalidate\n");
1948 queue_invalidate = true;
1949 ci->i_rdcache_revoking = ci->i_rdcache_gen;
Sage Weila8599bd2009-10-06 11:31:12 -07001950 }
Yan, Zheng36094042016-07-06 15:37:42 +08001951 tried_invalidate = true;
Sage Weila8599bd2009-10-06 11:31:12 -07001952 goto retry_locked;
1953 }
1954
Sage Weila8599bd2009-10-06 11:31:12 -07001955 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1956 cap = rb_entry(p, struct ceph_cap, ci_node);
Sage Weila8599bd2009-10-06 11:31:12 -07001957
1958 /* avoid looping forever */
1959 if (mds >= cap->mds ||
1960 ((flags & CHECK_CAPS_AUTHONLY) && cap != ci->i_auth_cap))
1961 continue;
1962
1963 /* NOTE: no side-effects allowed, until we take s_mutex */
1964
Yan, Zheng395c3122013-01-04 14:37:57 +08001965 cap_used = used;
1966 if (ci->i_auth_cap && cap != ci->i_auth_cap)
1967 cap_used &= ~ci->i_auth_cap->issued;
1968
Sage Weila8599bd2009-10-06 11:31:12 -07001969 revoking = cap->implemented & ~cap->issued;
Yan, Zheng395c3122013-01-04 14:37:57 +08001970 dout(" mds%d cap %p used %s issued %s implemented %s revoking %s\n",
Yan, Zheng9abd4db2016-05-18 20:58:26 +08001971 cap->mds, cap, ceph_cap_string(cap_used),
1972 ceph_cap_string(cap->issued),
Sage Weil088b3f52011-01-18 08:56:01 -08001973 ceph_cap_string(cap->implemented),
1974 ceph_cap_string(revoking));
Sage Weila8599bd2009-10-06 11:31:12 -07001975
1976 if (cap == ci->i_auth_cap &&
1977 (cap->issued & CEPH_CAP_FILE_WR)) {
1978 /* request larger max_size from MDS? */
1979 if (ci->i_wanted_max_size > ci->i_max_size &&
1980 ci->i_wanted_max_size > ci->i_requested_max_size) {
1981 dout("requesting new max_size\n");
1982 goto ack;
1983 }
1984
1985 /* approaching file_max? */
Yan, Zhengefb0ca72017-05-22 12:03:32 +08001986 if (__ceph_should_report_size(ci)) {
Sage Weila8599bd2009-10-06 11:31:12 -07001987 dout("i_size approaching max_size\n");
1988 goto ack;
1989 }
1990 }
1991 /* flush anything dirty? */
Yan, Zheng7bc00fd2016-07-07 18:34:45 +08001992 if (cap == ci->i_auth_cap) {
1993 if ((flags & CHECK_CAPS_FLUSH) && ci->i_dirty_caps) {
1994 dout("flushing dirty caps\n");
1995 goto ack;
1996 }
1997 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS) {
1998 dout("flushing snap caps\n");
1999 goto ack;
2000 }
Sage Weila8599bd2009-10-06 11:31:12 -07002001 }
2002
2003 /* completed revocation? going down and there are no caps? */
Yan, Zheng395c3122013-01-04 14:37:57 +08002004 if (revoking && (revoking & cap_used) == 0) {
Sage Weila8599bd2009-10-06 11:31:12 -07002005 dout("completed revocation of %s\n",
2006 ceph_cap_string(cap->implemented & ~cap->issued));
2007 goto ack;
2008 }
2009
2010 /* want more caps from mds? */
2011 if (want & ~(cap->mds_wanted | cap->issued))
2012 goto ack;
2013
2014 /* things we might delay */
Yan, Zhengfdac94f2018-11-22 15:26:01 +08002015 if ((cap->issued & ~retain) == 0)
Sage Weila8599bd2009-10-06 11:31:12 -07002016 continue; /* nope, all good */
2017
Sage Weila8599bd2009-10-06 11:31:12 -07002018ack:
2019 if (session && session != cap->session) {
2020 dout("oops, wrong session %p mutex\n", session);
2021 mutex_unlock(&session->s_mutex);
2022 session = NULL;
2023 }
2024 if (!session) {
2025 session = cap->session;
2026 if (mutex_trylock(&session->s_mutex) == 0) {
2027 dout("inverting session/ino locks on %p\n",
2028 session);
Sage Weilbe655592011-11-30 09:47:09 -08002029 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002030 if (took_snap_rwsem) {
2031 up_read(&mdsc->snap_rwsem);
2032 took_snap_rwsem = 0;
2033 }
2034 mutex_lock(&session->s_mutex);
2035 goto retry;
2036 }
2037 }
Yan, Zheng7bc00fd2016-07-07 18:34:45 +08002038
2039 /* kick flushing and flush snaps before sending normal
2040 * cap message */
2041 if (cap == ci->i_auth_cap &&
2042 (ci->i_ceph_flags &
2043 (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS))) {
Yan, Zheng054f8d42019-06-20 16:00:31 +08002044 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
Yan, Zheng24d063a2017-08-15 11:37:32 +08002045 __kick_flushing_caps(mdsc, session, ci, 0);
Yan, Zhenged9b4302016-07-05 21:08:07 +08002046 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
2047 __ceph_flush_snaps(ci, session);
2048
Yan, Zheng7bc00fd2016-07-07 18:34:45 +08002049 goto retry_locked;
2050 }
2051
Sage Weila8599bd2009-10-06 11:31:12 -07002052 /* take snap_rwsem after session mutex */
2053 if (!took_snap_rwsem) {
2054 if (down_read_trylock(&mdsc->snap_rwsem) == 0) {
2055 dout("inverting snap/in locks on %p\n",
2056 inode);
Sage Weilbe655592011-11-30 09:47:09 -08002057 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002058 down_read(&mdsc->snap_rwsem);
2059 took_snap_rwsem = 1;
2060 goto retry;
2061 }
2062 took_snap_rwsem = 1;
2063 }
2064
Yan, Zheng553adfd2015-06-09 15:48:57 +08002065 if (cap == ci->i_auth_cap && ci->i_dirty_caps) {
Jeff Layton9f3345d2019-07-08 12:27:57 -04002066 flushing = ci->i_dirty_caps;
2067 flush_tid = __mark_caps_flushing(inode, session, false,
2068 &oldest_flush_tid);
Yan, Zheng553adfd2015-06-09 15:48:57 +08002069 } else {
Sage Weil24be0c42011-01-18 08:48:06 -08002070 flushing = 0;
Yan, Zheng553adfd2015-06-09 15:48:57 +08002071 flush_tid = 0;
Yan, Zhenga2971c82015-06-10 11:09:32 +08002072 spin_lock(&mdsc->cap_dirty_lock);
2073 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2074 spin_unlock(&mdsc->cap_dirty_lock);
Yan, Zheng553adfd2015-06-09 15:48:57 +08002075 }
Sage Weila8599bd2009-10-06 11:31:12 -07002076
2077 mds = cap->mds; /* remember mds, so we don't repeat */
Sage Weila8599bd2009-10-06 11:31:12 -07002078
Sage Weilbe655592011-11-30 09:47:09 -08002079 /* __send_cap drops i_ceph_lock */
Yan, Zhenga0d93e32020-03-05 20:21:01 +08002080 __send_cap(mdsc, cap, CEPH_CAP_OP_UPDATE, 0, cap_used, want,
2081 retain, flushing, flush_tid, oldest_flush_tid);
Sage Weilbe655592011-11-30 09:47:09 -08002082 goto retry; /* retake i_ceph_lock and restart our cap scan. */
Sage Weila8599bd2009-10-06 11:31:12 -07002083 }
2084
Yan, Zhenga0d93e32020-03-05 20:21:01 +08002085 /* periodically re-calculate caps wanted by open files */
2086 if (__ceph_is_any_real_caps(ci) &&
2087 list_empty(&ci->i_cap_delay_list) &&
2088 (file_wanted & ~CEPH_CAP_PIN) &&
2089 !(used & (CEPH_CAP_FILE_RD | CEPH_CAP_ANY_FILE_WR))) {
2090 __cap_delay_requeue(mdsc, ci);
Yan, Zheng719a2512020-03-05 20:21:00 +08002091 }
Sage Weila8599bd2009-10-06 11:31:12 -07002092
Sage Weilbe655592011-11-30 09:47:09 -08002093 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002094
Sage Weilcbd03632010-02-09 13:41:18 -08002095 if (queue_invalidate)
Sage Weil3c6f6b72010-02-09 15:24:44 -08002096 ceph_queue_invalidate(inode);
Sage Weilcbd03632010-02-09 13:41:18 -08002097
Sage Weilcdc2ce02010-03-16 13:39:28 -07002098 if (session)
Sage Weila8599bd2009-10-06 11:31:12 -07002099 mutex_unlock(&session->s_mutex);
2100 if (took_snap_rwsem)
2101 up_read(&mdsc->snap_rwsem);
2102}
2103
2104/*
Sage Weila8599bd2009-10-06 11:31:12 -07002105 * Try to flush dirty caps back to the auth mds.
2106 */
Yan, Zheng553adfd2015-06-09 15:48:57 +08002107static int try_flush_caps(struct inode *inode, u64 *ptid)
Sage Weila8599bd2009-10-06 11:31:12 -07002108{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002109 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07002110 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng4fe59782013-10-31 16:44:14 +08002111 struct ceph_mds_session *session = NULL;
Yan, Zheng89b52fe2015-05-27 09:59:48 +08002112 int flushing = 0;
Yan, Zhenga2971c82015-06-10 11:09:32 +08002113 u64 flush_tid = 0, oldest_flush_tid = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002114
2115retry:
Sage Weilbe655592011-11-30 09:47:09 -08002116 spin_lock(&ci->i_ceph_lock);
Yan, Zhengd6cee9d2019-06-20 16:09:37 +08002117retry_locked:
Sage Weila8599bd2009-10-06 11:31:12 -07002118 if (ci->i_dirty_caps && ci->i_auth_cap) {
2119 struct ceph_cap *cap = ci->i_auth_cap;
Sage Weila8599bd2009-10-06 11:31:12 -07002120
Jeff Layton27b0a392019-07-05 13:26:29 -04002121 if (session != cap->session) {
Sage Weilbe655592011-11-30 09:47:09 -08002122 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng4fe59782013-10-31 16:44:14 +08002123 if (session)
2124 mutex_unlock(&session->s_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07002125 session = cap->session;
2126 mutex_lock(&session->s_mutex);
2127 goto retry;
2128 }
Jeff Layton6c2838f2017-10-19 08:52:58 -04002129 if (cap->session->s_state < CEPH_MDS_SESSION_OPEN) {
2130 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002131 goto out;
Jeff Layton6c2838f2017-10-19 08:52:58 -04002132 }
Sage Weila8599bd2009-10-06 11:31:12 -07002133
Yan, Zhengd6cee9d2019-06-20 16:09:37 +08002134 if (ci->i_ceph_flags &
2135 (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS)) {
2136 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
2137 __kick_flushing_caps(mdsc, session, ci, 0);
2138 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
2139 __ceph_flush_snaps(ci, session);
2140 goto retry_locked;
2141 }
2142
Jeff Layton9f3345d2019-07-08 12:27:57 -04002143 flushing = ci->i_dirty_caps;
2144 flush_tid = __mark_caps_flushing(inode, session, true,
2145 &oldest_flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -07002146
Sage Weilbe655592011-11-30 09:47:09 -08002147 /* __send_cap drops i_ceph_lock */
Yan, Zhenga0d93e32020-03-05 20:21:01 +08002148 __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH, CEPH_CLIENT_CAPS_SYNC,
2149 __ceph_caps_used(ci), __ceph_caps_wanted(ci),
2150 (cap->issued | cap->implemented),
2151 flushing, flush_tid, oldest_flush_tid);
Yan, Zheng553adfd2015-06-09 15:48:57 +08002152 } else {
Yan, Zhenge4500b52016-07-06 11:12:56 +08002153 if (!list_empty(&ci->i_cap_flush_list)) {
Yan, Zheng553adfd2015-06-09 15:48:57 +08002154 struct ceph_cap_flush *cf =
Yan, Zhenge4500b52016-07-06 11:12:56 +08002155 list_last_entry(&ci->i_cap_flush_list,
Yan, Zhengc8799fc2016-07-07 15:22:38 +08002156 struct ceph_cap_flush, i_list);
2157 cf->wake = true;
Yan, Zheng553adfd2015-06-09 15:48:57 +08002158 flush_tid = cf->tid;
2159 }
2160 flushing = ci->i_flushing_caps;
2161 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002162 }
2163out:
Yan, Zheng4fe59782013-10-31 16:44:14 +08002164 if (session)
Sage Weila8599bd2009-10-06 11:31:12 -07002165 mutex_unlock(&session->s_mutex);
Yan, Zheng553adfd2015-06-09 15:48:57 +08002166
2167 *ptid = flush_tid;
Sage Weila8599bd2009-10-06 11:31:12 -07002168 return flushing;
2169}
2170
2171/*
2172 * Return true if we've flushed caps through the given flush_tid.
2173 */
Yan, Zheng553adfd2015-06-09 15:48:57 +08002174static int caps_are_flushed(struct inode *inode, u64 flush_tid)
Sage Weila8599bd2009-10-06 11:31:12 -07002175{
2176 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng553adfd2015-06-09 15:48:57 +08002177 int ret = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07002178
Sage Weilbe655592011-11-30 09:47:09 -08002179 spin_lock(&ci->i_ceph_lock);
Yan, Zhenge4500b52016-07-06 11:12:56 +08002180 if (!list_empty(&ci->i_cap_flush_list)) {
2181 struct ceph_cap_flush * cf =
2182 list_first_entry(&ci->i_cap_flush_list,
2183 struct ceph_cap_flush, i_list);
Yan, Zheng553adfd2015-06-09 15:48:57 +08002184 if (cf->tid <= flush_tid)
Sage Weila8599bd2009-10-06 11:31:12 -07002185 ret = 0;
Yan, Zheng89b52fe2015-05-27 09:59:48 +08002186 }
Sage Weilbe655592011-11-30 09:47:09 -08002187 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002188 return ret;
2189}
2190
2191/*
Yan, Zheng68cd5b42015-10-27 18:36:06 +08002192 * wait for any unsafe requests to complete.
Yan, Zhengda819c82015-05-27 11:19:34 +08002193 */
Yan, Zheng68cd5b42015-10-27 18:36:06 +08002194static int unsafe_request_wait(struct inode *inode)
Yan, Zhengda819c82015-05-27 11:19:34 +08002195{
2196 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng68cd5b42015-10-27 18:36:06 +08002197 struct ceph_mds_request *req1 = NULL, *req2 = NULL;
2198 int ret, err = 0;
Yan, Zhengda819c82015-05-27 11:19:34 +08002199
2200 spin_lock(&ci->i_unsafe_lock);
Yan, Zheng68cd5b42015-10-27 18:36:06 +08002201 if (S_ISDIR(inode->i_mode) && !list_empty(&ci->i_unsafe_dirops)) {
2202 req1 = list_last_entry(&ci->i_unsafe_dirops,
2203 struct ceph_mds_request,
2204 r_unsafe_dir_item);
2205 ceph_mdsc_get_request(req1);
2206 }
2207 if (!list_empty(&ci->i_unsafe_iops)) {
2208 req2 = list_last_entry(&ci->i_unsafe_iops,
2209 struct ceph_mds_request,
2210 r_unsafe_target_item);
2211 ceph_mdsc_get_request(req2);
2212 }
Yan, Zhengda819c82015-05-27 11:19:34 +08002213 spin_unlock(&ci->i_unsafe_lock);
Yan, Zheng68cd5b42015-10-27 18:36:06 +08002214
Jeff Layton4945a082016-11-16 09:45:22 -05002215 dout("unsafe_request_wait %p wait on tid %llu %llu\n",
Yan, Zheng68cd5b42015-10-27 18:36:06 +08002216 inode, req1 ? req1->r_tid : 0ULL, req2 ? req2->r_tid : 0ULL);
2217 if (req1) {
2218 ret = !wait_for_completion_timeout(&req1->r_safe_completion,
2219 ceph_timeout_jiffies(req1->r_timeout));
2220 if (ret)
2221 err = -EIO;
2222 ceph_mdsc_put_request(req1);
2223 }
2224 if (req2) {
2225 ret = !wait_for_completion_timeout(&req2->r_safe_completion,
2226 ceph_timeout_jiffies(req2->r_timeout));
2227 if (ret)
2228 err = -EIO;
2229 ceph_mdsc_put_request(req2);
2230 }
2231 return err;
Yan, Zhengda819c82015-05-27 11:19:34 +08002232}
2233
Josef Bacik02c24a82011-07-16 20:44:56 -04002234int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync)
Sage Weila8599bd2009-10-06 11:31:12 -07002235{
Yan, Zhengf4b97862019-07-25 20:16:42 +08002236 struct ceph_file_info *fi = file->private_data;
Christoph Hellwig7ea80852010-05-26 17:53:25 +02002237 struct inode *inode = file->f_mapping->host;
Sage Weila8599bd2009-10-06 11:31:12 -07002238 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng553adfd2015-06-09 15:48:57 +08002239 u64 flush_tid;
Yan, Zhengf4b97862019-07-25 20:16:42 +08002240 int ret, err;
Sage Weila8599bd2009-10-06 11:31:12 -07002241 int dirty;
2242
2243 dout("fsync %p%s\n", inode, datasync ? " datasync" : "");
Yan, Zheng9a5530c2016-06-15 16:29:18 +08002244
Jeff Laytonb74fcea2017-07-25 10:50:41 -04002245 ret = file_write_and_wait_range(file, start, end);
Yan, Zhengda819c82015-05-27 11:19:34 +08002246 if (datasync)
2247 goto out;
2248
Jeff Layton891f3f52020-01-14 15:06:40 -05002249 ret = ceph_wait_on_async_create(inode);
2250 if (ret)
2251 goto out;
2252
Yan, Zheng553adfd2015-06-09 15:48:57 +08002253 dirty = try_flush_caps(inode, &flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -07002254 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty));
2255
Yan, Zhengf4b97862019-07-25 20:16:42 +08002256 err = unsafe_request_wait(inode);
Yan, Zhengda819c82015-05-27 11:19:34 +08002257
Sage Weila8599bd2009-10-06 11:31:12 -07002258 /*
2259 * only wait on non-file metadata writeback (the mds
2260 * can recover size and mtime, so we don't need to
2261 * wait for that)
2262 */
Yan, Zhengf4b97862019-07-25 20:16:42 +08002263 if (!err && (dirty & ~CEPH_CAP_ANY_FILE_WR)) {
2264 err = wait_event_interruptible(ci->i_cap_wq,
Yan, Zhengda819c82015-05-27 11:19:34 +08002265 caps_are_flushed(inode, flush_tid));
Sage Weila8599bd2009-10-06 11:31:12 -07002266 }
Yan, Zhengf4b97862019-07-25 20:16:42 +08002267
2268 if (err < 0)
2269 ret = err;
2270
2271 if (errseq_check(&ci->i_meta_err, READ_ONCE(fi->meta_err))) {
2272 spin_lock(&file->f_lock);
2273 err = errseq_check_and_advance(&ci->i_meta_err,
2274 &fi->meta_err);
2275 spin_unlock(&file->f_lock);
2276 if (err < 0)
2277 ret = err;
2278 }
Yan, Zhengda819c82015-05-27 11:19:34 +08002279out:
2280 dout("fsync %p%s result=%d\n", inode, datasync ? " datasync" : "", ret);
Sage Weila8599bd2009-10-06 11:31:12 -07002281 return ret;
2282}
2283
2284/*
2285 * Flush any dirty caps back to the mds. If we aren't asked to wait,
2286 * queue inode for flush but don't do so immediately, because we can
2287 * get by with fewer MDS messages if we wait for data writeback to
2288 * complete first.
2289 */
Stephen Rothwellf1a3d572010-01-18 11:53:08 +11002290int ceph_write_inode(struct inode *inode, struct writeback_control *wbc)
Sage Weila8599bd2009-10-06 11:31:12 -07002291{
2292 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng553adfd2015-06-09 15:48:57 +08002293 u64 flush_tid;
Sage Weila8599bd2009-10-06 11:31:12 -07002294 int err = 0;
2295 int dirty;
Chengguang Xu16515a62018-01-30 10:02:30 +08002296 int wait = (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync);
Sage Weila8599bd2009-10-06 11:31:12 -07002297
2298 dout("write_inode %p wait=%d\n", inode, wait);
2299 if (wait) {
Yan, Zheng553adfd2015-06-09 15:48:57 +08002300 dirty = try_flush_caps(inode, &flush_tid);
Sage Weila8599bd2009-10-06 11:31:12 -07002301 if (dirty)
2302 err = wait_event_interruptible(ci->i_cap_wq,
2303 caps_are_flushed(inode, flush_tid));
2304 } else {
Cheng Renquan640ef792010-03-26 17:40:33 +08002305 struct ceph_mds_client *mdsc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002306 ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07002307
Sage Weilbe655592011-11-30 09:47:09 -08002308 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002309 if (__ceph_caps_dirty(ci))
2310 __cap_delay_requeue_front(mdsc, ci);
Sage Weilbe655592011-11-30 09:47:09 -08002311 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002312 }
2313 return err;
2314}
2315
Yan, Zheng0e294382016-07-04 18:06:41 +08002316static void __kick_flushing_caps(struct ceph_mds_client *mdsc,
2317 struct ceph_mds_session *session,
2318 struct ceph_inode_info *ci,
2319 u64 oldest_flush_tid)
2320 __releases(ci->i_ceph_lock)
2321 __acquires(ci->i_ceph_lock)
Yan, Zheng553adfd2015-06-09 15:48:57 +08002322{
2323 struct inode *inode = &ci->vfs_inode;
2324 struct ceph_cap *cap;
2325 struct ceph_cap_flush *cf;
Yan, Zheng0e294382016-07-04 18:06:41 +08002326 int ret;
Yan, Zheng553adfd2015-06-09 15:48:57 +08002327 u64 first_tid = 0;
Yan, Zheng49ada6e2019-06-20 12:09:08 +08002328 u64 last_snap_flush = 0;
Yan, Zhenga2971c82015-06-10 11:09:32 +08002329
Yan, Zheng054f8d42019-06-20 16:00:31 +08002330 ci->i_ceph_flags &= ~CEPH_I_KICK_FLUSH;
2331
Yan, Zheng49ada6e2019-06-20 12:09:08 +08002332 list_for_each_entry_reverse(cf, &ci->i_cap_flush_list, i_list) {
2333 if (!cf->caps) {
2334 last_snap_flush = cf->tid;
2335 break;
2336 }
2337 }
2338
Yan, Zhenge4500b52016-07-06 11:12:56 +08002339 list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
2340 if (cf->tid < first_tid)
2341 continue;
2342
Yan, Zheng553adfd2015-06-09 15:48:57 +08002343 cap = ci->i_auth_cap;
2344 if (!(cap && cap->session == session)) {
Yan, Zheng0e294382016-07-04 18:06:41 +08002345 pr_err("%p auth cap %p not mds%d ???\n",
2346 inode, cap, session->s_mds);
Yan, Zheng553adfd2015-06-09 15:48:57 +08002347 break;
2348 }
2349
Yan, Zheng553adfd2015-06-09 15:48:57 +08002350 first_tid = cf->tid + 1;
2351
Yan, Zheng0e294382016-07-04 18:06:41 +08002352 if (cf->caps) {
2353 dout("kick_flushing_caps %p cap %p tid %llu %s\n",
2354 inode, cap, cf->tid, ceph_cap_string(cf->caps));
Yan, Zhenga0d93e32020-03-05 20:21:01 +08002355 __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
Yan, Zheng49ada6e2019-06-20 12:09:08 +08002356 (cf->tid < last_snap_flush ?
2357 CEPH_CLIENT_CAPS_PENDING_CAPSNAP : 0),
2358 __ceph_caps_used(ci),
Yan, Zheng0e294382016-07-04 18:06:41 +08002359 __ceph_caps_wanted(ci),
Yan, Zheng49ada6e2019-06-20 12:09:08 +08002360 (cap->issued | cap->implemented),
Yan, Zheng0e294382016-07-04 18:06:41 +08002361 cf->caps, cf->tid, oldest_flush_tid);
Yan, Zheng0e294382016-07-04 18:06:41 +08002362 } else {
2363 struct ceph_cap_snap *capsnap =
2364 container_of(cf, struct ceph_cap_snap,
2365 cap_flush);
2366 dout("kick_flushing_caps %p capsnap %p tid %llu %s\n",
2367 inode, capsnap, cf->tid,
2368 ceph_cap_string(capsnap->dirty));
2369
Elena Reshetova805692d2017-03-03 11:15:07 +02002370 refcount_inc(&capsnap->nref);
Yan, Zheng0e294382016-07-04 18:06:41 +08002371 spin_unlock(&ci->i_ceph_lock);
2372
2373 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
2374 oldest_flush_tid);
2375 if (ret < 0) {
2376 pr_err("kick_flushing_caps: error sending "
2377 "cap flushsnap, ino (%llx.%llx) "
2378 "tid %llu follows %llu\n",
2379 ceph_vinop(inode), cf->tid,
2380 capsnap->follows);
2381 }
2382
2383 ceph_put_cap_snap(capsnap);
2384 }
Yan, Zhenge4500b52016-07-06 11:12:56 +08002385
2386 spin_lock(&ci->i_ceph_lock);
Yan, Zheng553adfd2015-06-09 15:48:57 +08002387 }
Yan, Zheng553adfd2015-06-09 15:48:57 +08002388}
2389
Yan, Zhenge548e9b2015-06-10 15:17:56 +08002390void ceph_early_kick_flushing_caps(struct ceph_mds_client *mdsc,
2391 struct ceph_mds_session *session)
2392{
2393 struct ceph_inode_info *ci;
2394 struct ceph_cap *cap;
Yan, Zheng0e294382016-07-04 18:06:41 +08002395 u64 oldest_flush_tid;
Yan, Zhenge548e9b2015-06-10 15:17:56 +08002396
2397 dout("early_kick_flushing_caps mds%d\n", session->s_mds);
Yan, Zheng0e294382016-07-04 18:06:41 +08002398
2399 spin_lock(&mdsc->cap_dirty_lock);
2400 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2401 spin_unlock(&mdsc->cap_dirty_lock);
2402
Yan, Zhenge548e9b2015-06-10 15:17:56 +08002403 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
2404 spin_lock(&ci->i_ceph_lock);
2405 cap = ci->i_auth_cap;
2406 if (!(cap && cap->session == session)) {
2407 pr_err("%p auth cap %p not mds%d ???\n",
2408 &ci->vfs_inode, cap, session->s_mds);
2409 spin_unlock(&ci->i_ceph_lock);
2410 continue;
2411 }
2412
2413
2414 /*
2415 * if flushing caps were revoked, we re-send the cap flush
2416 * in client reconnect stage. This guarantees MDS * processes
2417 * the cap flush message before issuing the flushing caps to
2418 * other client.
2419 */
2420 if ((cap->issued & ci->i_flushing_caps) !=
2421 ci->i_flushing_caps) {
Yan, Zheng81c5a142019-01-01 16:28:33 +08002422 /* encode_caps_cb() also will reset these sequence
2423 * numbers. make sure sequence numbers in cap flush
2424 * message match later reconnect message */
2425 cap->seq = 0;
2426 cap->issue_seq = 0;
2427 cap->mseq = 0;
Yan, Zheng0e294382016-07-04 18:06:41 +08002428 __kick_flushing_caps(mdsc, session, ci,
2429 oldest_flush_tid);
Yan, Zheng13c2b572016-07-05 16:45:21 +08002430 } else {
2431 ci->i_ceph_flags |= CEPH_I_KICK_FLUSH;
Yan, Zhenge548e9b2015-06-10 15:17:56 +08002432 }
2433
Yan, Zhenge548e9b2015-06-10 15:17:56 +08002434 spin_unlock(&ci->i_ceph_lock);
2435 }
2436}
2437
Sage Weila8599bd2009-10-06 11:31:12 -07002438void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
2439 struct ceph_mds_session *session)
2440{
2441 struct ceph_inode_info *ci;
Yan, Zheng13c2b572016-07-05 16:45:21 +08002442 struct ceph_cap *cap;
Yan, Zheng0e294382016-07-04 18:06:41 +08002443 u64 oldest_flush_tid;
Sage Weila8599bd2009-10-06 11:31:12 -07002444
2445 dout("kick_flushing_caps mds%d\n", session->s_mds);
Yan, Zheng0e294382016-07-04 18:06:41 +08002446
2447 spin_lock(&mdsc->cap_dirty_lock);
2448 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2449 spin_unlock(&mdsc->cap_dirty_lock);
2450
Sage Weila8599bd2009-10-06 11:31:12 -07002451 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
Yan, Zheng0e294382016-07-04 18:06:41 +08002452 spin_lock(&ci->i_ceph_lock);
Yan, Zheng13c2b572016-07-05 16:45:21 +08002453 cap = ci->i_auth_cap;
2454 if (!(cap && cap->session == session)) {
2455 pr_err("%p auth cap %p not mds%d ???\n",
2456 &ci->vfs_inode, cap, session->s_mds);
2457 spin_unlock(&ci->i_ceph_lock);
2458 continue;
2459 }
2460 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH) {
Yan, Zheng13c2b572016-07-05 16:45:21 +08002461 __kick_flushing_caps(mdsc, session, ci,
2462 oldest_flush_tid);
2463 }
Yan, Zheng0e294382016-07-04 18:06:41 +08002464 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002465 }
2466}
2467
Jeff Laytone8a4d262020-02-25 11:49:53 -08002468void ceph_kick_flushing_inode_caps(struct ceph_mds_session *session,
2469 struct ceph_inode_info *ci)
Sage Weil088b3f52011-01-18 08:56:01 -08002470{
Jeff Laytone8a4d262020-02-25 11:49:53 -08002471 struct ceph_mds_client *mdsc = session->s_mdsc;
2472 struct ceph_cap *cap = ci->i_auth_cap;
Sage Weil088b3f52011-01-18 08:56:01 -08002473
Jeff Laytone8a4d262020-02-25 11:49:53 -08002474 lockdep_assert_held(&ci->i_ceph_lock);
2475
2476 dout("%s %p flushing %s\n", __func__, &ci->vfs_inode,
Yan, Zheng8310b082015-06-09 17:20:12 +08002477 ceph_cap_string(ci->i_flushing_caps));
Yan, Zheng005c4692013-05-31 16:40:24 +08002478
Yan, Zheng0e294382016-07-04 18:06:41 +08002479 if (!list_empty(&ci->i_cap_flush_list)) {
2480 u64 oldest_flush_tid;
Yan, Zheng005c4692013-05-31 16:40:24 +08002481 spin_lock(&mdsc->cap_dirty_lock);
2482 list_move_tail(&ci->i_flushing_item,
2483 &cap->session->s_cap_flushing);
Yan, Zheng0e294382016-07-04 18:06:41 +08002484 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
Yan, Zheng005c4692013-05-31 16:40:24 +08002485 spin_unlock(&mdsc->cap_dirty_lock);
2486
Yan, Zheng0e294382016-07-04 18:06:41 +08002487 __kick_flushing_caps(mdsc, session, ci, oldest_flush_tid);
Sage Weil088b3f52011-01-18 08:56:01 -08002488 }
2489}
2490
Sage Weila8599bd2009-10-06 11:31:12 -07002491
2492/*
2493 * Take references to capabilities we hold, so that we don't release
2494 * them to the MDS prematurely.
Sage Weila8599bd2009-10-06 11:31:12 -07002495 */
Jeff Layton40dcf752020-01-14 09:23:49 -05002496void ceph_take_cap_refs(struct ceph_inode_info *ci, int got,
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002497 bool snap_rwsem_locked)
Sage Weila8599bd2009-10-06 11:31:12 -07002498{
Jeff Layton40dcf752020-01-14 09:23:49 -05002499 lockdep_assert_held(&ci->i_ceph_lock);
2500
Sage Weila8599bd2009-10-06 11:31:12 -07002501 if (got & CEPH_CAP_PIN)
2502 ci->i_pin_ref++;
2503 if (got & CEPH_CAP_FILE_RD)
2504 ci->i_rd_ref++;
2505 if (got & CEPH_CAP_FILE_CACHE)
2506 ci->i_rdcache_ref++;
Jeff Laytonf85122a2019-04-02 08:04:30 -04002507 if (got & CEPH_CAP_FILE_EXCL)
2508 ci->i_fx_ref++;
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002509 if (got & CEPH_CAP_FILE_WR) {
2510 if (ci->i_wr_ref == 0 && !ci->i_head_snapc) {
2511 BUG_ON(!snap_rwsem_locked);
2512 ci->i_head_snapc = ceph_get_snap_context(
2513 ci->i_snap_realm->cached_context);
2514 }
Sage Weila8599bd2009-10-06 11:31:12 -07002515 ci->i_wr_ref++;
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002516 }
Sage Weila8599bd2009-10-06 11:31:12 -07002517 if (got & CEPH_CAP_FILE_BUFFER) {
Henry C Changd3d07202011-05-11 10:29:54 +00002518 if (ci->i_wb_ref == 0)
Sage Weil3772d262011-05-03 09:28:08 -07002519 ihold(&ci->vfs_inode);
Henry C Changd3d07202011-05-11 10:29:54 +00002520 ci->i_wb_ref++;
Jeff Layton40dcf752020-01-14 09:23:49 -05002521 dout("%s %p wb %d -> %d (?)\n", __func__,
Henry C Changd3d07202011-05-11 10:29:54 +00002522 &ci->vfs_inode, ci->i_wb_ref-1, ci->i_wb_ref);
Sage Weila8599bd2009-10-06 11:31:12 -07002523 }
2524}
2525
2526/*
2527 * Try to grab cap references. Specify those refs we @want, and the
2528 * minimal set we @need. Also include the larger offset we are writing
2529 * to (when applicable), and check against max_size here as well.
2530 * Note that caller is responsible for ensuring max_size increases are
2531 * requested from the MDS.
Jeff Layton1199d7d2019-04-02 15:58:05 -04002532 *
2533 * Returns 0 if caps were not able to be acquired (yet), a 1 if they were,
2534 * or a negative error code.
2535 *
2536 * FIXME: how does a 0 return differ from -EAGAIN?
Sage Weila8599bd2009-10-06 11:31:12 -07002537 */
Yan, Zhengff5d9132019-07-25 20:16:45 +08002538enum {
Yan, Zheng719a2512020-03-05 20:21:00 +08002539 /* first 8 bits are reserved for CEPH_FILE_MODE_FOO */
2540 NON_BLOCKING = (1 << 8),
2541 CHECK_FILELOCK = (1 << 9),
Yan, Zhengff5d9132019-07-25 20:16:45 +08002542};
2543
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002544static int try_get_cap_refs(struct inode *inode, int need, int want,
Yan, Zhengff5d9132019-07-25 20:16:45 +08002545 loff_t endoff, int flags, int *got)
Sage Weila8599bd2009-10-06 11:31:12 -07002546{
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002547 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002548 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07002549 int ret = 0;
Yan, Zhengc4d4a582015-01-09 15:56:18 +08002550 int have, implemented;
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002551 bool snap_rwsem_locked = false;
Sage Weila8599bd2009-10-06 11:31:12 -07002552
2553 dout("get_cap_refs %p need %s want %s\n", inode,
2554 ceph_cap_string(need), ceph_cap_string(want));
Yan, Zhengc4d4a582015-01-09 15:56:18 +08002555
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002556again:
Sage Weilbe655592011-11-30 09:47:09 -08002557 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002558
Yan, Zhengff5d9132019-07-25 20:16:45 +08002559 if ((flags & CHECK_FILELOCK) &&
2560 (ci->i_ceph_flags & CEPH_I_ERROR_FILELOCK)) {
2561 dout("try_get_cap_refs %p error filelock\n", inode);
2562 ret = -EIO;
2563 goto out_unlock;
2564 }
2565
Yan, Zheng37505d52013-04-12 16:11:10 +08002566 /* finish pending truncate */
2567 while (ci->i_truncate_pending) {
2568 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002569 if (snap_rwsem_locked) {
2570 up_read(&mdsc->snap_rwsem);
2571 snap_rwsem_locked = false;
2572 }
Yan, Zhengb415bf42013-07-02 12:40:19 +08002573 __ceph_do_pending_vmtruncate(inode);
Yan, Zheng37505d52013-04-12 16:11:10 +08002574 spin_lock(&ci->i_ceph_lock);
2575 }
2576
Yan, Zheng3871cbb2013-08-05 14:10:29 +08002577 have = __ceph_caps_issued(ci, &implemented);
2578
2579 if (have & need & CEPH_CAP_FILE_WR) {
Sage Weila8599bd2009-10-06 11:31:12 -07002580 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2581 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2582 inode, endoff, ci->i_max_size);
Jeff Layton1199d7d2019-04-02 15:58:05 -04002583 if (endoff > ci->i_requested_max_size)
2584 ret = -EAGAIN;
Yan, Zheng3738daa2014-11-14 22:10:07 +08002585 goto out_unlock;
Sage Weila8599bd2009-10-06 11:31:12 -07002586 }
2587 /*
2588 * If a sync write is in progress, we must wait, so that we
2589 * can get a final snapshot value for size+mtime.
2590 */
2591 if (__ceph_have_pending_cap_snap(ci)) {
2592 dout("get_cap_refs %p cap_snap_pending\n", inode);
Yan, Zheng3738daa2014-11-14 22:10:07 +08002593 goto out_unlock;
Sage Weila8599bd2009-10-06 11:31:12 -07002594 }
2595 }
Sage Weila8599bd2009-10-06 11:31:12 -07002596
Sage Weila8599bd2009-10-06 11:31:12 -07002597 if ((have & need) == need) {
2598 /*
2599 * Look at (implemented & ~have & not) so that we keep waiting
2600 * on transition from wanted -> needed caps. This is needed
2601 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2602 * going before a prior buffered writeback happens.
2603 */
2604 int not = want & ~(have & need);
2605 int revoking = implemented & ~have;
2606 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2607 inode, ceph_cap_string(have), ceph_cap_string(not),
2608 ceph_cap_string(revoking));
2609 if ((revoking & not) == 0) {
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002610 if (!snap_rwsem_locked &&
2611 !ci->i_head_snapc &&
2612 (need & CEPH_CAP_FILE_WR)) {
2613 if (!down_read_trylock(&mdsc->snap_rwsem)) {
2614 /*
2615 * we can not call down_read() when
2616 * task isn't in TASK_RUNNING state
2617 */
Yan, Zhengff5d9132019-07-25 20:16:45 +08002618 if (flags & NON_BLOCKING) {
Jeff Layton1199d7d2019-04-02 15:58:05 -04002619 ret = -EAGAIN;
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002620 goto out_unlock;
2621 }
2622
2623 spin_unlock(&ci->i_ceph_lock);
2624 down_read(&mdsc->snap_rwsem);
2625 snap_rwsem_locked = true;
2626 goto again;
2627 }
2628 snap_rwsem_locked = true;
2629 }
Yan, Zheng173e70e2020-02-18 08:17:08 -05002630 if ((have & want) == want)
2631 *got = need | want;
2632 else
2633 *got = need;
Yan, Zheng525d15e2019-05-11 17:27:59 +08002634 if (S_ISREG(inode->i_mode) &&
2635 (need & CEPH_CAP_FILE_RD) &&
Yan, Zhengf7f7e7a2016-05-18 20:31:55 +08002636 !(*got & CEPH_CAP_FILE_CACHE))
2637 ceph_disable_fscache_readpage(ci);
Jeff Layton40dcf752020-01-14 09:23:49 -05002638 ceph_take_cap_refs(ci, *got, true);
Sage Weila8599bd2009-10-06 11:31:12 -07002639 ret = 1;
2640 }
2641 } else {
Yan, Zheng03f4fcb2015-01-05 11:04:04 +08002642 int session_readonly = false;
Yan, Zhengc0e385b2020-03-05 20:20:59 +08002643 int mds_wanted;
Yan, Zheng525d15e2019-05-11 17:27:59 +08002644 if (ci->i_auth_cap &&
2645 (need & (CEPH_CAP_FILE_WR | CEPH_CAP_FILE_EXCL))) {
Yan, Zheng03f4fcb2015-01-05 11:04:04 +08002646 struct ceph_mds_session *s = ci->i_auth_cap->session;
2647 spin_lock(&s->s_cap_lock);
2648 session_readonly = s->s_readonly;
2649 spin_unlock(&s->s_cap_lock);
2650 }
2651 if (session_readonly) {
Yan, Zhengc0e385b2020-03-05 20:20:59 +08002652 dout("get_cap_refs %p need %s but mds%d readonly\n",
Yan, Zheng03f4fcb2015-01-05 11:04:04 +08002653 inode, ceph_cap_string(need), ci->i_auth_cap->mds);
Jeff Layton1199d7d2019-04-02 15:58:05 -04002654 ret = -EROFS;
Yan, Zheng03f4fcb2015-01-05 11:04:04 +08002655 goto out_unlock;
2656 }
2657
Yan, Zhengc0e385b2020-03-05 20:20:59 +08002658 if (READ_ONCE(mdsc->fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
2659 dout("get_cap_refs %p forced umount\n", inode);
2660 ret = -EIO;
2661 goto out_unlock;
2662 }
2663 mds_wanted = __ceph_caps_mds_wanted(ci, false);
2664 if (need & ~mds_wanted) {
2665 dout("get_cap_refs %p need %s > mds_wanted %s\n",
2666 inode, ceph_cap_string(need),
2667 ceph_cap_string(mds_wanted));
2668 ret = -ESTALE;
2669 goto out_unlock;
Yan, Zheng48fec5d2015-07-01 16:27:46 +08002670 }
2671
Yan, Zhengc0e385b2020-03-05 20:20:59 +08002672 dout("get_cap_refs %p have %s need %s\n", inode,
Sage Weila8599bd2009-10-06 11:31:12 -07002673 ceph_cap_string(have), ceph_cap_string(need));
2674 }
Yan, Zheng3738daa2014-11-14 22:10:07 +08002675out_unlock:
Yan, Zheng719a2512020-03-05 20:21:00 +08002676
2677 __ceph_touch_fmode(ci, mdsc, flags);
2678
Sage Weilbe655592011-11-30 09:47:09 -08002679 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002680 if (snap_rwsem_locked)
2681 up_read(&mdsc->snap_rwsem);
Yan, Zheng3738daa2014-11-14 22:10:07 +08002682
Sage Weila8599bd2009-10-06 11:31:12 -07002683 dout("get_cap_refs %p ret %d got %s\n", inode,
Yan, Zhengc4d4a582015-01-09 15:56:18 +08002684 ret, ceph_cap_string(*got));
Sage Weila8599bd2009-10-06 11:31:12 -07002685 return ret;
2686}
2687
2688/*
2689 * Check the offset we are writing up to against our current
2690 * max_size. If necessary, tell the MDS we want to write to
2691 * a larger offset.
2692 */
2693static void check_max_size(struct inode *inode, loff_t endoff)
2694{
2695 struct ceph_inode_info *ci = ceph_inode(inode);
2696 int check = 0;
2697
2698 /* do we need to explicitly request a larger max_size? */
Sage Weilbe655592011-11-30 09:47:09 -08002699 spin_lock(&ci->i_ceph_lock);
Yan, Zheng3871cbb2013-08-05 14:10:29 +08002700 if (endoff >= ci->i_max_size && endoff > ci->i_wanted_max_size) {
Sage Weila8599bd2009-10-06 11:31:12 -07002701 dout("write %p at large endoff %llu, req max_size\n",
2702 inode, endoff);
2703 ci->i_wanted_max_size = endoff;
Sage Weila8599bd2009-10-06 11:31:12 -07002704 }
Yan, Zheng3871cbb2013-08-05 14:10:29 +08002705 /* duplicate ceph_check_caps()'s logic */
2706 if (ci->i_auth_cap &&
2707 (ci->i_auth_cap->issued & CEPH_CAP_FILE_WR) &&
2708 ci->i_wanted_max_size > ci->i_max_size &&
2709 ci->i_wanted_max_size > ci->i_requested_max_size)
2710 check = 1;
Sage Weilbe655592011-11-30 09:47:09 -08002711 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002712 if (check)
2713 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2714}
2715
Yan, Zheng719a2512020-03-05 20:21:00 +08002716static inline int get_used_fmode(int caps)
2717{
2718 int fmode = 0;
2719 if (caps & CEPH_CAP_FILE_RD)
2720 fmode |= CEPH_FILE_MODE_RD;
2721 if (caps & CEPH_CAP_FILE_WR)
2722 fmode |= CEPH_FILE_MODE_WR;
2723 return fmode;
2724}
2725
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002726int ceph_try_get_caps(struct inode *inode, int need, int want,
Luis Henriques2ee9dd92018-10-15 16:45:57 +01002727 bool nonblock, int *got)
Yan, Zheng2b1ac852016-10-25 10:51:55 +08002728{
Yan, Zheng719a2512020-03-05 20:21:00 +08002729 int ret, flags;
Yan, Zheng2b1ac852016-10-25 10:51:55 +08002730
2731 BUG_ON(need & ~CEPH_CAP_FILE_RD);
Jeff Laytona25949b2020-02-18 14:12:45 -05002732 BUG_ON(want & ~(CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO |
2733 CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL |
2734 CEPH_CAP_ANY_DIR_OPS));
2735 if (need) {
2736 ret = ceph_pool_perm_check(inode, need);
2737 if (ret < 0)
2738 return ret;
2739 }
Yan, Zheng2b1ac852016-10-25 10:51:55 +08002740
Yan, Zheng719a2512020-03-05 20:21:00 +08002741 flags = get_used_fmode(need | want);
2742 if (nonblock)
2743 flags |= NON_BLOCKING;
2744
2745 ret = try_get_cap_refs(inode, need, want, 0, flags, got);
Jeff Layton1199d7d2019-04-02 15:58:05 -04002746 return ret == -EAGAIN ? 0 : ret;
Yan, Zheng2b1ac852016-10-25 10:51:55 +08002747}
2748
Sage Weila8599bd2009-10-06 11:31:12 -07002749/*
2750 * Wait for caps, and take cap references. If we can't get a WR cap
2751 * due to a small max_size, make sure we check_max_size (and possibly
2752 * ask the mds) so we don't get hung up indefinitely.
2753 */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002754int ceph_get_caps(struct file *filp, int need, int want,
Yan, Zheng3738daa2014-11-14 22:10:07 +08002755 loff_t endoff, int *got, struct page **pinned_page)
Sage Weila8599bd2009-10-06 11:31:12 -07002756{
Yan, Zhengff5d9132019-07-25 20:16:45 +08002757 struct ceph_file_info *fi = filp->private_data;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002758 struct inode *inode = file_inode(filp);
2759 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng81f148a2019-07-25 20:16:46 +08002760 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Yan, Zhengff5d9132019-07-25 20:16:45 +08002761 int ret, _got, flags;
Sage Weila8599bd2009-10-06 11:31:12 -07002762
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002763 ret = ceph_pool_perm_check(inode, need);
Yan, Zheng10183a62015-04-27 15:33:28 +08002764 if (ret < 0)
2765 return ret;
2766
Yan, Zheng81f148a2019-07-25 20:16:46 +08002767 if ((fi->fmode & CEPH_FILE_MODE_WR) &&
2768 fi->filp_gen != READ_ONCE(fsc->filp_gen))
2769 return -EBADF;
2770
Yan, Zheng719a2512020-03-05 20:21:00 +08002771 flags = get_used_fmode(need | want);
2772
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002773 while (true) {
2774 if (endoff > 0)
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002775 check_max_size(inode, endoff);
Yan, Zhengc4d4a582015-01-09 15:56:18 +08002776
Yan, Zheng719a2512020-03-05 20:21:00 +08002777 flags &= CEPH_FILE_MODE_MASK;
2778 if (atomic_read(&fi->num_locks))
2779 flags |= CHECK_FILELOCK;
Yan, Zhengc4d4a582015-01-09 15:56:18 +08002780 _got = 0;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002781 ret = try_get_cap_refs(inode, need, want, endoff,
Yan, Zhengff5d9132019-07-25 20:16:45 +08002782 flags, &_got);
Yan, Zheng7b2f9362019-05-20 09:50:09 +08002783 if (ret == -EAGAIN)
Jeff Layton1199d7d2019-04-02 15:58:05 -04002784 continue;
Yan, Zheng7b2f9362019-05-20 09:50:09 +08002785 if (!ret) {
Jeff Layton3a3430a2019-11-20 12:00:59 -05002786 struct ceph_mds_client *mdsc = fsc->mdsc;
2787 struct cap_wait cw;
Nikolay Borisov5c341ee32016-10-11 12:04:09 +03002788 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Jeff Layton3a3430a2019-11-20 12:00:59 -05002789
2790 cw.ino = inode->i_ino;
2791 cw.tgid = current->tgid;
2792 cw.need = need;
2793 cw.want = want;
2794
2795 spin_lock(&mdsc->caps_list_lock);
2796 list_add(&cw.list, &mdsc->cap_wait_list);
2797 spin_unlock(&mdsc->caps_list_lock);
2798
Yan, Zheng719a2512020-03-05 20:21:00 +08002799 /* make sure used fmode not timeout */
2800 ceph_get_fmode(ci, flags, FMODE_WAIT_BIAS);
Nikolay Borisov5c341ee32016-10-11 12:04:09 +03002801 add_wait_queue(&ci->i_cap_wq, &wait);
2802
Yan, Zhengff5d9132019-07-25 20:16:45 +08002803 flags |= NON_BLOCKING;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002804 while (!(ret = try_get_cap_refs(inode, need, want,
Yan, Zhengff5d9132019-07-25 20:16:45 +08002805 endoff, flags, &_got))) {
Yan, Zheng6e09d0f2016-12-22 16:05:43 +08002806 if (signal_pending(current)) {
2807 ret = -ERESTARTSYS;
2808 break;
2809 }
Nikolay Borisov5c341ee32016-10-11 12:04:09 +03002810 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Yan, Zheng6e09d0f2016-12-22 16:05:43 +08002811 }
Nikolay Borisov5c341ee32016-10-11 12:04:09 +03002812
2813 remove_wait_queue(&ci->i_cap_wq, &wait);
Yan, Zheng719a2512020-03-05 20:21:00 +08002814 ceph_put_fmode(ci, flags, FMODE_WAIT_BIAS);
Jeff Layton3a3430a2019-11-20 12:00:59 -05002815
2816 spin_lock(&mdsc->caps_list_lock);
2817 list_del(&cw.list);
2818 spin_unlock(&mdsc->caps_list_lock);
2819
Yan, Zheng7b2f9362019-05-20 09:50:09 +08002820 if (ret == -EAGAIN)
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002821 continue;
Yan, Zheng77310322016-04-08 15:27:16 +08002822 }
Yan, Zheng81f148a2019-07-25 20:16:46 +08002823
2824 if ((fi->fmode & CEPH_FILE_MODE_WR) &&
2825 fi->filp_gen != READ_ONCE(fsc->filp_gen)) {
2826 if (ret >= 0 && _got)
2827 ceph_put_cap_refs(ci, _got);
2828 return -EBADF;
2829 }
2830
Yan, Zheng7b2f9362019-05-20 09:50:09 +08002831 if (ret < 0) {
2832 if (ret == -ESTALE) {
2833 /* session was killed, try renew caps */
Yan, Zheng719a2512020-03-05 20:21:00 +08002834 ret = ceph_renew_caps(inode, flags);
Yan, Zheng7b2f9362019-05-20 09:50:09 +08002835 if (ret == 0)
2836 continue;
2837 }
Yan, Zheng77310322016-04-08 15:27:16 +08002838 return ret;
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002839 }
Yan, Zhengc4d4a582015-01-09 15:56:18 +08002840
Yan, Zheng525d15e2019-05-11 17:27:59 +08002841 if (S_ISREG(ci->vfs_inode.i_mode) &&
2842 ci->i_inline_version != CEPH_INLINE_NONE &&
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002843 (_got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002844 i_size_read(inode) > 0) {
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002845 struct page *page =
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002846 find_get_page(inode->i_mapping, 0);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002847 if (page) {
2848 if (PageUptodate(page)) {
2849 *pinned_page = page;
2850 break;
2851 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002852 put_page(page);
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002853 }
2854 /*
2855 * drop cap refs first because getattr while
2856 * holding * caps refs can cause deadlock.
2857 */
2858 ceph_put_cap_refs(ci, _got);
2859 _got = 0;
2860
2861 /*
2862 * getattr request will bring inline data into
2863 * page cache
2864 */
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002865 ret = __ceph_do_getattr(inode, NULL,
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002866 CEPH_STAT_CAP_INLINE_DATA,
2867 true);
2868 if (ret < 0)
2869 return ret;
2870 continue;
2871 }
2872 break;
Yan, Zhengc4d4a582015-01-09 15:56:18 +08002873 }
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002874
Yan, Zheng525d15e2019-05-11 17:27:59 +08002875 if (S_ISREG(ci->vfs_inode.i_mode) &&
2876 (_got & CEPH_CAP_FILE_RD) && (_got & CEPH_CAP_FILE_CACHE))
Yan, Zhengf7f7e7a2016-05-18 20:31:55 +08002877 ceph_fscache_revalidate_cookie(ci);
2878
Yan, Zhengc4d4a582015-01-09 15:56:18 +08002879 *got = _got;
2880 return 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002881}
2882
2883/*
2884 * Take cap refs. Caller must already know we hold at least one ref
2885 * on the caps in question or we don't know this is safe.
2886 */
2887void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
2888{
Sage Weilbe655592011-11-30 09:47:09 -08002889 spin_lock(&ci->i_ceph_lock);
Jeff Layton40dcf752020-01-14 09:23:49 -05002890 ceph_take_cap_refs(ci, caps, false);
Sage Weilbe655592011-11-30 09:47:09 -08002891 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002892}
2893
Yan, Zheng86056092015-05-01 16:57:16 +08002894
2895/*
2896 * drop cap_snap that is not associated with any snapshot.
2897 * we don't need to send FLUSHSNAP message for it.
2898 */
Yan, Zheng70220ac2016-07-06 16:21:30 +08002899static int ceph_try_drop_cap_snap(struct ceph_inode_info *ci,
2900 struct ceph_cap_snap *capsnap)
Yan, Zheng86056092015-05-01 16:57:16 +08002901{
2902 if (!capsnap->need_flush &&
2903 !capsnap->writing && !capsnap->dirty_pages) {
Yan, Zheng86056092015-05-01 16:57:16 +08002904 dout("dropping cap_snap %p follows %llu\n",
2905 capsnap, capsnap->follows);
Yan, Zheng0e294382016-07-04 18:06:41 +08002906 BUG_ON(capsnap->cap_flush.tid > 0);
Yan, Zheng86056092015-05-01 16:57:16 +08002907 ceph_put_snap_context(capsnap->context);
Yan, Zheng70220ac2016-07-06 16:21:30 +08002908 if (!list_is_last(&capsnap->ci_item, &ci->i_cap_snaps))
2909 ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
2910
Yan, Zheng86056092015-05-01 16:57:16 +08002911 list_del(&capsnap->ci_item);
Yan, Zheng86056092015-05-01 16:57:16 +08002912 ceph_put_cap_snap(capsnap);
2913 return 1;
2914 }
2915 return 0;
2916}
2917
Sage Weila8599bd2009-10-06 11:31:12 -07002918/*
2919 * Release cap refs.
2920 *
2921 * If we released the last ref on any given cap, call ceph_check_caps
2922 * to release (or schedule a release).
2923 *
2924 * If we are releasing a WR cap (from a sync write), finalize any affected
2925 * cap_snap, and wake up any waiters.
2926 */
2927void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
2928{
2929 struct inode *inode = &ci->vfs_inode;
2930 int last = 0, put = 0, flushsnaps = 0, wake = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07002931
Sage Weilbe655592011-11-30 09:47:09 -08002932 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002933 if (had & CEPH_CAP_PIN)
2934 --ci->i_pin_ref;
2935 if (had & CEPH_CAP_FILE_RD)
2936 if (--ci->i_rd_ref == 0)
2937 last++;
2938 if (had & CEPH_CAP_FILE_CACHE)
2939 if (--ci->i_rdcache_ref == 0)
2940 last++;
Jeff Laytonf85122a2019-04-02 08:04:30 -04002941 if (had & CEPH_CAP_FILE_EXCL)
2942 if (--ci->i_fx_ref == 0)
2943 last++;
Sage Weila8599bd2009-10-06 11:31:12 -07002944 if (had & CEPH_CAP_FILE_BUFFER) {
Henry C Changd3d07202011-05-11 10:29:54 +00002945 if (--ci->i_wb_ref == 0) {
Sage Weila8599bd2009-10-06 11:31:12 -07002946 last++;
2947 put++;
2948 }
Henry C Changd3d07202011-05-11 10:29:54 +00002949 dout("put_cap_refs %p wb %d -> %d (?)\n",
2950 inode, ci->i_wb_ref+1, ci->i_wb_ref);
Sage Weila8599bd2009-10-06 11:31:12 -07002951 }
2952 if (had & CEPH_CAP_FILE_WR)
2953 if (--ci->i_wr_ref == 0) {
2954 last++;
Yan, Zheng86056092015-05-01 16:57:16 +08002955 if (__ceph_have_pending_cap_snap(ci)) {
2956 struct ceph_cap_snap *capsnap =
2957 list_last_entry(&ci->i_cap_snaps,
2958 struct ceph_cap_snap,
2959 ci_item);
2960 capsnap->writing = 0;
Yan, Zheng70220ac2016-07-06 16:21:30 +08002961 if (ceph_try_drop_cap_snap(ci, capsnap))
Yan, Zheng86056092015-05-01 16:57:16 +08002962 put++;
2963 else if (__ceph_finish_cap_snap(ci, capsnap))
2964 flushsnaps = 1;
2965 wake = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07002966 }
Yan, Zheng5dda377c2015-04-30 14:40:54 +08002967 if (ci->i_wrbuffer_ref_head == 0 &&
2968 ci->i_dirty_caps == 0 &&
2969 ci->i_flushing_caps == 0) {
2970 BUG_ON(!ci->i_head_snapc);
2971 ceph_put_snap_context(ci->i_head_snapc);
2972 ci->i_head_snapc = NULL;
2973 }
Yan, Zhengdb40cc12015-03-23 20:12:20 +08002974 /* see comment in __ceph_remove_cap() */
Xiubo Libd84fbc2019-12-03 03:00:51 -05002975 if (!__ceph_is_any_real_caps(ci) && ci->i_snap_realm)
Yan, Zhengdb40cc12015-03-23 20:12:20 +08002976 drop_inode_snap_realm(ci);
Sage Weila8599bd2009-10-06 11:31:12 -07002977 }
Sage Weilbe655592011-11-30 09:47:09 -08002978 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07002979
Sage Weil819ccbf2010-04-01 09:33:46 -07002980 dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
2981 last ? " last" : "", put ? " put" : "");
Sage Weila8599bd2009-10-06 11:31:12 -07002982
Yan, Zhenga0d93e32020-03-05 20:21:01 +08002983 if (last)
Sage Weila8599bd2009-10-06 11:31:12 -07002984 ceph_check_caps(ci, 0, NULL);
2985 else if (flushsnaps)
Yan, Zhenged9b4302016-07-05 21:08:07 +08002986 ceph_flush_snaps(ci, NULL);
Sage Weila8599bd2009-10-06 11:31:12 -07002987 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07002988 wake_up_all(&ci->i_cap_wq);
Yan, Zheng86056092015-05-01 16:57:16 +08002989 while (put-- > 0)
Sage Weila8599bd2009-10-06 11:31:12 -07002990 iput(inode);
2991}
2992
2993/*
2994 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
2995 * context. Adjust per-snap dirty page accounting as appropriate.
2996 * Once all dirty data for a cap_snap is flushed, flush snapped file
2997 * metadata back to the MDS. If we dropped the last ref, call
2998 * ceph_check_caps.
2999 */
3000void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
3001 struct ceph_snap_context *snapc)
3002{
3003 struct inode *inode = &ci->vfs_inode;
Sage Weila8599bd2009-10-06 11:31:12 -07003004 struct ceph_cap_snap *capsnap = NULL;
Yan, Zheng70220ac2016-07-06 16:21:30 +08003005 int put = 0;
3006 bool last = false;
3007 bool found = false;
3008 bool flush_snaps = false;
3009 bool complete_capsnap = false;
Sage Weila8599bd2009-10-06 11:31:12 -07003010
Sage Weilbe655592011-11-30 09:47:09 -08003011 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003012 ci->i_wrbuffer_ref -= nr;
Yan, Zheng70220ac2016-07-06 16:21:30 +08003013 if (ci->i_wrbuffer_ref == 0) {
3014 last = true;
3015 put++;
3016 }
Sage Weila8599bd2009-10-06 11:31:12 -07003017
3018 if (ci->i_head_snapc == snapc) {
3019 ci->i_wrbuffer_ref_head -= nr;
Sage Weil7d8cb262010-08-24 08:44:16 -07003020 if (ci->i_wrbuffer_ref_head == 0 &&
Yan, Zheng5dda377c2015-04-30 14:40:54 +08003021 ci->i_wr_ref == 0 &&
3022 ci->i_dirty_caps == 0 &&
3023 ci->i_flushing_caps == 0) {
Sage Weil7d8cb262010-08-24 08:44:16 -07003024 BUG_ON(!ci->i_head_snapc);
Sage Weila8599bd2009-10-06 11:31:12 -07003025 ceph_put_snap_context(ci->i_head_snapc);
3026 ci->i_head_snapc = NULL;
3027 }
3028 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
3029 inode,
3030 ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
3031 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
3032 last ? " LAST" : "");
3033 } else {
3034 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
3035 if (capsnap->context == snapc) {
Yan, Zheng70220ac2016-07-06 16:21:30 +08003036 found = true;
Sage Weila8599bd2009-10-06 11:31:12 -07003037 break;
3038 }
3039 }
3040 BUG_ON(!found);
Sage Weil819ccbf2010-04-01 09:33:46 -07003041 capsnap->dirty_pages -= nr;
3042 if (capsnap->dirty_pages == 0) {
Yan, Zheng70220ac2016-07-06 16:21:30 +08003043 complete_capsnap = true;
3044 if (!capsnap->writing) {
3045 if (ceph_try_drop_cap_snap(ci, capsnap)) {
3046 put++;
3047 } else {
3048 ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
3049 flush_snaps = true;
3050 }
3051 }
Sage Weil819ccbf2010-04-01 09:33:46 -07003052 }
Sage Weila8599bd2009-10-06 11:31:12 -07003053 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
Yan, Zheng86056092015-05-01 16:57:16 +08003054 " snap %lld %d/%d -> %d/%d %s%s\n",
Sage Weila8599bd2009-10-06 11:31:12 -07003055 inode, capsnap, capsnap->context->seq,
3056 ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
3057 ci->i_wrbuffer_ref, capsnap->dirty_pages,
3058 last ? " (wrbuffer last)" : "",
Yan, Zheng86056092015-05-01 16:57:16 +08003059 complete_capsnap ? " (complete capsnap)" : "");
Sage Weila8599bd2009-10-06 11:31:12 -07003060 }
3061
Sage Weilbe655592011-11-30 09:47:09 -08003062 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003063
3064 if (last) {
3065 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
Yan, Zheng70220ac2016-07-06 16:21:30 +08003066 } else if (flush_snaps) {
Yan, Zhenged9b4302016-07-05 21:08:07 +08003067 ceph_flush_snaps(ci, NULL);
Sage Weila8599bd2009-10-06 11:31:12 -07003068 }
Yan, Zheng70220ac2016-07-06 16:21:30 +08003069 if (complete_capsnap)
3070 wake_up_all(&ci->i_cap_wq);
Yan, Zheng3e1d0452019-05-18 20:39:55 +08003071 while (put-- > 0) {
3072 /* avoid calling iput_final() in osd dispatch threads */
3073 ceph_async_iput(inode);
3074 }
Sage Weila8599bd2009-10-06 11:31:12 -07003075}
3076
3077/*
Yan, Zhengca20c992013-07-21 10:07:51 +08003078 * Invalidate unlinked inode's aliases, so we can drop the inode ASAP.
3079 */
3080static void invalidate_aliases(struct inode *inode)
3081{
3082 struct dentry *dn, *prev = NULL;
3083
3084 dout("invalidate_aliases inode %p\n", inode);
3085 d_prune_aliases(inode);
3086 /*
3087 * For non-directory inode, d_find_alias() only returns
J. Bruce Fieldsfc12c802014-01-16 17:42:53 -05003088 * hashed dentry. After calling d_invalidate(), the
3089 * dentry becomes unhashed.
Yan, Zhengca20c992013-07-21 10:07:51 +08003090 *
Yan, Zhenga8d436f2013-09-02 15:19:54 +08003091 * For directory inode, d_find_alias() can return
J. Bruce Fieldsfc12c802014-01-16 17:42:53 -05003092 * unhashed dentry. But directory inode should have
Yan, Zhengca20c992013-07-21 10:07:51 +08003093 * one alias at most.
3094 */
3095 while ((dn = d_find_alias(inode))) {
3096 if (dn == prev) {
3097 dput(dn);
3098 break;
3099 }
Yan, Zhenga8d436f2013-09-02 15:19:54 +08003100 d_invalidate(dn);
Yan, Zhengca20c992013-07-21 10:07:51 +08003101 if (prev)
3102 dput(prev);
3103 prev = dn;
3104 }
3105 if (prev)
3106 dput(prev);
3107}
3108
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003109struct cap_extra_info {
3110 struct ceph_string *pool_ns;
3111 /* inline data */
3112 u64 inline_version;
3113 void *inline_data;
3114 u32 inline_len;
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003115 /* dirstat */
3116 bool dirstat_valid;
3117 u64 nfiles;
3118 u64 nsubdirs;
Jeff Layton176c77c2019-06-06 08:06:40 -04003119 u64 change_attr;
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003120 /* currently issued */
3121 int issued;
Jeff Laytonec62b892019-05-29 12:23:14 -04003122 struct timespec64 btime;
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003123};
3124
Yan, Zhengca20c992013-07-21 10:07:51 +08003125/*
Sage Weila8599bd2009-10-06 11:31:12 -07003126 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
3127 * actually be a revocation if it specifies a smaller cap set.)
3128 *
Sage Weilbe655592011-11-30 09:47:09 -08003129 * caller holds s_mutex and i_ceph_lock, we drop both.
Sage Weila8599bd2009-10-06 11:31:12 -07003130 */
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003131static void handle_cap_grant(struct inode *inode,
Sage Weil15637c82010-03-16 13:42:00 -07003132 struct ceph_mds_session *session,
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003133 struct ceph_cap *cap,
3134 struct ceph_mds_caps *grant,
3135 struct ceph_buffer *xattr_buf,
3136 struct cap_extra_info *extra_info)
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003137 __releases(ci->i_ceph_lock)
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003138 __releases(session->s_mdsc->snap_rwsem)
Sage Weila8599bd2009-10-06 11:31:12 -07003139{
3140 struct ceph_inode_info *ci = ceph_inode(inode);
Sage Weil2f56f562010-10-27 20:59:49 -07003141 int seq = le32_to_cpu(grant->seq);
Sage Weila8599bd2009-10-06 11:31:12 -07003142 int newcaps = le32_to_cpu(grant->caps);
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003143 int used, wanted, dirty;
Sage Weila8599bd2009-10-06 11:31:12 -07003144 u64 size = le64_to_cpu(grant->size);
3145 u64 max_size = le64_to_cpu(grant->max_size);
Yan, Zhengfdac94f2018-11-22 15:26:01 +08003146 unsigned char check_caps = 0;
3147 bool was_stale = cap->cap_gen < session->s_cap_gen;
Fabian Frederickab6c2c32014-10-09 23:16:35 +02003148 bool wake = false;
3149 bool writeback = false;
3150 bool queue_trunc = false;
3151 bool queue_invalidate = false;
Fabian Frederickab6c2c32014-10-09 23:16:35 +02003152 bool deleted_inode = false;
Yan, Zheng31c542a2014-11-14 21:41:55 +08003153 bool fill_inline = false;
Sage Weila8599bd2009-10-06 11:31:12 -07003154
Sage Weil2f56f562010-10-27 20:59:49 -07003155 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003156 inode, cap, session->s_mds, seq, ceph_cap_string(newcaps));
Sage Weila8599bd2009-10-06 11:31:12 -07003157 dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
3158 inode->i_size);
3159
Yan, Zheng11df2df2013-11-24 14:44:38 +08003160
3161 /*
Sage Weila8599bd2009-10-06 11:31:12 -07003162 * If CACHE is being revoked, and we have no dirty buffers,
3163 * try to invalidate (once). (If there are dirty buffers, we
3164 * will invalidate _after_ writeback.)
3165 */
Yan, Zheng525d15e2019-05-11 17:27:59 +08003166 if (S_ISREG(inode->i_mode) && /* don't invalidate readdir cache */
Yan, Zhengfdd4e152015-06-16 20:48:56 +08003167 ((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
Sage Weil3b454c42010-06-10 13:20:33 -07003168 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
Yan, Zheng9abd4db2016-05-18 20:58:26 +08003169 !(ci->i_wrbuffer_ref || ci->i_wb_ref)) {
Li Wange9075742013-08-15 22:00:25 -07003170 if (try_nonblocking_invalidate(inode)) {
Sage Weila8599bd2009-10-06 11:31:12 -07003171 /* there were locked pages.. invalidate later
3172 in a separate thread. */
3173 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
Fabian Frederickab6c2c32014-10-09 23:16:35 +02003174 queue_invalidate = true;
Sage Weila8599bd2009-10-06 11:31:12 -07003175 ci->i_rdcache_revoking = ci->i_rdcache_gen;
3176 }
Sage Weila8599bd2009-10-06 11:31:12 -07003177 }
Sage Weila8599bd2009-10-06 11:31:12 -07003178 }
3179
Yan, Zhengd2f8bb22018-12-10 16:35:09 +08003180 if (was_stale)
3181 cap->issued = cap->implemented = CEPH_CAP_PIN;
3182
3183 /*
3184 * auth mds of the inode changed. we received the cap export message,
3185 * but still haven't received the cap import message. handle_cap_export
3186 * updated the new auth MDS' cap.
3187 *
3188 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing a message
3189 * that was sent before the cap import message. So don't remove caps.
3190 */
3191 if (ceph_seq_cmp(seq, cap->seq) <= 0) {
3192 WARN_ON(cap != ci->i_auth_cap);
3193 WARN_ON(cap->cap_id != le64_to_cpu(grant->cap_id));
3194 seq = cap->seq;
3195 newcaps |= cap->issued;
3196 }
3197
Sage Weila8599bd2009-10-06 11:31:12 -07003198 /* side effects now are allowed */
Sage Weil685f9a5d2009-11-09 12:05:48 -08003199 cap->cap_gen = session->s_cap_gen;
Yan, Zheng11df2df2013-11-24 14:44:38 +08003200 cap->seq = seq;
Sage Weila8599bd2009-10-06 11:31:12 -07003201
3202 __check_cap_issue(ci, cap, newcaps);
3203
Jeff Layton176c77c2019-06-06 08:06:40 -04003204 inode_set_max_iversion_raw(inode, extra_info->change_attr);
3205
Yan, Zhengf98a1282014-04-17 08:55:50 +08003206 if ((newcaps & CEPH_CAP_AUTH_SHARED) &&
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003207 (extra_info->issued & CEPH_CAP_AUTH_EXCL) == 0) {
Sage Weila8599bd2009-10-06 11:31:12 -07003208 inode->i_mode = le32_to_cpu(grant->mode);
Eric W. Biederman05cb11c2013-01-31 02:56:19 -08003209 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(grant->uid));
3210 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(grant->gid));
Jeff Laytonec62b892019-05-29 12:23:14 -04003211 ci->i_btime = extra_info->btime;
Sage Weila8599bd2009-10-06 11:31:12 -07003212 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
Eric W. Biedermanbd2bae62013-01-31 04:05:39 -08003213 from_kuid(&init_user_ns, inode->i_uid),
3214 from_kgid(&init_user_ns, inode->i_gid));
Sage Weila8599bd2009-10-06 11:31:12 -07003215 }
3216
Yan, Zhengfa466742018-05-25 11:22:56 +08003217 if ((newcaps & CEPH_CAP_LINK_SHARED) &&
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003218 (extra_info->issued & CEPH_CAP_LINK_EXCL) == 0) {
Miklos Szeredibfe86842011-10-28 14:13:29 +02003219 set_nlink(inode, le32_to_cpu(grant->nlink));
Yan, Zhengca20c992013-07-21 10:07:51 +08003220 if (inode->i_nlink == 0 &&
3221 (newcaps & (CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL)))
Fabian Frederickab6c2c32014-10-09 23:16:35 +02003222 deleted_inode = true;
Yan, Zhengca20c992013-07-21 10:07:51 +08003223 }
Sage Weila8599bd2009-10-06 11:31:12 -07003224
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003225 if ((extra_info->issued & CEPH_CAP_XATTR_EXCL) == 0 &&
3226 grant->xattr_len) {
Sage Weila8599bd2009-10-06 11:31:12 -07003227 int len = le32_to_cpu(grant->xattr_len);
3228 u64 version = le64_to_cpu(grant->xattr_version);
3229
3230 if (version > ci->i_xattrs.version) {
3231 dout(" got new xattrs v%llu on %p len %d\n",
3232 version, inode, len);
3233 if (ci->i_xattrs.blob)
3234 ceph_buffer_put(ci->i_xattrs.blob);
3235 ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
3236 ci->i_xattrs.version = version;
Guangliang Zhao7221fe42013-11-11 15:18:03 +08003237 ceph_forget_all_cached_acls(inode);
Yan, Zhengac6713c2019-05-26 16:27:56 +08003238 ceph_security_invalidate_secctx(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07003239 }
3240 }
3241
Yan, Zhengf98a1282014-04-17 08:55:50 +08003242 if (newcaps & CEPH_CAP_ANY_RD) {
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02003243 struct timespec64 mtime, atime, ctime;
Yan, Zhengf98a1282014-04-17 08:55:50 +08003244 /* ctime/mtime/atime? */
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02003245 ceph_decode_timespec64(&mtime, &grant->mtime);
3246 ceph_decode_timespec64(&atime, &grant->atime);
3247 ceph_decode_timespec64(&ctime, &grant->ctime);
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003248 ceph_fill_file_time(inode, extra_info->issued,
Yan, Zhengf98a1282014-04-17 08:55:50 +08003249 le32_to_cpu(grant->time_warp_seq),
3250 &ctime, &mtime, &atime);
3251 }
Sage Weila8599bd2009-10-06 11:31:12 -07003252
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003253 if ((newcaps & CEPH_CAP_FILE_SHARED) && extra_info->dirstat_valid) {
3254 ci->i_files = extra_info->nfiles;
3255 ci->i_subdirs = extra_info->nsubdirs;
3256 }
3257
Yan, Zhengf98a1282014-04-17 08:55:50 +08003258 if (newcaps & (CEPH_CAP_ANY_FILE_RD | CEPH_CAP_ANY_FILE_WR)) {
3259 /* file layout may have changed */
Yan, Zheng76271512016-02-03 21:24:49 +08003260 s64 old_pool = ci->i_layout.pool_id;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08003261 struct ceph_string *old_ns;
3262
Yan, Zheng76271512016-02-03 21:24:49 +08003263 ceph_file_layout_from_legacy(&ci->i_layout, &grant->layout);
Yan, Zheng779fe0f2016-03-07 09:35:06 +08003264 old_ns = rcu_dereference_protected(ci->i_layout.pool_ns,
3265 lockdep_is_held(&ci->i_ceph_lock));
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003266 rcu_assign_pointer(ci->i_layout.pool_ns, extra_info->pool_ns);
Yan, Zheng779fe0f2016-03-07 09:35:06 +08003267
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003268 if (ci->i_layout.pool_id != old_pool ||
3269 extra_info->pool_ns != old_ns)
Yan, Zheng76271512016-02-03 21:24:49 +08003270 ci->i_ceph_flags &= ~CEPH_I_POOL_PERM;
Yan, Zheng5ea5c5e2016-02-14 18:06:41 +08003271
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003272 extra_info->pool_ns = old_ns;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08003273
Yan, Zhengf98a1282014-04-17 08:55:50 +08003274 /* size/truncate_seq? */
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003275 queue_trunc = ceph_fill_file_size(inode, extra_info->issued,
Yan, Zhengf98a1282014-04-17 08:55:50 +08003276 le32_to_cpu(grant->truncate_seq),
3277 le64_to_cpu(grant->truncate_size),
3278 size);
Yan, Zheng84eea8c2017-05-16 08:55:34 +08003279 }
3280
3281 if (ci->i_auth_cap == cap && (newcaps & CEPH_CAP_ANY_FILE_WR)) {
3282 if (max_size != ci->i_max_size) {
Yan, Zhengf98a1282014-04-17 08:55:50 +08003283 dout("max_size %lld -> %llu\n",
3284 ci->i_max_size, max_size);
3285 ci->i_max_size = max_size;
3286 if (max_size >= ci->i_wanted_max_size) {
3287 ci->i_wanted_max_size = 0; /* reset */
3288 ci->i_requested_max_size = 0;
3289 }
Fabian Frederickab6c2c32014-10-09 23:16:35 +02003290 wake = true;
Yan, Zheng84eea8c2017-05-16 08:55:34 +08003291 } else if (ci->i_wanted_max_size > ci->i_max_size &&
3292 ci->i_wanted_max_size > ci->i_requested_max_size) {
3293 /* CEPH_CAP_OP_IMPORT */
3294 wake = true;
Sage Weila8599bd2009-10-06 11:31:12 -07003295 }
Sage Weila8599bd2009-10-06 11:31:12 -07003296 }
3297
3298 /* check cap bits */
3299 wanted = __ceph_caps_wanted(ci);
3300 used = __ceph_caps_used(ci);
3301 dirty = __ceph_caps_dirty(ci);
3302 dout(" my wanted = %s, used = %s, dirty %s\n",
3303 ceph_cap_string(wanted),
3304 ceph_cap_string(used),
3305 ceph_cap_string(dirty));
Yan, Zhengfdac94f2018-11-22 15:26:01 +08003306
3307 if ((was_stale || le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) &&
3308 (wanted & ~(cap->mds_wanted | newcaps))) {
3309 /*
3310 * If mds is importing cap, prior cap messages that update
3311 * 'wanted' may get dropped by mds (migrate seq mismatch).
3312 *
3313 * We don't send cap message to update 'wanted' if what we
3314 * want are already issued. If mds revokes caps, cap message
3315 * that releases caps also tells mds what we want. But if
3316 * caps got revoked by mds forcedly (session stale). We may
3317 * haven't told mds what we want.
3318 */
3319 check_caps = 1;
Sage Weila8599bd2009-10-06 11:31:12 -07003320 }
3321
Sage Weila8599bd2009-10-06 11:31:12 -07003322 /* revocation, grant, or no-op? */
3323 if (cap->issued & ~newcaps) {
Sage Weil3b454c42010-06-10 13:20:33 -07003324 int revoking = cap->issued & ~newcaps;
3325
3326 dout("revocation: %s -> %s (revoking %s)\n",
3327 ceph_cap_string(cap->issued),
3328 ceph_cap_string(newcaps),
3329 ceph_cap_string(revoking));
Yan, Zheng525d15e2019-05-11 17:27:59 +08003330 if (S_ISREG(inode->i_mode) &&
3331 (revoking & used & CEPH_CAP_FILE_BUFFER))
Fabian Frederickab6c2c32014-10-09 23:16:35 +02003332 writeback = true; /* initiate writeback; will delay ack */
Yan, Zheng525d15e2019-05-11 17:27:59 +08003333 else if (queue_invalidate &&
3334 revoking == CEPH_CAP_FILE_CACHE &&
3335 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0)
Sage Weil3b454c42010-06-10 13:20:33 -07003336 ; /* do nothing yet, invalidation will be queued */
3337 else if (cap == ci->i_auth_cap)
3338 check_caps = 1; /* check auth cap only */
3339 else
3340 check_caps = 2; /* check all caps */
Sage Weila8599bd2009-10-06 11:31:12 -07003341 cap->issued = newcaps;
Sage Weil978097c2010-03-08 15:27:53 -08003342 cap->implemented |= newcaps;
Sage Weila8599bd2009-10-06 11:31:12 -07003343 } else if (cap->issued == newcaps) {
3344 dout("caps unchanged: %s -> %s\n",
3345 ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
3346 } else {
3347 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
3348 ceph_cap_string(newcaps));
Yan, Zheng6ee6b9532013-07-02 12:40:21 +08003349 /* non-auth MDS is revoking the newly grant caps ? */
3350 if (cap == ci->i_auth_cap &&
3351 __ceph_caps_revoking_other(ci, cap, newcaps))
3352 check_caps = 2;
3353
Sage Weila8599bd2009-10-06 11:31:12 -07003354 cap->issued = newcaps;
3355 cap->implemented |= newcaps; /* add bits only, to
3356 * avoid stepping on a
3357 * pending revocation */
Fabian Frederickab6c2c32014-10-09 23:16:35 +02003358 wake = true;
Sage Weila8599bd2009-10-06 11:31:12 -07003359 }
Sage Weil978097c2010-03-08 15:27:53 -08003360 BUG_ON(cap->issued & ~cap->implemented);
Sage Weila8599bd2009-10-06 11:31:12 -07003361
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003362 if (extra_info->inline_version > 0 &&
3363 extra_info->inline_version >= ci->i_inline_version) {
3364 ci->i_inline_version = extra_info->inline_version;
Yan, Zheng31c542a2014-11-14 21:41:55 +08003365 if (ci->i_inline_version != CEPH_INLINE_NONE &&
3366 (newcaps & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)))
3367 fill_inline = true;
3368 }
3369
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003370 if (le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) {
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003371 if (newcaps & ~extra_info->issued)
Fabian Frederickab6c2c32014-10-09 23:16:35 +02003372 wake = true;
Jeff Laytone8a4d262020-02-25 11:49:53 -08003373 ceph_kick_flushing_inode_caps(session, ci);
3374 spin_unlock(&ci->i_ceph_lock);
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003375 up_read(&session->s_mdsc->snap_rwsem);
Yan, Zheng0e294382016-07-04 18:06:41 +08003376 } else {
3377 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003378 }
3379
Yan, Zheng31c542a2014-11-14 21:41:55 +08003380 if (fill_inline)
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003381 ceph_fill_inline_data(inode, NULL, extra_info->inline_data,
3382 extra_info->inline_len);
Yan, Zheng31c542a2014-11-14 21:41:55 +08003383
Yan, Zheng14649752016-05-20 15:41:20 +08003384 if (queue_trunc)
Yan, Zhengc6bcda62014-04-11 10:18:07 +08003385 ceph_queue_vmtruncate(inode);
Yan, Zhengc6bcda62014-04-11 10:18:07 +08003386
Sage Weil3c6f6b72010-02-09 15:24:44 -08003387 if (writeback)
Sage Weila8599bd2009-10-06 11:31:12 -07003388 /*
3389 * queue inode for writeback: we can't actually call
3390 * filemap_write_and_wait, etc. from message handler
3391 * context.
3392 */
Sage Weil3c6f6b72010-02-09 15:24:44 -08003393 ceph_queue_writeback(inode);
3394 if (queue_invalidate)
3395 ceph_queue_invalidate(inode);
Yan, Zhengca20c992013-07-21 10:07:51 +08003396 if (deleted_inode)
3397 invalidate_aliases(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07003398 if (wake)
Yehuda Sadeh03066f22010-07-27 13:11:08 -07003399 wake_up_all(&ci->i_cap_wq);
Sage Weil15637c82010-03-16 13:42:00 -07003400
3401 if (check_caps == 1)
Yan, Zhenga0d93e32020-03-05 20:21:01 +08003402 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY | CHECK_CAPS_NOINVAL,
Sage Weil15637c82010-03-16 13:42:00 -07003403 session);
3404 else if (check_caps == 2)
Yan, Zhenga0d93e32020-03-05 20:21:01 +08003405 ceph_check_caps(ci, CHECK_CAPS_NOINVAL, session);
Sage Weil15637c82010-03-16 13:42:00 -07003406 else
3407 mutex_unlock(&session->s_mutex);
Sage Weila8599bd2009-10-06 11:31:12 -07003408}
3409
3410/*
3411 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
3412 * MDS has been safely committed.
3413 */
Sage Weil6df058c2009-12-22 11:24:33 -08003414static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
Sage Weila8599bd2009-10-06 11:31:12 -07003415 struct ceph_mds_caps *m,
3416 struct ceph_mds_session *session,
3417 struct ceph_cap *cap)
Sage Weilbe655592011-11-30 09:47:09 -08003418 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07003419{
3420 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003421 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Yan, Zhenge4500b52016-07-06 11:12:56 +08003422 struct ceph_cap_flush *cf, *tmp_cf;
Yan, Zheng553adfd2015-06-09 15:48:57 +08003423 LIST_HEAD(to_remove);
Sage Weila8599bd2009-10-06 11:31:12 -07003424 unsigned seq = le32_to_cpu(m->seq);
3425 int dirty = le32_to_cpu(m->dirty);
3426 int cleaned = 0;
Yan, Zhengc8799fc2016-07-07 15:22:38 +08003427 bool drop = false;
Thomas Meyer7271efa2017-10-07 16:02:21 +02003428 bool wake_ci = false;
3429 bool wake_mdsc = false;
Sage Weila8599bd2009-10-06 11:31:12 -07003430
Yan, Zhenge4500b52016-07-06 11:12:56 +08003431 list_for_each_entry_safe(cf, tmp_cf, &ci->i_cap_flush_list, i_list) {
Yan, Zheng553adfd2015-06-09 15:48:57 +08003432 if (cf->tid == flush_tid)
3433 cleaned = cf->caps;
Yan, Zheng0e294382016-07-04 18:06:41 +08003434 if (cf->caps == 0) /* capsnap */
3435 continue;
Yan, Zheng553adfd2015-06-09 15:48:57 +08003436 if (cf->tid <= flush_tid) {
Yan, Zhengc8799fc2016-07-07 15:22:38 +08003437 if (__finish_cap_flush(NULL, ci, cf))
3438 wake_ci = true;
Yan, Zhenge4500b52016-07-06 11:12:56 +08003439 list_add_tail(&cf->i_list, &to_remove);
Yan, Zheng553adfd2015-06-09 15:48:57 +08003440 } else {
3441 cleaned &= ~cf->caps;
3442 if (!cleaned)
3443 break;
3444 }
3445 }
Sage Weila8599bd2009-10-06 11:31:12 -07003446
3447 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
3448 " flushing %s -> %s\n",
3449 inode, session->s_mds, seq, ceph_cap_string(dirty),
3450 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
3451 ceph_cap_string(ci->i_flushing_caps & ~cleaned));
3452
Yan, Zheng8310b082015-06-09 17:20:12 +08003453 if (list_empty(&to_remove) && !cleaned)
Sage Weila8599bd2009-10-06 11:31:12 -07003454 goto out;
3455
Sage Weila8599bd2009-10-06 11:31:12 -07003456 ci->i_flushing_caps &= ~cleaned;
Sage Weila8599bd2009-10-06 11:31:12 -07003457
3458 spin_lock(&mdsc->cap_dirty_lock);
Yan, Zheng8310b082015-06-09 17:20:12 +08003459
Yan, Zhengc8799fc2016-07-07 15:22:38 +08003460 list_for_each_entry(cf, &to_remove, i_list) {
3461 if (__finish_cap_flush(mdsc, NULL, cf))
3462 wake_mdsc = true;
Yan, Zheng8310b082015-06-09 17:20:12 +08003463 }
3464
Sage Weila8599bd2009-10-06 11:31:12 -07003465 if (ci->i_flushing_caps == 0) {
Yan, Zheng0e294382016-07-04 18:06:41 +08003466 if (list_empty(&ci->i_cap_flush_list)) {
3467 list_del_init(&ci->i_flushing_item);
3468 if (!list_empty(&session->s_cap_flushing)) {
3469 dout(" mds%d still flushing cap on %p\n",
3470 session->s_mds,
3471 &list_first_entry(&session->s_cap_flushing,
3472 struct ceph_inode_info,
3473 i_flushing_item)->vfs_inode);
3474 }
3475 }
Sage Weila8599bd2009-10-06 11:31:12 -07003476 mdsc->num_cap_flushing--;
Sage Weila8599bd2009-10-06 11:31:12 -07003477 dout(" inode %p now !flushing\n", inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07003478
3479 if (ci->i_dirty_caps == 0) {
3480 dout(" inode %p now clean\n", inode);
3481 BUG_ON(!list_empty(&ci->i_dirty_item));
Yan, Zhengc8799fc2016-07-07 15:22:38 +08003482 drop = true;
Yan, Zheng5dda377c2015-04-30 14:40:54 +08003483 if (ci->i_wr_ref == 0 &&
3484 ci->i_wrbuffer_ref_head == 0) {
Sage Weil7d8cb262010-08-24 08:44:16 -07003485 BUG_ON(!ci->i_head_snapc);
3486 ceph_put_snap_context(ci->i_head_snapc);
3487 ci->i_head_snapc = NULL;
3488 }
Sage Weil76e3b392009-10-15 18:13:53 -07003489 } else {
3490 BUG_ON(list_empty(&ci->i_dirty_item));
Sage Weilafcdaea2009-10-14 14:27:38 -07003491 }
Sage Weila8599bd2009-10-06 11:31:12 -07003492 }
3493 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003494
3495out:
Sage Weilbe655592011-11-30 09:47:09 -08003496 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng553adfd2015-06-09 15:48:57 +08003497
3498 while (!list_empty(&to_remove)) {
3499 cf = list_first_entry(&to_remove,
Yan, Zhenge4500b52016-07-06 11:12:56 +08003500 struct ceph_cap_flush, i_list);
3501 list_del(&cf->i_list);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08003502 ceph_free_cap_flush(cf);
Yan, Zheng553adfd2015-06-09 15:48:57 +08003503 }
Yan, Zhengc8799fc2016-07-07 15:22:38 +08003504
3505 if (wake_ci)
3506 wake_up_all(&ci->i_cap_wq);
3507 if (wake_mdsc)
3508 wake_up_all(&mdsc->cap_flushing_wq);
Sage Weilafcdaea2009-10-14 14:27:38 -07003509 if (drop)
Sage Weila8599bd2009-10-06 11:31:12 -07003510 iput(inode);
3511}
3512
3513/*
3514 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
3515 * throw away our cap_snap.
3516 *
3517 * Caller hold s_mutex.
3518 */
Sage Weil6df058c2009-12-22 11:24:33 -08003519static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
Sage Weila8599bd2009-10-06 11:31:12 -07003520 struct ceph_mds_caps *m,
3521 struct ceph_mds_session *session)
3522{
3523 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zhengaffbc192015-05-05 21:22:13 +08003524 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07003525 u64 follows = le64_to_cpu(m->snap_follows);
Sage Weila8599bd2009-10-06 11:31:12 -07003526 struct ceph_cap_snap *capsnap;
Yan, Zhengc8799fc2016-07-07 15:22:38 +08003527 bool flushed = false;
3528 bool wake_ci = false;
3529 bool wake_mdsc = false;
Sage Weila8599bd2009-10-06 11:31:12 -07003530
3531 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
3532 inode, ci, session->s_mds, follows);
3533
Sage Weilbe655592011-11-30 09:47:09 -08003534 spin_lock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003535 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
3536 if (capsnap->follows == follows) {
Yan, Zheng0e294382016-07-04 18:06:41 +08003537 if (capsnap->cap_flush.tid != flush_tid) {
Sage Weila8599bd2009-10-06 11:31:12 -07003538 dout(" cap_snap %p follows %lld tid %lld !="
3539 " %lld\n", capsnap, follows,
Yan, Zheng0e294382016-07-04 18:06:41 +08003540 flush_tid, capsnap->cap_flush.tid);
Sage Weila8599bd2009-10-06 11:31:12 -07003541 break;
3542 }
Yan, Zhengc8799fc2016-07-07 15:22:38 +08003543 flushed = true;
Sage Weila8599bd2009-10-06 11:31:12 -07003544 break;
3545 } else {
3546 dout(" skipping cap_snap %p follows %lld\n",
3547 capsnap, capsnap->follows);
3548 }
3549 }
Yan, Zheng0e294382016-07-04 18:06:41 +08003550 if (flushed) {
Yan, Zheng0e294382016-07-04 18:06:41 +08003551 WARN_ON(capsnap->dirty_pages || capsnap->writing);
3552 dout(" removing %p cap_snap %p follows %lld\n",
3553 inode, capsnap, follows);
3554 list_del(&capsnap->ci_item);
Yan, Zhengc8799fc2016-07-07 15:22:38 +08003555 if (__finish_cap_flush(NULL, ci, &capsnap->cap_flush))
3556 wake_ci = true;
Yan, Zheng0e294382016-07-04 18:06:41 +08003557
3558 spin_lock(&mdsc->cap_dirty_lock);
3559
3560 if (list_empty(&ci->i_cap_flush_list))
3561 list_del_init(&ci->i_flushing_item);
3562
Yan, Zhengc8799fc2016-07-07 15:22:38 +08003563 if (__finish_cap_flush(mdsc, NULL, &capsnap->cap_flush))
3564 wake_mdsc = true;
Yan, Zheng0e294382016-07-04 18:06:41 +08003565
3566 spin_unlock(&mdsc->cap_dirty_lock);
Yan, Zheng0e294382016-07-04 18:06:41 +08003567 }
Sage Weilbe655592011-11-30 09:47:09 -08003568 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng0e294382016-07-04 18:06:41 +08003569 if (flushed) {
3570 ceph_put_snap_context(capsnap->context);
3571 ceph_put_cap_snap(capsnap);
Yan, Zhengc8799fc2016-07-07 15:22:38 +08003572 if (wake_ci)
3573 wake_up_all(&ci->i_cap_wq);
3574 if (wake_mdsc)
3575 wake_up_all(&mdsc->cap_flushing_wq);
Sage Weila8599bd2009-10-06 11:31:12 -07003576 iput(inode);
Yan, Zheng0e294382016-07-04 18:06:41 +08003577 }
Sage Weila8599bd2009-10-06 11:31:12 -07003578}
3579
3580/*
3581 * Handle TRUNC from MDS, indicating file truncation.
3582 *
3583 * caller hold s_mutex.
3584 */
3585static void handle_cap_trunc(struct inode *inode,
3586 struct ceph_mds_caps *trunc,
3587 struct ceph_mds_session *session)
Sage Weilbe655592011-11-30 09:47:09 -08003588 __releases(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07003589{
3590 struct ceph_inode_info *ci = ceph_inode(inode);
3591 int mds = session->s_mds;
3592 int seq = le32_to_cpu(trunc->seq);
3593 u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
3594 u64 truncate_size = le64_to_cpu(trunc->truncate_size);
3595 u64 size = le64_to_cpu(trunc->size);
3596 int implemented = 0;
3597 int dirty = __ceph_caps_dirty(ci);
3598 int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
3599 int queue_trunc = 0;
3600
3601 issued |= implemented | dirty;
3602
3603 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
3604 inode, mds, seq, truncate_size, truncate_seq);
3605 queue_trunc = ceph_fill_file_size(inode, issued,
3606 truncate_seq, truncate_size, size);
Sage Weilbe655592011-11-30 09:47:09 -08003607 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07003608
Yan, Zheng14649752016-05-20 15:41:20 +08003609 if (queue_trunc)
Sage Weil3c6f6b72010-02-09 15:24:44 -08003610 ceph_queue_vmtruncate(inode);
Sage Weila8599bd2009-10-06 11:31:12 -07003611}
3612
3613/*
3614 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
3615 * different one. If we are the most recent migration we've seen (as
3616 * indicated by mseq), make note of the migrating cap bits for the
3617 * duration (until we see the corresponding IMPORT).
3618 *
3619 * caller holds s_mutex
3620 */
3621static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
Yan, Zheng11df2df2013-11-24 14:44:38 +08003622 struct ceph_mds_cap_peer *ph,
3623 struct ceph_mds_session *session)
Sage Weila8599bd2009-10-06 11:31:12 -07003624{
Sage Weildb354052011-05-24 11:46:31 -07003625 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
Yan, Zheng11df2df2013-11-24 14:44:38 +08003626 struct ceph_mds_session *tsession = NULL;
Yan, Zhengd9df2782014-04-18 09:57:11 +08003627 struct ceph_cap *cap, *tcap, *new_cap = NULL;
Sage Weila8599bd2009-10-06 11:31:12 -07003628 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng11df2df2013-11-24 14:44:38 +08003629 u64 t_cap_id;
Sage Weila8599bd2009-10-06 11:31:12 -07003630 unsigned mseq = le32_to_cpu(ex->migrate_seq);
Yan, Zheng11df2df2013-11-24 14:44:38 +08003631 unsigned t_seq, t_mseq;
3632 int target, issued;
3633 int mds = session->s_mds;
Sage Weila8599bd2009-10-06 11:31:12 -07003634
Yan, Zheng11df2df2013-11-24 14:44:38 +08003635 if (ph) {
3636 t_cap_id = le64_to_cpu(ph->cap_id);
3637 t_seq = le32_to_cpu(ph->seq);
3638 t_mseq = le32_to_cpu(ph->mseq);
3639 target = le32_to_cpu(ph->mds);
3640 } else {
3641 t_cap_id = t_seq = t_mseq = 0;
3642 target = -1;
Sage Weila8599bd2009-10-06 11:31:12 -07003643 }
3644
Yan, Zheng11df2df2013-11-24 14:44:38 +08003645 dout("handle_cap_export inode %p ci %p mds%d mseq %d target %d\n",
3646 inode, ci, mds, mseq, target);
3647retry:
3648 spin_lock(&ci->i_ceph_lock);
3649 cap = __get_cap_for_mds(ci, mds);
Yan, Zhengca665e02014-04-21 15:46:37 +08003650 if (!cap || cap->cap_id != le64_to_cpu(ex->cap_id))
Yan, Zheng11df2df2013-11-24 14:44:38 +08003651 goto out_unlock;
Sage Weil154f42c2010-06-21 13:45:04 -07003652
Yan, Zheng11df2df2013-11-24 14:44:38 +08003653 if (target < 0) {
Yan, Zhengd2f8bb22018-12-10 16:35:09 +08003654 __ceph_remove_cap(cap, false);
Yan, Zheng11df2df2013-11-24 14:44:38 +08003655 goto out_unlock;
3656 }
Sage Weildb354052011-05-24 11:46:31 -07003657
Yan, Zheng11df2df2013-11-24 14:44:38 +08003658 /*
3659 * now we know we haven't received the cap import message yet
3660 * because the exported cap still exist.
3661 */
3662
3663 issued = cap->issued;
Yan, Zhengd84b37f2018-01-03 11:16:27 +08003664 if (issued != cap->implemented)
3665 pr_err_ratelimited("handle_cap_export: issued != implemented: "
3666 "ino (%llx.%llx) mds%d seq %d mseq %d "
3667 "issued %s implemented %s\n",
3668 ceph_vinop(inode), mds, cap->seq, cap->mseq,
3669 ceph_cap_string(issued),
3670 ceph_cap_string(cap->implemented));
3671
Yan, Zheng11df2df2013-11-24 14:44:38 +08003672
3673 tcap = __get_cap_for_mds(ci, target);
3674 if (tcap) {
3675 /* already have caps from the target */
Yan, Zhengfa0aa3b2017-08-28 15:07:42 +08003676 if (tcap->cap_id == t_cap_id &&
Yan, Zheng11df2df2013-11-24 14:44:38 +08003677 ceph_seq_cmp(tcap->seq, t_seq) < 0) {
3678 dout(" updating import cap %p mds%d\n", tcap, target);
3679 tcap->cap_id = t_cap_id;
3680 tcap->seq = t_seq - 1;
3681 tcap->issue_seq = t_seq - 1;
Yan, Zheng11df2df2013-11-24 14:44:38 +08003682 tcap->issued |= issued;
3683 tcap->implemented |= issued;
3684 if (cap == ci->i_auth_cap)
3685 ci->i_auth_cap = tcap;
Yan, Zheng00f06cb2017-01-24 10:02:32 +08003686
Yan, Zheng0e294382016-07-04 18:06:41 +08003687 if (!list_empty(&ci->i_cap_flush_list) &&
3688 ci->i_auth_cap == tcap) {
Yan, Zheng11df2df2013-11-24 14:44:38 +08003689 spin_lock(&mdsc->cap_dirty_lock);
3690 list_move_tail(&ci->i_flushing_item,
3691 &tcap->session->s_cap_flushing);
3692 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weildb354052011-05-24 11:46:31 -07003693 }
Sage Weila8599bd2009-10-06 11:31:12 -07003694 }
Yan, Zhenga096b092013-09-22 10:15:58 +08003695 __ceph_remove_cap(cap, false);
Yan, Zheng11df2df2013-11-24 14:44:38 +08003696 goto out_unlock;
Yan, Zhengd9df2782014-04-18 09:57:11 +08003697 } else if (tsession) {
Yan, Zheng11df2df2013-11-24 14:44:38 +08003698 /* add placeholder for the export tagert */
Yan, Zhengd9df2782014-04-18 09:57:11 +08003699 int flag = (cap == ci->i_auth_cap) ? CEPH_CAP_FLAG_AUTH : 0;
Yan, Zheng00f06cb2017-01-24 10:02:32 +08003700 tcap = new_cap;
Yan, Zheng135e6712020-03-05 20:21:02 +08003701 ceph_add_cap(inode, tsession, t_cap_id, issued, 0,
Yan, Zhengd9df2782014-04-18 09:57:11 +08003702 t_seq - 1, t_mseq, (u64)-1, flag, &new_cap);
3703
Yan, Zheng00f06cb2017-01-24 10:02:32 +08003704 if (!list_empty(&ci->i_cap_flush_list) &&
3705 ci->i_auth_cap == tcap) {
3706 spin_lock(&mdsc->cap_dirty_lock);
3707 list_move_tail(&ci->i_flushing_item,
3708 &tcap->session->s_cap_flushing);
3709 spin_unlock(&mdsc->cap_dirty_lock);
3710 }
3711
Yan, Zhengd9df2782014-04-18 09:57:11 +08003712 __ceph_remove_cap(cap, false);
3713 goto out_unlock;
Yan, Zheng11df2df2013-11-24 14:44:38 +08003714 }
Sage Weila8599bd2009-10-06 11:31:12 -07003715
Sage Weilbe655592011-11-30 09:47:09 -08003716 spin_unlock(&ci->i_ceph_lock);
Yan, Zheng11df2df2013-11-24 14:44:38 +08003717 mutex_unlock(&session->s_mutex);
3718
3719 /* open target session */
3720 tsession = ceph_mdsc_open_export_target_session(mdsc, target);
3721 if (!IS_ERR(tsession)) {
3722 if (mds > target) {
3723 mutex_lock(&session->s_mutex);
3724 mutex_lock_nested(&tsession->s_mutex,
3725 SINGLE_DEPTH_NESTING);
3726 } else {
3727 mutex_lock(&tsession->s_mutex);
3728 mutex_lock_nested(&session->s_mutex,
3729 SINGLE_DEPTH_NESTING);
3730 }
Yan, Zhengd9df2782014-04-18 09:57:11 +08003731 new_cap = ceph_get_cap(mdsc, NULL);
Yan, Zheng11df2df2013-11-24 14:44:38 +08003732 } else {
3733 WARN_ON(1);
3734 tsession = NULL;
3735 target = -1;
3736 }
3737 goto retry;
3738
3739out_unlock:
3740 spin_unlock(&ci->i_ceph_lock);
3741 mutex_unlock(&session->s_mutex);
3742 if (tsession) {
3743 mutex_unlock(&tsession->s_mutex);
3744 ceph_put_mds_session(tsession);
3745 }
Yan, Zhengd9df2782014-04-18 09:57:11 +08003746 if (new_cap)
3747 ceph_put_cap(mdsc, new_cap);
Sage Weila8599bd2009-10-06 11:31:12 -07003748}
3749
3750/*
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003751 * Handle cap IMPORT.
Sage Weila8599bd2009-10-06 11:31:12 -07003752 *
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003753 * caller holds s_mutex. acquires i_ceph_lock
Sage Weila8599bd2009-10-06 11:31:12 -07003754 */
3755static void handle_cap_import(struct ceph_mds_client *mdsc,
3756 struct inode *inode, struct ceph_mds_caps *im,
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003757 struct ceph_mds_cap_peer *ph,
Sage Weila8599bd2009-10-06 11:31:12 -07003758 struct ceph_mds_session *session,
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003759 struct ceph_cap **target_cap, int *old_issued)
3760 __acquires(ci->i_ceph_lock)
Sage Weila8599bd2009-10-06 11:31:12 -07003761{
3762 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003763 struct ceph_cap *cap, *ocap, *new_cap = NULL;
Sage Weila8599bd2009-10-06 11:31:12 -07003764 int mds = session->s_mds;
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003765 int issued;
3766 unsigned caps = le32_to_cpu(im->caps);
Sage Weila8599bd2009-10-06 11:31:12 -07003767 unsigned wanted = le32_to_cpu(im->wanted);
3768 unsigned seq = le32_to_cpu(im->seq);
3769 unsigned mseq = le32_to_cpu(im->migrate_seq);
3770 u64 realmino = le64_to_cpu(im->realm);
3771 u64 cap_id = le64_to_cpu(im->cap_id);
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003772 u64 p_cap_id;
3773 int peer;
Sage Weila8599bd2009-10-06 11:31:12 -07003774
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003775 if (ph) {
3776 p_cap_id = le64_to_cpu(ph->cap_id);
3777 peer = le32_to_cpu(ph->mds);
Sage Weila8599bd2009-10-06 11:31:12 -07003778 } else {
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003779 p_cap_id = 0;
3780 peer = -1;
Sage Weila8599bd2009-10-06 11:31:12 -07003781 }
3782
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003783 dout("handle_cap_import inode %p ci %p mds%d mseq %d peer %d\n",
3784 inode, ci, mds, mseq, peer);
3785
Yan, Zhengd9df2782014-04-18 09:57:11 +08003786retry:
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003787 spin_lock(&ci->i_ceph_lock);
Yan, Zhengd9df2782014-04-18 09:57:11 +08003788 cap = __get_cap_for_mds(ci, mds);
3789 if (!cap) {
3790 if (!new_cap) {
3791 spin_unlock(&ci->i_ceph_lock);
3792 new_cap = ceph_get_cap(mdsc, NULL);
3793 goto retry;
3794 }
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003795 cap = new_cap;
3796 } else {
3797 if (new_cap) {
3798 ceph_put_cap(mdsc, new_cap);
3799 new_cap = NULL;
3800 }
Yan, Zhengd9df2782014-04-18 09:57:11 +08003801 }
3802
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003803 __ceph_caps_issued(ci, &issued);
3804 issued |= __ceph_caps_dirty(ci);
3805
Yan, Zheng135e6712020-03-05 20:21:02 +08003806 ceph_add_cap(inode, session, cap_id, caps, wanted, seq, mseq,
Yan, Zhengd9df2782014-04-18 09:57:11 +08003807 realmino, CEPH_CAP_FLAG_AUTH, &new_cap);
3808
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003809 ocap = peer >= 0 ? __get_cap_for_mds(ci, peer) : NULL;
3810 if (ocap && ocap->cap_id == p_cap_id) {
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003811 dout(" remove export cap %p mds%d flags %d\n",
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003812 ocap, peer, ph->flags);
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003813 if ((ph->flags & CEPH_CAP_FLAG_AUTH) &&
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003814 (ocap->seq != le32_to_cpu(ph->seq) ||
3815 ocap->mseq != le32_to_cpu(ph->mseq))) {
Yan, Zhengd84b37f2018-01-03 11:16:27 +08003816 pr_err_ratelimited("handle_cap_import: "
3817 "mismatched seq/mseq: ino (%llx.%llx) "
3818 "mds%d seq %d mseq %d importer mds%d "
3819 "has peer seq %d mseq %d\n",
3820 ceph_vinop(inode), peer, ocap->seq,
3821 ocap->mseq, mds, le32_to_cpu(ph->seq),
3822 le32_to_cpu(ph->mseq));
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003823 }
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003824 __ceph_remove_cap(ocap, (ph->flags & CEPH_CAP_FLAG_RELEASE));
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003825 }
3826
3827 /* make sure we re-request max_size, if necessary */
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003828 ci->i_requested_max_size = 0;
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003829
Yan, Zheng2cd698b2014-04-18 13:20:27 +08003830 *old_issued = issued;
3831 *target_cap = cap;
Sage Weila8599bd2009-10-06 11:31:12 -07003832}
3833
3834/*
3835 * Handle a caps message from the MDS.
3836 *
3837 * Identify the appropriate session, inode, and call the right handler
3838 * based on the cap op.
3839 */
3840void ceph_handle_caps(struct ceph_mds_session *session,
3841 struct ceph_msg *msg)
3842{
3843 struct ceph_mds_client *mdsc = session->s_mdsc;
Sage Weila8599bd2009-10-06 11:31:12 -07003844 struct inode *inode;
Sage Weilbe655592011-11-30 09:47:09 -08003845 struct ceph_inode_info *ci;
Sage Weila8599bd2009-10-06 11:31:12 -07003846 struct ceph_cap *cap;
3847 struct ceph_mds_caps *h;
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003848 struct ceph_mds_cap_peer *peer = NULL;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08003849 struct ceph_snap_realm *realm = NULL;
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003850 int op;
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003851 int msg_version = le16_to_cpu(msg->hdr.version);
Sage Weil3d7ded42010-06-09 16:47:10 -07003852 u32 seq, mseq;
Sage Weila8599bd2009-10-06 11:31:12 -07003853 struct ceph_vino vino;
Sage Weil70edb552010-03-01 13:20:50 -08003854 void *snaptrace;
Sage Weilce1fbc82010-08-02 15:09:39 -07003855 size_t snaptrace_len;
Yan, Zhengfb01d1f2014-11-14 21:29:55 +08003856 void *p, *end;
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003857 struct cap_extra_info extra_info = {};
Sage Weila8599bd2009-10-06 11:31:12 -07003858
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003859 dout("handle_caps from mds%d\n", session->s_mds);
Sage Weila8599bd2009-10-06 11:31:12 -07003860
3861 /* decode */
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003862 end = msg->front.iov_base + msg->front.iov_len;
Sage Weila8599bd2009-10-06 11:31:12 -07003863 if (msg->front.iov_len < sizeof(*h))
3864 goto bad;
3865 h = msg->front.iov_base;
3866 op = le32_to_cpu(h->op);
3867 vino.ino = le64_to_cpu(h->ino);
3868 vino.snap = CEPH_NOSNAP;
Sage Weila8599bd2009-10-06 11:31:12 -07003869 seq = le32_to_cpu(h->seq);
Sage Weil3d7ded42010-06-09 16:47:10 -07003870 mseq = le32_to_cpu(h->migrate_seq);
Sage Weila8599bd2009-10-06 11:31:12 -07003871
Sage Weilce1fbc82010-08-02 15:09:39 -07003872 snaptrace = h + 1;
3873 snaptrace_len = le32_to_cpu(h->snap_trace_len);
Yan, Zhengfb01d1f2014-11-14 21:29:55 +08003874 p = snaptrace + snaptrace_len;
Sage Weilce1fbc82010-08-02 15:09:39 -07003875
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003876 if (msg_version >= 2) {
Yan, Zhengfb01d1f2014-11-14 21:29:55 +08003877 u32 flock_len;
Sage Weilce1fbc82010-08-02 15:09:39 -07003878 ceph_decode_32_safe(&p, end, flock_len, bad);
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003879 if (p + flock_len > end)
3880 goto bad;
Yan, Zhengfb01d1f2014-11-14 21:29:55 +08003881 p += flock_len;
Sage Weilce1fbc82010-08-02 15:09:39 -07003882 }
3883
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003884 if (msg_version >= 3) {
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003885 if (op == CEPH_CAP_OP_IMPORT) {
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003886 if (p + sizeof(*peer) > end)
3887 goto bad;
3888 peer = p;
Yan, Zhengfb01d1f2014-11-14 21:29:55 +08003889 p += sizeof(*peer);
Yan, Zheng11df2df2013-11-24 14:44:38 +08003890 } else if (op == CEPH_CAP_OP_EXPORT) {
3891 /* recorded in unused fields */
3892 peer = (void *)&h->size;
Yan, Zheng4ee6a912013-11-24 14:43:46 +08003893 }
3894 }
3895
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003896 if (msg_version >= 4) {
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003897 ceph_decode_64_safe(&p, end, extra_info.inline_version, bad);
3898 ceph_decode_32_safe(&p, end, extra_info.inline_len, bad);
3899 if (p + extra_info.inline_len > end)
Yan, Zhengfb01d1f2014-11-14 21:29:55 +08003900 goto bad;
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003901 extra_info.inline_data = p;
3902 p += extra_info.inline_len;
Yan, Zhengfb01d1f2014-11-14 21:29:55 +08003903 }
3904
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003905 if (msg_version >= 5) {
Jeff Layton92475f02017-04-13 11:07:04 -04003906 struct ceph_osd_client *osdc = &mdsc->fsc->client->osdc;
3907 u32 epoch_barrier;
3908
3909 ceph_decode_32_safe(&p, end, epoch_barrier, bad);
3910 ceph_osdc_update_epoch_barrier(osdc, epoch_barrier);
3911 }
3912
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003913 if (msg_version >= 8) {
Yan, Zheng5ea5c5e2016-02-14 18:06:41 +08003914 u64 flush_tid;
3915 u32 caller_uid, caller_gid;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08003916 u32 pool_ns_len;
Jeff Layton92475f02017-04-13 11:07:04 -04003917
Yan, Zheng5ea5c5e2016-02-14 18:06:41 +08003918 /* version >= 6 */
3919 ceph_decode_64_safe(&p, end, flush_tid, bad);
3920 /* version >= 7 */
3921 ceph_decode_32_safe(&p, end, caller_uid, bad);
3922 ceph_decode_32_safe(&p, end, caller_gid, bad);
3923 /* version >= 8 */
3924 ceph_decode_32_safe(&p, end, pool_ns_len, bad);
Yan, Zheng779fe0f2016-03-07 09:35:06 +08003925 if (pool_ns_len > 0) {
3926 ceph_decode_need(&p, end, pool_ns_len, bad);
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003927 extra_info.pool_ns =
3928 ceph_find_or_create_string(p, pool_ns_len);
Yan, Zheng779fe0f2016-03-07 09:35:06 +08003929 p += pool_ns_len;
3930 }
Yan, Zheng5ea5c5e2016-02-14 18:06:41 +08003931 }
3932
Jeff Laytonec62b892019-05-29 12:23:14 -04003933 if (msg_version >= 9) {
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003934 struct ceph_timespec *btime;
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003935
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003936 if (p + sizeof(*btime) > end)
3937 goto bad;
3938 btime = p;
Jeff Laytonec62b892019-05-29 12:23:14 -04003939 ceph_decode_timespec64(&extra_info.btime, btime);
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003940 p += sizeof(*btime);
Jeff Layton176c77c2019-06-06 08:06:40 -04003941 ceph_decode_64_safe(&p, end, extra_info.change_attr, bad);
Jeff Laytonec62b892019-05-29 12:23:14 -04003942 }
3943
3944 if (msg_version >= 11) {
3945 u32 flags;
Yan, Zheng4985d6f2018-04-27 11:11:31 +08003946 /* version >= 10 */
3947 ceph_decode_32_safe(&p, end, flags, bad);
3948 /* version >= 11 */
3949 extra_info.dirstat_valid = true;
3950 ceph_decode_64_safe(&p, end, extra_info.nfiles, bad);
3951 ceph_decode_64_safe(&p, end, extra_info.nsubdirs, bad);
3952 }
3953
Yan, Zheng6cd3bca2014-09-17 07:45:12 +08003954 /* lookup ino */
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003955 inode = ceph_find_inode(mdsc->fsc->sb, vino);
Yan, Zheng6cd3bca2014-09-17 07:45:12 +08003956 ci = ceph_inode(inode);
3957 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
3958 vino.snap, inode);
3959
Sage Weila8599bd2009-10-06 11:31:12 -07003960 mutex_lock(&session->s_mutex);
3961 session->s_seq++;
3962 dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
3963 (unsigned)seq);
3964
Sage Weila8599bd2009-10-06 11:31:12 -07003965 if (!inode) {
3966 dout(" i don't have ino %llx\n", vino.ino);
Sage Weil3d7ded42010-06-09 16:47:10 -07003967
Yan, Zhenga096b092013-09-22 10:15:58 +08003968 if (op == CEPH_CAP_OP_IMPORT) {
Yan, Zheng745a8e32015-05-14 17:22:42 +08003969 cap = ceph_get_cap(mdsc, NULL);
3970 cap->cap_ino = vino.ino;
3971 cap->queue_release = 1;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08003972 cap->cap_id = le64_to_cpu(h->cap_id);
Yan, Zheng745a8e32015-05-14 17:22:42 +08003973 cap->mseq = mseq;
3974 cap->seq = seq;
Yan, Zhengdc24de82016-11-17 19:55:30 +08003975 cap->issue_seq = seq;
Yan, Zhenga096b092013-09-22 10:15:58 +08003976 spin_lock(&session->s_cap_lock);
Yan, Zhenge3ec8d62019-01-14 17:21:19 +08003977 __ceph_queue_cap_release(session, cap);
Yan, Zhenga096b092013-09-22 10:15:58 +08003978 spin_unlock(&session->s_cap_lock);
3979 }
Yan, Zhenge3ec8d62019-01-14 17:21:19 +08003980 goto done;
Sage Weila8599bd2009-10-06 11:31:12 -07003981 }
3982
3983 /* these will work even if we don't have a cap yet */
3984 switch (op) {
3985 case CEPH_CAP_OP_FLUSHSNAP_ACK:
Yan, Zhenga1c6b832018-04-27 10:29:44 +08003986 handle_cap_flushsnap_ack(inode, le64_to_cpu(msg->hdr.tid),
3987 h, session);
Sage Weila8599bd2009-10-06 11:31:12 -07003988 goto done;
3989
3990 case CEPH_CAP_OP_EXPORT:
Yan, Zheng11df2df2013-11-24 14:44:38 +08003991 handle_cap_export(inode, h, peer, session);
3992 goto done_unlocked;
Sage Weila8599bd2009-10-06 11:31:12 -07003993
3994 case CEPH_CAP_OP_IMPORT:
Yan, Zheng982d6012014-12-23 15:30:54 +08003995 realm = NULL;
3996 if (snaptrace_len) {
3997 down_write(&mdsc->snap_rwsem);
3998 ceph_update_snap_trace(mdsc, snaptrace,
3999 snaptrace + snaptrace_len,
4000 false, &realm);
4001 downgrade_write(&mdsc->snap_rwsem);
4002 } else {
4003 down_read(&mdsc->snap_rwsem);
4004 }
Yan, Zheng4ee6a912013-11-24 14:43:46 +08004005 handle_cap_import(mdsc, inode, h, peer, session,
Yan, Zhenga1c6b832018-04-27 10:29:44 +08004006 &cap, &extra_info.issued);
4007 handle_cap_grant(inode, session, cap,
4008 h, msg->middle, &extra_info);
Yan, Zheng982d6012014-12-23 15:30:54 +08004009 if (realm)
4010 ceph_put_snap_realm(mdsc, realm);
Yan, Zheng2cd698b2014-04-18 13:20:27 +08004011 goto done_unlocked;
Sage Weila8599bd2009-10-06 11:31:12 -07004012 }
4013
4014 /* the rest require a cap */
Sage Weilbe655592011-11-30 09:47:09 -08004015 spin_lock(&ci->i_ceph_lock);
Yan, Zhenga1c6b832018-04-27 10:29:44 +08004016 cap = __get_cap_for_mds(ceph_inode(inode), session->s_mds);
Sage Weila8599bd2009-10-06 11:31:12 -07004017 if (!cap) {
Sage Weil9dbd4122010-06-10 13:21:20 -07004018 dout(" no cap on %p ino %llx.%llx from mds%d\n",
Yan, Zhenga1c6b832018-04-27 10:29:44 +08004019 inode, ceph_ino(inode), ceph_snap(inode),
4020 session->s_mds);
Sage Weilbe655592011-11-30 09:47:09 -08004021 spin_unlock(&ci->i_ceph_lock);
Greg Farnum21b559d2010-10-06 15:46:30 -07004022 goto flush_cap_releases;
Sage Weila8599bd2009-10-06 11:31:12 -07004023 }
4024
Sage Weilbe655592011-11-30 09:47:09 -08004025 /* note that each of these drops i_ceph_lock for us */
Sage Weila8599bd2009-10-06 11:31:12 -07004026 switch (op) {
4027 case CEPH_CAP_OP_REVOKE:
4028 case CEPH_CAP_OP_GRANT:
Yan, Zhenga1c6b832018-04-27 10:29:44 +08004029 __ceph_caps_issued(ci, &extra_info.issued);
4030 extra_info.issued |= __ceph_caps_dirty(ci);
4031 handle_cap_grant(inode, session, cap,
4032 h, msg->middle, &extra_info);
Sage Weil15637c82010-03-16 13:42:00 -07004033 goto done_unlocked;
Sage Weila8599bd2009-10-06 11:31:12 -07004034
4035 case CEPH_CAP_OP_FLUSH_ACK:
Yan, Zhenga1c6b832018-04-27 10:29:44 +08004036 handle_cap_flush_ack(inode, le64_to_cpu(msg->hdr.tid),
4037 h, session, cap);
Sage Weila8599bd2009-10-06 11:31:12 -07004038 break;
4039
4040 case CEPH_CAP_OP_TRUNC:
4041 handle_cap_trunc(inode, h, session);
4042 break;
4043
4044 default:
Sage Weilbe655592011-11-30 09:47:09 -08004045 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07004046 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
4047 ceph_cap_op_name(op));
4048 }
4049
Yan, Zhenge3ec8d62019-01-14 17:21:19 +08004050done:
4051 mutex_unlock(&session->s_mutex);
4052done_unlocked:
Yan, Zhenge3ec8d62019-01-14 17:21:19 +08004053 ceph_put_string(extra_info.pool_ns);
Yan, Zheng3e1d0452019-05-18 20:39:55 +08004054 /* avoid calling iput_final() in mds dispatch threads */
4055 ceph_async_iput(inode);
Yan, Zhenge3ec8d62019-01-14 17:21:19 +08004056 return;
Greg Farnum21b559d2010-10-06 15:46:30 -07004057
4058flush_cap_releases:
4059 /*
Yan, Zheng745a8e32015-05-14 17:22:42 +08004060 * send any cap release message to try to move things
Greg Farnum21b559d2010-10-06 15:46:30 -07004061 * along for the mds (who clearly thinks we still have this
4062 * cap).
4063 */
Yan, Zhenge3ec8d62019-01-14 17:21:19 +08004064 ceph_flush_cap_releases(mdsc, session);
4065 goto done;
Sage Weila8599bd2009-10-06 11:31:12 -07004066
4067bad:
4068 pr_err("ceph_handle_caps: corrupt message\n");
Sage Weil9ec7cab2009-12-14 15:13:47 -08004069 ceph_msg_dump(msg);
Sage Weila8599bd2009-10-06 11:31:12 -07004070 return;
4071}
4072
4073/*
4074 * Delayed work handler to process end of delayed cap release LRU list.
4075 */
Sage Weilafcdaea2009-10-14 14:27:38 -07004076void ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
Sage Weila8599bd2009-10-06 11:31:12 -07004077{
Yan, Zheng4b9f2042017-06-27 17:17:24 +08004078 struct inode *inode;
Sage Weila8599bd2009-10-06 11:31:12 -07004079 struct ceph_inode_info *ci;
Sage Weila8599bd2009-10-06 11:31:12 -07004080
Sage Weila8599bd2009-10-06 11:31:12 -07004081 dout("check_delayed_caps\n");
4082 while (1) {
4083 spin_lock(&mdsc->cap_delay_lock);
4084 if (list_empty(&mdsc->cap_delay_list))
4085 break;
4086 ci = list_first_entry(&mdsc->cap_delay_list,
4087 struct ceph_inode_info,
4088 i_cap_delay_list);
4089 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
4090 time_before(jiffies, ci->i_hold_caps_max))
4091 break;
4092 list_del_init(&ci->i_cap_delay_list);
Yan, Zheng4b9f2042017-06-27 17:17:24 +08004093
4094 inode = igrab(&ci->vfs_inode);
Sage Weila8599bd2009-10-06 11:31:12 -07004095 spin_unlock(&mdsc->cap_delay_lock);
Yan, Zheng4b9f2042017-06-27 17:17:24 +08004096
4097 if (inode) {
4098 dout("check_delayed_caps on %p\n", inode);
Yan, Zhenga0d93e32020-03-05 20:21:01 +08004099 ceph_check_caps(ci, 0, NULL);
Yan, Zheng3e1d0452019-05-18 20:39:55 +08004100 /* avoid calling iput_final() in tick thread */
4101 ceph_async_iput(inode);
Yan, Zheng4b9f2042017-06-27 17:17:24 +08004102 }
Sage Weila8599bd2009-10-06 11:31:12 -07004103 }
4104 spin_unlock(&mdsc->cap_delay_lock);
4105}
4106
4107/*
Sage Weilafcdaea2009-10-14 14:27:38 -07004108 * Flush all dirty caps to the mds
4109 */
4110void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
4111{
Sage Weildb354052011-05-24 11:46:31 -07004112 struct ceph_inode_info *ci;
4113 struct inode *inode;
Sage Weilafcdaea2009-10-14 14:27:38 -07004114
4115 dout("flush_dirty_caps\n");
4116 spin_lock(&mdsc->cap_dirty_lock);
Sage Weildb354052011-05-24 11:46:31 -07004117 while (!list_empty(&mdsc->cap_dirty)) {
4118 ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info,
4119 i_dirty_item);
Sage Weil70b666c2011-05-27 09:24:26 -07004120 inode = &ci->vfs_inode;
4121 ihold(inode);
Sage Weildb354052011-05-24 11:46:31 -07004122 dout("flush_dirty_caps %p\n", inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07004123 spin_unlock(&mdsc->cap_dirty_lock);
Yan, Zhenga0d93e32020-03-05 20:21:01 +08004124 ceph_check_caps(ci, CHECK_CAPS_FLUSH, NULL);
Sage Weil70b666c2011-05-27 09:24:26 -07004125 iput(inode);
Sage Weilafcdaea2009-10-14 14:27:38 -07004126 spin_lock(&mdsc->cap_dirty_lock);
4127 }
4128 spin_unlock(&mdsc->cap_dirty_lock);
Sage Weildb354052011-05-24 11:46:31 -07004129 dout("flush_dirty_caps done\n");
Sage Weilafcdaea2009-10-14 14:27:38 -07004130}
4131
Yan, Zheng719a2512020-03-05 20:21:00 +08004132void __ceph_touch_fmode(struct ceph_inode_info *ci,
4133 struct ceph_mds_client *mdsc, int fmode)
4134{
4135 unsigned long now = jiffies;
4136 if (fmode & CEPH_FILE_MODE_RD)
4137 ci->i_last_rd = now;
4138 if (fmode & CEPH_FILE_MODE_WR)
4139 ci->i_last_wr = now;
4140 /* queue periodic check */
4141 if (fmode &&
4142 __ceph_is_any_real_caps(ci) &&
4143 list_empty(&ci->i_cap_delay_list))
Yan, Zhenga0d93e32020-03-05 20:21:01 +08004144 __cap_delay_requeue(mdsc, ci);
Yan, Zheng719a2512020-03-05 20:21:00 +08004145}
4146
4147void ceph_get_fmode(struct ceph_inode_info *ci, int fmode, int count)
4148{
4149 int i;
4150 int bits = (fmode << 1) | 1;
4151 spin_lock(&ci->i_ceph_lock);
4152 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
4153 if (bits & (1 << i))
4154 ci->i_nr_by_mode[i] += count;
4155 }
4156 spin_unlock(&ci->i_ceph_lock);
4157}
4158
Sage Weilafcdaea2009-10-14 14:27:38 -07004159/*
Sage Weila8599bd2009-10-06 11:31:12 -07004160 * Drop open file reference. If we were the last open file,
4161 * we may need to release capabilities to the MDS (or schedule
4162 * their delayed release).
4163 */
Yan, Zheng719a2512020-03-05 20:21:00 +08004164void ceph_put_fmode(struct ceph_inode_info *ci, int fmode, int count)
Sage Weila8599bd2009-10-06 11:31:12 -07004165{
Yan, Zheng719a2512020-03-05 20:21:00 +08004166 int i;
Yan, Zheng774a6a12016-06-06 16:01:39 +08004167 int bits = (fmode << 1) | 1;
Sage Weilbe655592011-11-30 09:47:09 -08004168 spin_lock(&ci->i_ceph_lock);
Yan, Zheng774a6a12016-06-06 16:01:39 +08004169 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
4170 if (bits & (1 << i)) {
Yan, Zheng719a2512020-03-05 20:21:00 +08004171 BUG_ON(ci->i_nr_by_mode[i] < count);
4172 ci->i_nr_by_mode[i] -= count;
Yan, Zheng774a6a12016-06-06 16:01:39 +08004173 }
4174 }
Sage Weilbe655592011-11-30 09:47:09 -08004175 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07004176}
4177
4178/*
Jeff Laytona452bc02019-04-02 14:20:24 -04004179 * For a soon-to-be unlinked file, drop the LINK caps. If it
Zhi Zhang6ef0bc62018-01-24 21:24:33 +08004180 * looks like the link count will hit 0, drop any other caps (other
4181 * than PIN) we don't specifically want (due to the file still being
4182 * open).
4183 */
4184int ceph_drop_caps_for_unlink(struct inode *inode)
4185{
4186 struct ceph_inode_info *ci = ceph_inode(inode);
4187 int drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
4188
4189 spin_lock(&ci->i_ceph_lock);
4190 if (inode->i_nlink == 1) {
4191 drop |= ~(__ceph_caps_wanted(ci) | CEPH_CAP_PIN);
4192
Zhi Zhang6ef0bc62018-01-24 21:24:33 +08004193 if (__ceph_caps_dirty(ci)) {
4194 struct ceph_mds_client *mdsc =
4195 ceph_inode_to_client(inode)->mdsc;
4196 __cap_delay_requeue_front(mdsc, ci);
4197 }
4198 }
4199 spin_unlock(&ci->i_ceph_lock);
4200 return drop;
4201}
4202
4203/*
Sage Weila8599bd2009-10-06 11:31:12 -07004204 * Helpers for embedding cap and dentry lease releases into mds
4205 * requests.
4206 *
4207 * @force is used by dentry_release (below) to force inclusion of a
4208 * record for the directory inode, even when there aren't any caps to
4209 * drop.
4210 */
4211int ceph_encode_inode_release(void **p, struct inode *inode,
4212 int mds, int drop, int unless, int force)
4213{
4214 struct ceph_inode_info *ci = ceph_inode(inode);
4215 struct ceph_cap *cap;
4216 struct ceph_mds_request_release *rel = *p;
Sage Weilec97f882010-06-24 15:12:37 -07004217 int used, dirty;
Sage Weila8599bd2009-10-06 11:31:12 -07004218 int ret = 0;
Sage Weila8599bd2009-10-06 11:31:12 -07004219
Sage Weilbe655592011-11-30 09:47:09 -08004220 spin_lock(&ci->i_ceph_lock);
Sage Weil916623d2010-03-16 15:01:07 -07004221 used = __ceph_caps_used(ci);
Sage Weilec97f882010-06-24 15:12:37 -07004222 dirty = __ceph_caps_dirty(ci);
Sage Weil916623d2010-03-16 15:01:07 -07004223
Sage Weilec97f882010-06-24 15:12:37 -07004224 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
4225 inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
Sage Weil916623d2010-03-16 15:01:07 -07004226 ceph_cap_string(unless));
4227
Sage Weilec97f882010-06-24 15:12:37 -07004228 /* only drop unused, clean caps */
4229 drop &= ~(used | dirty);
Sage Weil916623d2010-03-16 15:01:07 -07004230
Sage Weila8599bd2009-10-06 11:31:12 -07004231 cap = __get_cap_for_mds(ci, mds);
4232 if (cap && __cap_is_valid(cap)) {
Yan, Zheng222b7f92017-11-23 17:47:15 +08004233 unless &= cap->issued;
4234 if (unless) {
4235 if (unless & CEPH_CAP_AUTH_EXCL)
4236 drop &= ~CEPH_CAP_AUTH_SHARED;
4237 if (unless & CEPH_CAP_LINK_EXCL)
4238 drop &= ~CEPH_CAP_LINK_SHARED;
4239 if (unless & CEPH_CAP_XATTR_EXCL)
4240 drop &= ~CEPH_CAP_XATTR_SHARED;
4241 if (unless & CEPH_CAP_FILE_EXCL)
4242 drop &= ~CEPH_CAP_FILE_SHARED;
4243 }
4244
4245 if (force || (cap->issued & drop)) {
4246 if (cap->issued & drop) {
Yan, Zhengbb137f82013-06-03 18:22:17 +08004247 int wanted = __ceph_caps_wanted(ci);
Yan, Zhengbb137f82013-06-03 18:22:17 +08004248 dout("encode_inode_release %p cap %p "
4249 "%s -> %s, wanted %s -> %s\n", inode, cap,
Sage Weila8599bd2009-10-06 11:31:12 -07004250 ceph_cap_string(cap->issued),
Yan, Zhengbb137f82013-06-03 18:22:17 +08004251 ceph_cap_string(cap->issued & ~drop),
4252 ceph_cap_string(cap->mds_wanted),
4253 ceph_cap_string(wanted));
4254
Sage Weila8599bd2009-10-06 11:31:12 -07004255 cap->issued &= ~drop;
4256 cap->implemented &= ~drop;
Yan, Zhengbb137f82013-06-03 18:22:17 +08004257 cap->mds_wanted = wanted;
Sage Weila8599bd2009-10-06 11:31:12 -07004258 } else {
4259 dout("encode_inode_release %p cap %p %s"
4260 " (force)\n", inode, cap,
4261 ceph_cap_string(cap->issued));
4262 }
4263
4264 rel->ino = cpu_to_le64(ceph_ino(inode));
4265 rel->cap_id = cpu_to_le64(cap->cap_id);
4266 rel->seq = cpu_to_le32(cap->seq);
Himangi Saraogi08a0f242014-07-23 20:11:11 +05304267 rel->issue_seq = cpu_to_le32(cap->issue_seq);
Sage Weila8599bd2009-10-06 11:31:12 -07004268 rel->mseq = cpu_to_le32(cap->mseq);
Yan, Zhengfd7b95c2014-04-17 08:02:02 +08004269 rel->caps = cpu_to_le32(cap->implemented);
Sage Weila8599bd2009-10-06 11:31:12 -07004270 rel->wanted = cpu_to_le32(cap->mds_wanted);
4271 rel->dname_len = 0;
4272 rel->dname_seq = 0;
4273 *p += sizeof(*rel);
4274 ret = 1;
4275 } else {
Yan, Zheng222b7f92017-11-23 17:47:15 +08004276 dout("encode_inode_release %p cap %p %s (noop)\n",
Sage Weila8599bd2009-10-06 11:31:12 -07004277 inode, cap, ceph_cap_string(cap->issued));
4278 }
4279 }
Sage Weilbe655592011-11-30 09:47:09 -08004280 spin_unlock(&ci->i_ceph_lock);
Sage Weila8599bd2009-10-06 11:31:12 -07004281 return ret;
4282}
4283
4284int ceph_encode_dentry_release(void **p, struct dentry *dentry,
Jeff Laytonca6c8ae2016-12-15 08:37:59 -05004285 struct inode *dir,
Sage Weila8599bd2009-10-06 11:31:12 -07004286 int mds, int drop, int unless)
4287{
Jeff Laytonca6c8ae2016-12-15 08:37:59 -05004288 struct dentry *parent = NULL;
Sage Weila8599bd2009-10-06 11:31:12 -07004289 struct ceph_mds_request_release *rel = *p;
4290 struct ceph_dentry_info *di = ceph_dentry(dentry);
4291 int force = 0;
4292 int ret;
4293
4294 /*
4295 * force an record for the directory caps if we have a dentry lease.
Sage Weilbe655592011-11-30 09:47:09 -08004296 * this is racy (can't take i_ceph_lock and d_lock together), but it
Sage Weila8599bd2009-10-06 11:31:12 -07004297 * doesn't have to be perfect; the mds will revoke anything we don't
4298 * release.
4299 */
4300 spin_lock(&dentry->d_lock);
4301 if (di->lease_session && di->lease_session->s_mds == mds)
4302 force = 1;
Jeff Laytonca6c8ae2016-12-15 08:37:59 -05004303 if (!dir) {
4304 parent = dget(dentry->d_parent);
4305 dir = d_inode(parent);
4306 }
Sage Weila8599bd2009-10-06 11:31:12 -07004307 spin_unlock(&dentry->d_lock);
4308
Jeff Laytonca6c8ae2016-12-15 08:37:59 -05004309 ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
Jeff Laytonadf0d682016-12-15 08:37:58 -05004310 dput(parent);
Sage Weila8599bd2009-10-06 11:31:12 -07004311
4312 spin_lock(&dentry->d_lock);
4313 if (ret && di->lease_session && di->lease_session->s_mds == mds) {
4314 dout("encode_dentry_release %p mds%d seq %d\n",
4315 dentry, mds, (int)di->lease_seq);
4316 rel->dname_len = cpu_to_le32(dentry->d_name.len);
4317 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
4318 *p += dentry->d_name.len;
4319 rel->dname_seq = cpu_to_le32(di->lease_seq);
Sage Weil1dadcce2010-07-23 13:54:21 -07004320 __ceph_mdsc_drop_dentry_lease(dentry);
Sage Weila8599bd2009-10-06 11:31:12 -07004321 }
4322 spin_unlock(&dentry->d_lock);
4323 return ret;
4324}