xref: /linux/fs/ceph/addr.c (revision 081a0b78ef30f5746cda3e92e28b4d4ae92901d1)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
3 
4 #include <linux/backing-dev.h>
5 #include <linux/fs.h>
6 #include <linux/mm.h>
7 #include <linux/swap.h>
8 #include <linux/pagemap.h>
9 #include <linux/slab.h>
10 #include <linux/pagevec.h>
11 #include <linux/task_io_accounting_ops.h>
12 #include <linux/signal.h>
13 #include <linux/iversion.h>
14 #include <linux/ktime.h>
15 #include <linux/netfs.h>
16 #include <trace/events/netfs.h>
17 
18 #include "super.h"
19 #include "mds_client.h"
20 #include "cache.h"
21 #include "metric.h"
22 #include "crypto.h"
23 #include <linux/ceph/osd_client.h>
24 #include <linux/ceph/striper.h>
25 
26 /*
27  * Ceph address space ops.
28  *
29  * There are a few funny things going on here.
30  *
31  * The page->private field is used to reference a struct
32  * ceph_snap_context for _every_ dirty page.  This indicates which
33  * snapshot the page was logically dirtied in, and thus which snap
34  * context needs to be associated with the osd write during writeback.
35  *
36  * Similarly, struct ceph_inode_info maintains a set of counters to
37  * count dirty pages on the inode.  In the absence of snapshots,
38  * i_wrbuffer_ref == i_wrbuffer_ref_head == the dirty page count.
39  *
40  * When a snapshot is taken (that is, when the client receives
41  * notification that a snapshot was taken), each inode with caps and
42  * with dirty pages (dirty pages implies there is a cap) gets a new
43  * ceph_cap_snap in the i_cap_snaps list (which is sorted in ascending
44  * order, new snaps go to the tail).  The i_wrbuffer_ref_head count is
45  * moved to capsnap->dirty. (Unless a sync write is currently in
46  * progress.  In that case, the capsnap is said to be "pending", new
47  * writes cannot start, and the capsnap isn't "finalized" until the
48  * write completes (or fails) and a final size/mtime for the inode for
49  * that snap can be settled upon.)  i_wrbuffer_ref_head is reset to 0.
50  *
51  * On writeback, we must submit writes to the osd IN SNAP ORDER.  So,
52  * we look for the first capsnap in i_cap_snaps and write out pages in
53  * that snap context _only_.  Then we move on to the next capsnap,
54  * eventually reaching the "live" or "head" context (i.e., pages that
55  * are not yet snapped) and are writing the most recently dirtied
56  * pages.
57  *
58  * Invalidate and so forth must take care to ensure the dirty page
59  * accounting is preserved.
60  */
61 
62 #define CONGESTION_ON_THRESH(congestion_kb) (congestion_kb >> (PAGE_SHIFT-10))
63 #define CONGESTION_OFF_THRESH(congestion_kb)				\
64 	(CONGESTION_ON_THRESH(congestion_kb) -				\
65 	 (CONGESTION_ON_THRESH(congestion_kb) >> 2))
66 
67 static int ceph_netfs_check_write_begin(struct file *file, loff_t pos, unsigned int len,
68 					struct folio **foliop, void **_fsdata);
69 
70 static inline struct ceph_snap_context *page_snap_context(struct page *page)
71 {
72 	if (PagePrivate(page))
73 		return (void *)page->private;
74 	return NULL;
75 }
76 
77 /*
78  * Dirty a page.  Optimistically adjust accounting, on the assumption
79  * that we won't race with invalidate.  If we do, readjust.
80  */
81 static bool ceph_dirty_folio(struct address_space *mapping, struct folio *folio)
82 {
83 	struct inode *inode = mapping->host;
84 	struct ceph_client *cl = ceph_inode_to_client(inode);
85 	struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
86 	struct ceph_inode_info *ci;
87 	struct ceph_snap_context *snapc;
88 
89 	if (folio_test_dirty(folio)) {
90 		doutc(cl, "%llx.%llx %p idx %lu -- already dirty\n",
91 		      ceph_vinop(inode), folio, folio->index);
92 		VM_BUG_ON_FOLIO(!folio_test_private(folio), folio);
93 		return false;
94 	}
95 
96 	atomic64_inc(&mdsc->dirty_folios);
97 
98 	ci = ceph_inode(inode);
99 
100 	/* dirty the head */
101 	spin_lock(&ci->i_ceph_lock);
102 	if (__ceph_have_pending_cap_snap(ci)) {
103 		struct ceph_cap_snap *capsnap =
104 				list_last_entry(&ci->i_cap_snaps,
105 						struct ceph_cap_snap,
106 						ci_item);
107 		snapc = ceph_get_snap_context(capsnap->context);
108 		capsnap->dirty_pages++;
109 	} else {
110 		BUG_ON(!ci->i_head_snapc);
111 		snapc = ceph_get_snap_context(ci->i_head_snapc);
112 		++ci->i_wrbuffer_ref_head;
113 	}
114 	if (ci->i_wrbuffer_ref == 0)
115 		ihold(inode);
116 	++ci->i_wrbuffer_ref;
117 	doutc(cl, "%llx.%llx %p idx %lu head %d/%d -> %d/%d "
118 	      "snapc %p seq %lld (%d snaps)\n",
119 	      ceph_vinop(inode), folio, folio->index,
120 	      ci->i_wrbuffer_ref-1, ci->i_wrbuffer_ref_head-1,
121 	      ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
122 	      snapc, snapc->seq, snapc->num_snaps);
123 	spin_unlock(&ci->i_ceph_lock);
124 
125 	/*
126 	 * Reference snap context in folio->private.  Also set
127 	 * PagePrivate so that we get invalidate_folio callback.
128 	 */
129 	VM_WARN_ON_FOLIO(folio->private, folio);
130 	folio_attach_private(folio, snapc);
131 
132 	return ceph_fscache_dirty_folio(mapping, folio);
133 }
134 
135 /*
136  * If we are truncating the full folio (i.e. offset == 0), adjust the
137  * dirty folio counters appropriately.  Only called if there is private
138  * data on the folio.
139  */
140 static void ceph_invalidate_folio(struct folio *folio, size_t offset,
141 				size_t length)
142 {
143 	struct inode *inode = folio->mapping->host;
144 	struct ceph_client *cl = ceph_inode_to_client(inode);
145 	struct ceph_inode_info *ci = ceph_inode(inode);
146 	struct ceph_snap_context *snapc;
147 
148 
149 	if (offset != 0 || length != folio_size(folio)) {
150 		doutc(cl, "%llx.%llx idx %lu partial dirty page %zu~%zu\n",
151 		      ceph_vinop(inode), folio->index, offset, length);
152 		return;
153 	}
154 
155 	WARN_ON(!folio_test_locked(folio));
156 	if (folio_test_private(folio)) {
157 		doutc(cl, "%llx.%llx idx %lu full dirty page\n",
158 		      ceph_vinop(inode), folio->index);
159 
160 		snapc = folio_detach_private(folio);
161 		ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
162 		ceph_put_snap_context(snapc);
163 	}
164 
165 	netfs_invalidate_folio(folio, offset, length);
166 }
167 
168 static void ceph_netfs_expand_readahead(struct netfs_io_request *rreq)
169 {
170 	struct inode *inode = rreq->inode;
171 	struct ceph_inode_info *ci = ceph_inode(inode);
172 	struct ceph_file_layout *lo = &ci->i_layout;
173 	unsigned long max_pages = inode->i_sb->s_bdi->ra_pages;
174 	loff_t end = rreq->start + rreq->len, new_end;
175 	struct ceph_netfs_request_data *priv = rreq->netfs_priv;
176 	unsigned long max_len;
177 	u32 blockoff;
178 
179 	if (priv) {
180 		/* Readahead is disabled by posix_fadvise POSIX_FADV_RANDOM */
181 		if (priv->file_ra_disabled)
182 			max_pages = 0;
183 		else
184 			max_pages = priv->file_ra_pages;
185 
186 	}
187 
188 	/* Readahead is disabled */
189 	if (!max_pages)
190 		return;
191 
192 	max_len = max_pages << PAGE_SHIFT;
193 
194 	/*
195 	 * Try to expand the length forward by rounding up it to the next
196 	 * block, but do not exceed the file size, unless the original
197 	 * request already exceeds it.
198 	 */
199 	new_end = umin(round_up(end, lo->stripe_unit), rreq->i_size);
200 	if (new_end > end && new_end <= rreq->start + max_len)
201 		rreq->len = new_end - rreq->start;
202 
203 	/* Try to expand the start downward */
204 	div_u64_rem(rreq->start, lo->stripe_unit, &blockoff);
205 	if (rreq->len + blockoff <= max_len) {
206 		rreq->start -= blockoff;
207 		rreq->len += blockoff;
208 	}
209 }
210 
211 static void finish_netfs_read(struct ceph_osd_request *req)
212 {
213 	struct inode *inode = req->r_inode;
214 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
215 	struct ceph_client *cl = fsc->client;
216 	struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
217 	struct netfs_io_subrequest *subreq = req->r_priv;
218 	struct ceph_osd_req_op *op = &req->r_ops[0];
219 	int err = req->r_result;
220 	bool sparse = (op->op == CEPH_OSD_OP_SPARSE_READ);
221 
222 	ceph_update_read_metrics(&fsc->mdsc->metric, req->r_start_latency,
223 				 req->r_end_latency, osd_data->length, err);
224 
225 	doutc(cl, "result %d subreq->len=%zu i_size=%lld\n", req->r_result,
226 	      subreq->len, i_size_read(req->r_inode));
227 
228 	/* no object means success but no data */
229 	if (err == -ENOENT) {
230 		__set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
231 		__set_bit(NETFS_SREQ_MADE_PROGRESS, &subreq->flags);
232 		err = 0;
233 	} else if (err == -EBLOCKLISTED) {
234 		fsc->blocklisted = true;
235 	}
236 
237 	if (err >= 0) {
238 		if (sparse && err > 0)
239 			err = ceph_sparse_ext_map_end(op);
240 		if (err < subreq->len &&
241 		    subreq->rreq->origin != NETFS_UNBUFFERED_READ &&
242 		    subreq->rreq->origin != NETFS_DIO_READ)
243 			__set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
244 		if (IS_ENCRYPTED(inode) && err > 0) {
245 			err = ceph_fscrypt_decrypt_extents(inode,
246 					osd_data->pages, subreq->start,
247 					op->extent.sparse_ext,
248 					op->extent.sparse_ext_cnt);
249 			if (err > subreq->len)
250 				err = subreq->len;
251 		}
252 		if (err > 0)
253 			__set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
254 	}
255 
256 	if (osd_data->type == CEPH_OSD_DATA_TYPE_PAGES) {
257 		ceph_put_page_vector(osd_data->pages,
258 				     calc_pages_for(osd_data->alignment,
259 					osd_data->length), false);
260 	}
261 	if (err > 0) {
262 		subreq->transferred = err;
263 		err = 0;
264 	}
265 	subreq->error = err;
266 	trace_netfs_sreq(subreq, netfs_sreq_trace_io_progress);
267 	netfs_read_subreq_terminated(subreq);
268 	iput(req->r_inode);
269 	ceph_dec_osd_stopping_blocker(fsc->mdsc);
270 }
271 
272 static bool ceph_netfs_issue_op_inline(struct netfs_io_subrequest *subreq)
273 {
274 	struct netfs_io_request *rreq = subreq->rreq;
275 	struct inode *inode = rreq->inode;
276 	struct ceph_mds_reply_info_parsed *rinfo;
277 	struct ceph_mds_reply_info_in *iinfo;
278 	struct ceph_mds_request *req;
279 	struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
280 	struct ceph_inode_info *ci = ceph_inode(inode);
281 	ssize_t err = 0;
282 	size_t len;
283 	int mode;
284 
285 	if (rreq->origin != NETFS_UNBUFFERED_READ &&
286 	    rreq->origin != NETFS_DIO_READ)
287 		__set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
288 	__clear_bit(NETFS_SREQ_COPY_TO_CACHE, &subreq->flags);
289 
290 	if (subreq->start >= inode->i_size)
291 		goto out;
292 
293 	/* We need to fetch the inline data. */
294 	mode = ceph_try_to_choose_auth_mds(inode, CEPH_STAT_CAP_INLINE_DATA);
295 	req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, mode);
296 	if (IS_ERR(req)) {
297 		err = PTR_ERR(req);
298 		goto out;
299 	}
300 	req->r_ino1 = ci->i_vino;
301 	req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INLINE_DATA);
302 	req->r_num_caps = 2;
303 
304 	trace_netfs_sreq(subreq, netfs_sreq_trace_submit);
305 	err = ceph_mdsc_do_request(mdsc, NULL, req);
306 	if (err < 0)
307 		goto out;
308 
309 	rinfo = &req->r_reply_info;
310 	iinfo = &rinfo->targeti;
311 	if (iinfo->inline_version == CEPH_INLINE_NONE) {
312 		/* The data got uninlined */
313 		ceph_mdsc_put_request(req);
314 		return false;
315 	}
316 
317 	len = min_t(size_t, iinfo->inline_len - subreq->start, subreq->len);
318 	err = copy_to_iter(iinfo->inline_data + subreq->start, len, &subreq->io_iter);
319 	if (err == 0) {
320 		err = -EFAULT;
321 	} else {
322 		subreq->transferred += err;
323 		err = 0;
324 	}
325 
326 	ceph_mdsc_put_request(req);
327 out:
328 	subreq->error = err;
329 	trace_netfs_sreq(subreq, netfs_sreq_trace_io_progress);
330 	netfs_read_subreq_terminated(subreq);
331 	return true;
332 }
333 
334 static int ceph_netfs_prepare_read(struct netfs_io_subrequest *subreq)
335 {
336 	struct netfs_io_request *rreq = subreq->rreq;
337 	struct inode *inode = rreq->inode;
338 	struct ceph_inode_info *ci = ceph_inode(inode);
339 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
340 	u64 objno, objoff;
341 	u32 xlen;
342 
343 	/* Truncate the extent at the end of the current block */
344 	ceph_calc_file_object_mapping(&ci->i_layout, subreq->start, subreq->len,
345 				      &objno, &objoff, &xlen);
346 	rreq->io_streams[0].sreq_max_len = umin(xlen, fsc->mount_options->rsize);
347 	return 0;
348 }
349 
350 static void ceph_netfs_issue_read(struct netfs_io_subrequest *subreq)
351 {
352 	struct netfs_io_request *rreq = subreq->rreq;
353 	struct inode *inode = rreq->inode;
354 	struct ceph_inode_info *ci = ceph_inode(inode);
355 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
356 	struct ceph_client *cl = fsc->client;
357 	struct ceph_osd_request *req = NULL;
358 	struct ceph_vino vino = ceph_vino(inode);
359 	int err;
360 	u64 len;
361 	bool sparse = IS_ENCRYPTED(inode) || ceph_test_mount_opt(fsc, SPARSEREAD);
362 	u64 off = subreq->start;
363 	int extent_cnt;
364 
365 	if (ceph_inode_is_shutdown(inode)) {
366 		err = -EIO;
367 		goto out;
368 	}
369 
370 	if (ceph_has_inline_data(ci) && ceph_netfs_issue_op_inline(subreq))
371 		return;
372 
373 	// TODO: This rounding here is slightly dodgy.  It *should* work, for
374 	// now, as the cache only deals in blocks that are a multiple of
375 	// PAGE_SIZE and fscrypt blocks are at most PAGE_SIZE.  What needs to
376 	// happen is for the fscrypt driving to be moved into netfslib and the
377 	// data in the cache also to be stored encrypted.
378 	len = subreq->len;
379 	ceph_fscrypt_adjust_off_and_len(inode, &off, &len);
380 
381 	req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout, vino,
382 			off, &len, 0, 1, sparse ? CEPH_OSD_OP_SPARSE_READ : CEPH_OSD_OP_READ,
383 			CEPH_OSD_FLAG_READ, NULL, ci->i_truncate_seq,
384 			ci->i_truncate_size, false);
385 	if (IS_ERR(req)) {
386 		err = PTR_ERR(req);
387 		req = NULL;
388 		goto out;
389 	}
390 
391 	if (sparse) {
392 		extent_cnt = __ceph_sparse_read_ext_count(inode, len);
393 		err = ceph_alloc_sparse_ext_map(&req->r_ops[0], extent_cnt);
394 		if (err)
395 			goto out;
396 	}
397 
398 	doutc(cl, "%llx.%llx pos=%llu orig_len=%zu len=%llu\n",
399 	      ceph_vinop(inode), subreq->start, subreq->len, len);
400 
401 	/*
402 	 * FIXME: For now, use CEPH_OSD_DATA_TYPE_PAGES instead of _ITER for
403 	 * encrypted inodes. We'd need infrastructure that handles an iov_iter
404 	 * instead of page arrays, and we don't have that as of yet. Once the
405 	 * dust settles on the write helpers and encrypt/decrypt routines for
406 	 * netfs, we should be able to rework this.
407 	 */
408 	if (IS_ENCRYPTED(inode)) {
409 		struct page **pages;
410 		size_t page_off;
411 
412 		/*
413 		 * FIXME: io_iter.count needs to be corrected to aligned
414 		 * length. Otherwise, iov_iter_get_pages_alloc2() operates
415 		 * with the initial unaligned length value. As a result,
416 		 * ceph_msg_data_cursor_init() triggers BUG_ON() in the case
417 		 * if msg->sparse_read_total > msg->data_length.
418 		 */
419 		subreq->io_iter.count = len;
420 
421 		err = iov_iter_get_pages_alloc2(&subreq->io_iter, &pages, len, &page_off);
422 		if (err < 0) {
423 			doutc(cl, "%llx.%llx failed to allocate pages, %d\n",
424 			      ceph_vinop(inode), err);
425 			goto out;
426 		}
427 
428 		/* should always give us a page-aligned read */
429 		WARN_ON_ONCE(page_off);
430 		len = err;
431 		err = 0;
432 
433 		osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0, false,
434 						 false);
435 	} else {
436 		osd_req_op_extent_osd_iter(req, 0, &subreq->io_iter);
437 	}
438 	if (!ceph_inc_osd_stopping_blocker(fsc->mdsc)) {
439 		err = -EIO;
440 		goto out;
441 	}
442 	req->r_callback = finish_netfs_read;
443 	req->r_priv = subreq;
444 	req->r_inode = inode;
445 	ihold(inode);
446 
447 	trace_netfs_sreq(subreq, netfs_sreq_trace_submit);
448 	ceph_osdc_start_request(req->r_osdc, req);
449 out:
450 	ceph_osdc_put_request(req);
451 	if (err) {
452 		subreq->error = err;
453 		netfs_read_subreq_terminated(subreq);
454 	}
455 	doutc(cl, "%llx.%llx result %d\n", ceph_vinop(inode), err);
456 }
457 
458 static int ceph_init_request(struct netfs_io_request *rreq, struct file *file)
459 {
460 	struct inode *inode = rreq->inode;
461 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
462 	struct ceph_client *cl = ceph_inode_to_client(inode);
463 	int got = 0, want = CEPH_CAP_FILE_CACHE;
464 	struct ceph_netfs_request_data *priv;
465 	int ret = 0;
466 
467 	/* [DEPRECATED] Use PG_private_2 to mark folio being written to the cache. */
468 	__set_bit(NETFS_RREQ_USE_PGPRIV2, &rreq->flags);
469 
470 	if (rreq->origin != NETFS_READAHEAD)
471 		return 0;
472 
473 	priv = kzalloc_obj(*priv, GFP_NOFS);
474 	if (!priv)
475 		return -ENOMEM;
476 
477 	if (file) {
478 		struct ceph_rw_context *rw_ctx;
479 		struct ceph_file_info *fi = file->private_data;
480 
481 		priv->file_ra_pages = file->f_ra.ra_pages;
482 		priv->file_ra_disabled = file->f_mode & FMODE_RANDOM;
483 
484 		rw_ctx = ceph_find_rw_context(fi);
485 		if (rw_ctx) {
486 			rreq->netfs_priv = priv;
487 			return 0;
488 		}
489 	}
490 
491 	/*
492 	 * readahead callers do not necessarily hold Fcb caps
493 	 * (e.g. fadvise, madvise).
494 	 */
495 	ret = ceph_try_get_caps(inode, CEPH_CAP_FILE_RD, want, true, &got);
496 	if (ret < 0) {
497 		doutc(cl, "%llx.%llx, error getting cap\n", ceph_vinop(inode));
498 		goto out;
499 	}
500 
501 	if (!(got & want)) {
502 		doutc(cl, "%llx.%llx, no cache cap\n", ceph_vinop(inode));
503 		ret = -EACCES;
504 		goto out;
505 	}
506 	if (ret == 0) {
507 		ret = -EACCES;
508 		goto out;
509 	}
510 
511 	priv->caps = got;
512 	rreq->netfs_priv = priv;
513 	rreq->io_streams[0].sreq_max_len = fsc->mount_options->rsize;
514 
515 out:
516 	if (ret < 0) {
517 		if (got)
518 			ceph_put_cap_refs(ceph_inode(inode), got);
519 		kfree(priv);
520 	}
521 
522 	return ret;
523 }
524 
525 static void ceph_netfs_free_request(struct netfs_io_request *rreq)
526 {
527 	struct ceph_netfs_request_data *priv = rreq->netfs_priv;
528 
529 	if (!priv)
530 		return;
531 
532 	if (priv->caps)
533 		ceph_put_cap_refs(ceph_inode(rreq->inode), priv->caps);
534 	kfree(priv);
535 	rreq->netfs_priv = NULL;
536 }
537 
538 const struct netfs_request_ops ceph_netfs_ops = {
539 	.init_request		= ceph_init_request,
540 	.free_request		= ceph_netfs_free_request,
541 	.prepare_read		= ceph_netfs_prepare_read,
542 	.issue_read		= ceph_netfs_issue_read,
543 	.expand_readahead	= ceph_netfs_expand_readahead,
544 	.check_write_begin	= ceph_netfs_check_write_begin,
545 };
546 
547 #ifdef CONFIG_CEPH_FSCACHE
548 static void ceph_set_page_fscache(struct page *page)
549 {
550 	folio_start_private_2(page_folio(page)); /* [DEPRECATED] */
551 }
552 
553 static void ceph_fscache_write_terminated(void *priv, ssize_t error)
554 {
555 	struct inode *inode = priv;
556 
557 	if (IS_ERR_VALUE(error) && error != -ENOBUFS)
558 		ceph_fscache_invalidate(inode, false);
559 }
560 
561 static void ceph_fscache_write_to_cache(struct inode *inode, u64 off, u64 len, bool caching)
562 {
563 	struct ceph_inode_info *ci = ceph_inode(inode);
564 	struct fscache_cookie *cookie = ceph_fscache_cookie(ci);
565 
566 	fscache_write_to_cache(cookie, inode->i_mapping, off, len, i_size_read(inode),
567 			       ceph_fscache_write_terminated, inode, true, caching);
568 }
569 #else
570 static inline void ceph_set_page_fscache(struct page *page)
571 {
572 }
573 
574 static inline void ceph_fscache_write_to_cache(struct inode *inode, u64 off, u64 len, bool caching)
575 {
576 }
577 #endif /* CONFIG_CEPH_FSCACHE */
578 
579 struct ceph_writeback_ctl
580 {
581 	loff_t i_size;
582 	u64 truncate_size;
583 	u32 truncate_seq;
584 	bool size_stable;
585 
586 	bool head_snapc;
587 	struct ceph_snap_context *snapc;
588 	struct ceph_snap_context *last_snapc;
589 
590 	bool done;
591 	bool should_loop;
592 	bool range_whole;
593 	pgoff_t start_index;
594 	pgoff_t index;
595 	pgoff_t end;
596 	xa_mark_t tag;
597 
598 	pgoff_t strip_unit_end;
599 	unsigned int wsize;
600 	unsigned int nr_folios;
601 	unsigned int max_pages;
602 	unsigned int locked_pages;
603 
604 	int op_idx;
605 	int num_ops;
606 	u64 offset;
607 	u64 len;
608 
609 	struct folio_batch fbatch;
610 	unsigned int processed_in_fbatch;
611 
612 	bool from_pool;
613 	struct page **pages;
614 	struct page **data_pages;
615 };
616 
617 /*
618  * Get ref for the oldest snapc for an inode with dirty data... that is, the
619  * only snap context we are allowed to write back.
620  */
621 static struct ceph_snap_context *
622 get_oldest_context(struct inode *inode, struct ceph_writeback_ctl *ctl,
623 		   struct ceph_snap_context *page_snapc)
624 {
625 	struct ceph_inode_info *ci = ceph_inode(inode);
626 	struct ceph_client *cl = ceph_inode_to_client(inode);
627 	struct ceph_snap_context *snapc = NULL;
628 	struct ceph_cap_snap *capsnap = NULL;
629 
630 	spin_lock(&ci->i_ceph_lock);
631 	list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
632 		doutc(cl, " capsnap %p snapc %p has %d dirty pages\n",
633 		      capsnap, capsnap->context, capsnap->dirty_pages);
634 		if (!capsnap->dirty_pages)
635 			continue;
636 
637 		/* get i_size, truncate_{seq,size} for page_snapc? */
638 		if (snapc && capsnap->context != page_snapc)
639 			continue;
640 
641 		if (ctl) {
642 			if (capsnap->writing) {
643 				ctl->i_size = i_size_read(inode);
644 				ctl->size_stable = false;
645 			} else {
646 				ctl->i_size = capsnap->size;
647 				ctl->size_stable = true;
648 			}
649 			ctl->truncate_size = capsnap->truncate_size;
650 			ctl->truncate_seq = capsnap->truncate_seq;
651 			ctl->head_snapc = false;
652 		}
653 
654 		if (snapc)
655 			break;
656 
657 		snapc = ceph_get_snap_context(capsnap->context);
658 		if (!page_snapc ||
659 		    page_snapc == snapc ||
660 		    page_snapc->seq > snapc->seq)
661 			break;
662 	}
663 	if (!snapc && ci->i_wrbuffer_ref_head) {
664 		snapc = ceph_get_snap_context(ci->i_head_snapc);
665 		doutc(cl, " head snapc %p has %d dirty pages\n", snapc,
666 		      ci->i_wrbuffer_ref_head);
667 		if (ctl) {
668 			ctl->i_size = i_size_read(inode);
669 			ctl->truncate_size = ci->i_truncate_size;
670 			ctl->truncate_seq = ci->i_truncate_seq;
671 			ctl->size_stable = false;
672 			ctl->head_snapc = true;
673 		}
674 	}
675 	spin_unlock(&ci->i_ceph_lock);
676 	return snapc;
677 }
678 
679 static u64 get_writepages_data_length(struct inode *inode,
680 				      struct page *page, u64 start)
681 {
682 	struct ceph_inode_info *ci = ceph_inode(inode);
683 	struct ceph_snap_context *snapc;
684 	struct ceph_cap_snap *capsnap = NULL;
685 	u64 end = i_size_read(inode);
686 	u64 ret;
687 
688 	snapc = page_snap_context(ceph_fscrypt_pagecache_page(page));
689 	if (snapc != ci->i_head_snapc) {
690 		bool found = false;
691 		spin_lock(&ci->i_ceph_lock);
692 		list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
693 			if (capsnap->context == snapc) {
694 				if (!capsnap->writing)
695 					end = capsnap->size;
696 				found = true;
697 				break;
698 			}
699 		}
700 		spin_unlock(&ci->i_ceph_lock);
701 		WARN_ON(!found);
702 	}
703 	if (end > ceph_fscrypt_page_offset(page) + thp_size(page))
704 		end = ceph_fscrypt_page_offset(page) + thp_size(page);
705 	ret = end > start ? end - start : 0;
706 	if (ret && fscrypt_is_bounce_page(page))
707 		ret = round_up(ret, CEPH_FSCRYPT_BLOCK_SIZE);
708 	return ret;
709 }
710 
711 /*
712  * Write a folio, but leave it locked.
713  *
714  * If we get a write error, mark the mapping for error, but still adjust the
715  * dirty page accounting (i.e., folio is no longer dirty).
716  */
717 static int write_folio_nounlock(struct folio *folio,
718 		struct writeback_control *wbc)
719 {
720 	struct page *page = &folio->page;
721 	struct inode *inode = folio->mapping->host;
722 	struct ceph_inode_info *ci = ceph_inode(inode);
723 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
724 	struct ceph_client *cl = fsc->client;
725 	struct ceph_snap_context *snapc, *oldest;
726 	loff_t page_off = folio_pos(folio);
727 	int err;
728 	loff_t len = folio_size(folio);
729 	loff_t wlen;
730 	struct ceph_writeback_ctl ceph_wbc;
731 	struct ceph_osd_client *osdc = &fsc->client->osdc;
732 	struct ceph_osd_request *req;
733 	bool caching = ceph_is_cache_enabled(inode);
734 	struct page *bounce_page = NULL;
735 
736 	doutc(cl, "%llx.%llx folio %p idx %lu\n", ceph_vinop(inode), folio,
737 	      folio->index);
738 
739 	if (ceph_inode_is_shutdown(inode))
740 		return -EIO;
741 
742 	/* verify this is a writeable snap context */
743 	snapc = page_snap_context(&folio->page);
744 	if (!snapc) {
745 		doutc(cl, "%llx.%llx folio %p not dirty?\n", ceph_vinop(inode),
746 		      folio);
747 		return 0;
748 	}
749 	oldest = get_oldest_context(inode, &ceph_wbc, snapc);
750 	if (snapc->seq > oldest->seq) {
751 		doutc(cl, "%llx.%llx folio %p snapc %p not writeable - noop\n",
752 		      ceph_vinop(inode), folio, snapc);
753 		/* we should only noop if called by kswapd */
754 		WARN_ON(!(current->flags & PF_MEMALLOC));
755 		ceph_put_snap_context(oldest);
756 		folio_redirty_for_writepage(wbc, folio);
757 		return 0;
758 	}
759 	ceph_put_snap_context(oldest);
760 
761 	/* is this a partial page at end of file? */
762 	if (page_off >= ceph_wbc.i_size) {
763 		doutc(cl, "%llx.%llx folio at %lu beyond eof %llu\n",
764 		      ceph_vinop(inode), folio->index, ceph_wbc.i_size);
765 		folio_invalidate(folio, 0, folio_size(folio));
766 		return 0;
767 	}
768 
769 	if (ceph_wbc.i_size < page_off + len)
770 		len = ceph_wbc.i_size - page_off;
771 
772 	wlen = IS_ENCRYPTED(inode) ? round_up(len, CEPH_FSCRYPT_BLOCK_SIZE) : len;
773 	doutc(cl, "%llx.%llx folio %p index %lu on %llu~%llu snapc %p seq %lld\n",
774 	      ceph_vinop(inode), folio, folio->index, page_off, wlen, snapc,
775 	      snapc->seq);
776 
777 	if (atomic_long_inc_return(&fsc->writeback_count) >
778 	    CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb))
779 		fsc->write_congested = true;
780 
781 	req = ceph_osdc_new_request(osdc, &ci->i_layout, ceph_vino(inode),
782 				    page_off, &wlen, 0, 1, CEPH_OSD_OP_WRITE,
783 				    CEPH_OSD_FLAG_WRITE, snapc,
784 				    ceph_wbc.truncate_seq,
785 				    ceph_wbc.truncate_size, true);
786 	if (IS_ERR(req)) {
787 		folio_redirty_for_writepage(wbc, folio);
788 		return PTR_ERR(req);
789 	}
790 
791 	if (wlen < len)
792 		len = wlen;
793 
794 	folio_start_writeback(folio);
795 	if (caching)
796 		ceph_set_page_fscache(&folio->page);
797 	ceph_fscache_write_to_cache(inode, page_off, len, caching);
798 
799 	if (IS_ENCRYPTED(inode)) {
800 		bounce_page = fscrypt_encrypt_pagecache_blocks(folio,
801 						    CEPH_FSCRYPT_BLOCK_SIZE, 0,
802 						    GFP_NOFS);
803 		if (IS_ERR(bounce_page)) {
804 			folio_redirty_for_writepage(wbc, folio);
805 			folio_end_writeback(folio);
806 			ceph_osdc_put_request(req);
807 			return PTR_ERR(bounce_page);
808 		}
809 	}
810 
811 	/* it may be a short write due to an object boundary */
812 	WARN_ON_ONCE(len > folio_size(folio));
813 	osd_req_op_extent_osd_data_pages(req, 0,
814 			bounce_page ? &bounce_page : &page, wlen, 0,
815 			false, false);
816 	doutc(cl, "%llx.%llx %llu~%llu (%llu bytes, %sencrypted)\n",
817 	      ceph_vinop(inode), page_off, len, wlen,
818 	      IS_ENCRYPTED(inode) ? "" : "not ");
819 
820 	req->r_mtime = inode_get_mtime(inode);
821 	ceph_osdc_start_request(osdc, req);
822 	err = ceph_osdc_wait_request(osdc, req);
823 
824 	ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
825 				  req->r_end_latency, len, err);
826 	fscrypt_free_bounce_page(bounce_page);
827 	ceph_osdc_put_request(req);
828 	if (err == 0)
829 		err = len;
830 
831 	if (err < 0) {
832 		struct writeback_control tmp_wbc;
833 		if (!wbc)
834 			wbc = &tmp_wbc;
835 		if (err == -ERESTARTSYS) {
836 			/* killed by SIGKILL */
837 			doutc(cl, "%llx.%llx interrupted page %p\n",
838 			      ceph_vinop(inode), folio);
839 			folio_redirty_for_writepage(wbc, folio);
840 			folio_end_writeback(folio);
841 			return err;
842 		}
843 		if (err == -EBLOCKLISTED)
844 			fsc->blocklisted = true;
845 		doutc(cl, "%llx.%llx setting mapping error %d %p\n",
846 		      ceph_vinop(inode), err, folio);
847 		mapping_set_error(&inode->i_data, err);
848 		wbc->pages_skipped++;
849 	} else {
850 		doutc(cl, "%llx.%llx cleaned page %p\n",
851 		      ceph_vinop(inode), folio);
852 		err = 0;  /* vfs expects us to return 0 */
853 	}
854 	oldest = folio_detach_private(folio);
855 	WARN_ON_ONCE(oldest != snapc);
856 	folio_end_writeback(folio);
857 	ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
858 	ceph_put_snap_context(snapc);  /* page's reference */
859 
860 	if (atomic_long_dec_return(&fsc->writeback_count) <
861 	    CONGESTION_OFF_THRESH(fsc->mount_options->congestion_kb))
862 		fsc->write_congested = false;
863 
864 	return err;
865 }
866 
867 /*
868  * async writeback completion handler.
869  *
870  * If we get an error, set the mapping error bit, but not the individual
871  * page error bits.
872  */
873 static void writepages_finish(struct ceph_osd_request *req)
874 {
875 	struct inode *inode = req->r_inode;
876 	struct ceph_inode_info *ci = ceph_inode(inode);
877 	struct ceph_client *cl = ceph_inode_to_client(inode);
878 	struct ceph_osd_data *osd_data;
879 	struct page *page;
880 	int num_pages, total_pages = 0;
881 	int i, j;
882 	int rc = req->r_result;
883 	struct ceph_snap_context *snapc = req->r_snapc;
884 	struct address_space *mapping = inode->i_mapping;
885 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
886 	struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
887 	unsigned int len = 0;
888 	bool remove_page;
889 
890 	doutc(cl, "%llx.%llx rc %d\n", ceph_vinop(inode), rc);
891 	if (rc < 0) {
892 		mapping_set_error(mapping, rc);
893 		ceph_set_error_write(ci);
894 		if (rc == -EBLOCKLISTED)
895 			fsc->blocklisted = true;
896 	} else {
897 		ceph_clear_error_write(ci);
898 	}
899 
900 	/*
901 	 * We lost the cache cap, need to truncate the page before
902 	 * it is unlocked, otherwise we'd truncate it later in the
903 	 * page truncation thread, possibly losing some data that
904 	 * raced its way in
905 	 */
906 	remove_page = !(ceph_caps_issued(ci) &
907 			(CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO));
908 
909 	/* clean all pages */
910 	for (i = 0; i < req->r_num_ops; i++) {
911 		if (req->r_ops[i].op != CEPH_OSD_OP_WRITE) {
912 			pr_warn_client(cl,
913 				"%llx.%llx incorrect op %d req %p index %d tid %llu\n",
914 				ceph_vinop(inode), req->r_ops[i].op, req, i,
915 				req->r_tid);
916 			break;
917 		}
918 
919 		osd_data = osd_req_op_extent_osd_data(req, i);
920 		BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
921 		len += osd_data->length;
922 		num_pages = calc_pages_for((u64)osd_data->alignment,
923 					   (u64)osd_data->length);
924 		total_pages += num_pages;
925 		for (j = 0; j < num_pages; j++) {
926 			page = osd_data->pages[j];
927 			if (fscrypt_is_bounce_page(page)) {
928 				page = fscrypt_pagecache_page(page);
929 				fscrypt_free_bounce_page(osd_data->pages[j]);
930 				osd_data->pages[j] = page;
931 			}
932 			BUG_ON(!page);
933 			WARN_ON(!PageUptodate(page));
934 
935 			if (atomic_long_dec_return(&fsc->writeback_count) <
936 			     CONGESTION_OFF_THRESH(
937 					fsc->mount_options->congestion_kb))
938 				fsc->write_congested = false;
939 
940 			ceph_put_snap_context(detach_page_private(page));
941 			end_page_writeback(page);
942 
943 			if (atomic64_dec_return(&mdsc->dirty_folios) <= 0) {
944 				wake_up_all(&mdsc->flush_end_wq);
945 				WARN_ON(atomic64_read(&mdsc->dirty_folios) < 0);
946 			}
947 
948 			doutc(cl, "unlocking %p\n", page);
949 
950 			if (remove_page)
951 				generic_error_remove_folio(inode->i_mapping,
952 							  page_folio(page));
953 
954 			unlock_page(page);
955 		}
956 		doutc(cl, "%llx.%llx wrote %llu bytes cleaned %d pages\n",
957 		      ceph_vinop(inode), osd_data->length,
958 		      rc >= 0 ? num_pages : 0);
959 
960 		release_pages(osd_data->pages, num_pages);
961 	}
962 
963 	ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
964 				  req->r_end_latency, len, rc);
965 
966 	ceph_put_wrbuffer_cap_refs(ci, total_pages, snapc);
967 
968 	osd_data = osd_req_op_extent_osd_data(req, 0);
969 	if (osd_data->pages_from_pool)
970 		mempool_free(osd_data->pages, ceph_wb_pagevec_pool);
971 	else
972 		kfree(osd_data->pages);
973 	ceph_osdc_put_request(req);
974 	ceph_dec_osd_stopping_blocker(fsc->mdsc);
975 }
976 
977 static inline
978 bool is_forced_umount(struct address_space *mapping)
979 {
980 	struct inode *inode = mapping->host;
981 	struct ceph_inode_info *ci = ceph_inode(inode);
982 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
983 	struct ceph_client *cl = fsc->client;
984 
985 	if (ceph_inode_is_shutdown(inode)) {
986 		if (ci->i_wrbuffer_ref > 0) {
987 			pr_warn_ratelimited_client(cl,
988 				"%llx.%llx %lld forced umount\n",
989 				ceph_vinop(inode), ceph_ino(inode));
990 		}
991 		mapping_set_error(mapping, -EIO);
992 		return true;
993 	}
994 
995 	return false;
996 }
997 
998 static inline
999 unsigned int ceph_define_write_size(struct address_space *mapping)
1000 {
1001 	struct inode *inode = mapping->host;
1002 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
1003 	struct ceph_inode_info *ci = ceph_inode(inode);
1004 	unsigned int wsize = ci->i_layout.stripe_unit;
1005 
1006 	if (fsc->mount_options->wsize < wsize)
1007 		wsize = fsc->mount_options->wsize;
1008 
1009 	return wsize;
1010 }
1011 
1012 static inline
1013 void ceph_folio_batch_init(struct ceph_writeback_ctl *ceph_wbc)
1014 {
1015 	folio_batch_init(&ceph_wbc->fbatch);
1016 	ceph_wbc->processed_in_fbatch = 0;
1017 }
1018 
1019 static inline
1020 void ceph_folio_batch_reinit(struct ceph_writeback_ctl *ceph_wbc)
1021 {
1022 	folio_batch_release(&ceph_wbc->fbatch);
1023 	ceph_folio_batch_init(ceph_wbc);
1024 }
1025 
1026 static inline
1027 void ceph_init_writeback_ctl(struct address_space *mapping,
1028 			     struct writeback_control *wbc,
1029 			     struct ceph_writeback_ctl *ceph_wbc)
1030 {
1031 	ceph_wbc->snapc = NULL;
1032 	ceph_wbc->last_snapc = NULL;
1033 
1034 	ceph_wbc->strip_unit_end = 0;
1035 	ceph_wbc->wsize = ceph_define_write_size(mapping);
1036 
1037 	ceph_wbc->nr_folios = 0;
1038 	ceph_wbc->max_pages = 0;
1039 	ceph_wbc->locked_pages = 0;
1040 
1041 	ceph_wbc->done = false;
1042 	ceph_wbc->should_loop = false;
1043 	ceph_wbc->range_whole = false;
1044 
1045 	ceph_wbc->start_index = wbc->range_cyclic ? mapping->writeback_index : 0;
1046 	ceph_wbc->index = ceph_wbc->start_index;
1047 	ceph_wbc->end = -1;
1048 
1049 	ceph_wbc->tag = wbc_to_tag(wbc);
1050 
1051 	ceph_wbc->op_idx = -1;
1052 	ceph_wbc->num_ops = 0;
1053 	ceph_wbc->offset = 0;
1054 	ceph_wbc->len = 0;
1055 	ceph_wbc->from_pool = false;
1056 
1057 	ceph_folio_batch_init(ceph_wbc);
1058 
1059 	ceph_wbc->pages = NULL;
1060 	ceph_wbc->data_pages = NULL;
1061 }
1062 
1063 static inline
1064 int ceph_define_writeback_range(struct address_space *mapping,
1065 				struct writeback_control *wbc,
1066 				struct ceph_writeback_ctl *ceph_wbc)
1067 {
1068 	struct inode *inode = mapping->host;
1069 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
1070 	struct ceph_client *cl = fsc->client;
1071 
1072 	/* find oldest snap context with dirty data */
1073 	ceph_wbc->snapc = get_oldest_context(inode, ceph_wbc, NULL);
1074 	if (!ceph_wbc->snapc) {
1075 		/* hmm, why does writepages get called when there
1076 		   is no dirty data? */
1077 		doutc(cl, " no snap context with dirty data?\n");
1078 		return -ENODATA;
1079 	}
1080 
1081 	doutc(cl, " oldest snapc is %p seq %lld (%d snaps)\n",
1082 	      ceph_wbc->snapc, ceph_wbc->snapc->seq,
1083 	      ceph_wbc->snapc->num_snaps);
1084 
1085 	ceph_wbc->should_loop = false;
1086 
1087 	if (ceph_wbc->head_snapc && ceph_wbc->snapc != ceph_wbc->last_snapc) {
1088 		/* where to start/end? */
1089 		if (wbc->range_cyclic) {
1090 			ceph_wbc->index = ceph_wbc->start_index;
1091 			ceph_wbc->end = -1;
1092 			if (ceph_wbc->index > 0)
1093 				ceph_wbc->should_loop = true;
1094 			doutc(cl, " cyclic, start at %lu\n", ceph_wbc->index);
1095 		} else {
1096 			ceph_wbc->index = wbc->range_start >> PAGE_SHIFT;
1097 			ceph_wbc->end = wbc->range_end >> PAGE_SHIFT;
1098 			if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
1099 				ceph_wbc->range_whole = true;
1100 			doutc(cl, " not cyclic, %lu to %lu\n",
1101 				ceph_wbc->index, ceph_wbc->end);
1102 		}
1103 	} else if (!ceph_wbc->head_snapc) {
1104 		/* Do not respect wbc->range_{start,end}. Dirty pages
1105 		 * in that range can be associated with newer snapc.
1106 		 * They are not writeable until we write all dirty pages
1107 		 * associated with 'snapc' get written */
1108 		if (ceph_wbc->index > 0)
1109 			ceph_wbc->should_loop = true;
1110 		doutc(cl, " non-head snapc, range whole\n");
1111 	}
1112 
1113 	ceph_put_snap_context(ceph_wbc->last_snapc);
1114 	ceph_wbc->last_snapc = ceph_wbc->snapc;
1115 
1116 	return 0;
1117 }
1118 
1119 static inline
1120 bool has_writeback_done(struct ceph_writeback_ctl *ceph_wbc)
1121 {
1122 	return ceph_wbc->done && ceph_wbc->index > ceph_wbc->end;
1123 }
1124 
1125 static inline
1126 bool can_next_page_be_processed(struct ceph_writeback_ctl *ceph_wbc,
1127 				unsigned index)
1128 {
1129 	return index < ceph_wbc->nr_folios &&
1130 		ceph_wbc->locked_pages < ceph_wbc->max_pages;
1131 }
1132 
1133 static
1134 int ceph_check_page_before_write(struct address_space *mapping,
1135 				 struct writeback_control *wbc,
1136 				 struct ceph_writeback_ctl *ceph_wbc,
1137 				 struct folio *folio)
1138 {
1139 	struct inode *inode = mapping->host;
1140 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
1141 	struct ceph_client *cl = fsc->client;
1142 	struct ceph_snap_context *pgsnapc;
1143 
1144 	/* only dirty folios, or our accounting breaks */
1145 	if (unlikely(!folio_test_dirty(folio) || folio->mapping != mapping)) {
1146 		doutc(cl, "!dirty or !mapping %p\n", folio);
1147 		return -ENODATA;
1148 	}
1149 
1150 	/* only if matching snap context */
1151 	pgsnapc = page_snap_context(&folio->page);
1152 	if (pgsnapc != ceph_wbc->snapc) {
1153 		doutc(cl, "folio snapc %p %lld != oldest %p %lld\n",
1154 		      pgsnapc, pgsnapc->seq,
1155 		      ceph_wbc->snapc, ceph_wbc->snapc->seq);
1156 
1157 		if (!ceph_wbc->should_loop && !ceph_wbc->head_snapc &&
1158 		    wbc->sync_mode != WB_SYNC_NONE)
1159 			ceph_wbc->should_loop = true;
1160 
1161 		return -ENODATA;
1162 	}
1163 
1164 	if (folio_pos(folio) >= ceph_wbc->i_size) {
1165 		doutc(cl, "folio at %lu beyond eof %llu\n",
1166 		      folio->index, ceph_wbc->i_size);
1167 
1168 		if ((ceph_wbc->size_stable ||
1169 		    folio_pos(folio) >= i_size_read(inode)) &&
1170 		    folio_clear_dirty_for_io(folio))
1171 			folio_invalidate(folio, 0, folio_size(folio));
1172 
1173 		return -ENODATA;
1174 	}
1175 
1176 	if (ceph_wbc->strip_unit_end &&
1177 	    (folio->index > ceph_wbc->strip_unit_end)) {
1178 		doutc(cl, "end of strip unit %p\n", folio);
1179 		return -E2BIG;
1180 	}
1181 
1182 	return 0;
1183 }
1184 
1185 static inline
1186 void __ceph_allocate_page_array(struct ceph_writeback_ctl *ceph_wbc,
1187 				unsigned int max_pages)
1188 {
1189 	ceph_wbc->pages = kmalloc_objs(*ceph_wbc->pages, max_pages, GFP_NOFS);
1190 	if (!ceph_wbc->pages) {
1191 		ceph_wbc->from_pool = true;
1192 		ceph_wbc->pages = mempool_alloc(ceph_wb_pagevec_pool, GFP_NOFS);
1193 		BUG_ON(!ceph_wbc->pages);
1194 	}
1195 }
1196 
1197 static inline
1198 void ceph_allocate_page_array(struct address_space *mapping,
1199 			      struct ceph_writeback_ctl *ceph_wbc,
1200 			      struct folio *folio)
1201 {
1202 	struct inode *inode = mapping->host;
1203 	struct ceph_inode_info *ci = ceph_inode(inode);
1204 	u64 objnum;
1205 	u64 objoff;
1206 	u32 xlen;
1207 
1208 	/* prepare async write request */
1209 	ceph_wbc->offset = (u64)folio_pos(folio);
1210 	ceph_calc_file_object_mapping(&ci->i_layout,
1211 					ceph_wbc->offset, ceph_wbc->wsize,
1212 					&objnum, &objoff, &xlen);
1213 
1214 	ceph_wbc->num_ops = 1;
1215 	ceph_wbc->strip_unit_end = folio->index + ((xlen - 1) >> PAGE_SHIFT);
1216 
1217 	BUG_ON(ceph_wbc->pages);
1218 	ceph_wbc->max_pages = calc_pages_for(0, (u64)xlen);
1219 	__ceph_allocate_page_array(ceph_wbc, ceph_wbc->max_pages);
1220 
1221 	ceph_wbc->len = 0;
1222 }
1223 
1224 static inline
1225 bool is_folio_index_contiguous(const struct ceph_writeback_ctl *ceph_wbc,
1226 			      const struct folio *folio)
1227 {
1228 	return folio->index == (ceph_wbc->offset + ceph_wbc->len) >> PAGE_SHIFT;
1229 }
1230 
1231 static inline
1232 bool is_num_ops_too_big(struct ceph_writeback_ctl *ceph_wbc)
1233 {
1234 	return ceph_wbc->num_ops >=
1235 		(ceph_wbc->from_pool ?  CEPH_OSD_SLAB_OPS : CEPH_OSD_MAX_OPS);
1236 }
1237 
1238 static inline
1239 bool is_write_congestion_happened(struct ceph_fs_client *fsc)
1240 {
1241 	return atomic_long_inc_return(&fsc->writeback_count) >
1242 		CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb);
1243 }
1244 
1245 static inline int move_dirty_folio_in_page_array(struct address_space *mapping,
1246 		struct writeback_control *wbc,
1247 		struct ceph_writeback_ctl *ceph_wbc, struct folio *folio)
1248 {
1249 	struct inode *inode = mapping->host;
1250 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
1251 	struct ceph_client *cl = fsc->client;
1252 	struct page **pages = ceph_wbc->pages;
1253 	unsigned int index = ceph_wbc->locked_pages;
1254 	gfp_t gfp_flags = ceph_wbc->locked_pages ? GFP_NOWAIT : GFP_NOFS;
1255 
1256 	if (IS_ENCRYPTED(inode)) {
1257 		pages[index] = fscrypt_encrypt_pagecache_blocks(folio,
1258 								PAGE_SIZE,
1259 								0,
1260 								gfp_flags);
1261 		if (IS_ERR(pages[index])) {
1262 			int err = PTR_ERR(pages[index]);
1263 
1264 			if (err == -EINVAL) {
1265 				pr_err_client(cl, "inode->i_blkbits=%hhu\n",
1266 						inode->i_blkbits);
1267 			}
1268 
1269 			/* better not fail on first page! */
1270 			BUG_ON(ceph_wbc->locked_pages == 0);
1271 
1272 			pages[index] = NULL;
1273 			return err;
1274 		}
1275 	} else {
1276 		pages[index] = &folio->page;
1277 	}
1278 
1279 	ceph_wbc->locked_pages++;
1280 
1281 	return 0;
1282 }
1283 
1284 static
1285 void ceph_process_folio_batch(struct address_space *mapping,
1286 			      struct writeback_control *wbc,
1287 			      struct ceph_writeback_ctl *ceph_wbc)
1288 {
1289 	struct inode *inode = mapping->host;
1290 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
1291 	struct ceph_client *cl = fsc->client;
1292 	struct folio *folio = NULL;
1293 	unsigned i;
1294 	int rc;
1295 
1296 	for (i = 0; can_next_page_be_processed(ceph_wbc, i); i++) {
1297 		folio = ceph_wbc->fbatch.folios[i];
1298 
1299 		if (!folio)
1300 			continue;
1301 
1302 		doutc(cl, "? %p idx %lu, folio_test_writeback %#x, "
1303 			"folio_test_dirty %#x, folio_test_locked %#x\n",
1304 			folio, folio->index, folio_test_writeback(folio),
1305 			folio_test_dirty(folio),
1306 			folio_test_locked(folio));
1307 
1308 		if (folio_test_writeback(folio) ||
1309 		    folio_test_private_2(folio) /* [DEPRECATED] */) {
1310 			doutc(cl, "waiting on writeback %p\n", folio);
1311 			folio_wait_writeback(folio);
1312 			folio_wait_private_2(folio); /* [DEPRECATED] */
1313 			continue;
1314 		}
1315 
1316 		if (ceph_wbc->locked_pages == 0)
1317 			folio_lock(folio);
1318 		else if (!folio_trylock(folio))
1319 			break;
1320 
1321 		rc = ceph_check_page_before_write(mapping, wbc,
1322 						  ceph_wbc, folio);
1323 		if (rc == -ENODATA) {
1324 			folio_unlock(folio);
1325 			ceph_wbc->fbatch.folios[i] = NULL;
1326 			continue;
1327 		} else if (rc == -E2BIG) {
1328 			folio_unlock(folio);
1329 			break;
1330 		}
1331 
1332 		if (!folio_clear_dirty_for_io(folio)) {
1333 			doutc(cl, "%p !folio_clear_dirty_for_io\n", folio);
1334 			folio_unlock(folio);
1335 			ceph_wbc->fbatch.folios[i] = NULL;
1336 			continue;
1337 		}
1338 
1339 		/*
1340 		 * We have something to write.  If this is
1341 		 * the first locked page this time through,
1342 		 * calculate max possible write size and
1343 		 * allocate a page array
1344 		 */
1345 		if (ceph_wbc->locked_pages == 0) {
1346 			ceph_allocate_page_array(mapping, ceph_wbc, folio);
1347 		} else if (!is_folio_index_contiguous(ceph_wbc, folio)) {
1348 			if (is_num_ops_too_big(ceph_wbc)) {
1349 				folio_redirty_for_writepage(wbc, folio);
1350 				folio_unlock(folio);
1351 				break;
1352 			}
1353 
1354 			ceph_wbc->num_ops++;
1355 			ceph_wbc->offset = (u64)folio_pos(folio);
1356 			ceph_wbc->len = 0;
1357 		}
1358 
1359 		/* note position of first page in fbatch */
1360 		doutc(cl, "%llx.%llx will write folio %p idx %lu\n",
1361 		      ceph_vinop(inode), folio, folio->index);
1362 
1363 		fsc->write_congested = is_write_congestion_happened(fsc);
1364 
1365 		rc = move_dirty_folio_in_page_array(mapping, wbc, ceph_wbc,
1366 				folio);
1367 		if (rc) {
1368 			folio_redirty_for_writepage(wbc, folio);
1369 			folio_unlock(folio);
1370 			break;
1371 		}
1372 
1373 		ceph_wbc->fbatch.folios[i] = NULL;
1374 		ceph_wbc->len += folio_size(folio);
1375 	}
1376 
1377 	ceph_wbc->processed_in_fbatch = i;
1378 }
1379 
1380 static inline
1381 void ceph_shift_unused_folios_left(struct folio_batch *fbatch)
1382 {
1383 	unsigned j, n = 0;
1384 
1385 	/* shift unused page to beginning of fbatch */
1386 	for (j = 0; j < folio_batch_count(fbatch); j++) {
1387 		if (!fbatch->folios[j])
1388 			continue;
1389 
1390 		if (n < j) {
1391 			fbatch->folios[n] = fbatch->folios[j];
1392 		}
1393 
1394 		n++;
1395 	}
1396 
1397 	fbatch->nr = n;
1398 }
1399 
1400 static
1401 int ceph_submit_write(struct address_space *mapping,
1402 			struct writeback_control *wbc,
1403 			struct ceph_writeback_ctl *ceph_wbc)
1404 {
1405 	struct inode *inode = mapping->host;
1406 	struct ceph_inode_info *ci = ceph_inode(inode);
1407 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
1408 	struct ceph_client *cl = fsc->client;
1409 	struct ceph_vino vino = ceph_vino(inode);
1410 	struct ceph_osd_request *req = NULL;
1411 	struct page *page = NULL;
1412 	bool caching = ceph_is_cache_enabled(inode);
1413 	u64 offset;
1414 	u64 len;
1415 	unsigned i;
1416 
1417 new_request:
1418 	offset = ceph_fscrypt_page_offset(ceph_wbc->pages[0]);
1419 	len = ceph_wbc->wsize;
1420 
1421 	req = ceph_osdc_new_request(&fsc->client->osdc,
1422 				    &ci->i_layout, vino,
1423 				    offset, &len, 0, ceph_wbc->num_ops,
1424 				    CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
1425 				    ceph_wbc->snapc, ceph_wbc->truncate_seq,
1426 				    ceph_wbc->truncate_size, false);
1427 	if (IS_ERR(req)) {
1428 		req = ceph_osdc_new_request(&fsc->client->osdc,
1429 					    &ci->i_layout, vino,
1430 					    offset, &len, 0,
1431 					    min(ceph_wbc->num_ops,
1432 						CEPH_OSD_SLAB_OPS),
1433 					    CEPH_OSD_OP_WRITE,
1434 					    CEPH_OSD_FLAG_WRITE,
1435 					    ceph_wbc->snapc,
1436 					    ceph_wbc->truncate_seq,
1437 					    ceph_wbc->truncate_size,
1438 					    true);
1439 		BUG_ON(IS_ERR(req));
1440 	}
1441 
1442 	page = ceph_wbc->pages[ceph_wbc->locked_pages - 1];
1443 	BUG_ON(len < ceph_fscrypt_page_offset(page) + thp_size(page) - offset);
1444 
1445 	if (!ceph_inc_osd_stopping_blocker(fsc->mdsc)) {
1446 		for (i = 0; i < folio_batch_count(&ceph_wbc->fbatch); i++) {
1447 			struct folio *folio = ceph_wbc->fbatch.folios[i];
1448 
1449 			if (!folio)
1450 				continue;
1451 
1452 			page = &folio->page;
1453 			redirty_page_for_writepage(wbc, page);
1454 			unlock_page(page);
1455 		}
1456 
1457 		for (i = 0; i < ceph_wbc->locked_pages; i++) {
1458 			page = ceph_fscrypt_pagecache_page(ceph_wbc->pages[i]);
1459 
1460 			if (!page)
1461 				continue;
1462 
1463 			redirty_page_for_writepage(wbc, page);
1464 			unlock_page(page);
1465 		}
1466 
1467 		ceph_osdc_put_request(req);
1468 		return -EIO;
1469 	}
1470 
1471 	req->r_callback = writepages_finish;
1472 	req->r_inode = inode;
1473 
1474 	/* Format the osd request message and submit the write */
1475 	len = 0;
1476 	ceph_wbc->data_pages = ceph_wbc->pages;
1477 	ceph_wbc->op_idx = 0;
1478 	for (i = 0; i < ceph_wbc->locked_pages; i++) {
1479 		u64 cur_offset;
1480 
1481 		page = ceph_fscrypt_pagecache_page(ceph_wbc->pages[i]);
1482 		cur_offset = page_offset(page);
1483 
1484 		/*
1485 		 * Discontinuity in page range? Ceph can handle that by just passing
1486 		 * multiple extents in the write op.
1487 		 */
1488 		if (offset + len != cur_offset) {
1489 			/* If it's full, stop here */
1490 			if (ceph_wbc->op_idx + 1 == req->r_num_ops)
1491 				break;
1492 
1493 			/* Kick off an fscache write with what we have so far. */
1494 			ceph_fscache_write_to_cache(inode, offset, len, caching);
1495 
1496 			/* Start a new extent */
1497 			osd_req_op_extent_dup_last(req, ceph_wbc->op_idx,
1498 						   cur_offset - offset);
1499 
1500 			doutc(cl, "got pages at %llu~%llu\n", offset, len);
1501 
1502 			osd_req_op_extent_osd_data_pages(req, ceph_wbc->op_idx,
1503 							 ceph_wbc->data_pages,
1504 							 len, 0,
1505 							 ceph_wbc->from_pool,
1506 							 false);
1507 			osd_req_op_extent_update(req, ceph_wbc->op_idx, len);
1508 
1509 			len = 0;
1510 			offset = cur_offset;
1511 			ceph_wbc->data_pages = ceph_wbc->pages + i;
1512 			ceph_wbc->op_idx++;
1513 		}
1514 
1515 		set_page_writeback(page);
1516 
1517 		if (caching)
1518 			ceph_set_page_fscache(page);
1519 
1520 		len += thp_size(page);
1521 	}
1522 
1523 	ceph_fscache_write_to_cache(inode, offset, len, caching);
1524 
1525 	if (ceph_wbc->size_stable) {
1526 		len = min(len, ceph_wbc->i_size - offset);
1527 	} else if (i == ceph_wbc->locked_pages) {
1528 		/* writepages_finish() clears writeback pages
1529 		 * according to the data length, so make sure
1530 		 * data length covers all locked pages */
1531 		u64 min_len = len + 1 - thp_size(page);
1532 		len = get_writepages_data_length(inode,
1533 						 ceph_wbc->pages[i - 1],
1534 						 offset);
1535 		len = max(len, min_len);
1536 	}
1537 
1538 	if (IS_ENCRYPTED(inode))
1539 		len = round_up(len, CEPH_FSCRYPT_BLOCK_SIZE);
1540 
1541 	doutc(cl, "got pages at %llu~%llu\n", offset, len);
1542 
1543 	if (IS_ENCRYPTED(inode) &&
1544 	    ((offset | len) & ~CEPH_FSCRYPT_BLOCK_MASK)) {
1545 		pr_warn_client(cl,
1546 			"bad encrypted write offset=%lld len=%llu\n",
1547 			offset, len);
1548 	}
1549 
1550 	osd_req_op_extent_osd_data_pages(req, ceph_wbc->op_idx,
1551 					 ceph_wbc->data_pages, len,
1552 					 0, ceph_wbc->from_pool, false);
1553 	osd_req_op_extent_update(req, ceph_wbc->op_idx, len);
1554 
1555 	BUG_ON(ceph_wbc->op_idx + 1 != req->r_num_ops);
1556 
1557 	ceph_wbc->from_pool = false;
1558 	if (i < ceph_wbc->locked_pages) {
1559 		BUG_ON(ceph_wbc->num_ops <= req->r_num_ops);
1560 		ceph_wbc->num_ops -= req->r_num_ops;
1561 		ceph_wbc->locked_pages -= i;
1562 
1563 		/* allocate new pages array for next request */
1564 		ceph_wbc->data_pages = ceph_wbc->pages;
1565 		__ceph_allocate_page_array(ceph_wbc, ceph_wbc->locked_pages);
1566 		memcpy(ceph_wbc->pages, ceph_wbc->data_pages + i,
1567 			ceph_wbc->locked_pages * sizeof(*ceph_wbc->pages));
1568 		memset(ceph_wbc->data_pages + i, 0,
1569 			ceph_wbc->locked_pages * sizeof(*ceph_wbc->pages));
1570 	} else {
1571 		BUG_ON(ceph_wbc->num_ops != req->r_num_ops);
1572 		/* request message now owns the pages array */
1573 		ceph_wbc->pages = NULL;
1574 	}
1575 
1576 	req->r_mtime = inode_get_mtime(inode);
1577 	ceph_osdc_start_request(&fsc->client->osdc, req);
1578 	req = NULL;
1579 
1580 	wbc->nr_to_write -= i;
1581 	if (ceph_wbc->pages)
1582 		goto new_request;
1583 
1584 	return 0;
1585 }
1586 
1587 static
1588 void ceph_wait_until_current_writes_complete(struct address_space *mapping,
1589 					     struct writeback_control *wbc,
1590 					     struct ceph_writeback_ctl *ceph_wbc)
1591 {
1592 	struct page *page;
1593 	unsigned i, nr;
1594 
1595 	if (wbc->sync_mode != WB_SYNC_NONE &&
1596 	    ceph_wbc->start_index == 0 && /* all dirty pages were checked */
1597 	    !ceph_wbc->head_snapc) {
1598 		ceph_wbc->index = 0;
1599 
1600 		while ((ceph_wbc->index <= ceph_wbc->end) &&
1601 			(nr = filemap_get_folios_tag(mapping,
1602 						     &ceph_wbc->index,
1603 						     (pgoff_t)-1,
1604 						     PAGECACHE_TAG_WRITEBACK,
1605 						     &ceph_wbc->fbatch))) {
1606 			for (i = 0; i < nr; i++) {
1607 				page = &ceph_wbc->fbatch.folios[i]->page;
1608 				if (page_snap_context(page) != ceph_wbc->snapc)
1609 					continue;
1610 				wait_on_page_writeback(page);
1611 			}
1612 
1613 			folio_batch_release(&ceph_wbc->fbatch);
1614 			cond_resched();
1615 		}
1616 	}
1617 }
1618 
1619 /*
1620  * initiate async writeback
1621  */
1622 static int ceph_writepages_start(struct address_space *mapping,
1623 				 struct writeback_control *wbc)
1624 {
1625 	struct inode *inode = mapping->host;
1626 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
1627 	struct ceph_client *cl = fsc->client;
1628 	struct ceph_writeback_ctl ceph_wbc;
1629 	int rc = 0;
1630 
1631 	if (wbc->sync_mode == WB_SYNC_NONE && fsc->write_congested)
1632 		return 0;
1633 
1634 	doutc(cl, "%llx.%llx (mode=%s)\n", ceph_vinop(inode),
1635 	      wbc->sync_mode == WB_SYNC_NONE ? "NONE" :
1636 	      (wbc->sync_mode == WB_SYNC_ALL ? "ALL" : "HOLD"));
1637 
1638 	if (is_forced_umount(mapping)) {
1639 		/* we're in a forced umount, don't write! */
1640 		return -EIO;
1641 	}
1642 
1643 	ceph_init_writeback_ctl(mapping, wbc, &ceph_wbc);
1644 
1645 	if (!ceph_inc_osd_stopping_blocker(fsc->mdsc)) {
1646 		rc = -EIO;
1647 		goto out;
1648 	}
1649 
1650 retry:
1651 	rc = ceph_define_writeback_range(mapping, wbc, &ceph_wbc);
1652 	if (rc == -ENODATA) {
1653 		/* hmm, why does writepages get called when there
1654 		   is no dirty data? */
1655 		rc = 0;
1656 		goto dec_osd_stopping_blocker;
1657 	}
1658 
1659 	if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
1660 		tag_pages_for_writeback(mapping, ceph_wbc.index, ceph_wbc.end);
1661 
1662 	while (!has_writeback_done(&ceph_wbc)) {
1663 		BUG_ON(ceph_wbc.locked_pages);
1664 		BUG_ON(ceph_wbc.pages);
1665 
1666 		ceph_wbc.max_pages = ceph_wbc.wsize >> PAGE_SHIFT;
1667 
1668 get_more_pages:
1669 		ceph_folio_batch_reinit(&ceph_wbc);
1670 
1671 		ceph_wbc.nr_folios = filemap_get_folios_tag(mapping,
1672 							    &ceph_wbc.index,
1673 							    ceph_wbc.end,
1674 							    ceph_wbc.tag,
1675 							    &ceph_wbc.fbatch);
1676 		doutc(cl, "pagevec_lookup_range_tag for tag %#x got %d\n",
1677 			ceph_wbc.tag, ceph_wbc.nr_folios);
1678 
1679 		if (!ceph_wbc.nr_folios && !ceph_wbc.locked_pages)
1680 			break;
1681 
1682 process_folio_batch:
1683 		ceph_process_folio_batch(mapping, wbc, &ceph_wbc);
1684 		ceph_shift_unused_folios_left(&ceph_wbc.fbatch);
1685 
1686 		/* did we get anything? */
1687 		if (!ceph_wbc.locked_pages)
1688 			goto release_folios;
1689 
1690 		if (ceph_wbc.processed_in_fbatch) {
1691 			if (folio_batch_count(&ceph_wbc.fbatch) == 0 &&
1692 			    ceph_wbc.locked_pages < ceph_wbc.max_pages) {
1693 				doutc(cl, "reached end fbatch, trying for more\n");
1694 				goto get_more_pages;
1695 			}
1696 		}
1697 
1698 		rc = ceph_submit_write(mapping, wbc, &ceph_wbc);
1699 		if (rc)
1700 			goto release_folios;
1701 
1702 		ceph_wbc.locked_pages = 0;
1703 		ceph_wbc.strip_unit_end = 0;
1704 
1705 		if (folio_batch_count(&ceph_wbc.fbatch) > 0) {
1706 			ceph_wbc.nr_folios =
1707 				folio_batch_count(&ceph_wbc.fbatch);
1708 			goto process_folio_batch;
1709 		}
1710 
1711 		/*
1712 		 * We stop writing back only if we are not doing
1713 		 * integrity sync. In case of integrity sync we have to
1714 		 * keep going until we have written all the pages
1715 		 * we tagged for writeback prior to entering this loop.
1716 		 */
1717 		if (wbc->nr_to_write <= 0 && wbc->sync_mode == WB_SYNC_NONE)
1718 			ceph_wbc.done = true;
1719 
1720 release_folios:
1721 		doutc(cl, "folio_batch release on %d folios (%p)\n",
1722 		      (int)ceph_wbc.fbatch.nr,
1723 		      ceph_wbc.fbatch.nr ? ceph_wbc.fbatch.folios[0] : NULL);
1724 		folio_batch_release(&ceph_wbc.fbatch);
1725 	}
1726 
1727 	if (ceph_wbc.should_loop && !ceph_wbc.done) {
1728 		/* more to do; loop back to beginning of file */
1729 		doutc(cl, "looping back to beginning of file\n");
1730 		/* OK even when start_index == 0 */
1731 		ceph_wbc.end = ceph_wbc.start_index - 1;
1732 
1733 		/* to write dirty pages associated with next snapc,
1734 		 * we need to wait until current writes complete */
1735 		ceph_wait_until_current_writes_complete(mapping, wbc, &ceph_wbc);
1736 
1737 		ceph_wbc.start_index = 0;
1738 		ceph_wbc.index = 0;
1739 		goto retry;
1740 	}
1741 
1742 	if (wbc->range_cyclic || (ceph_wbc.range_whole && wbc->nr_to_write > 0))
1743 		mapping->writeback_index = ceph_wbc.index;
1744 
1745 dec_osd_stopping_blocker:
1746 	ceph_dec_osd_stopping_blocker(fsc->mdsc);
1747 
1748 out:
1749 	ceph_put_snap_context(ceph_wbc.last_snapc);
1750 	doutc(cl, "%llx.%llx dend - startone, rc = %d\n", ceph_vinop(inode),
1751 	      rc);
1752 
1753 	return rc;
1754 }
1755 
1756 /*
1757  * See if a given @snapc is either writeable, or already written.
1758  */
1759 static int context_is_writeable_or_written(struct inode *inode,
1760 					   struct ceph_snap_context *snapc)
1761 {
1762 	struct ceph_snap_context *oldest = get_oldest_context(inode, NULL, NULL);
1763 	int ret = !oldest || snapc->seq <= oldest->seq;
1764 
1765 	ceph_put_snap_context(oldest);
1766 	return ret;
1767 }
1768 
1769 /**
1770  * ceph_find_incompatible - find an incompatible context and return it
1771  * @folio: folio being dirtied
1772  *
1773  * We are only allowed to write into/dirty a folio if the folio is
1774  * clean, or already dirty within the same snap context. Returns a
1775  * conflicting context if there is one, NULL if there isn't, or a
1776  * negative error code on other errors.
1777  *
1778  * Must be called with folio lock held.
1779  */
1780 static struct ceph_snap_context *
1781 ceph_find_incompatible(struct folio *folio)
1782 {
1783 	struct inode *inode = folio->mapping->host;
1784 	struct ceph_client *cl = ceph_inode_to_client(inode);
1785 	struct ceph_inode_info *ci = ceph_inode(inode);
1786 
1787 	if (ceph_inode_is_shutdown(inode)) {
1788 		doutc(cl, " %llx.%llx folio %p is shutdown\n",
1789 		      ceph_vinop(inode), folio);
1790 		return ERR_PTR(-ESTALE);
1791 	}
1792 
1793 	for (;;) {
1794 		struct ceph_snap_context *snapc, *oldest;
1795 
1796 		folio_wait_writeback(folio);
1797 
1798 		snapc = page_snap_context(&folio->page);
1799 		if (!snapc || snapc == ci->i_head_snapc)
1800 			break;
1801 
1802 		/*
1803 		 * this folio is already dirty in another (older) snap
1804 		 * context!  is it writeable now?
1805 		 */
1806 		oldest = get_oldest_context(inode, NULL, NULL);
1807 		if (snapc->seq > oldest->seq) {
1808 			/* not writeable -- return it for the caller to deal with */
1809 			ceph_put_snap_context(oldest);
1810 			doutc(cl, " %llx.%llx folio %p snapc %p not current or oldest\n",
1811 			      ceph_vinop(inode), folio, snapc);
1812 			return ceph_get_snap_context(snapc);
1813 		}
1814 		ceph_put_snap_context(oldest);
1815 
1816 		/* yay, writeable, do it now (without dropping folio lock) */
1817 		doutc(cl, " %llx.%llx folio %p snapc %p not current, but oldest\n",
1818 		      ceph_vinop(inode), folio, snapc);
1819 		if (folio_clear_dirty_for_io(folio)) {
1820 			int r = write_folio_nounlock(folio, NULL);
1821 			if (r < 0)
1822 				return ERR_PTR(r);
1823 		}
1824 	}
1825 	return NULL;
1826 }
1827 
1828 static int ceph_netfs_check_write_begin(struct file *file, loff_t pos, unsigned int len,
1829 					struct folio **foliop, void **_fsdata)
1830 {
1831 	struct inode *inode = file_inode(file);
1832 	struct ceph_inode_info *ci = ceph_inode(inode);
1833 	struct ceph_snap_context *snapc;
1834 
1835 	snapc = ceph_find_incompatible(*foliop);
1836 	if (snapc) {
1837 		int r;
1838 
1839 		folio_unlock(*foliop);
1840 		folio_put(*foliop);
1841 		*foliop = NULL;
1842 		if (IS_ERR(snapc))
1843 			return PTR_ERR(snapc);
1844 
1845 		ceph_queue_writeback(inode);
1846 		r = wait_event_killable(ci->i_cap_wq,
1847 					context_is_writeable_or_written(inode, snapc));
1848 		ceph_put_snap_context(snapc);
1849 		return r == 0 ? -EAGAIN : r;
1850 	}
1851 	return 0;
1852 }
1853 
1854 /*
1855  * We are only allowed to write into/dirty the page if the page is
1856  * clean, or already dirty within the same snap context.
1857  */
1858 static int ceph_write_begin(const struct kiocb *iocb,
1859 			    struct address_space *mapping,
1860 			    loff_t pos, unsigned len,
1861 			    struct folio **foliop, void **fsdata)
1862 {
1863 	struct file *file = iocb->ki_filp;
1864 	struct inode *inode = file_inode(file);
1865 	struct ceph_inode_info *ci = ceph_inode(inode);
1866 	int r;
1867 
1868 	r = netfs_write_begin(&ci->netfs, file, inode->i_mapping, pos, len, foliop, NULL);
1869 	if (r < 0)
1870 		return r;
1871 
1872 	folio_wait_private_2(*foliop); /* [DEPRECATED] */
1873 	WARN_ON_ONCE(!folio_test_locked(*foliop));
1874 	return 0;
1875 }
1876 
1877 /*
1878  * we don't do anything in here that simple_write_end doesn't do
1879  * except adjust dirty page accounting
1880  */
1881 static int ceph_write_end(const struct kiocb *iocb,
1882 			  struct address_space *mapping, loff_t pos,
1883 			  unsigned len, unsigned copied,
1884 			  struct folio *folio, void *fsdata)
1885 {
1886 	struct file *file = iocb->ki_filp;
1887 	struct inode *inode = file_inode(file);
1888 	struct ceph_client *cl = ceph_inode_to_client(inode);
1889 	bool check_cap = false;
1890 
1891 	doutc(cl, "%llx.%llx file %p folio %p %d~%d (%d)\n", ceph_vinop(inode),
1892 	      file, folio, (int)pos, (int)copied, (int)len);
1893 
1894 	if (!folio_test_uptodate(folio)) {
1895 		/* just return that nothing was copied on a short copy */
1896 		if (copied < len) {
1897 			copied = 0;
1898 			goto out;
1899 		}
1900 		folio_mark_uptodate(folio);
1901 	}
1902 
1903 	/* did file size increase? */
1904 	if (pos+copied > i_size_read(inode))
1905 		check_cap = ceph_inode_set_size(inode, pos+copied);
1906 
1907 	folio_mark_dirty(folio);
1908 
1909 out:
1910 	folio_unlock(folio);
1911 	folio_put(folio);
1912 
1913 	if (check_cap)
1914 		ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY);
1915 
1916 	return copied;
1917 }
1918 
1919 const struct address_space_operations ceph_aops = {
1920 	.read_folio = netfs_read_folio,
1921 	.readahead = netfs_readahead,
1922 	.writepages = ceph_writepages_start,
1923 	.write_begin = ceph_write_begin,
1924 	.write_end = ceph_write_end,
1925 	.dirty_folio = ceph_dirty_folio,
1926 	.invalidate_folio = ceph_invalidate_folio,
1927 	.release_folio = netfs_release_folio,
1928 	.direct_IO = noop_direct_IO,
1929 	.migrate_folio = filemap_migrate_folio,
1930 };
1931 
1932 static void ceph_block_sigs(sigset_t *oldset)
1933 {
1934 	sigset_t mask;
1935 	siginitsetinv(&mask, sigmask(SIGKILL));
1936 	sigprocmask(SIG_BLOCK, &mask, oldset);
1937 }
1938 
1939 static void ceph_restore_sigs(sigset_t *oldset)
1940 {
1941 	sigprocmask(SIG_SETMASK, oldset, NULL);
1942 }
1943 
1944 /*
1945  * vm ops
1946  */
1947 static vm_fault_t ceph_filemap_fault(struct vm_fault *vmf)
1948 {
1949 	struct vm_area_struct *vma = vmf->vma;
1950 	struct inode *inode = file_inode(vma->vm_file);
1951 	struct ceph_inode_info *ci = ceph_inode(inode);
1952 	struct ceph_client *cl = ceph_inode_to_client(inode);
1953 	struct ceph_file_info *fi = vma->vm_file->private_data;
1954 	loff_t off = (loff_t)vmf->pgoff << PAGE_SHIFT;
1955 	int want, got, err;
1956 	sigset_t oldset;
1957 	vm_fault_t ret = VM_FAULT_SIGBUS;
1958 
1959 	if (ceph_inode_is_shutdown(inode))
1960 		return ret;
1961 
1962 	ceph_block_sigs(&oldset);
1963 
1964 	doutc(cl, "%llx.%llx %llu trying to get caps\n",
1965 	      ceph_vinop(inode), off);
1966 	if (fi->fmode & CEPH_FILE_MODE_LAZY)
1967 		want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1968 	else
1969 		want = CEPH_CAP_FILE_CACHE;
1970 
1971 	got = 0;
1972 	err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_RD, want, -1, &got);
1973 	if (err < 0)
1974 		goto out_restore;
1975 
1976 	doutc(cl, "%llx.%llx %llu got cap refs on %s\n", ceph_vinop(inode),
1977 	      off, ceph_cap_string(got));
1978 
1979 	if ((got & (CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO)) ||
1980 	    !ceph_has_inline_data(ci)) {
1981 		CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
1982 		ceph_add_rw_context(fi, &rw_ctx);
1983 		ret = filemap_fault(vmf);
1984 		ceph_del_rw_context(fi, &rw_ctx);
1985 		doutc(cl, "%llx.%llx %llu drop cap refs %s ret %x\n",
1986 		      ceph_vinop(inode), off, ceph_cap_string(got), ret);
1987 	} else
1988 		err = -EAGAIN;
1989 
1990 	ceph_put_cap_refs(ci, got);
1991 
1992 	if (err != -EAGAIN)
1993 		goto out_restore;
1994 
1995 	/* read inline data */
1996 	if (off >= PAGE_SIZE) {
1997 		/* does not support inline data > PAGE_SIZE */
1998 		ret = VM_FAULT_SIGBUS;
1999 	} else {
2000 		struct address_space *mapping = inode->i_mapping;
2001 		struct page *page;
2002 
2003 		filemap_invalidate_lock_shared(mapping);
2004 		page = find_or_create_page(mapping, 0,
2005 				mapping_gfp_constraint(mapping, ~__GFP_FS));
2006 		if (!page) {
2007 			ret = VM_FAULT_OOM;
2008 			goto out_inline;
2009 		}
2010 		err = __ceph_do_getattr(inode, page,
2011 					 CEPH_STAT_CAP_INLINE_DATA, true);
2012 		if (err < 0 || off >= i_size_read(inode)) {
2013 			unlock_page(page);
2014 			put_page(page);
2015 			ret = vmf_error(err);
2016 			goto out_inline;
2017 		}
2018 		if (err < PAGE_SIZE)
2019 			zero_user_segment(page, err, PAGE_SIZE);
2020 		else
2021 			flush_dcache_page(page);
2022 		SetPageUptodate(page);
2023 		vmf->page = page;
2024 		ret = VM_FAULT_MAJOR | VM_FAULT_LOCKED;
2025 out_inline:
2026 		filemap_invalidate_unlock_shared(mapping);
2027 		doutc(cl, "%llx.%llx %llu read inline data ret %x\n",
2028 		      ceph_vinop(inode), off, ret);
2029 	}
2030 out_restore:
2031 	ceph_restore_sigs(&oldset);
2032 	if (err < 0)
2033 		ret = vmf_error(err);
2034 
2035 	return ret;
2036 }
2037 
2038 static vm_fault_t ceph_page_mkwrite(struct vm_fault *vmf)
2039 {
2040 	struct vm_area_struct *vma = vmf->vma;
2041 	struct inode *inode = file_inode(vma->vm_file);
2042 	struct ceph_client *cl = ceph_inode_to_client(inode);
2043 	struct ceph_inode_info *ci = ceph_inode(inode);
2044 	struct ceph_file_info *fi = vma->vm_file->private_data;
2045 	struct ceph_cap_flush *prealloc_cf;
2046 	struct folio *folio = page_folio(vmf->page);
2047 	loff_t off = folio_pos(folio);
2048 	loff_t size = i_size_read(inode);
2049 	size_t len;
2050 	int want, got, err;
2051 	sigset_t oldset;
2052 	vm_fault_t ret = VM_FAULT_SIGBUS;
2053 
2054 	if (ceph_inode_is_shutdown(inode))
2055 		return ret;
2056 
2057 	prealloc_cf = ceph_alloc_cap_flush();
2058 	if (!prealloc_cf)
2059 		return VM_FAULT_OOM;
2060 
2061 	sb_start_pagefault(inode->i_sb);
2062 	ceph_block_sigs(&oldset);
2063 
2064 	if (off + folio_size(folio) <= size)
2065 		len = folio_size(folio);
2066 	else
2067 		len = offset_in_folio(folio, size);
2068 
2069 	doutc(cl, "%llx.%llx %llu~%zd getting caps i_size %llu\n",
2070 	      ceph_vinop(inode), off, len, size);
2071 	if (fi->fmode & CEPH_FILE_MODE_LAZY)
2072 		want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
2073 	else
2074 		want = CEPH_CAP_FILE_BUFFER;
2075 
2076 	got = 0;
2077 	err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_WR, want, off + len, &got);
2078 	if (err < 0)
2079 		goto out_free;
2080 
2081 	doutc(cl, "%llx.%llx %llu~%zd got cap refs on %s\n", ceph_vinop(inode),
2082 	      off, len, ceph_cap_string(got));
2083 
2084 	/* Update time before taking folio lock */
2085 	file_update_time(vma->vm_file);
2086 	inode_inc_iversion_raw(inode);
2087 
2088 	do {
2089 		struct ceph_snap_context *snapc;
2090 
2091 		folio_lock(folio);
2092 
2093 		if (folio_mkwrite_check_truncate(folio, inode) < 0) {
2094 			folio_unlock(folio);
2095 			ret = VM_FAULT_NOPAGE;
2096 			break;
2097 		}
2098 
2099 		snapc = ceph_find_incompatible(folio);
2100 		if (!snapc) {
2101 			/* success.  we'll keep the folio locked. */
2102 			folio_mark_dirty(folio);
2103 			ret = VM_FAULT_LOCKED;
2104 			break;
2105 		}
2106 
2107 		folio_unlock(folio);
2108 
2109 		if (IS_ERR(snapc)) {
2110 			ret = VM_FAULT_SIGBUS;
2111 			break;
2112 		}
2113 
2114 		ceph_queue_writeback(inode);
2115 		err = wait_event_killable(ci->i_cap_wq,
2116 				context_is_writeable_or_written(inode, snapc));
2117 		ceph_put_snap_context(snapc);
2118 	} while (err == 0);
2119 
2120 	if (ret == VM_FAULT_LOCKED) {
2121 		int dirty;
2122 		spin_lock(&ci->i_ceph_lock);
2123 		dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
2124 					       &prealloc_cf);
2125 		spin_unlock(&ci->i_ceph_lock);
2126 		if (dirty)
2127 			__mark_inode_dirty(inode, dirty);
2128 	}
2129 
2130 	doutc(cl, "%llx.%llx %llu~%zd dropping cap refs on %s ret %x\n",
2131 	      ceph_vinop(inode), off, len, ceph_cap_string(got), ret);
2132 	ceph_put_cap_refs_async(ci, got);
2133 out_free:
2134 	ceph_restore_sigs(&oldset);
2135 	sb_end_pagefault(inode->i_sb);
2136 	ceph_free_cap_flush(prealloc_cf);
2137 	if (err < 0)
2138 		ret = vmf_error(err);
2139 	return ret;
2140 }
2141 
2142 void ceph_fill_inline_data(struct inode *inode, struct page *locked_page,
2143 			   char	*data, size_t len)
2144 {
2145 	struct ceph_client *cl = ceph_inode_to_client(inode);
2146 	struct address_space *mapping = inode->i_mapping;
2147 	struct page *page;
2148 
2149 	if (locked_page) {
2150 		page = locked_page;
2151 	} else {
2152 		if (i_size_read(inode) == 0)
2153 			return;
2154 		page = find_or_create_page(mapping, 0,
2155 					   mapping_gfp_constraint(mapping,
2156 					   ~__GFP_FS));
2157 		if (!page)
2158 			return;
2159 		if (PageUptodate(page)) {
2160 			unlock_page(page);
2161 			put_page(page);
2162 			return;
2163 		}
2164 	}
2165 
2166 	doutc(cl, "%p %llx.%llx len %zu locked_page %p\n", inode,
2167 	      ceph_vinop(inode), len, locked_page);
2168 
2169 	if (len > 0) {
2170 		void *kaddr = kmap_atomic(page);
2171 		memcpy(kaddr, data, len);
2172 		kunmap_atomic(kaddr);
2173 	}
2174 
2175 	if (page != locked_page) {
2176 		if (len < PAGE_SIZE)
2177 			zero_user_segment(page, len, PAGE_SIZE);
2178 		else
2179 			flush_dcache_page(page);
2180 
2181 		SetPageUptodate(page);
2182 		unlock_page(page);
2183 		put_page(page);
2184 	}
2185 }
2186 
2187 int ceph_uninline_data(struct file *file)
2188 {
2189 	struct inode *inode = file_inode(file);
2190 	struct ceph_inode_info *ci = ceph_inode(inode);
2191 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(inode);
2192 	struct ceph_client *cl = fsc->client;
2193 	struct ceph_osd_request *req = NULL;
2194 	struct ceph_cap_flush *prealloc_cf = NULL;
2195 	struct folio *folio = NULL;
2196 	struct ceph_snap_context *snapc = NULL;
2197 	u64 inline_version = CEPH_INLINE_NONE;
2198 	struct page *pages[1];
2199 	int err = 0;
2200 	u64 len;
2201 
2202 	spin_lock(&ci->i_ceph_lock);
2203 	inline_version = ci->i_inline_version;
2204 	spin_unlock(&ci->i_ceph_lock);
2205 
2206 	doutc(cl, "%llx.%llx inline_version %llu\n", ceph_vinop(inode),
2207 	      inline_version);
2208 
2209 	if (ceph_inode_is_shutdown(inode)) {
2210 		err = -EIO;
2211 		goto out;
2212 	}
2213 
2214 	if (inline_version == CEPH_INLINE_NONE)
2215 		return 0;
2216 
2217 	prealloc_cf = ceph_alloc_cap_flush();
2218 	if (!prealloc_cf)
2219 		return -ENOMEM;
2220 
2221 	if (inline_version == 1) /* initial version, no data */
2222 		goto out_uninline;
2223 
2224 	down_read(&fsc->mdsc->snap_rwsem);
2225 	spin_lock(&ci->i_ceph_lock);
2226 	if (__ceph_have_pending_cap_snap(ci)) {
2227 		struct ceph_cap_snap *capsnap =
2228 				list_last_entry(&ci->i_cap_snaps,
2229 						struct ceph_cap_snap,
2230 						ci_item);
2231 		snapc = ceph_get_snap_context(capsnap->context);
2232 	} else {
2233 		if (!ci->i_head_snapc) {
2234 			ci->i_head_snapc = ceph_get_snap_context(
2235 				ci->i_snap_realm->cached_context);
2236 		}
2237 		snapc = ceph_get_snap_context(ci->i_head_snapc);
2238 	}
2239 	spin_unlock(&ci->i_ceph_lock);
2240 	up_read(&fsc->mdsc->snap_rwsem);
2241 
2242 	folio = read_mapping_folio(inode->i_mapping, 0, file);
2243 	if (IS_ERR(folio)) {
2244 		err = PTR_ERR(folio);
2245 		goto out;
2246 	}
2247 
2248 	folio_lock(folio);
2249 
2250 	len = i_size_read(inode);
2251 	if (len > folio_size(folio))
2252 		len = folio_size(folio);
2253 
2254 	req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
2255 				    ceph_vino(inode), 0, &len, 0, 1,
2256 				    CEPH_OSD_OP_CREATE, CEPH_OSD_FLAG_WRITE,
2257 				    snapc, 0, 0, false);
2258 	if (IS_ERR(req)) {
2259 		err = PTR_ERR(req);
2260 		goto out_unlock;
2261 	}
2262 
2263 	req->r_mtime = inode_get_mtime(inode);
2264 	ceph_osdc_start_request(&fsc->client->osdc, req);
2265 	err = ceph_osdc_wait_request(&fsc->client->osdc, req);
2266 	ceph_osdc_put_request(req);
2267 	if (err < 0)
2268 		goto out_unlock;
2269 
2270 	req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
2271 				    ceph_vino(inode), 0, &len, 1, 3,
2272 				    CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
2273 				    snapc, ci->i_truncate_seq,
2274 				    ci->i_truncate_size, false);
2275 	if (IS_ERR(req)) {
2276 		err = PTR_ERR(req);
2277 		goto out_unlock;
2278 	}
2279 
2280 	pages[0] = folio_page(folio, 0);
2281 	osd_req_op_extent_osd_data_pages(req, 1, pages, len, 0, false, false);
2282 
2283 	{
2284 		__le64 xattr_buf = cpu_to_le64(inline_version);
2285 		err = osd_req_op_xattr_init(req, 0, CEPH_OSD_OP_CMPXATTR,
2286 					    "inline_version", &xattr_buf,
2287 					    sizeof(xattr_buf),
2288 					    CEPH_OSD_CMPXATTR_OP_GT,
2289 					    CEPH_OSD_CMPXATTR_MODE_U64);
2290 		if (err)
2291 			goto out_put_req;
2292 	}
2293 
2294 	{
2295 		char xattr_buf[32];
2296 		int xattr_len = snprintf(xattr_buf, sizeof(xattr_buf),
2297 					 "%llu", inline_version);
2298 		err = osd_req_op_xattr_init(req, 2, CEPH_OSD_OP_SETXATTR,
2299 					    "inline_version",
2300 					    xattr_buf, xattr_len, 0, 0);
2301 		if (err)
2302 			goto out_put_req;
2303 	}
2304 
2305 	req->r_mtime = inode_get_mtime(inode);
2306 	ceph_osdc_start_request(&fsc->client->osdc, req);
2307 	err = ceph_osdc_wait_request(&fsc->client->osdc, req);
2308 
2309 	ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
2310 				  req->r_end_latency, len, err);
2311 
2312 out_uninline:
2313 	if (!err) {
2314 		int dirty;
2315 
2316 		/* Set to CAP_INLINE_NONE and dirty the caps */
2317 		down_read(&fsc->mdsc->snap_rwsem);
2318 		spin_lock(&ci->i_ceph_lock);
2319 		ci->i_inline_version = CEPH_INLINE_NONE;
2320 		dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR, &prealloc_cf);
2321 		spin_unlock(&ci->i_ceph_lock);
2322 		up_read(&fsc->mdsc->snap_rwsem);
2323 		if (dirty)
2324 			__mark_inode_dirty(inode, dirty);
2325 	}
2326 out_put_req:
2327 	ceph_osdc_put_request(req);
2328 	if (err == -ECANCELED)
2329 		err = 0;
2330 out_unlock:
2331 	if (folio) {
2332 		folio_unlock(folio);
2333 		folio_put(folio);
2334 	}
2335 out:
2336 	ceph_put_snap_context(snapc);
2337 	ceph_free_cap_flush(prealloc_cf);
2338 	doutc(cl, "%llx.%llx inline_version %llu = %d\n",
2339 	      ceph_vinop(inode), inline_version, err);
2340 	return err;
2341 }
2342 
2343 static const struct vm_operations_struct ceph_vmops = {
2344 	.fault		= ceph_filemap_fault,
2345 	.page_mkwrite	= ceph_page_mkwrite,
2346 };
2347 
2348 int ceph_mmap_prepare(struct vm_area_desc *desc)
2349 {
2350 	struct address_space *mapping = desc->file->f_mapping;
2351 
2352 	if (!mapping->a_ops->read_folio)
2353 		return -ENOEXEC;
2354 	desc->vm_ops = &ceph_vmops;
2355 	return 0;
2356 }
2357 
2358 enum {
2359 	POOL_READ	= 1,
2360 	POOL_WRITE	= 2,
2361 };
2362 
2363 static int __ceph_pool_perm_get(struct ceph_inode_info *ci,
2364 				s64 pool, struct ceph_string *pool_ns)
2365 {
2366 	struct ceph_fs_client *fsc = ceph_inode_to_fs_client(&ci->netfs.inode);
2367 	struct ceph_mds_client *mdsc = fsc->mdsc;
2368 	struct ceph_client *cl = fsc->client;
2369 	struct ceph_osd_request *rd_req = NULL, *wr_req = NULL;
2370 	struct rb_node **p, *parent;
2371 	struct ceph_pool_perm *perm;
2372 	struct page **pages;
2373 	size_t pool_ns_len;
2374 	int err = 0, err2 = 0, have = 0;
2375 
2376 	down_read(&mdsc->pool_perm_rwsem);
2377 	p = &mdsc->pool_perm_tree.rb_node;
2378 	while (*p) {
2379 		perm = rb_entry(*p, struct ceph_pool_perm, node);
2380 		if (pool < perm->pool)
2381 			p = &(*p)->rb_left;
2382 		else if (pool > perm->pool)
2383 			p = &(*p)->rb_right;
2384 		else {
2385 			int ret = ceph_compare_string(pool_ns,
2386 						perm->pool_ns,
2387 						perm->pool_ns_len);
2388 			if (ret < 0)
2389 				p = &(*p)->rb_left;
2390 			else if (ret > 0)
2391 				p = &(*p)->rb_right;
2392 			else {
2393 				have = perm->perm;
2394 				break;
2395 			}
2396 		}
2397 	}
2398 	up_read(&mdsc->pool_perm_rwsem);
2399 	if (*p)
2400 		goto out;
2401 
2402 	if (pool_ns)
2403 		doutc(cl, "pool %lld ns %.*s no perm cached\n", pool,
2404 		      (int)pool_ns->len, pool_ns->str);
2405 	else
2406 		doutc(cl, "pool %lld no perm cached\n", pool);
2407 
2408 	down_write(&mdsc->pool_perm_rwsem);
2409 	p = &mdsc->pool_perm_tree.rb_node;
2410 	parent = NULL;
2411 	while (*p) {
2412 		parent = *p;
2413 		perm = rb_entry(parent, struct ceph_pool_perm, node);
2414 		if (pool < perm->pool)
2415 			p = &(*p)->rb_left;
2416 		else if (pool > perm->pool)
2417 			p = &(*p)->rb_right;
2418 		else {
2419 			int ret = ceph_compare_string(pool_ns,
2420 						perm->pool_ns,
2421 						perm->pool_ns_len);
2422 			if (ret < 0)
2423 				p = &(*p)->rb_left;
2424 			else if (ret > 0)
2425 				p = &(*p)->rb_right;
2426 			else {
2427 				have = perm->perm;
2428 				break;
2429 			}
2430 		}
2431 	}
2432 	if (*p) {
2433 		up_write(&mdsc->pool_perm_rwsem);
2434 		goto out;
2435 	}
2436 
2437 	rd_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
2438 					 1, false, GFP_NOFS);
2439 	if (!rd_req) {
2440 		err = -ENOMEM;
2441 		goto out_unlock;
2442 	}
2443 
2444 	rd_req->r_flags = CEPH_OSD_FLAG_READ;
2445 	osd_req_op_init(rd_req, 0, CEPH_OSD_OP_STAT, 0);
2446 	rd_req->r_base_oloc.pool = pool;
2447 	if (pool_ns)
2448 		rd_req->r_base_oloc.pool_ns = ceph_get_string(pool_ns);
2449 	ceph_oid_printf(&rd_req->r_base_oid, "%llx.00000000", ci->i_vino.ino);
2450 
2451 	err = ceph_osdc_alloc_messages(rd_req, GFP_NOFS);
2452 	if (err)
2453 		goto out_unlock;
2454 
2455 	wr_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
2456 					 1, false, GFP_NOFS);
2457 	if (!wr_req) {
2458 		err = -ENOMEM;
2459 		goto out_unlock;
2460 	}
2461 
2462 	wr_req->r_flags = CEPH_OSD_FLAG_WRITE;
2463 	osd_req_op_init(wr_req, 0, CEPH_OSD_OP_CREATE, CEPH_OSD_OP_FLAG_EXCL);
2464 	ceph_oloc_copy(&wr_req->r_base_oloc, &rd_req->r_base_oloc);
2465 	ceph_oid_copy(&wr_req->r_base_oid, &rd_req->r_base_oid);
2466 
2467 	err = ceph_osdc_alloc_messages(wr_req, GFP_NOFS);
2468 	if (err)
2469 		goto out_unlock;
2470 
2471 	/* one page should be large enough for STAT data */
2472 	pages = ceph_alloc_page_vector(1, GFP_KERNEL);
2473 	if (IS_ERR(pages)) {
2474 		err = PTR_ERR(pages);
2475 		goto out_unlock;
2476 	}
2477 
2478 	osd_req_op_raw_data_in_pages(rd_req, 0, pages, PAGE_SIZE,
2479 				     0, false, true);
2480 	ceph_osdc_start_request(&fsc->client->osdc, rd_req);
2481 
2482 	wr_req->r_mtime = inode_get_mtime(&ci->netfs.inode);
2483 	ceph_osdc_start_request(&fsc->client->osdc, wr_req);
2484 
2485 	err = ceph_osdc_wait_request(&fsc->client->osdc, rd_req);
2486 	err2 = ceph_osdc_wait_request(&fsc->client->osdc, wr_req);
2487 
2488 	if (err >= 0 || err == -ENOENT)
2489 		have |= POOL_READ;
2490 	else if (err != -EPERM) {
2491 		if (err == -EBLOCKLISTED)
2492 			fsc->blocklisted = true;
2493 		goto out_unlock;
2494 	}
2495 
2496 	if (err2 == 0 || err2 == -EEXIST)
2497 		have |= POOL_WRITE;
2498 	else if (err2 != -EPERM) {
2499 		if (err2 == -EBLOCKLISTED)
2500 			fsc->blocklisted = true;
2501 		err = err2;
2502 		goto out_unlock;
2503 	}
2504 
2505 	pool_ns_len = pool_ns ? pool_ns->len : 0;
2506 	perm = kmalloc_flex(*perm, pool_ns, pool_ns_len + 1, GFP_NOFS);
2507 	if (!perm) {
2508 		err = -ENOMEM;
2509 		goto out_unlock;
2510 	}
2511 
2512 	perm->pool = pool;
2513 	perm->perm = have;
2514 	perm->pool_ns_len = pool_ns_len;
2515 	if (pool_ns_len > 0)
2516 		memcpy(perm->pool_ns, pool_ns->str, pool_ns_len);
2517 	perm->pool_ns[pool_ns_len] = 0;
2518 
2519 	rb_link_node(&perm->node, parent, p);
2520 	rb_insert_color(&perm->node, &mdsc->pool_perm_tree);
2521 	err = 0;
2522 out_unlock:
2523 	up_write(&mdsc->pool_perm_rwsem);
2524 
2525 	ceph_osdc_put_request(rd_req);
2526 	ceph_osdc_put_request(wr_req);
2527 out:
2528 	if (!err)
2529 		err = have;
2530 	if (pool_ns)
2531 		doutc(cl, "pool %lld ns %.*s result = %d\n", pool,
2532 		      (int)pool_ns->len, pool_ns->str, err);
2533 	else
2534 		doutc(cl, "pool %lld result = %d\n", pool, err);
2535 	return err;
2536 }
2537 
2538 int ceph_pool_perm_check(struct inode *inode, int need)
2539 {
2540 	struct ceph_client *cl = ceph_inode_to_client(inode);
2541 	struct ceph_inode_info *ci = ceph_inode(inode);
2542 	struct ceph_string *pool_ns;
2543 	s64 pool;
2544 	int ret, flags;
2545 
2546 	/* Only need to do this for regular files */
2547 	if (!S_ISREG(inode->i_mode))
2548 		return 0;
2549 
2550 	if (ci->i_vino.snap != CEPH_NOSNAP) {
2551 		/*
2552 		 * Pool permission check needs to write to the first object.
2553 		 * But for snapshot, head of the first object may have already
2554 		 * been deleted. Skip check to avoid creating orphan object.
2555 		 */
2556 		return 0;
2557 	}
2558 
2559 	if (ceph_test_mount_opt(ceph_inode_to_fs_client(inode),
2560 				NOPOOLPERM))
2561 		return 0;
2562 
2563 	spin_lock(&ci->i_ceph_lock);
2564 	flags = ci->i_ceph_flags;
2565 	pool = ci->i_layout.pool_id;
2566 	spin_unlock(&ci->i_ceph_lock);
2567 check:
2568 	if (flags & CEPH_I_POOL_PERM) {
2569 		if ((need & CEPH_CAP_FILE_RD) && !(flags & CEPH_I_POOL_RD)) {
2570 			doutc(cl, "pool %lld no read perm\n", pool);
2571 			return -EPERM;
2572 		}
2573 		if ((need & CEPH_CAP_FILE_WR) && !(flags & CEPH_I_POOL_WR)) {
2574 			doutc(cl, "pool %lld no write perm\n", pool);
2575 			return -EPERM;
2576 		}
2577 		return 0;
2578 	}
2579 
2580 	pool_ns = ceph_try_get_string(ci->i_layout.pool_ns);
2581 	ret = __ceph_pool_perm_get(ci, pool, pool_ns);
2582 	ceph_put_string(pool_ns);
2583 	if (ret < 0)
2584 		return ret;
2585 
2586 	flags = CEPH_I_POOL_PERM;
2587 	if (ret & POOL_READ)
2588 		flags |= CEPH_I_POOL_RD;
2589 	if (ret & POOL_WRITE)
2590 		flags |= CEPH_I_POOL_WR;
2591 
2592 	spin_lock(&ci->i_ceph_lock);
2593 	if (pool == ci->i_layout.pool_id &&
2594 	    pool_ns == rcu_dereference_raw(ci->i_layout.pool_ns)) {
2595 		ci->i_ceph_flags |= flags;
2596         } else {
2597 		pool = ci->i_layout.pool_id;
2598 		flags = ci->i_ceph_flags;
2599 	}
2600 	spin_unlock(&ci->i_ceph_lock);
2601 	goto check;
2602 }
2603 
2604 void ceph_pool_perm_destroy(struct ceph_mds_client *mdsc)
2605 {
2606 	struct ceph_pool_perm *perm;
2607 	struct rb_node *n;
2608 
2609 	while (!RB_EMPTY_ROOT(&mdsc->pool_perm_tree)) {
2610 		n = rb_first(&mdsc->pool_perm_tree);
2611 		perm = rb_entry(n, struct ceph_pool_perm, node);
2612 		rb_erase(n, &mdsc->pool_perm_tree);
2613 		kfree(perm);
2614 	}
2615 }
2616