• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
17 #include "super.h"
18 #include "mds_client.h"
19 #include "cache.h"
20 #include "metric.h"
21 #include <linux/ceph/osd_client.h>
22 #include <linux/ceph/striper.h>
23 
24 /*
25  * Ceph address space ops.
26  *
27  * There are a few funny things going on here.
28  *
29  * The page->private field is used to reference a struct
30  * ceph_snap_context for _every_ dirty page.  This indicates which
31  * snapshot the page was logically dirtied in, and thus which snap
32  * context needs to be associated with the osd write during writeback.
33  *
34  * Similarly, struct ceph_inode_info maintains a set of counters to
35  * count dirty pages on the inode.  In the absence of snapshots,
36  * i_wrbuffer_ref == i_wrbuffer_ref_head == the dirty page count.
37  *
38  * When a snapshot is taken (that is, when the client receives
39  * notification that a snapshot was taken), each inode with caps and
40  * with dirty pages (dirty pages implies there is a cap) gets a new
41  * ceph_cap_snap in the i_cap_snaps list (which is sorted in ascending
42  * order, new snaps go to the tail).  The i_wrbuffer_ref_head count is
43  * moved to capsnap->dirty. (Unless a sync write is currently in
44  * progress.  In that case, the capsnap is said to be "pending", new
45  * writes cannot start, and the capsnap isn't "finalized" until the
46  * write completes (or fails) and a final size/mtime for the inode for
47  * that snap can be settled upon.)  i_wrbuffer_ref_head is reset to 0.
48  *
49  * On writeback, we must submit writes to the osd IN SNAP ORDER.  So,
50  * we look for the first capsnap in i_cap_snaps and write out pages in
51  * that snap context _only_.  Then we move on to the next capsnap,
52  * eventually reaching the "live" or "head" context (i.e., pages that
53  * are not yet snapped) and are writing the most recently dirtied
54  * pages.
55  *
56  * Invalidate and so forth must take care to ensure the dirty page
57  * accounting is preserved.
58  */
59 
60 #define CONGESTION_ON_THRESH(congestion_kb) (congestion_kb >> (PAGE_SHIFT-10))
61 #define CONGESTION_OFF_THRESH(congestion_kb)				\
62 	(CONGESTION_ON_THRESH(congestion_kb) -				\
63 	 (CONGESTION_ON_THRESH(congestion_kb) >> 2))
64 
65 static int ceph_netfs_check_write_begin(struct file *file, loff_t pos, unsigned int len,
66 					struct folio **foliop, void **_fsdata);
67 
page_snap_context(struct page * page)68 static inline struct ceph_snap_context *page_snap_context(struct page *page)
69 {
70 	if (PagePrivate(page))
71 		return (void *)page->private;
72 	return NULL;
73 }
74 
75 /*
76  * Dirty a page.  Optimistically adjust accounting, on the assumption
77  * that we won't race with invalidate.  If we do, readjust.
78  */
ceph_dirty_folio(struct address_space * mapping,struct folio * folio)79 static bool ceph_dirty_folio(struct address_space *mapping, struct folio *folio)
80 {
81 	struct inode *inode;
82 	struct ceph_inode_info *ci;
83 	struct ceph_snap_context *snapc;
84 
85 	if (folio_test_dirty(folio)) {
86 		dout("%p dirty_folio %p idx %lu -- already dirty\n",
87 		     mapping->host, folio, folio->index);
88 		VM_BUG_ON_FOLIO(!folio_test_private(folio), folio);
89 		return false;
90 	}
91 
92 	inode = mapping->host;
93 	ci = ceph_inode(inode);
94 
95 	/* dirty the head */
96 	spin_lock(&ci->i_ceph_lock);
97 	BUG_ON(ci->i_wr_ref == 0); // caller should hold Fw reference
98 	if (__ceph_have_pending_cap_snap(ci)) {
99 		struct ceph_cap_snap *capsnap =
100 				list_last_entry(&ci->i_cap_snaps,
101 						struct ceph_cap_snap,
102 						ci_item);
103 		snapc = ceph_get_snap_context(capsnap->context);
104 		capsnap->dirty_pages++;
105 	} else {
106 		BUG_ON(!ci->i_head_snapc);
107 		snapc = ceph_get_snap_context(ci->i_head_snapc);
108 		++ci->i_wrbuffer_ref_head;
109 	}
110 	if (ci->i_wrbuffer_ref == 0)
111 		ihold(inode);
112 	++ci->i_wrbuffer_ref;
113 	dout("%p dirty_folio %p idx %lu head %d/%d -> %d/%d "
114 	     "snapc %p seq %lld (%d snaps)\n",
115 	     mapping->host, folio, folio->index,
116 	     ci->i_wrbuffer_ref-1, ci->i_wrbuffer_ref_head-1,
117 	     ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
118 	     snapc, snapc->seq, snapc->num_snaps);
119 	spin_unlock(&ci->i_ceph_lock);
120 
121 	/*
122 	 * Reference snap context in folio->private.  Also set
123 	 * PagePrivate so that we get invalidate_folio callback.
124 	 */
125 	VM_WARN_ON_FOLIO(folio->private, folio);
126 	folio_attach_private(folio, snapc);
127 
128 	return ceph_fscache_dirty_folio(mapping, folio);
129 }
130 
131 /*
132  * If we are truncating the full folio (i.e. offset == 0), adjust the
133  * dirty folio counters appropriately.  Only called if there is private
134  * data on the folio.
135  */
ceph_invalidate_folio(struct folio * folio,size_t offset,size_t length)136 static void ceph_invalidate_folio(struct folio *folio, size_t offset,
137 				size_t length)
138 {
139 	struct inode *inode;
140 	struct ceph_inode_info *ci;
141 	struct ceph_snap_context *snapc;
142 
143 	inode = folio->mapping->host;
144 	ci = ceph_inode(inode);
145 
146 	if (offset != 0 || length != folio_size(folio)) {
147 		dout("%p invalidate_folio idx %lu partial dirty page %zu~%zu\n",
148 		     inode, folio->index, offset, length);
149 		return;
150 	}
151 
152 	WARN_ON(!folio_test_locked(folio));
153 	if (folio_test_private(folio)) {
154 		dout("%p invalidate_folio idx %lu full dirty page\n",
155 		     inode, folio->index);
156 
157 		snapc = folio_detach_private(folio);
158 		ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
159 		ceph_put_snap_context(snapc);
160 	}
161 
162 	folio_wait_fscache(folio);
163 }
164 
ceph_release_folio(struct folio * folio,gfp_t gfp)165 static bool ceph_release_folio(struct folio *folio, gfp_t gfp)
166 {
167 	struct inode *inode = folio->mapping->host;
168 
169 	dout("%llx:%llx release_folio idx %lu (%sdirty)\n",
170 	     ceph_vinop(inode),
171 	     folio->index, folio_test_dirty(folio) ? "" : "not ");
172 
173 	if (folio_test_private(folio))
174 		return false;
175 
176 	if (folio_test_fscache(folio)) {
177 		if (current_is_kswapd() || !(gfp & __GFP_FS))
178 			return false;
179 		folio_wait_fscache(folio);
180 	}
181 	ceph_fscache_note_page_release(inode);
182 	return true;
183 }
184 
ceph_netfs_expand_readahead(struct netfs_io_request * rreq)185 static void ceph_netfs_expand_readahead(struct netfs_io_request *rreq)
186 {
187 	struct inode *inode = rreq->inode;
188 	struct ceph_inode_info *ci = ceph_inode(inode);
189 	struct ceph_file_layout *lo = &ci->i_layout;
190 	unsigned long max_pages = inode->i_sb->s_bdi->ra_pages;
191 	loff_t end = rreq->start + rreq->len, new_end;
192 	struct ceph_netfs_request_data *priv = rreq->netfs_priv;
193 	unsigned long max_len;
194 	u32 blockoff;
195 
196 	if (priv) {
197 		/* Readahead is disabled by posix_fadvise POSIX_FADV_RANDOM */
198 		if (priv->file_ra_disabled)
199 			max_pages = 0;
200 		else
201 			max_pages = priv->file_ra_pages;
202 
203 	}
204 
205 	/* Readahead is disabled */
206 	if (!max_pages)
207 		return;
208 
209 	max_len = max_pages << PAGE_SHIFT;
210 
211 	/*
212 	 * Try to expand the length forward by rounding up it to the next
213 	 * block, but do not exceed the file size, unless the original
214 	 * request already exceeds it.
215 	 */
216 	new_end = min(round_up(end, lo->stripe_unit), rreq->i_size);
217 	if (new_end > end && new_end <= rreq->start + max_len)
218 		rreq->len = new_end - rreq->start;
219 
220 	/* Try to expand the start downward */
221 	div_u64_rem(rreq->start, lo->stripe_unit, &blockoff);
222 	if (rreq->len + blockoff <= max_len) {
223 		rreq->start -= blockoff;
224 		rreq->len += blockoff;
225 	}
226 }
227 
ceph_netfs_clamp_length(struct netfs_io_subrequest * subreq)228 static bool ceph_netfs_clamp_length(struct netfs_io_subrequest *subreq)
229 {
230 	struct inode *inode = subreq->rreq->inode;
231 	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
232 	struct ceph_inode_info *ci = ceph_inode(inode);
233 	u64 objno, objoff;
234 	u32 xlen;
235 
236 	/* Truncate the extent at the end of the current block */
237 	ceph_calc_file_object_mapping(&ci->i_layout, subreq->start, subreq->len,
238 				      &objno, &objoff, &xlen);
239 	subreq->len = min(xlen, fsc->mount_options->rsize);
240 	return true;
241 }
242 
finish_netfs_read(struct ceph_osd_request * req)243 static void finish_netfs_read(struct ceph_osd_request *req)
244 {
245 	struct ceph_fs_client *fsc = ceph_inode_to_client(req->r_inode);
246 	struct ceph_osd_data *osd_data = osd_req_op_extent_osd_data(req, 0);
247 	struct netfs_io_subrequest *subreq = req->r_priv;
248 	int num_pages;
249 	int err = req->r_result;
250 
251 	ceph_update_read_metrics(&fsc->mdsc->metric, req->r_start_latency,
252 				 req->r_end_latency, osd_data->length, err);
253 
254 	dout("%s: result %d subreq->len=%zu i_size=%lld\n", __func__, req->r_result,
255 	     subreq->len, i_size_read(req->r_inode));
256 
257 	/* no object means success but no data */
258 	if (err == -ENOENT)
259 		err = 0;
260 	else if (err == -EBLOCKLISTED)
261 		fsc->blocklisted = true;
262 
263 	if (err >= 0 && err < subreq->len)
264 		__set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
265 
266 	netfs_subreq_terminated(subreq, err, false);
267 
268 	num_pages = calc_pages_for(osd_data->alignment, osd_data->length);
269 	ceph_put_page_vector(osd_data->pages, num_pages, false);
270 	iput(req->r_inode);
271 }
272 
ceph_netfs_issue_op_inline(struct netfs_io_subrequest * subreq)273 static bool ceph_netfs_issue_op_inline(struct netfs_io_subrequest *subreq)
274 {
275 	struct netfs_io_request *rreq = subreq->rreq;
276 	struct inode *inode = rreq->inode;
277 	struct ceph_mds_reply_info_parsed *rinfo;
278 	struct ceph_mds_reply_info_in *iinfo;
279 	struct ceph_mds_request *req;
280 	struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(inode->i_sb);
281 	struct ceph_inode_info *ci = ceph_inode(inode);
282 	struct iov_iter iter;
283 	ssize_t err = 0;
284 	size_t len;
285 	int mode;
286 
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 	err = ceph_mdsc_do_request(mdsc, NULL, req);
305 	if (err < 0)
306 		goto out;
307 
308 	rinfo = &req->r_reply_info;
309 	iinfo = &rinfo->targeti;
310 	if (iinfo->inline_version == CEPH_INLINE_NONE) {
311 		/* The data got uninlined */
312 		ceph_mdsc_put_request(req);
313 		return false;
314 	}
315 
316 	len = min_t(size_t, iinfo->inline_len - subreq->start, subreq->len);
317 	iov_iter_xarray(&iter, ITER_DEST, &rreq->mapping->i_pages, subreq->start, len);
318 	err = copy_to_iter(iinfo->inline_data + subreq->start, len, &iter);
319 	if (err == 0)
320 		err = -EFAULT;
321 
322 	ceph_mdsc_put_request(req);
323 out:
324 	netfs_subreq_terminated(subreq, err, false);
325 	return true;
326 }
327 
ceph_netfs_issue_read(struct netfs_io_subrequest * subreq)328 static void ceph_netfs_issue_read(struct netfs_io_subrequest *subreq)
329 {
330 	struct netfs_io_request *rreq = subreq->rreq;
331 	struct inode *inode = rreq->inode;
332 	struct ceph_inode_info *ci = ceph_inode(inode);
333 	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
334 	struct ceph_osd_request *req = NULL;
335 	struct ceph_vino vino = ceph_vino(inode);
336 	struct iov_iter iter;
337 	struct page **pages;
338 	size_t page_off;
339 	int err = 0;
340 	u64 len = subreq->len;
341 
342 	if (ceph_inode_is_shutdown(inode)) {
343 		err = -EIO;
344 		goto out;
345 	}
346 
347 	if (ceph_has_inline_data(ci) && ceph_netfs_issue_op_inline(subreq))
348 		return;
349 
350 	req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout, vino, subreq->start, &len,
351 			0, 1, CEPH_OSD_OP_READ,
352 			CEPH_OSD_FLAG_READ | fsc->client->osdc.client->options->read_from_replica,
353 			NULL, ci->i_truncate_seq, ci->i_truncate_size, false);
354 	if (IS_ERR(req)) {
355 		err = PTR_ERR(req);
356 		req = NULL;
357 		goto out;
358 	}
359 
360 	dout("%s: pos=%llu orig_len=%zu len=%llu\n", __func__, subreq->start, subreq->len, len);
361 	iov_iter_xarray(&iter, ITER_DEST, &rreq->mapping->i_pages, subreq->start, len);
362 	err = iov_iter_get_pages_alloc2(&iter, &pages, len, &page_off);
363 	if (err < 0) {
364 		dout("%s: iov_ter_get_pages_alloc returned %d\n", __func__, err);
365 		goto out;
366 	}
367 
368 	/* should always give us a page-aligned read */
369 	WARN_ON_ONCE(page_off);
370 	len = err;
371 	err = 0;
372 
373 	osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0, false, false);
374 	req->r_callback = finish_netfs_read;
375 	req->r_priv = subreq;
376 	req->r_inode = inode;
377 	ihold(inode);
378 
379 	ceph_osdc_start_request(req->r_osdc, req);
380 out:
381 	ceph_osdc_put_request(req);
382 	if (err)
383 		netfs_subreq_terminated(subreq, err, false);
384 	dout("%s: result %d\n", __func__, err);
385 }
386 
ceph_init_request(struct netfs_io_request * rreq,struct file * file)387 static int ceph_init_request(struct netfs_io_request *rreq, struct file *file)
388 {
389 	struct inode *inode = rreq->inode;
390 	int got = 0, want = CEPH_CAP_FILE_CACHE;
391 	struct ceph_netfs_request_data *priv;
392 	int ret = 0;
393 
394 	if (rreq->origin != NETFS_READAHEAD)
395 		return 0;
396 
397 	priv = kzalloc(sizeof(*priv), GFP_NOFS);
398 	if (!priv)
399 		return -ENOMEM;
400 
401 	if (file) {
402 		struct ceph_rw_context *rw_ctx;
403 		struct ceph_file_info *fi = file->private_data;
404 
405 		priv->file_ra_pages = file->f_ra.ra_pages;
406 		priv->file_ra_disabled = file->f_mode & FMODE_RANDOM;
407 
408 		rw_ctx = ceph_find_rw_context(fi);
409 		if (rw_ctx) {
410 			rreq->netfs_priv = priv;
411 			return 0;
412 		}
413 	}
414 
415 	/*
416 	 * readahead callers do not necessarily hold Fcb caps
417 	 * (e.g. fadvise, madvise).
418 	 */
419 	ret = ceph_try_get_caps(inode, CEPH_CAP_FILE_RD, want, true, &got);
420 	if (ret < 0) {
421 		dout("start_read %p, error getting cap\n", inode);
422 		goto out;
423 	}
424 
425 	if (!(got & want)) {
426 		dout("start_read %p, no cache cap\n", inode);
427 		ret = -EACCES;
428 		goto out;
429 	}
430 	if (ret == 0) {
431 		ret = -EACCES;
432 		goto out;
433 	}
434 
435 	priv->caps = got;
436 	rreq->netfs_priv = priv;
437 
438 out:
439 	if (ret < 0)
440 		kfree(priv);
441 
442 	return ret;
443 }
444 
ceph_netfs_free_request(struct netfs_io_request * rreq)445 static void ceph_netfs_free_request(struct netfs_io_request *rreq)
446 {
447 	struct ceph_netfs_request_data *priv = rreq->netfs_priv;
448 
449 	if (!priv)
450 		return;
451 
452 	if (priv->caps)
453 		ceph_put_cap_refs(ceph_inode(rreq->inode), priv->caps);
454 	kfree(priv);
455 	rreq->netfs_priv = NULL;
456 }
457 
458 const struct netfs_request_ops ceph_netfs_ops = {
459 	.init_request		= ceph_init_request,
460 	.free_request		= ceph_netfs_free_request,
461 	.begin_cache_operation	= ceph_begin_cache_operation,
462 	.issue_read		= ceph_netfs_issue_read,
463 	.expand_readahead	= ceph_netfs_expand_readahead,
464 	.clamp_length		= ceph_netfs_clamp_length,
465 	.check_write_begin	= ceph_netfs_check_write_begin,
466 };
467 
468 #ifdef CONFIG_CEPH_FSCACHE
ceph_set_page_fscache(struct page * page)469 static void ceph_set_page_fscache(struct page *page)
470 {
471 	set_page_fscache(page);
472 }
473 
ceph_fscache_write_terminated(void * priv,ssize_t error,bool was_async)474 static void ceph_fscache_write_terminated(void *priv, ssize_t error, bool was_async)
475 {
476 	struct inode *inode = priv;
477 
478 	if (IS_ERR_VALUE(error) && error != -ENOBUFS)
479 		ceph_fscache_invalidate(inode, false);
480 }
481 
ceph_fscache_write_to_cache(struct inode * inode,u64 off,u64 len,bool caching)482 static void ceph_fscache_write_to_cache(struct inode *inode, u64 off, u64 len, bool caching)
483 {
484 	struct ceph_inode_info *ci = ceph_inode(inode);
485 	struct fscache_cookie *cookie = ceph_fscache_cookie(ci);
486 
487 	fscache_write_to_cache(cookie, inode->i_mapping, off, len, i_size_read(inode),
488 			       ceph_fscache_write_terminated, inode, caching);
489 }
490 #else
ceph_set_page_fscache(struct page * page)491 static inline void ceph_set_page_fscache(struct page *page)
492 {
493 }
494 
ceph_fscache_write_to_cache(struct inode * inode,u64 off,u64 len,bool caching)495 static inline void ceph_fscache_write_to_cache(struct inode *inode, u64 off, u64 len, bool caching)
496 {
497 }
498 #endif /* CONFIG_CEPH_FSCACHE */
499 
500 struct ceph_writeback_ctl
501 {
502 	loff_t i_size;
503 	u64 truncate_size;
504 	u32 truncate_seq;
505 	bool size_stable;
506 	bool head_snapc;
507 };
508 
509 /*
510  * Get ref for the oldest snapc for an inode with dirty data... that is, the
511  * only snap context we are allowed to write back.
512  */
513 static struct ceph_snap_context *
get_oldest_context(struct inode * inode,struct ceph_writeback_ctl * ctl,struct ceph_snap_context * page_snapc)514 get_oldest_context(struct inode *inode, struct ceph_writeback_ctl *ctl,
515 		   struct ceph_snap_context *page_snapc)
516 {
517 	struct ceph_inode_info *ci = ceph_inode(inode);
518 	struct ceph_snap_context *snapc = NULL;
519 	struct ceph_cap_snap *capsnap = NULL;
520 
521 	spin_lock(&ci->i_ceph_lock);
522 	list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
523 		dout(" cap_snap %p snapc %p has %d dirty pages\n", capsnap,
524 		     capsnap->context, capsnap->dirty_pages);
525 		if (!capsnap->dirty_pages)
526 			continue;
527 
528 		/* get i_size, truncate_{seq,size} for page_snapc? */
529 		if (snapc && capsnap->context != page_snapc)
530 			continue;
531 
532 		if (ctl) {
533 			if (capsnap->writing) {
534 				ctl->i_size = i_size_read(inode);
535 				ctl->size_stable = false;
536 			} else {
537 				ctl->i_size = capsnap->size;
538 				ctl->size_stable = true;
539 			}
540 			ctl->truncate_size = capsnap->truncate_size;
541 			ctl->truncate_seq = capsnap->truncate_seq;
542 			ctl->head_snapc = false;
543 		}
544 
545 		if (snapc)
546 			break;
547 
548 		snapc = ceph_get_snap_context(capsnap->context);
549 		if (!page_snapc ||
550 		    page_snapc == snapc ||
551 		    page_snapc->seq > snapc->seq)
552 			break;
553 	}
554 	if (!snapc && ci->i_wrbuffer_ref_head) {
555 		snapc = ceph_get_snap_context(ci->i_head_snapc);
556 		dout(" head snapc %p has %d dirty pages\n",
557 		     snapc, ci->i_wrbuffer_ref_head);
558 		if (ctl) {
559 			ctl->i_size = i_size_read(inode);
560 			ctl->truncate_size = ci->i_truncate_size;
561 			ctl->truncate_seq = ci->i_truncate_seq;
562 			ctl->size_stable = false;
563 			ctl->head_snapc = true;
564 		}
565 	}
566 	spin_unlock(&ci->i_ceph_lock);
567 	return snapc;
568 }
569 
get_writepages_data_length(struct inode * inode,struct page * page,u64 start)570 static u64 get_writepages_data_length(struct inode *inode,
571 				      struct page *page, u64 start)
572 {
573 	struct ceph_inode_info *ci = ceph_inode(inode);
574 	struct ceph_snap_context *snapc = page_snap_context(page);
575 	struct ceph_cap_snap *capsnap = NULL;
576 	u64 end = i_size_read(inode);
577 
578 	if (snapc != ci->i_head_snapc) {
579 		bool found = false;
580 		spin_lock(&ci->i_ceph_lock);
581 		list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
582 			if (capsnap->context == snapc) {
583 				if (!capsnap->writing)
584 					end = capsnap->size;
585 				found = true;
586 				break;
587 			}
588 		}
589 		spin_unlock(&ci->i_ceph_lock);
590 		WARN_ON(!found);
591 	}
592 	if (end > page_offset(page) + thp_size(page))
593 		end = page_offset(page) + thp_size(page);
594 	return end > start ? end - start : 0;
595 }
596 
597 /*
598  * Write a single page, but leave the page locked.
599  *
600  * If we get a write error, mark the mapping for error, but still adjust the
601  * dirty page accounting (i.e., page is no longer dirty).
602  */
writepage_nounlock(struct page * page,struct writeback_control * wbc)603 static int writepage_nounlock(struct page *page, struct writeback_control *wbc)
604 {
605 	struct folio *folio = page_folio(page);
606 	struct inode *inode = page->mapping->host;
607 	struct ceph_inode_info *ci = ceph_inode(inode);
608 	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
609 	struct ceph_snap_context *snapc, *oldest;
610 	loff_t page_off = page_offset(page);
611 	int err;
612 	loff_t len = thp_size(page);
613 	struct ceph_writeback_ctl ceph_wbc;
614 	struct ceph_osd_client *osdc = &fsc->client->osdc;
615 	struct ceph_osd_request *req;
616 	bool caching = ceph_is_cache_enabled(inode);
617 
618 	dout("writepage %p idx %lu\n", page, page->index);
619 
620 	if (ceph_inode_is_shutdown(inode))
621 		return -EIO;
622 
623 	/* verify this is a writeable snap context */
624 	snapc = page_snap_context(page);
625 	if (!snapc) {
626 		dout("writepage %p page %p not dirty?\n", inode, page);
627 		return 0;
628 	}
629 	oldest = get_oldest_context(inode, &ceph_wbc, snapc);
630 	if (snapc->seq > oldest->seq) {
631 		dout("writepage %p page %p snapc %p not writeable - noop\n",
632 		     inode, page, snapc);
633 		/* we should only noop if called by kswapd */
634 		WARN_ON(!(current->flags & PF_MEMALLOC));
635 		ceph_put_snap_context(oldest);
636 		redirty_page_for_writepage(wbc, page);
637 		return 0;
638 	}
639 	ceph_put_snap_context(oldest);
640 
641 	/* is this a partial page at end of file? */
642 	if (page_off >= ceph_wbc.i_size) {
643 		dout("folio at %lu beyond eof %llu\n", folio->index,
644 				ceph_wbc.i_size);
645 		folio_invalidate(folio, 0, folio_size(folio));
646 		return 0;
647 	}
648 
649 	if (ceph_wbc.i_size < page_off + len)
650 		len = ceph_wbc.i_size - page_off;
651 
652 	dout("writepage %p page %p index %lu on %llu~%llu snapc %p seq %lld\n",
653 	     inode, page, page->index, page_off, len, snapc, snapc->seq);
654 
655 	if (atomic_long_inc_return(&fsc->writeback_count) >
656 	    CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb))
657 		fsc->write_congested = true;
658 
659 	req = ceph_osdc_new_request(osdc, &ci->i_layout, ceph_vino(inode), page_off, &len, 0, 1,
660 				    CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE, snapc,
661 				    ceph_wbc.truncate_seq, ceph_wbc.truncate_size,
662 				    true);
663 	if (IS_ERR(req)) {
664 		redirty_page_for_writepage(wbc, page);
665 		return PTR_ERR(req);
666 	}
667 
668 	set_page_writeback(page);
669 	if (caching)
670 		ceph_set_page_fscache(page);
671 	ceph_fscache_write_to_cache(inode, page_off, len, caching);
672 
673 	/* it may be a short write due to an object boundary */
674 	WARN_ON_ONCE(len > thp_size(page));
675 	osd_req_op_extent_osd_data_pages(req, 0, &page, len, 0, false, false);
676 	dout("writepage %llu~%llu (%llu bytes)\n", page_off, len, len);
677 
678 	req->r_mtime = inode->i_mtime;
679 	ceph_osdc_start_request(osdc, req);
680 	err = ceph_osdc_wait_request(osdc, req);
681 
682 	ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
683 				  req->r_end_latency, len, err);
684 
685 	ceph_osdc_put_request(req);
686 	if (err == 0)
687 		err = len;
688 
689 	if (err < 0) {
690 		struct writeback_control tmp_wbc;
691 		if (!wbc)
692 			wbc = &tmp_wbc;
693 		if (err == -ERESTARTSYS) {
694 			/* killed by SIGKILL */
695 			dout("writepage interrupted page %p\n", page);
696 			redirty_page_for_writepage(wbc, page);
697 			end_page_writeback(page);
698 			return err;
699 		}
700 		if (err == -EBLOCKLISTED)
701 			fsc->blocklisted = true;
702 		dout("writepage setting page/mapping error %d %p\n",
703 		     err, page);
704 		mapping_set_error(&inode->i_data, err);
705 		wbc->pages_skipped++;
706 	} else {
707 		dout("writepage cleaned page %p\n", page);
708 		err = 0;  /* vfs expects us to return 0 */
709 	}
710 	oldest = detach_page_private(page);
711 	WARN_ON_ONCE(oldest != snapc);
712 	end_page_writeback(page);
713 	ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
714 	ceph_put_snap_context(snapc);  /* page's reference */
715 
716 	if (atomic_long_dec_return(&fsc->writeback_count) <
717 	    CONGESTION_OFF_THRESH(fsc->mount_options->congestion_kb))
718 		fsc->write_congested = false;
719 
720 	return err;
721 }
722 
ceph_writepage(struct page * page,struct writeback_control * wbc)723 static int ceph_writepage(struct page *page, struct writeback_control *wbc)
724 {
725 	int err;
726 	struct inode *inode = page->mapping->host;
727 	BUG_ON(!inode);
728 	ihold(inode);
729 
730 	if (wbc->sync_mode == WB_SYNC_NONE &&
731 	    ceph_inode_to_client(inode)->write_congested)
732 		return AOP_WRITEPAGE_ACTIVATE;
733 
734 	wait_on_page_fscache(page);
735 
736 	err = writepage_nounlock(page, wbc);
737 	if (err == -ERESTARTSYS) {
738 		/* direct memory reclaimer was killed by SIGKILL. return 0
739 		 * to prevent caller from setting mapping/page error */
740 		err = 0;
741 	}
742 	unlock_page(page);
743 	iput(inode);
744 	return err;
745 }
746 
747 /*
748  * async writeback completion handler.
749  *
750  * If we get an error, set the mapping error bit, but not the individual
751  * page error bits.
752  */
writepages_finish(struct ceph_osd_request * req)753 static void writepages_finish(struct ceph_osd_request *req)
754 {
755 	struct inode *inode = req->r_inode;
756 	struct ceph_inode_info *ci = ceph_inode(inode);
757 	struct ceph_osd_data *osd_data;
758 	struct page *page;
759 	int num_pages, total_pages = 0;
760 	int i, j;
761 	int rc = req->r_result;
762 	struct ceph_snap_context *snapc = req->r_snapc;
763 	struct address_space *mapping = inode->i_mapping;
764 	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
765 	unsigned int len = 0;
766 	bool remove_page;
767 
768 	dout("writepages_finish %p rc %d\n", inode, rc);
769 	if (rc < 0) {
770 		mapping_set_error(mapping, rc);
771 		ceph_set_error_write(ci);
772 		if (rc == -EBLOCKLISTED)
773 			fsc->blocklisted = true;
774 	} else {
775 		ceph_clear_error_write(ci);
776 	}
777 
778 	/*
779 	 * We lost the cache cap, need to truncate the page before
780 	 * it is unlocked, otherwise we'd truncate it later in the
781 	 * page truncation thread, possibly losing some data that
782 	 * raced its way in
783 	 */
784 	remove_page = !(ceph_caps_issued(ci) &
785 			(CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO));
786 
787 	/* clean all pages */
788 	for (i = 0; i < req->r_num_ops; i++) {
789 		if (req->r_ops[i].op != CEPH_OSD_OP_WRITE) {
790 			pr_warn("%s incorrect op %d req %p index %d tid %llu\n",
791 				__func__, req->r_ops[i].op, req, i, req->r_tid);
792 			break;
793 		}
794 
795 		osd_data = osd_req_op_extent_osd_data(req, i);
796 		BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
797 		len += osd_data->length;
798 		num_pages = calc_pages_for((u64)osd_data->alignment,
799 					   (u64)osd_data->length);
800 		total_pages += num_pages;
801 		for (j = 0; j < num_pages; j++) {
802 			page = osd_data->pages[j];
803 			BUG_ON(!page);
804 			WARN_ON(!PageUptodate(page));
805 
806 			if (atomic_long_dec_return(&fsc->writeback_count) <
807 			     CONGESTION_OFF_THRESH(
808 					fsc->mount_options->congestion_kb))
809 				fsc->write_congested = false;
810 
811 			ceph_put_snap_context(detach_page_private(page));
812 			end_page_writeback(page);
813 			dout("unlocking %p\n", page);
814 
815 			if (remove_page)
816 				generic_error_remove_page(inode->i_mapping,
817 							  page);
818 
819 			unlock_page(page);
820 		}
821 		dout("writepages_finish %p wrote %llu bytes cleaned %d pages\n",
822 		     inode, osd_data->length, rc >= 0 ? num_pages : 0);
823 
824 		release_pages(osd_data->pages, num_pages);
825 	}
826 
827 	ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
828 				  req->r_end_latency, len, rc);
829 
830 	ceph_put_wrbuffer_cap_refs(ci, total_pages, snapc);
831 
832 	osd_data = osd_req_op_extent_osd_data(req, 0);
833 	if (osd_data->pages_from_pool)
834 		mempool_free(osd_data->pages, ceph_wb_pagevec_pool);
835 	else
836 		kfree(osd_data->pages);
837 	ceph_osdc_put_request(req);
838 }
839 
840 /*
841  * initiate async writeback
842  */
ceph_writepages_start(struct address_space * mapping,struct writeback_control * wbc)843 static int ceph_writepages_start(struct address_space *mapping,
844 				 struct writeback_control *wbc)
845 {
846 	struct inode *inode = mapping->host;
847 	struct ceph_inode_info *ci = ceph_inode(inode);
848 	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
849 	struct ceph_vino vino = ceph_vino(inode);
850 	pgoff_t index, start_index, end = -1;
851 	struct ceph_snap_context *snapc = NULL, *last_snapc = NULL, *pgsnapc;
852 	struct pagevec pvec;
853 	int rc = 0;
854 	unsigned int wsize = i_blocksize(inode);
855 	struct ceph_osd_request *req = NULL;
856 	struct ceph_writeback_ctl ceph_wbc;
857 	bool should_loop, range_whole = false;
858 	bool done = false;
859 	bool caching = ceph_is_cache_enabled(inode);
860 
861 	if (wbc->sync_mode == WB_SYNC_NONE &&
862 	    fsc->write_congested)
863 		return 0;
864 
865 	dout("writepages_start %p (mode=%s)\n", inode,
866 	     wbc->sync_mode == WB_SYNC_NONE ? "NONE" :
867 	     (wbc->sync_mode == WB_SYNC_ALL ? "ALL" : "HOLD"));
868 
869 	if (ceph_inode_is_shutdown(inode)) {
870 		if (ci->i_wrbuffer_ref > 0) {
871 			pr_warn_ratelimited(
872 				"writepage_start %p %lld forced umount\n",
873 				inode, ceph_ino(inode));
874 		}
875 		mapping_set_error(mapping, -EIO);
876 		return -EIO; /* we're in a forced umount, don't write! */
877 	}
878 	if (fsc->mount_options->wsize < wsize)
879 		wsize = fsc->mount_options->wsize;
880 
881 	pagevec_init(&pvec);
882 
883 	start_index = wbc->range_cyclic ? mapping->writeback_index : 0;
884 	index = start_index;
885 
886 retry:
887 	/* find oldest snap context with dirty data */
888 	snapc = get_oldest_context(inode, &ceph_wbc, NULL);
889 	if (!snapc) {
890 		/* hmm, why does writepages get called when there
891 		   is no dirty data? */
892 		dout(" no snap context with dirty data?\n");
893 		goto out;
894 	}
895 	dout(" oldest snapc is %p seq %lld (%d snaps)\n",
896 	     snapc, snapc->seq, snapc->num_snaps);
897 
898 	should_loop = false;
899 	if (ceph_wbc.head_snapc && snapc != last_snapc) {
900 		/* where to start/end? */
901 		if (wbc->range_cyclic) {
902 			index = start_index;
903 			end = -1;
904 			if (index > 0)
905 				should_loop = true;
906 			dout(" cyclic, start at %lu\n", index);
907 		} else {
908 			index = wbc->range_start >> PAGE_SHIFT;
909 			end = wbc->range_end >> PAGE_SHIFT;
910 			if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
911 				range_whole = true;
912 			dout(" not cyclic, %lu to %lu\n", index, end);
913 		}
914 	} else if (!ceph_wbc.head_snapc) {
915 		/* Do not respect wbc->range_{start,end}. Dirty pages
916 		 * in that range can be associated with newer snapc.
917 		 * They are not writeable until we write all dirty pages
918 		 * associated with 'snapc' get written */
919 		if (index > 0)
920 			should_loop = true;
921 		dout(" non-head snapc, range whole\n");
922 	}
923 
924 	ceph_put_snap_context(last_snapc);
925 	last_snapc = snapc;
926 
927 	while (!done && index <= end) {
928 		int num_ops = 0, op_idx;
929 		unsigned i, pvec_pages, max_pages, locked_pages = 0;
930 		struct page **pages = NULL, **data_pages;
931 		struct page *page;
932 		pgoff_t strip_unit_end = 0;
933 		u64 offset = 0, len = 0;
934 		bool from_pool = false;
935 
936 		max_pages = wsize >> PAGE_SHIFT;
937 
938 get_more_pages:
939 		pvec_pages = pagevec_lookup_range_tag(&pvec, mapping, &index,
940 						end, PAGECACHE_TAG_DIRTY);
941 		dout("pagevec_lookup_range_tag got %d\n", pvec_pages);
942 		if (!pvec_pages && !locked_pages)
943 			break;
944 		for (i = 0; i < pvec_pages && locked_pages < max_pages; i++) {
945 			page = pvec.pages[i];
946 			dout("? %p idx %lu\n", page, page->index);
947 			if (locked_pages == 0)
948 				lock_page(page);  /* first page */
949 			else if (!trylock_page(page))
950 				break;
951 
952 			/* only dirty pages, or our accounting breaks */
953 			if (unlikely(!PageDirty(page)) ||
954 			    unlikely(page->mapping != mapping)) {
955 				dout("!dirty or !mapping %p\n", page);
956 				unlock_page(page);
957 				continue;
958 			}
959 			/* only if matching snap context */
960 			pgsnapc = page_snap_context(page);
961 			if (pgsnapc != snapc) {
962 				dout("page snapc %p %lld != oldest %p %lld\n",
963 				     pgsnapc, pgsnapc->seq, snapc, snapc->seq);
964 				if (!should_loop &&
965 				    !ceph_wbc.head_snapc &&
966 				    wbc->sync_mode != WB_SYNC_NONE)
967 					should_loop = true;
968 				unlock_page(page);
969 				continue;
970 			}
971 			if (page_offset(page) >= ceph_wbc.i_size) {
972 				struct folio *folio = page_folio(page);
973 
974 				dout("folio at %lu beyond eof %llu\n",
975 				     folio->index, ceph_wbc.i_size);
976 				if ((ceph_wbc.size_stable ||
977 				    folio_pos(folio) >= i_size_read(inode)) &&
978 				    folio_clear_dirty_for_io(folio))
979 					folio_invalidate(folio, 0,
980 							folio_size(folio));
981 				folio_unlock(folio);
982 				continue;
983 			}
984 			if (strip_unit_end && (page->index > strip_unit_end)) {
985 				dout("end of strip unit %p\n", page);
986 				unlock_page(page);
987 				break;
988 			}
989 			if (PageWriteback(page) || PageFsCache(page)) {
990 				if (wbc->sync_mode == WB_SYNC_NONE) {
991 					dout("%p under writeback\n", page);
992 					unlock_page(page);
993 					continue;
994 				}
995 				dout("waiting on writeback %p\n", page);
996 				wait_on_page_writeback(page);
997 				wait_on_page_fscache(page);
998 			}
999 
1000 			if (!clear_page_dirty_for_io(page)) {
1001 				dout("%p !clear_page_dirty_for_io\n", page);
1002 				unlock_page(page);
1003 				continue;
1004 			}
1005 
1006 			/*
1007 			 * We have something to write.  If this is
1008 			 * the first locked page this time through,
1009 			 * calculate max possinle write size and
1010 			 * allocate a page array
1011 			 */
1012 			if (locked_pages == 0) {
1013 				u64 objnum;
1014 				u64 objoff;
1015 				u32 xlen;
1016 
1017 				/* prepare async write request */
1018 				offset = (u64)page_offset(page);
1019 				ceph_calc_file_object_mapping(&ci->i_layout,
1020 							      offset, wsize,
1021 							      &objnum, &objoff,
1022 							      &xlen);
1023 				len = xlen;
1024 
1025 				num_ops = 1;
1026 				strip_unit_end = page->index +
1027 					((len - 1) >> PAGE_SHIFT);
1028 
1029 				BUG_ON(pages);
1030 				max_pages = calc_pages_for(0, (u64)len);
1031 				pages = kmalloc_array(max_pages,
1032 						      sizeof(*pages),
1033 						      GFP_NOFS);
1034 				if (!pages) {
1035 					from_pool = true;
1036 					pages = mempool_alloc(ceph_wb_pagevec_pool, GFP_NOFS);
1037 					BUG_ON(!pages);
1038 				}
1039 
1040 				len = 0;
1041 			} else if (page->index !=
1042 				   (offset + len) >> PAGE_SHIFT) {
1043 				if (num_ops >= (from_pool ?  CEPH_OSD_SLAB_OPS :
1044 							     CEPH_OSD_MAX_OPS)) {
1045 					redirty_page_for_writepage(wbc, page);
1046 					unlock_page(page);
1047 					break;
1048 				}
1049 
1050 				num_ops++;
1051 				offset = (u64)page_offset(page);
1052 				len = 0;
1053 			}
1054 
1055 			/* note position of first page in pvec */
1056 			dout("%p will write page %p idx %lu\n",
1057 			     inode, page, page->index);
1058 
1059 			if (atomic_long_inc_return(&fsc->writeback_count) >
1060 			    CONGESTION_ON_THRESH(
1061 				    fsc->mount_options->congestion_kb))
1062 				fsc->write_congested = true;
1063 
1064 			pages[locked_pages++] = page;
1065 			pvec.pages[i] = NULL;
1066 
1067 			len += thp_size(page);
1068 		}
1069 
1070 		/* did we get anything? */
1071 		if (!locked_pages)
1072 			goto release_pvec_pages;
1073 		if (i) {
1074 			unsigned j, n = 0;
1075 			/* shift unused page to beginning of pvec */
1076 			for (j = 0; j < pvec_pages; j++) {
1077 				if (!pvec.pages[j])
1078 					continue;
1079 				if (n < j)
1080 					pvec.pages[n] = pvec.pages[j];
1081 				n++;
1082 			}
1083 			pvec.nr = n;
1084 
1085 			if (pvec_pages && i == pvec_pages &&
1086 			    locked_pages < max_pages) {
1087 				dout("reached end pvec, trying for more\n");
1088 				pagevec_release(&pvec);
1089 				goto get_more_pages;
1090 			}
1091 		}
1092 
1093 new_request:
1094 		offset = page_offset(pages[0]);
1095 		len = wsize;
1096 
1097 		req = ceph_osdc_new_request(&fsc->client->osdc,
1098 					&ci->i_layout, vino,
1099 					offset, &len, 0, num_ops,
1100 					CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
1101 					snapc, ceph_wbc.truncate_seq,
1102 					ceph_wbc.truncate_size, false);
1103 		if (IS_ERR(req)) {
1104 			req = ceph_osdc_new_request(&fsc->client->osdc,
1105 						&ci->i_layout, vino,
1106 						offset, &len, 0,
1107 						min(num_ops,
1108 						    CEPH_OSD_SLAB_OPS),
1109 						CEPH_OSD_OP_WRITE,
1110 						CEPH_OSD_FLAG_WRITE,
1111 						snapc, ceph_wbc.truncate_seq,
1112 						ceph_wbc.truncate_size, true);
1113 			BUG_ON(IS_ERR(req));
1114 		}
1115 		BUG_ON(len < page_offset(pages[locked_pages - 1]) +
1116 			     thp_size(page) - offset);
1117 
1118 		req->r_callback = writepages_finish;
1119 		req->r_inode = inode;
1120 
1121 		/* Format the osd request message and submit the write */
1122 		len = 0;
1123 		data_pages = pages;
1124 		op_idx = 0;
1125 		for (i = 0; i < locked_pages; i++) {
1126 			u64 cur_offset = page_offset(pages[i]);
1127 			/*
1128 			 * Discontinuity in page range? Ceph can handle that by just passing
1129 			 * multiple extents in the write op.
1130 			 */
1131 			if (offset + len != cur_offset) {
1132 				/* If it's full, stop here */
1133 				if (op_idx + 1 == req->r_num_ops)
1134 					break;
1135 
1136 				/* Kick off an fscache write with what we have so far. */
1137 				ceph_fscache_write_to_cache(inode, offset, len, caching);
1138 
1139 				/* Start a new extent */
1140 				osd_req_op_extent_dup_last(req, op_idx,
1141 							   cur_offset - offset);
1142 				dout("writepages got pages at %llu~%llu\n",
1143 				     offset, len);
1144 				osd_req_op_extent_osd_data_pages(req, op_idx,
1145 							data_pages, len, 0,
1146 							from_pool, false);
1147 				osd_req_op_extent_update(req, op_idx, len);
1148 
1149 				len = 0;
1150 				offset = cur_offset;
1151 				data_pages = pages + i;
1152 				op_idx++;
1153 			}
1154 
1155 			set_page_writeback(pages[i]);
1156 			if (caching)
1157 				ceph_set_page_fscache(pages[i]);
1158 			len += thp_size(page);
1159 		}
1160 		ceph_fscache_write_to_cache(inode, offset, len, caching);
1161 
1162 		if (ceph_wbc.size_stable) {
1163 			len = min(len, ceph_wbc.i_size - offset);
1164 		} else if (i == locked_pages) {
1165 			/* writepages_finish() clears writeback pages
1166 			 * according to the data length, so make sure
1167 			 * data length covers all locked pages */
1168 			u64 min_len = len + 1 - thp_size(page);
1169 			len = get_writepages_data_length(inode, pages[i - 1],
1170 							 offset);
1171 			len = max(len, min_len);
1172 		}
1173 		dout("writepages got pages at %llu~%llu\n", offset, len);
1174 
1175 		osd_req_op_extent_osd_data_pages(req, op_idx, data_pages, len,
1176 						 0, from_pool, false);
1177 		osd_req_op_extent_update(req, op_idx, len);
1178 
1179 		BUG_ON(op_idx + 1 != req->r_num_ops);
1180 
1181 		from_pool = false;
1182 		if (i < locked_pages) {
1183 			BUG_ON(num_ops <= req->r_num_ops);
1184 			num_ops -= req->r_num_ops;
1185 			locked_pages -= i;
1186 
1187 			/* allocate new pages array for next request */
1188 			data_pages = pages;
1189 			pages = kmalloc_array(locked_pages, sizeof(*pages),
1190 					      GFP_NOFS);
1191 			if (!pages) {
1192 				from_pool = true;
1193 				pages = mempool_alloc(ceph_wb_pagevec_pool, GFP_NOFS);
1194 				BUG_ON(!pages);
1195 			}
1196 			memcpy(pages, data_pages + i,
1197 			       locked_pages * sizeof(*pages));
1198 			memset(data_pages + i, 0,
1199 			       locked_pages * sizeof(*pages));
1200 		} else {
1201 			BUG_ON(num_ops != req->r_num_ops);
1202 			index = pages[i - 1]->index + 1;
1203 			/* request message now owns the pages array */
1204 			pages = NULL;
1205 		}
1206 
1207 		req->r_mtime = inode->i_mtime;
1208 		ceph_osdc_start_request(&fsc->client->osdc, req);
1209 		req = NULL;
1210 
1211 		wbc->nr_to_write -= i;
1212 		if (pages)
1213 			goto new_request;
1214 
1215 		/*
1216 		 * We stop writing back only if we are not doing
1217 		 * integrity sync. In case of integrity sync we have to
1218 		 * keep going until we have written all the pages
1219 		 * we tagged for writeback prior to entering this loop.
1220 		 */
1221 		if (wbc->nr_to_write <= 0 && wbc->sync_mode == WB_SYNC_NONE)
1222 			done = true;
1223 
1224 release_pvec_pages:
1225 		dout("pagevec_release on %d pages (%p)\n", (int)pvec.nr,
1226 		     pvec.nr ? pvec.pages[0] : NULL);
1227 		pagevec_release(&pvec);
1228 	}
1229 
1230 	if (should_loop && !done) {
1231 		/* more to do; loop back to beginning of file */
1232 		dout("writepages looping back to beginning of file\n");
1233 		end = start_index - 1; /* OK even when start_index == 0 */
1234 
1235 		/* to write dirty pages associated with next snapc,
1236 		 * we need to wait until current writes complete */
1237 		if (wbc->sync_mode != WB_SYNC_NONE &&
1238 		    start_index == 0 && /* all dirty pages were checked */
1239 		    !ceph_wbc.head_snapc) {
1240 			struct page *page;
1241 			unsigned i, nr;
1242 			index = 0;
1243 			while ((index <= end) &&
1244 			       (nr = pagevec_lookup_tag(&pvec, mapping, &index,
1245 						PAGECACHE_TAG_WRITEBACK))) {
1246 				for (i = 0; i < nr; i++) {
1247 					page = pvec.pages[i];
1248 					if (page_snap_context(page) != snapc)
1249 						continue;
1250 					wait_on_page_writeback(page);
1251 				}
1252 				pagevec_release(&pvec);
1253 				cond_resched();
1254 			}
1255 		}
1256 
1257 		start_index = 0;
1258 		index = 0;
1259 		goto retry;
1260 	}
1261 
1262 	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
1263 		mapping->writeback_index = index;
1264 
1265 out:
1266 	ceph_osdc_put_request(req);
1267 	ceph_put_snap_context(last_snapc);
1268 	dout("writepages dend - startone, rc = %d\n", rc);
1269 	return rc;
1270 }
1271 
1272 
1273 
1274 /*
1275  * See if a given @snapc is either writeable, or already written.
1276  */
context_is_writeable_or_written(struct inode * inode,struct ceph_snap_context * snapc)1277 static int context_is_writeable_or_written(struct inode *inode,
1278 					   struct ceph_snap_context *snapc)
1279 {
1280 	struct ceph_snap_context *oldest = get_oldest_context(inode, NULL, NULL);
1281 	int ret = !oldest || snapc->seq <= oldest->seq;
1282 
1283 	ceph_put_snap_context(oldest);
1284 	return ret;
1285 }
1286 
1287 /**
1288  * ceph_find_incompatible - find an incompatible context and return it
1289  * @page: page being dirtied
1290  *
1291  * We are only allowed to write into/dirty a page if the page is
1292  * clean, or already dirty within the same snap context. Returns a
1293  * conflicting context if there is one, NULL if there isn't, or a
1294  * negative error code on other errors.
1295  *
1296  * Must be called with page lock held.
1297  */
1298 static struct ceph_snap_context *
ceph_find_incompatible(struct page * page)1299 ceph_find_incompatible(struct page *page)
1300 {
1301 	struct inode *inode = page->mapping->host;
1302 	struct ceph_inode_info *ci = ceph_inode(inode);
1303 
1304 	if (ceph_inode_is_shutdown(inode)) {
1305 		dout(" page %p %llx:%llx is shutdown\n", page,
1306 		     ceph_vinop(inode));
1307 		return ERR_PTR(-ESTALE);
1308 	}
1309 
1310 	for (;;) {
1311 		struct ceph_snap_context *snapc, *oldest;
1312 
1313 		wait_on_page_writeback(page);
1314 
1315 		snapc = page_snap_context(page);
1316 		if (!snapc || snapc == ci->i_head_snapc)
1317 			break;
1318 
1319 		/*
1320 		 * this page is already dirty in another (older) snap
1321 		 * context!  is it writeable now?
1322 		 */
1323 		oldest = get_oldest_context(inode, NULL, NULL);
1324 		if (snapc->seq > oldest->seq) {
1325 			/* not writeable -- return it for the caller to deal with */
1326 			ceph_put_snap_context(oldest);
1327 			dout(" page %p snapc %p not current or oldest\n", page, snapc);
1328 			return ceph_get_snap_context(snapc);
1329 		}
1330 		ceph_put_snap_context(oldest);
1331 
1332 		/* yay, writeable, do it now (without dropping page lock) */
1333 		dout(" page %p snapc %p not current, but oldest\n", page, snapc);
1334 		if (clear_page_dirty_for_io(page)) {
1335 			int r = writepage_nounlock(page, NULL);
1336 			if (r < 0)
1337 				return ERR_PTR(r);
1338 		}
1339 	}
1340 	return NULL;
1341 }
1342 
ceph_netfs_check_write_begin(struct file * file,loff_t pos,unsigned int len,struct folio ** foliop,void ** _fsdata)1343 static int ceph_netfs_check_write_begin(struct file *file, loff_t pos, unsigned int len,
1344 					struct folio **foliop, void **_fsdata)
1345 {
1346 	struct inode *inode = file_inode(file);
1347 	struct ceph_inode_info *ci = ceph_inode(inode);
1348 	struct ceph_snap_context *snapc;
1349 
1350 	snapc = ceph_find_incompatible(folio_page(*foliop, 0));
1351 	if (snapc) {
1352 		int r;
1353 
1354 		folio_unlock(*foliop);
1355 		folio_put(*foliop);
1356 		*foliop = NULL;
1357 		if (IS_ERR(snapc))
1358 			return PTR_ERR(snapc);
1359 
1360 		ceph_queue_writeback(inode);
1361 		r = wait_event_killable(ci->i_cap_wq,
1362 					context_is_writeable_or_written(inode, snapc));
1363 		ceph_put_snap_context(snapc);
1364 		return r == 0 ? -EAGAIN : r;
1365 	}
1366 	return 0;
1367 }
1368 
1369 /*
1370  * We are only allowed to write into/dirty the page if the page is
1371  * clean, or already dirty within the same snap context.
1372  */
ceph_write_begin(struct file * file,struct address_space * mapping,loff_t pos,unsigned len,struct page ** pagep,void ** fsdata)1373 static int ceph_write_begin(struct file *file, struct address_space *mapping,
1374 			    loff_t pos, unsigned len,
1375 			    struct page **pagep, void **fsdata)
1376 {
1377 	struct inode *inode = file_inode(file);
1378 	struct ceph_inode_info *ci = ceph_inode(inode);
1379 	struct folio *folio = NULL;
1380 	int r;
1381 
1382 	r = netfs_write_begin(&ci->netfs, file, inode->i_mapping, pos, len, &folio, NULL);
1383 	if (r < 0)
1384 		return r;
1385 
1386 	folio_wait_fscache(folio);
1387 	WARN_ON_ONCE(!folio_test_locked(folio));
1388 	*pagep = &folio->page;
1389 	return 0;
1390 }
1391 
1392 /*
1393  * we don't do anything in here that simple_write_end doesn't do
1394  * except adjust dirty page accounting
1395  */
ceph_write_end(struct file * file,struct address_space * mapping,loff_t pos,unsigned len,unsigned copied,struct page * subpage,void * fsdata)1396 static int ceph_write_end(struct file *file, struct address_space *mapping,
1397 			  loff_t pos, unsigned len, unsigned copied,
1398 			  struct page *subpage, void *fsdata)
1399 {
1400 	struct folio *folio = page_folio(subpage);
1401 	struct inode *inode = file_inode(file);
1402 	bool check_cap = false;
1403 
1404 	dout("write_end file %p inode %p folio %p %d~%d (%d)\n", file,
1405 	     inode, folio, (int)pos, (int)copied, (int)len);
1406 
1407 	if (!folio_test_uptodate(folio)) {
1408 		/* just return that nothing was copied on a short copy */
1409 		if (copied < len) {
1410 			copied = 0;
1411 			goto out;
1412 		}
1413 		folio_mark_uptodate(folio);
1414 	}
1415 
1416 	/* did file size increase? */
1417 	if (pos+copied > i_size_read(inode))
1418 		check_cap = ceph_inode_set_size(inode, pos+copied);
1419 
1420 	folio_mark_dirty(folio);
1421 
1422 out:
1423 	folio_unlock(folio);
1424 	folio_put(folio);
1425 
1426 	if (check_cap)
1427 		ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, NULL);
1428 
1429 	return copied;
1430 }
1431 
1432 const struct address_space_operations ceph_aops = {
1433 	.read_folio = netfs_read_folio,
1434 	.readahead = netfs_readahead,
1435 	.writepage = ceph_writepage,
1436 	.writepages = ceph_writepages_start,
1437 	.write_begin = ceph_write_begin,
1438 	.write_end = ceph_write_end,
1439 	.dirty_folio = ceph_dirty_folio,
1440 	.invalidate_folio = ceph_invalidate_folio,
1441 	.release_folio = ceph_release_folio,
1442 	.direct_IO = noop_direct_IO,
1443 };
1444 
ceph_block_sigs(sigset_t * oldset)1445 static void ceph_block_sigs(sigset_t *oldset)
1446 {
1447 	sigset_t mask;
1448 	siginitsetinv(&mask, sigmask(SIGKILL));
1449 	sigprocmask(SIG_BLOCK, &mask, oldset);
1450 }
1451 
ceph_restore_sigs(sigset_t * oldset)1452 static void ceph_restore_sigs(sigset_t *oldset)
1453 {
1454 	sigprocmask(SIG_SETMASK, oldset, NULL);
1455 }
1456 
1457 /*
1458  * vm ops
1459  */
ceph_filemap_fault(struct vm_fault * vmf)1460 static vm_fault_t ceph_filemap_fault(struct vm_fault *vmf)
1461 {
1462 	struct vm_area_struct *vma = vmf->vma;
1463 	struct inode *inode = file_inode(vma->vm_file);
1464 	struct ceph_inode_info *ci = ceph_inode(inode);
1465 	struct ceph_file_info *fi = vma->vm_file->private_data;
1466 	loff_t off = (loff_t)vmf->pgoff << PAGE_SHIFT;
1467 	int want, got, err;
1468 	sigset_t oldset;
1469 	vm_fault_t ret = VM_FAULT_SIGBUS;
1470 
1471 	if (ceph_inode_is_shutdown(inode))
1472 		return ret;
1473 
1474 	ceph_block_sigs(&oldset);
1475 
1476 	dout("filemap_fault %p %llx.%llx %llu trying to get caps\n",
1477 	     inode, ceph_vinop(inode), off);
1478 	if (fi->fmode & CEPH_FILE_MODE_LAZY)
1479 		want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1480 	else
1481 		want = CEPH_CAP_FILE_CACHE;
1482 
1483 	got = 0;
1484 	err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_RD, want, -1, &got);
1485 	if (err < 0)
1486 		goto out_restore;
1487 
1488 	dout("filemap_fault %p %llu got cap refs on %s\n",
1489 	     inode, off, ceph_cap_string(got));
1490 
1491 	if ((got & (CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO)) ||
1492 	    !ceph_has_inline_data(ci)) {
1493 		CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
1494 		ceph_add_rw_context(fi, &rw_ctx);
1495 		ret = filemap_fault(vmf);
1496 		ceph_del_rw_context(fi, &rw_ctx);
1497 		dout("filemap_fault %p %llu drop cap refs %s ret %x\n",
1498 		     inode, off, ceph_cap_string(got), ret);
1499 	} else
1500 		err = -EAGAIN;
1501 
1502 	ceph_put_cap_refs(ci, got);
1503 
1504 	if (err != -EAGAIN)
1505 		goto out_restore;
1506 
1507 	/* read inline data */
1508 	if (off >= PAGE_SIZE) {
1509 		/* does not support inline data > PAGE_SIZE */
1510 		ret = VM_FAULT_SIGBUS;
1511 	} else {
1512 		struct address_space *mapping = inode->i_mapping;
1513 		struct page *page;
1514 
1515 		filemap_invalidate_lock_shared(mapping);
1516 		page = find_or_create_page(mapping, 0,
1517 				mapping_gfp_constraint(mapping, ~__GFP_FS));
1518 		if (!page) {
1519 			ret = VM_FAULT_OOM;
1520 			goto out_inline;
1521 		}
1522 		err = __ceph_do_getattr(inode, page,
1523 					 CEPH_STAT_CAP_INLINE_DATA, true);
1524 		if (err < 0 || off >= i_size_read(inode)) {
1525 			unlock_page(page);
1526 			put_page(page);
1527 			ret = vmf_error(err);
1528 			goto out_inline;
1529 		}
1530 		if (err < PAGE_SIZE)
1531 			zero_user_segment(page, err, PAGE_SIZE);
1532 		else
1533 			flush_dcache_page(page);
1534 		SetPageUptodate(page);
1535 		vmf->page = page;
1536 		ret = VM_FAULT_MAJOR | VM_FAULT_LOCKED;
1537 out_inline:
1538 		filemap_invalidate_unlock_shared(mapping);
1539 		dout("filemap_fault %p %llu read inline data ret %x\n",
1540 		     inode, off, ret);
1541 	}
1542 out_restore:
1543 	ceph_restore_sigs(&oldset);
1544 	if (err < 0)
1545 		ret = vmf_error(err);
1546 
1547 	return ret;
1548 }
1549 
ceph_page_mkwrite(struct vm_fault * vmf)1550 static vm_fault_t ceph_page_mkwrite(struct vm_fault *vmf)
1551 {
1552 	struct vm_area_struct *vma = vmf->vma;
1553 	struct inode *inode = file_inode(vma->vm_file);
1554 	struct ceph_inode_info *ci = ceph_inode(inode);
1555 	struct ceph_file_info *fi = vma->vm_file->private_data;
1556 	struct ceph_cap_flush *prealloc_cf;
1557 	struct page *page = vmf->page;
1558 	loff_t off = page_offset(page);
1559 	loff_t size = i_size_read(inode);
1560 	size_t len;
1561 	int want, got, err;
1562 	sigset_t oldset;
1563 	vm_fault_t ret = VM_FAULT_SIGBUS;
1564 
1565 	if (ceph_inode_is_shutdown(inode))
1566 		return ret;
1567 
1568 	prealloc_cf = ceph_alloc_cap_flush();
1569 	if (!prealloc_cf)
1570 		return VM_FAULT_OOM;
1571 
1572 	sb_start_pagefault(inode->i_sb);
1573 	ceph_block_sigs(&oldset);
1574 
1575 	if (off + thp_size(page) <= size)
1576 		len = thp_size(page);
1577 	else
1578 		len = offset_in_thp(page, size);
1579 
1580 	dout("page_mkwrite %p %llx.%llx %llu~%zd getting caps i_size %llu\n",
1581 	     inode, ceph_vinop(inode), off, len, size);
1582 	if (fi->fmode & CEPH_FILE_MODE_LAZY)
1583 		want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1584 	else
1585 		want = CEPH_CAP_FILE_BUFFER;
1586 
1587 	got = 0;
1588 	err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_WR, want, off + len, &got);
1589 	if (err < 0)
1590 		goto out_free;
1591 
1592 	dout("page_mkwrite %p %llu~%zd got cap refs on %s\n",
1593 	     inode, off, len, ceph_cap_string(got));
1594 
1595 	/* Update time before taking page lock */
1596 	file_update_time(vma->vm_file);
1597 	inode_inc_iversion_raw(inode);
1598 
1599 	do {
1600 		struct ceph_snap_context *snapc;
1601 
1602 		lock_page(page);
1603 
1604 		if (page_mkwrite_check_truncate(page, inode) < 0) {
1605 			unlock_page(page);
1606 			ret = VM_FAULT_NOPAGE;
1607 			break;
1608 		}
1609 
1610 		snapc = ceph_find_incompatible(page);
1611 		if (!snapc) {
1612 			/* success.  we'll keep the page locked. */
1613 			set_page_dirty(page);
1614 			ret = VM_FAULT_LOCKED;
1615 			break;
1616 		}
1617 
1618 		unlock_page(page);
1619 
1620 		if (IS_ERR(snapc)) {
1621 			ret = VM_FAULT_SIGBUS;
1622 			break;
1623 		}
1624 
1625 		ceph_queue_writeback(inode);
1626 		err = wait_event_killable(ci->i_cap_wq,
1627 				context_is_writeable_or_written(inode, snapc));
1628 		ceph_put_snap_context(snapc);
1629 	} while (err == 0);
1630 
1631 	if (ret == VM_FAULT_LOCKED) {
1632 		int dirty;
1633 		spin_lock(&ci->i_ceph_lock);
1634 		dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1635 					       &prealloc_cf);
1636 		spin_unlock(&ci->i_ceph_lock);
1637 		if (dirty)
1638 			__mark_inode_dirty(inode, dirty);
1639 	}
1640 
1641 	dout("page_mkwrite %p %llu~%zd dropping cap refs on %s ret %x\n",
1642 	     inode, off, len, ceph_cap_string(got), ret);
1643 	ceph_put_cap_refs_async(ci, got);
1644 out_free:
1645 	ceph_restore_sigs(&oldset);
1646 	sb_end_pagefault(inode->i_sb);
1647 	ceph_free_cap_flush(prealloc_cf);
1648 	if (err < 0)
1649 		ret = vmf_error(err);
1650 	return ret;
1651 }
1652 
ceph_fill_inline_data(struct inode * inode,struct page * locked_page,char * data,size_t len)1653 void ceph_fill_inline_data(struct inode *inode, struct page *locked_page,
1654 			   char	*data, size_t len)
1655 {
1656 	struct address_space *mapping = inode->i_mapping;
1657 	struct page *page;
1658 
1659 	if (locked_page) {
1660 		page = locked_page;
1661 	} else {
1662 		if (i_size_read(inode) == 0)
1663 			return;
1664 		page = find_or_create_page(mapping, 0,
1665 					   mapping_gfp_constraint(mapping,
1666 					   ~__GFP_FS));
1667 		if (!page)
1668 			return;
1669 		if (PageUptodate(page)) {
1670 			unlock_page(page);
1671 			put_page(page);
1672 			return;
1673 		}
1674 	}
1675 
1676 	dout("fill_inline_data %p %llx.%llx len %zu locked_page %p\n",
1677 	     inode, ceph_vinop(inode), len, locked_page);
1678 
1679 	if (len > 0) {
1680 		void *kaddr = kmap_atomic(page);
1681 		memcpy(kaddr, data, len);
1682 		kunmap_atomic(kaddr);
1683 	}
1684 
1685 	if (page != locked_page) {
1686 		if (len < PAGE_SIZE)
1687 			zero_user_segment(page, len, PAGE_SIZE);
1688 		else
1689 			flush_dcache_page(page);
1690 
1691 		SetPageUptodate(page);
1692 		unlock_page(page);
1693 		put_page(page);
1694 	}
1695 }
1696 
ceph_uninline_data(struct file * file)1697 int ceph_uninline_data(struct file *file)
1698 {
1699 	struct inode *inode = file_inode(file);
1700 	struct ceph_inode_info *ci = ceph_inode(inode);
1701 	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1702 	struct ceph_osd_request *req = NULL;
1703 	struct ceph_cap_flush *prealloc_cf = NULL;
1704 	struct folio *folio = NULL;
1705 	u64 inline_version = CEPH_INLINE_NONE;
1706 	struct page *pages[1];
1707 	int err = 0;
1708 	u64 len;
1709 
1710 	spin_lock(&ci->i_ceph_lock);
1711 	inline_version = ci->i_inline_version;
1712 	spin_unlock(&ci->i_ceph_lock);
1713 
1714 	dout("uninline_data %p %llx.%llx inline_version %llu\n",
1715 	     inode, ceph_vinop(inode), inline_version);
1716 
1717 	if (ceph_inode_is_shutdown(inode)) {
1718 		err = -EIO;
1719 		goto out;
1720 	}
1721 
1722 	if (inline_version == CEPH_INLINE_NONE)
1723 		return 0;
1724 
1725 	prealloc_cf = ceph_alloc_cap_flush();
1726 	if (!prealloc_cf)
1727 		return -ENOMEM;
1728 
1729 	if (inline_version == 1) /* initial version, no data */
1730 		goto out_uninline;
1731 
1732 	folio = read_mapping_folio(inode->i_mapping, 0, file);
1733 	if (IS_ERR(folio)) {
1734 		err = PTR_ERR(folio);
1735 		goto out;
1736 	}
1737 
1738 	folio_lock(folio);
1739 
1740 	len = i_size_read(inode);
1741 	if (len > folio_size(folio))
1742 		len = folio_size(folio);
1743 
1744 	req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1745 				    ceph_vino(inode), 0, &len, 0, 1,
1746 				    CEPH_OSD_OP_CREATE, CEPH_OSD_FLAG_WRITE,
1747 				    NULL, 0, 0, false);
1748 	if (IS_ERR(req)) {
1749 		err = PTR_ERR(req);
1750 		goto out_unlock;
1751 	}
1752 
1753 	req->r_mtime = inode->i_mtime;
1754 	ceph_osdc_start_request(&fsc->client->osdc, req);
1755 	err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1756 	ceph_osdc_put_request(req);
1757 	if (err < 0)
1758 		goto out_unlock;
1759 
1760 	req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1761 				    ceph_vino(inode), 0, &len, 1, 3,
1762 				    CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
1763 				    NULL, ci->i_truncate_seq,
1764 				    ci->i_truncate_size, false);
1765 	if (IS_ERR(req)) {
1766 		err = PTR_ERR(req);
1767 		goto out_unlock;
1768 	}
1769 
1770 	pages[0] = folio_page(folio, 0);
1771 	osd_req_op_extent_osd_data_pages(req, 1, pages, len, 0, false, false);
1772 
1773 	{
1774 		__le64 xattr_buf = cpu_to_le64(inline_version);
1775 		err = osd_req_op_xattr_init(req, 0, CEPH_OSD_OP_CMPXATTR,
1776 					    "inline_version", &xattr_buf,
1777 					    sizeof(xattr_buf),
1778 					    CEPH_OSD_CMPXATTR_OP_GT,
1779 					    CEPH_OSD_CMPXATTR_MODE_U64);
1780 		if (err)
1781 			goto out_put_req;
1782 	}
1783 
1784 	{
1785 		char xattr_buf[32];
1786 		int xattr_len = snprintf(xattr_buf, sizeof(xattr_buf),
1787 					 "%llu", inline_version);
1788 		err = osd_req_op_xattr_init(req, 2, CEPH_OSD_OP_SETXATTR,
1789 					    "inline_version",
1790 					    xattr_buf, xattr_len, 0, 0);
1791 		if (err)
1792 			goto out_put_req;
1793 	}
1794 
1795 	req->r_mtime = inode->i_mtime;
1796 	ceph_osdc_start_request(&fsc->client->osdc, req);
1797 	err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1798 
1799 	ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
1800 				  req->r_end_latency, len, err);
1801 
1802 out_uninline:
1803 	if (!err) {
1804 		int dirty;
1805 
1806 		/* Set to CAP_INLINE_NONE and dirty the caps */
1807 		down_read(&fsc->mdsc->snap_rwsem);
1808 		spin_lock(&ci->i_ceph_lock);
1809 		ci->i_inline_version = CEPH_INLINE_NONE;
1810 		dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR, &prealloc_cf);
1811 		spin_unlock(&ci->i_ceph_lock);
1812 		up_read(&fsc->mdsc->snap_rwsem);
1813 		if (dirty)
1814 			__mark_inode_dirty(inode, dirty);
1815 	}
1816 out_put_req:
1817 	ceph_osdc_put_request(req);
1818 	if (err == -ECANCELED)
1819 		err = 0;
1820 out_unlock:
1821 	if (folio) {
1822 		folio_unlock(folio);
1823 		folio_put(folio);
1824 	}
1825 out:
1826 	ceph_free_cap_flush(prealloc_cf);
1827 	dout("uninline_data %p %llx.%llx inline_version %llu = %d\n",
1828 	     inode, ceph_vinop(inode), inline_version, err);
1829 	return err;
1830 }
1831 
1832 static const struct vm_operations_struct ceph_vmops = {
1833 	.fault		= ceph_filemap_fault,
1834 	.page_mkwrite	= ceph_page_mkwrite,
1835 };
1836 
ceph_mmap(struct file * file,struct vm_area_struct * vma)1837 int ceph_mmap(struct file *file, struct vm_area_struct *vma)
1838 {
1839 	struct address_space *mapping = file->f_mapping;
1840 
1841 	if (!mapping->a_ops->read_folio)
1842 		return -ENOEXEC;
1843 	vma->vm_ops = &ceph_vmops;
1844 	return 0;
1845 }
1846 
1847 enum {
1848 	POOL_READ	= 1,
1849 	POOL_WRITE	= 2,
1850 };
1851 
__ceph_pool_perm_get(struct ceph_inode_info * ci,s64 pool,struct ceph_string * pool_ns)1852 static int __ceph_pool_perm_get(struct ceph_inode_info *ci,
1853 				s64 pool, struct ceph_string *pool_ns)
1854 {
1855 	struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->netfs.inode);
1856 	struct ceph_mds_client *mdsc = fsc->mdsc;
1857 	struct ceph_osd_request *rd_req = NULL, *wr_req = NULL;
1858 	struct rb_node **p, *parent;
1859 	struct ceph_pool_perm *perm;
1860 	struct page **pages;
1861 	size_t pool_ns_len;
1862 	int err = 0, err2 = 0, have = 0;
1863 
1864 	down_read(&mdsc->pool_perm_rwsem);
1865 	p = &mdsc->pool_perm_tree.rb_node;
1866 	while (*p) {
1867 		perm = rb_entry(*p, struct ceph_pool_perm, node);
1868 		if (pool < perm->pool)
1869 			p = &(*p)->rb_left;
1870 		else if (pool > perm->pool)
1871 			p = &(*p)->rb_right;
1872 		else {
1873 			int ret = ceph_compare_string(pool_ns,
1874 						perm->pool_ns,
1875 						perm->pool_ns_len);
1876 			if (ret < 0)
1877 				p = &(*p)->rb_left;
1878 			else if (ret > 0)
1879 				p = &(*p)->rb_right;
1880 			else {
1881 				have = perm->perm;
1882 				break;
1883 			}
1884 		}
1885 	}
1886 	up_read(&mdsc->pool_perm_rwsem);
1887 	if (*p)
1888 		goto out;
1889 
1890 	if (pool_ns)
1891 		dout("__ceph_pool_perm_get pool %lld ns %.*s no perm cached\n",
1892 		     pool, (int)pool_ns->len, pool_ns->str);
1893 	else
1894 		dout("__ceph_pool_perm_get pool %lld no perm cached\n", pool);
1895 
1896 	down_write(&mdsc->pool_perm_rwsem);
1897 	p = &mdsc->pool_perm_tree.rb_node;
1898 	parent = NULL;
1899 	while (*p) {
1900 		parent = *p;
1901 		perm = rb_entry(parent, struct ceph_pool_perm, node);
1902 		if (pool < perm->pool)
1903 			p = &(*p)->rb_left;
1904 		else if (pool > perm->pool)
1905 			p = &(*p)->rb_right;
1906 		else {
1907 			int ret = ceph_compare_string(pool_ns,
1908 						perm->pool_ns,
1909 						perm->pool_ns_len);
1910 			if (ret < 0)
1911 				p = &(*p)->rb_left;
1912 			else if (ret > 0)
1913 				p = &(*p)->rb_right;
1914 			else {
1915 				have = perm->perm;
1916 				break;
1917 			}
1918 		}
1919 	}
1920 	if (*p) {
1921 		up_write(&mdsc->pool_perm_rwsem);
1922 		goto out;
1923 	}
1924 
1925 	rd_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
1926 					 1, false, GFP_NOFS);
1927 	if (!rd_req) {
1928 		err = -ENOMEM;
1929 		goto out_unlock;
1930 	}
1931 
1932 	rd_req->r_flags = CEPH_OSD_FLAG_READ;
1933 	osd_req_op_init(rd_req, 0, CEPH_OSD_OP_STAT, 0);
1934 	rd_req->r_base_oloc.pool = pool;
1935 	if (pool_ns)
1936 		rd_req->r_base_oloc.pool_ns = ceph_get_string(pool_ns);
1937 	ceph_oid_printf(&rd_req->r_base_oid, "%llx.00000000", ci->i_vino.ino);
1938 
1939 	err = ceph_osdc_alloc_messages(rd_req, GFP_NOFS);
1940 	if (err)
1941 		goto out_unlock;
1942 
1943 	wr_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
1944 					 1, false, GFP_NOFS);
1945 	if (!wr_req) {
1946 		err = -ENOMEM;
1947 		goto out_unlock;
1948 	}
1949 
1950 	wr_req->r_flags = CEPH_OSD_FLAG_WRITE;
1951 	osd_req_op_init(wr_req, 0, CEPH_OSD_OP_CREATE, CEPH_OSD_OP_FLAG_EXCL);
1952 	ceph_oloc_copy(&wr_req->r_base_oloc, &rd_req->r_base_oloc);
1953 	ceph_oid_copy(&wr_req->r_base_oid, &rd_req->r_base_oid);
1954 
1955 	err = ceph_osdc_alloc_messages(wr_req, GFP_NOFS);
1956 	if (err)
1957 		goto out_unlock;
1958 
1959 	/* one page should be large enough for STAT data */
1960 	pages = ceph_alloc_page_vector(1, GFP_KERNEL);
1961 	if (IS_ERR(pages)) {
1962 		err = PTR_ERR(pages);
1963 		goto out_unlock;
1964 	}
1965 
1966 	osd_req_op_raw_data_in_pages(rd_req, 0, pages, PAGE_SIZE,
1967 				     0, false, true);
1968 	ceph_osdc_start_request(&fsc->client->osdc, rd_req);
1969 
1970 	wr_req->r_mtime = ci->netfs.inode.i_mtime;
1971 	ceph_osdc_start_request(&fsc->client->osdc, wr_req);
1972 
1973 	err = ceph_osdc_wait_request(&fsc->client->osdc, rd_req);
1974 	err2 = ceph_osdc_wait_request(&fsc->client->osdc, wr_req);
1975 
1976 	if (err >= 0 || err == -ENOENT)
1977 		have |= POOL_READ;
1978 	else if (err != -EPERM) {
1979 		if (err == -EBLOCKLISTED)
1980 			fsc->blocklisted = true;
1981 		goto out_unlock;
1982 	}
1983 
1984 	if (err2 == 0 || err2 == -EEXIST)
1985 		have |= POOL_WRITE;
1986 	else if (err2 != -EPERM) {
1987 		if (err2 == -EBLOCKLISTED)
1988 			fsc->blocklisted = true;
1989 		err = err2;
1990 		goto out_unlock;
1991 	}
1992 
1993 	pool_ns_len = pool_ns ? pool_ns->len : 0;
1994 	perm = kmalloc(sizeof(*perm) + pool_ns_len + 1, GFP_NOFS);
1995 	if (!perm) {
1996 		err = -ENOMEM;
1997 		goto out_unlock;
1998 	}
1999 
2000 	perm->pool = pool;
2001 	perm->perm = have;
2002 	perm->pool_ns_len = pool_ns_len;
2003 	if (pool_ns_len > 0)
2004 		memcpy(perm->pool_ns, pool_ns->str, pool_ns_len);
2005 	perm->pool_ns[pool_ns_len] = 0;
2006 
2007 	rb_link_node(&perm->node, parent, p);
2008 	rb_insert_color(&perm->node, &mdsc->pool_perm_tree);
2009 	err = 0;
2010 out_unlock:
2011 	up_write(&mdsc->pool_perm_rwsem);
2012 
2013 	ceph_osdc_put_request(rd_req);
2014 	ceph_osdc_put_request(wr_req);
2015 out:
2016 	if (!err)
2017 		err = have;
2018 	if (pool_ns)
2019 		dout("__ceph_pool_perm_get pool %lld ns %.*s result = %d\n",
2020 		     pool, (int)pool_ns->len, pool_ns->str, err);
2021 	else
2022 		dout("__ceph_pool_perm_get pool %lld result = %d\n", pool, err);
2023 	return err;
2024 }
2025 
ceph_pool_perm_check(struct inode * inode,int need)2026 int ceph_pool_perm_check(struct inode *inode, int need)
2027 {
2028 	struct ceph_inode_info *ci = ceph_inode(inode);
2029 	struct ceph_string *pool_ns;
2030 	s64 pool;
2031 	int ret, flags;
2032 
2033 	/* Only need to do this for regular files */
2034 	if (!S_ISREG(inode->i_mode))
2035 		return 0;
2036 
2037 	if (ci->i_vino.snap != CEPH_NOSNAP) {
2038 		/*
2039 		 * Pool permission check needs to write to the first object.
2040 		 * But for snapshot, head of the first object may have alread
2041 		 * been deleted. Skip check to avoid creating orphan object.
2042 		 */
2043 		return 0;
2044 	}
2045 
2046 	if (ceph_test_mount_opt(ceph_inode_to_client(inode),
2047 				NOPOOLPERM))
2048 		return 0;
2049 
2050 	spin_lock(&ci->i_ceph_lock);
2051 	flags = ci->i_ceph_flags;
2052 	pool = ci->i_layout.pool_id;
2053 	spin_unlock(&ci->i_ceph_lock);
2054 check:
2055 	if (flags & CEPH_I_POOL_PERM) {
2056 		if ((need & CEPH_CAP_FILE_RD) && !(flags & CEPH_I_POOL_RD)) {
2057 			dout("ceph_pool_perm_check pool %lld no read perm\n",
2058 			     pool);
2059 			return -EPERM;
2060 		}
2061 		if ((need & CEPH_CAP_FILE_WR) && !(flags & CEPH_I_POOL_WR)) {
2062 			dout("ceph_pool_perm_check pool %lld no write perm\n",
2063 			     pool);
2064 			return -EPERM;
2065 		}
2066 		return 0;
2067 	}
2068 
2069 	pool_ns = ceph_try_get_string(ci->i_layout.pool_ns);
2070 	ret = __ceph_pool_perm_get(ci, pool, pool_ns);
2071 	ceph_put_string(pool_ns);
2072 	if (ret < 0)
2073 		return ret;
2074 
2075 	flags = CEPH_I_POOL_PERM;
2076 	if (ret & POOL_READ)
2077 		flags |= CEPH_I_POOL_RD;
2078 	if (ret & POOL_WRITE)
2079 		flags |= CEPH_I_POOL_WR;
2080 
2081 	spin_lock(&ci->i_ceph_lock);
2082 	if (pool == ci->i_layout.pool_id &&
2083 	    pool_ns == rcu_dereference_raw(ci->i_layout.pool_ns)) {
2084 		ci->i_ceph_flags |= flags;
2085         } else {
2086 		pool = ci->i_layout.pool_id;
2087 		flags = ci->i_ceph_flags;
2088 	}
2089 	spin_unlock(&ci->i_ceph_lock);
2090 	goto check;
2091 }
2092 
ceph_pool_perm_destroy(struct ceph_mds_client * mdsc)2093 void ceph_pool_perm_destroy(struct ceph_mds_client *mdsc)
2094 {
2095 	struct ceph_pool_perm *perm;
2096 	struct rb_node *n;
2097 
2098 	while (!RB_EMPTY_ROOT(&mdsc->pool_perm_tree)) {
2099 		n = rb_first(&mdsc->pool_perm_tree);
2100 		perm = rb_entry(n, struct ceph_pool_perm, node);
2101 		rb_erase(n, &mdsc->pool_perm_tree);
2102 		kfree(perm);
2103 	}
2104 }
2105