1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/ceph/ceph_debug.h>
4 #include <linux/backing-dev.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>
18 #include "mds_client.h"
21 #include <linux/ceph/osd_client.h>
22 #include <linux/ceph/striper.h>
25 * Ceph address space ops.
27 * There are a few funny things going on here.
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.
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.
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.
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
56 * Invalidate and so forth must take care to ensure the dirty page
57 * accounting is preserved.
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))
65 static int ceph_netfs_check_write_begin(struct file *file, loff_t pos, unsigned int len,
66 struct folio **foliop, void **_fsdata);
68 static inline struct ceph_snap_context *page_snap_context(struct page *page)
70 if (PagePrivate(page))
71 return (void *)page->private;
76 * Dirty a page. Optimistically adjust accounting, on the assumption
77 * that we won't race with invalidate. If we do, readjust.
79 static bool ceph_dirty_folio(struct address_space *mapping, struct folio *folio)
82 struct ceph_inode_info *ci;
83 struct ceph_snap_context *snapc;
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);
92 inode = mapping->host;
93 ci = ceph_inode(inode);
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,
103 snapc = ceph_get_snap_context(capsnap->context);
104 capsnap->dirty_pages++;
106 BUG_ON(!ci->i_head_snapc);
107 snapc = ceph_get_snap_context(ci->i_head_snapc);
108 ++ci->i_wrbuffer_ref_head;
110 if (ci->i_wrbuffer_ref == 0)
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);
122 * Reference snap context in folio->private. Also set
123 * PagePrivate so that we get invalidate_folio callback.
125 VM_WARN_ON_FOLIO(folio->private, folio);
126 folio_attach_private(folio, snapc);
128 return ceph_fscache_dirty_folio(mapping, folio);
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
136 static void ceph_invalidate_folio(struct folio *folio, size_t offset,
140 struct ceph_inode_info *ci;
141 struct ceph_snap_context *snapc;
143 inode = folio->mapping->host;
144 ci = ceph_inode(inode);
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);
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);
157 snapc = folio_detach_private(folio);
158 ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
159 ceph_put_snap_context(snapc);
162 folio_wait_fscache(folio);
165 static bool ceph_release_folio(struct folio *folio, gfp_t gfp)
167 struct inode *inode = folio->mapping->host;
169 dout("%llx:%llx release_folio idx %lu (%sdirty)\n",
171 folio->index, folio_test_dirty(folio) ? "" : "not ");
173 if (folio_test_private(folio))
176 if (folio_test_fscache(folio)) {
177 if (current_is_kswapd() || !(gfp & __GFP_FS))
179 folio_wait_fscache(folio);
181 ceph_fscache_note_page_release(inode);
185 static void ceph_netfs_expand_readahead(struct netfs_io_request *rreq)
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;
197 /* Readahead is disabled by posix_fadvise POSIX_FADV_RANDOM */
198 if (priv->file_ra_disabled)
201 max_pages = priv->file_ra_pages;
205 /* Readahead is disabled */
209 max_len = max_pages << PAGE_SHIFT;
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.
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;
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;
228 static bool ceph_netfs_clamp_length(struct netfs_io_subrequest *subreq)
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);
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);
243 static void finish_netfs_read(struct ceph_osd_request *req)
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;
249 int err = req->r_result;
251 ceph_update_read_metrics(&fsc->mdsc->metric, req->r_start_latency,
252 req->r_end_latency, osd_data->length, err);
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));
257 /* no object means success but no data */
260 else if (err == -EBLOCKLISTED)
261 fsc->blocklisted = true;
263 if (err >= 0 && err < subreq->len)
264 __set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
266 netfs_subreq_terminated(subreq, err, false);
268 num_pages = calc_pages_for(osd_data->alignment, osd_data->length);
269 ceph_put_page_vector(osd_data->pages, num_pages, false);
273 static bool ceph_netfs_issue_op_inline(struct netfs_io_subrequest *subreq)
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;
287 __set_bit(NETFS_SREQ_CLEAR_TAIL, &subreq->flags);
288 __clear_bit(NETFS_SREQ_COPY_TO_CACHE, &subreq->flags);
290 if (subreq->start >= inode->i_size)
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);
300 req->r_ino1 = ci->i_vino;
301 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INLINE_DATA);
304 err = ceph_mdsc_do_request(mdsc, NULL, req);
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);
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);
322 ceph_mdsc_put_request(req);
324 netfs_subreq_terminated(subreq, err, false);
328 static void ceph_netfs_issue_read(struct netfs_io_subrequest *subreq)
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;
340 u64 len = subreq->len;
342 if (ceph_inode_is_shutdown(inode)) {
347 if (ceph_has_inline_data(ci) && ceph_netfs_issue_op_inline(subreq))
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);
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);
364 dout("%s: iov_ter_get_pages_alloc returned %d\n", __func__, err);
368 /* should always give us a page-aligned read */
369 WARN_ON_ONCE(page_off);
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;
379 ceph_osdc_start_request(req->r_osdc, req);
381 ceph_osdc_put_request(req);
383 netfs_subreq_terminated(subreq, err, false);
384 dout("%s: result %d\n", __func__, err);
387 static int ceph_init_request(struct netfs_io_request *rreq, struct file *file)
389 struct inode *inode = rreq->inode;
390 int got = 0, want = CEPH_CAP_FILE_CACHE;
391 struct ceph_netfs_request_data *priv;
394 if (rreq->origin != NETFS_READAHEAD)
397 priv = kzalloc(sizeof(*priv), GFP_NOFS);
402 struct ceph_rw_context *rw_ctx;
403 struct ceph_file_info *fi = file->private_data;
405 priv->file_ra_pages = file->f_ra.ra_pages;
406 priv->file_ra_disabled = file->f_mode & FMODE_RANDOM;
408 rw_ctx = ceph_find_rw_context(fi);
410 rreq->netfs_priv = priv;
416 * readahead callers do not necessarily hold Fcb caps
417 * (e.g. fadvise, madvise).
419 ret = ceph_try_get_caps(inode, CEPH_CAP_FILE_RD, want, true, &got);
421 dout("start_read %p, error getting cap\n", inode);
426 dout("start_read %p, no cache cap\n", inode);
436 rreq->netfs_priv = priv;
445 static void ceph_netfs_free_request(struct netfs_io_request *rreq)
447 struct ceph_netfs_request_data *priv = rreq->netfs_priv;
453 ceph_put_cap_refs(ceph_inode(rreq->inode), priv->caps);
455 rreq->netfs_priv = NULL;
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,
468 #ifdef CONFIG_CEPH_FSCACHE
469 static void ceph_set_page_fscache(struct page *page)
471 set_page_fscache(page);
474 static void ceph_fscache_write_terminated(void *priv, ssize_t error, bool was_async)
476 struct inode *inode = priv;
478 if (IS_ERR_VALUE(error) && error != -ENOBUFS)
479 ceph_fscache_invalidate(inode, false);
482 static void ceph_fscache_write_to_cache(struct inode *inode, u64 off, u64 len, bool caching)
484 struct ceph_inode_info *ci = ceph_inode(inode);
485 struct fscache_cookie *cookie = ceph_fscache_cookie(ci);
487 fscache_write_to_cache(cookie, inode->i_mapping, off, len, i_size_read(inode),
488 ceph_fscache_write_terminated, inode, caching);
491 static inline void ceph_set_page_fscache(struct page *page)
495 static inline void ceph_fscache_write_to_cache(struct inode *inode, u64 off, u64 len, bool caching)
498 #endif /* CONFIG_CEPH_FSCACHE */
500 struct ceph_writeback_ctl
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.
513 static struct ceph_snap_context *
514 get_oldest_context(struct inode *inode, struct ceph_writeback_ctl *ctl,
515 struct ceph_snap_context *page_snapc)
517 struct ceph_inode_info *ci = ceph_inode(inode);
518 struct ceph_snap_context *snapc = NULL;
519 struct ceph_cap_snap *capsnap = NULL;
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)
528 /* get i_size, truncate_{seq,size} for page_snapc? */
529 if (snapc && capsnap->context != page_snapc)
533 if (capsnap->writing) {
534 ctl->i_size = i_size_read(inode);
535 ctl->size_stable = false;
537 ctl->i_size = capsnap->size;
538 ctl->size_stable = true;
540 ctl->truncate_size = capsnap->truncate_size;
541 ctl->truncate_seq = capsnap->truncate_seq;
542 ctl->head_snapc = false;
548 snapc = ceph_get_snap_context(capsnap->context);
550 page_snapc == snapc ||
551 page_snapc->seq > snapc->seq)
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);
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;
566 spin_unlock(&ci->i_ceph_lock);
570 static u64 get_writepages_data_length(struct inode *inode,
571 struct page *page, u64 start)
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);
578 if (snapc != ci->i_head_snapc) {
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)
589 spin_unlock(&ci->i_ceph_lock);
592 if (end > page_offset(page) + thp_size(page))
593 end = page_offset(page) + thp_size(page);
594 return end > start ? end - start : 0;
598 * Write a single page, but leave the page locked.
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).
603 static int writepage_nounlock(struct page *page, struct writeback_control *wbc)
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);
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);
618 dout("writepage %p idx %lu\n", page, page->index);
620 if (ceph_inode_is_shutdown(inode))
623 /* verify this is a writeable snap context */
624 snapc = page_snap_context(page);
626 dout("writepage %p page %p not dirty?\n", inode, page);
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",
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);
639 ceph_put_snap_context(oldest);
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,
645 folio_invalidate(folio, 0, folio_size(folio));
649 if (ceph_wbc.i_size < page_off + len)
650 len = ceph_wbc.i_size - page_off;
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);
655 if (atomic_long_inc_return(&fsc->writeback_count) >
656 CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb))
657 fsc->write_congested = true;
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,
664 redirty_page_for_writepage(wbc, page);
668 set_page_writeback(page);
670 ceph_set_page_fscache(page);
671 ceph_fscache_write_to_cache(inode, page_off, len, caching);
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);
678 req->r_mtime = inode->i_mtime;
679 ceph_osdc_start_request(osdc, req);
680 err = ceph_osdc_wait_request(osdc, req);
682 ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
683 req->r_end_latency, len, err);
685 ceph_osdc_put_request(req);
690 struct writeback_control 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);
700 if (err == -EBLOCKLISTED)
701 fsc->blocklisted = true;
702 dout("writepage setting page/mapping error %d %p\n",
704 mapping_set_error(&inode->i_data, err);
705 wbc->pages_skipped++;
707 dout("writepage cleaned page %p\n", page);
708 err = 0; /* vfs expects us to return 0 */
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 */
716 if (atomic_long_dec_return(&fsc->writeback_count) <
717 CONGESTION_OFF_THRESH(fsc->mount_options->congestion_kb))
718 fsc->write_congested = false;
723 static int ceph_writepage(struct page *page, struct writeback_control *wbc)
726 struct inode *inode = page->mapping->host;
730 if (wbc->sync_mode == WB_SYNC_NONE &&
731 ceph_inode_to_client(inode)->write_congested)
732 return AOP_WRITEPAGE_ACTIVATE;
734 wait_on_page_fscache(page);
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 */
748 * async writeback completion handler.
750 * If we get an error, set the mapping error bit, but not the individual
753 static void writepages_finish(struct ceph_osd_request *req)
755 struct inode *inode = req->r_inode;
756 struct ceph_inode_info *ci = ceph_inode(inode);
757 struct ceph_osd_data *osd_data;
759 int num_pages, total_pages = 0;
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;
768 dout("writepages_finish %p rc %d\n", inode, rc);
770 mapping_set_error(mapping, rc);
771 ceph_set_error_write(ci);
772 if (rc == -EBLOCKLISTED)
773 fsc->blocklisted = true;
775 ceph_clear_error_write(ci);
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
784 remove_page = !(ceph_caps_issued(ci) &
785 (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO));
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);
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];
804 WARN_ON(!PageUptodate(page));
806 if (atomic_long_dec_return(&fsc->writeback_count) <
807 CONGESTION_OFF_THRESH(
808 fsc->mount_options->congestion_kb))
809 fsc->write_congested = false;
811 ceph_put_snap_context(detach_page_private(page));
812 end_page_writeback(page);
813 dout("unlocking %p\n", page);
816 generic_error_remove_page(inode->i_mapping,
821 dout("writepages_finish %p wrote %llu bytes cleaned %d pages\n",
822 inode, osd_data->length, rc >= 0 ? num_pages : 0);
824 release_pages(osd_data->pages, num_pages);
827 ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
828 req->r_end_latency, len, rc);
830 ceph_put_wrbuffer_cap_refs(ci, total_pages, snapc);
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);
836 kfree(osd_data->pages);
837 ceph_osdc_put_request(req);
841 * initiate async writeback
843 static int ceph_writepages_start(struct address_space *mapping,
844 struct writeback_control *wbc)
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 folio_batch fbatch;
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;
859 bool caching = ceph_is_cache_enabled(inode);
862 if (wbc->sync_mode == WB_SYNC_NONE &&
863 fsc->write_congested)
866 dout("writepages_start %p (mode=%s)\n", inode,
867 wbc->sync_mode == WB_SYNC_NONE ? "NONE" :
868 (wbc->sync_mode == WB_SYNC_ALL ? "ALL" : "HOLD"));
870 if (ceph_inode_is_shutdown(inode)) {
871 if (ci->i_wrbuffer_ref > 0) {
873 "writepage_start %p %lld forced umount\n",
874 inode, ceph_ino(inode));
876 mapping_set_error(mapping, -EIO);
877 return -EIO; /* we're in a forced umount, don't write! */
879 if (fsc->mount_options->wsize < wsize)
880 wsize = fsc->mount_options->wsize;
882 folio_batch_init(&fbatch);
884 start_index = wbc->range_cyclic ? mapping->writeback_index : 0;
887 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) {
888 tag = PAGECACHE_TAG_TOWRITE;
890 tag = PAGECACHE_TAG_DIRTY;
893 /* find oldest snap context with dirty data */
894 snapc = get_oldest_context(inode, &ceph_wbc, NULL);
896 /* hmm, why does writepages get called when there
898 dout(" no snap context with dirty data?\n");
901 dout(" oldest snapc is %p seq %lld (%d snaps)\n",
902 snapc, snapc->seq, snapc->num_snaps);
905 if (ceph_wbc.head_snapc && snapc != last_snapc) {
906 /* where to start/end? */
907 if (wbc->range_cyclic) {
912 dout(" cyclic, start at %lu\n", index);
914 index = wbc->range_start >> PAGE_SHIFT;
915 end = wbc->range_end >> PAGE_SHIFT;
916 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
918 dout(" not cyclic, %lu to %lu\n", index, end);
920 } else if (!ceph_wbc.head_snapc) {
921 /* Do not respect wbc->range_{start,end}. Dirty pages
922 * in that range can be associated with newer snapc.
923 * They are not writeable until we write all dirty pages
924 * associated with 'snapc' get written */
927 dout(" non-head snapc, range whole\n");
930 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
931 tag_pages_for_writeback(mapping, index, end);
933 ceph_put_snap_context(last_snapc);
936 while (!done && index <= end) {
937 int num_ops = 0, op_idx;
938 unsigned i, nr_folios, max_pages, locked_pages = 0;
939 struct page **pages = NULL, **data_pages;
941 pgoff_t strip_unit_end = 0;
942 u64 offset = 0, len = 0;
943 bool from_pool = false;
945 max_pages = wsize >> PAGE_SHIFT;
948 nr_folios = filemap_get_folios_tag(mapping, &index,
950 dout("pagevec_lookup_range_tag got %d\n", nr_folios);
951 if (!nr_folios && !locked_pages)
953 for (i = 0; i < nr_folios && locked_pages < max_pages; i++) {
954 page = &fbatch.folios[i]->page;
955 dout("? %p idx %lu\n", page, page->index);
956 if (locked_pages == 0)
957 lock_page(page); /* first page */
958 else if (!trylock_page(page))
961 /* only dirty pages, or our accounting breaks */
962 if (unlikely(!PageDirty(page)) ||
963 unlikely(page->mapping != mapping)) {
964 dout("!dirty or !mapping %p\n", page);
968 /* only if matching snap context */
969 pgsnapc = page_snap_context(page);
970 if (pgsnapc != snapc) {
971 dout("page snapc %p %lld != oldest %p %lld\n",
972 pgsnapc, pgsnapc->seq, snapc, snapc->seq);
974 !ceph_wbc.head_snapc &&
975 wbc->sync_mode != WB_SYNC_NONE)
980 if (page_offset(page) >= ceph_wbc.i_size) {
981 struct folio *folio = page_folio(page);
983 dout("folio at %lu beyond eof %llu\n",
984 folio->index, ceph_wbc.i_size);
985 if ((ceph_wbc.size_stable ||
986 folio_pos(folio) >= i_size_read(inode)) &&
987 folio_clear_dirty_for_io(folio))
988 folio_invalidate(folio, 0,
993 if (strip_unit_end && (page->index > strip_unit_end)) {
994 dout("end of strip unit %p\n", page);
998 if (PageWriteback(page) || PageFsCache(page)) {
999 if (wbc->sync_mode == WB_SYNC_NONE) {
1000 dout("%p under writeback\n", page);
1004 dout("waiting on writeback %p\n", page);
1005 wait_on_page_writeback(page);
1006 wait_on_page_fscache(page);
1009 if (!clear_page_dirty_for_io(page)) {
1010 dout("%p !clear_page_dirty_for_io\n", page);
1016 * We have something to write. If this is
1017 * the first locked page this time through,
1018 * calculate max possinle write size and
1019 * allocate a page array
1021 if (locked_pages == 0) {
1026 /* prepare async write request */
1027 offset = (u64)page_offset(page);
1028 ceph_calc_file_object_mapping(&ci->i_layout,
1035 strip_unit_end = page->index +
1036 ((len - 1) >> PAGE_SHIFT);
1039 max_pages = calc_pages_for(0, (u64)len);
1040 pages = kmalloc_array(max_pages,
1045 pages = mempool_alloc(ceph_wb_pagevec_pool, GFP_NOFS);
1050 } else if (page->index !=
1051 (offset + len) >> PAGE_SHIFT) {
1052 if (num_ops >= (from_pool ? CEPH_OSD_SLAB_OPS :
1053 CEPH_OSD_MAX_OPS)) {
1054 redirty_page_for_writepage(wbc, page);
1060 offset = (u64)page_offset(page);
1064 /* note position of first page in fbatch */
1065 dout("%p will write page %p idx %lu\n",
1066 inode, page, page->index);
1068 if (atomic_long_inc_return(&fsc->writeback_count) >
1069 CONGESTION_ON_THRESH(
1070 fsc->mount_options->congestion_kb))
1071 fsc->write_congested = true;
1073 pages[locked_pages++] = page;
1074 fbatch.folios[i] = NULL;
1076 len += thp_size(page);
1079 /* did we get anything? */
1081 goto release_folios;
1084 /* shift unused page to beginning of fbatch */
1085 for (j = 0; j < nr_folios; j++) {
1086 if (!fbatch.folios[j])
1089 fbatch.folios[n] = fbatch.folios[j];
1094 if (nr_folios && i == nr_folios &&
1095 locked_pages < max_pages) {
1096 dout("reached end fbatch, trying for more\n");
1097 folio_batch_release(&fbatch);
1098 goto get_more_pages;
1103 offset = page_offset(pages[0]);
1106 req = ceph_osdc_new_request(&fsc->client->osdc,
1107 &ci->i_layout, vino,
1108 offset, &len, 0, num_ops,
1109 CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
1110 snapc, ceph_wbc.truncate_seq,
1111 ceph_wbc.truncate_size, false);
1113 req = ceph_osdc_new_request(&fsc->client->osdc,
1114 &ci->i_layout, vino,
1119 CEPH_OSD_FLAG_WRITE,
1120 snapc, ceph_wbc.truncate_seq,
1121 ceph_wbc.truncate_size, true);
1122 BUG_ON(IS_ERR(req));
1124 BUG_ON(len < page_offset(pages[locked_pages - 1]) +
1125 thp_size(page) - offset);
1127 req->r_callback = writepages_finish;
1128 req->r_inode = inode;
1130 /* Format the osd request message and submit the write */
1134 for (i = 0; i < locked_pages; i++) {
1135 u64 cur_offset = page_offset(pages[i]);
1137 * Discontinuity in page range? Ceph can handle that by just passing
1138 * multiple extents in the write op.
1140 if (offset + len != cur_offset) {
1141 /* If it's full, stop here */
1142 if (op_idx + 1 == req->r_num_ops)
1145 /* Kick off an fscache write with what we have so far. */
1146 ceph_fscache_write_to_cache(inode, offset, len, caching);
1148 /* Start a new extent */
1149 osd_req_op_extent_dup_last(req, op_idx,
1150 cur_offset - offset);
1151 dout("writepages got pages at %llu~%llu\n",
1153 osd_req_op_extent_osd_data_pages(req, op_idx,
1156 osd_req_op_extent_update(req, op_idx, len);
1159 offset = cur_offset;
1160 data_pages = pages + i;
1164 set_page_writeback(pages[i]);
1166 ceph_set_page_fscache(pages[i]);
1167 len += thp_size(page);
1169 ceph_fscache_write_to_cache(inode, offset, len, caching);
1171 if (ceph_wbc.size_stable) {
1172 len = min(len, ceph_wbc.i_size - offset);
1173 } else if (i == locked_pages) {
1174 /* writepages_finish() clears writeback pages
1175 * according to the data length, so make sure
1176 * data length covers all locked pages */
1177 u64 min_len = len + 1 - thp_size(page);
1178 len = get_writepages_data_length(inode, pages[i - 1],
1180 len = max(len, min_len);
1182 dout("writepages got pages at %llu~%llu\n", offset, len);
1184 osd_req_op_extent_osd_data_pages(req, op_idx, data_pages, len,
1185 0, from_pool, false);
1186 osd_req_op_extent_update(req, op_idx, len);
1188 BUG_ON(op_idx + 1 != req->r_num_ops);
1191 if (i < locked_pages) {
1192 BUG_ON(num_ops <= req->r_num_ops);
1193 num_ops -= req->r_num_ops;
1196 /* allocate new pages array for next request */
1198 pages = kmalloc_array(locked_pages, sizeof(*pages),
1202 pages = mempool_alloc(ceph_wb_pagevec_pool, GFP_NOFS);
1205 memcpy(pages, data_pages + i,
1206 locked_pages * sizeof(*pages));
1207 memset(data_pages + i, 0,
1208 locked_pages * sizeof(*pages));
1210 BUG_ON(num_ops != req->r_num_ops);
1211 index = pages[i - 1]->index + 1;
1212 /* request message now owns the pages array */
1216 req->r_mtime = inode->i_mtime;
1217 ceph_osdc_start_request(&fsc->client->osdc, req);
1220 wbc->nr_to_write -= i;
1225 * We stop writing back only if we are not doing
1226 * integrity sync. In case of integrity sync we have to
1227 * keep going until we have written all the pages
1228 * we tagged for writeback prior to entering this loop.
1230 if (wbc->nr_to_write <= 0 && wbc->sync_mode == WB_SYNC_NONE)
1234 dout("folio_batch release on %d folios (%p)\n", (int)fbatch.nr,
1235 fbatch.nr ? fbatch.folios[0] : NULL);
1236 folio_batch_release(&fbatch);
1239 if (should_loop && !done) {
1240 /* more to do; loop back to beginning of file */
1241 dout("writepages looping back to beginning of file\n");
1242 end = start_index - 1; /* OK even when start_index == 0 */
1244 /* to write dirty pages associated with next snapc,
1245 * we need to wait until current writes complete */
1246 if (wbc->sync_mode != WB_SYNC_NONE &&
1247 start_index == 0 && /* all dirty pages were checked */
1248 !ceph_wbc.head_snapc) {
1252 while ((index <= end) &&
1253 (nr = filemap_get_folios_tag(mapping, &index,
1255 PAGECACHE_TAG_WRITEBACK,
1257 for (i = 0; i < nr; i++) {
1258 page = &fbatch.folios[i]->page;
1259 if (page_snap_context(page) != snapc)
1261 wait_on_page_writeback(page);
1263 folio_batch_release(&fbatch);
1273 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
1274 mapping->writeback_index = index;
1277 ceph_osdc_put_request(req);
1278 ceph_put_snap_context(last_snapc);
1279 dout("writepages dend - startone, rc = %d\n", rc);
1286 * See if a given @snapc is either writeable, or already written.
1288 static int context_is_writeable_or_written(struct inode *inode,
1289 struct ceph_snap_context *snapc)
1291 struct ceph_snap_context *oldest = get_oldest_context(inode, NULL, NULL);
1292 int ret = !oldest || snapc->seq <= oldest->seq;
1294 ceph_put_snap_context(oldest);
1299 * ceph_find_incompatible - find an incompatible context and return it
1300 * @page: page being dirtied
1302 * We are only allowed to write into/dirty a page if the page is
1303 * clean, or already dirty within the same snap context. Returns a
1304 * conflicting context if there is one, NULL if there isn't, or a
1305 * negative error code on other errors.
1307 * Must be called with page lock held.
1309 static struct ceph_snap_context *
1310 ceph_find_incompatible(struct page *page)
1312 struct inode *inode = page->mapping->host;
1313 struct ceph_inode_info *ci = ceph_inode(inode);
1315 if (ceph_inode_is_shutdown(inode)) {
1316 dout(" page %p %llx:%llx is shutdown\n", page,
1318 return ERR_PTR(-ESTALE);
1322 struct ceph_snap_context *snapc, *oldest;
1324 wait_on_page_writeback(page);
1326 snapc = page_snap_context(page);
1327 if (!snapc || snapc == ci->i_head_snapc)
1331 * this page is already dirty in another (older) snap
1332 * context! is it writeable now?
1334 oldest = get_oldest_context(inode, NULL, NULL);
1335 if (snapc->seq > oldest->seq) {
1336 /* not writeable -- return it for the caller to deal with */
1337 ceph_put_snap_context(oldest);
1338 dout(" page %p snapc %p not current or oldest\n", page, snapc);
1339 return ceph_get_snap_context(snapc);
1341 ceph_put_snap_context(oldest);
1343 /* yay, writeable, do it now (without dropping page lock) */
1344 dout(" page %p snapc %p not current, but oldest\n", page, snapc);
1345 if (clear_page_dirty_for_io(page)) {
1346 int r = writepage_nounlock(page, NULL);
1354 static int ceph_netfs_check_write_begin(struct file *file, loff_t pos, unsigned int len,
1355 struct folio **foliop, void **_fsdata)
1357 struct inode *inode = file_inode(file);
1358 struct ceph_inode_info *ci = ceph_inode(inode);
1359 struct ceph_snap_context *snapc;
1361 snapc = ceph_find_incompatible(folio_page(*foliop, 0));
1365 folio_unlock(*foliop);
1369 return PTR_ERR(snapc);
1371 ceph_queue_writeback(inode);
1372 r = wait_event_killable(ci->i_cap_wq,
1373 context_is_writeable_or_written(inode, snapc));
1374 ceph_put_snap_context(snapc);
1375 return r == 0 ? -EAGAIN : r;
1381 * We are only allowed to write into/dirty the page if the page is
1382 * clean, or already dirty within the same snap context.
1384 static int ceph_write_begin(struct file *file, struct address_space *mapping,
1385 loff_t pos, unsigned len,
1386 struct page **pagep, void **fsdata)
1388 struct inode *inode = file_inode(file);
1389 struct ceph_inode_info *ci = ceph_inode(inode);
1390 struct folio *folio = NULL;
1393 r = netfs_write_begin(&ci->netfs, file, inode->i_mapping, pos, len, &folio, NULL);
1397 folio_wait_fscache(folio);
1398 WARN_ON_ONCE(!folio_test_locked(folio));
1399 *pagep = &folio->page;
1404 * we don't do anything in here that simple_write_end doesn't do
1405 * except adjust dirty page accounting
1407 static int ceph_write_end(struct file *file, struct address_space *mapping,
1408 loff_t pos, unsigned len, unsigned copied,
1409 struct page *subpage, void *fsdata)
1411 struct folio *folio = page_folio(subpage);
1412 struct inode *inode = file_inode(file);
1413 bool check_cap = false;
1415 dout("write_end file %p inode %p folio %p %d~%d (%d)\n", file,
1416 inode, folio, (int)pos, (int)copied, (int)len);
1418 if (!folio_test_uptodate(folio)) {
1419 /* just return that nothing was copied on a short copy */
1424 folio_mark_uptodate(folio);
1427 /* did file size increase? */
1428 if (pos+copied > i_size_read(inode))
1429 check_cap = ceph_inode_set_size(inode, pos+copied);
1431 folio_mark_dirty(folio);
1434 folio_unlock(folio);
1438 ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY);
1443 const struct address_space_operations ceph_aops = {
1444 .read_folio = netfs_read_folio,
1445 .readahead = netfs_readahead,
1446 .writepage = ceph_writepage,
1447 .writepages = ceph_writepages_start,
1448 .write_begin = ceph_write_begin,
1449 .write_end = ceph_write_end,
1450 .dirty_folio = ceph_dirty_folio,
1451 .invalidate_folio = ceph_invalidate_folio,
1452 .release_folio = ceph_release_folio,
1453 .direct_IO = noop_direct_IO,
1456 static void ceph_block_sigs(sigset_t *oldset)
1459 siginitsetinv(&mask, sigmask(SIGKILL));
1460 sigprocmask(SIG_BLOCK, &mask, oldset);
1463 static void ceph_restore_sigs(sigset_t *oldset)
1465 sigprocmask(SIG_SETMASK, oldset, NULL);
1471 static vm_fault_t ceph_filemap_fault(struct vm_fault *vmf)
1473 struct vm_area_struct *vma = vmf->vma;
1474 struct inode *inode = file_inode(vma->vm_file);
1475 struct ceph_inode_info *ci = ceph_inode(inode);
1476 struct ceph_file_info *fi = vma->vm_file->private_data;
1477 loff_t off = (loff_t)vmf->pgoff << PAGE_SHIFT;
1480 vm_fault_t ret = VM_FAULT_SIGBUS;
1482 if (ceph_inode_is_shutdown(inode))
1485 ceph_block_sigs(&oldset);
1487 dout("filemap_fault %p %llx.%llx %llu trying to get caps\n",
1488 inode, ceph_vinop(inode), off);
1489 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1490 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1492 want = CEPH_CAP_FILE_CACHE;
1495 err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_RD, want, -1, &got);
1499 dout("filemap_fault %p %llu got cap refs on %s\n",
1500 inode, off, ceph_cap_string(got));
1502 if ((got & (CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO)) ||
1503 !ceph_has_inline_data(ci)) {
1504 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
1505 ceph_add_rw_context(fi, &rw_ctx);
1506 ret = filemap_fault(vmf);
1507 ceph_del_rw_context(fi, &rw_ctx);
1508 dout("filemap_fault %p %llu drop cap refs %s ret %x\n",
1509 inode, off, ceph_cap_string(got), ret);
1513 ceph_put_cap_refs(ci, got);
1518 /* read inline data */
1519 if (off >= PAGE_SIZE) {
1520 /* does not support inline data > PAGE_SIZE */
1521 ret = VM_FAULT_SIGBUS;
1523 struct address_space *mapping = inode->i_mapping;
1526 filemap_invalidate_lock_shared(mapping);
1527 page = find_or_create_page(mapping, 0,
1528 mapping_gfp_constraint(mapping, ~__GFP_FS));
1533 err = __ceph_do_getattr(inode, page,
1534 CEPH_STAT_CAP_INLINE_DATA, true);
1535 if (err < 0 || off >= i_size_read(inode)) {
1538 ret = vmf_error(err);
1541 if (err < PAGE_SIZE)
1542 zero_user_segment(page, err, PAGE_SIZE);
1544 flush_dcache_page(page);
1545 SetPageUptodate(page);
1547 ret = VM_FAULT_MAJOR | VM_FAULT_LOCKED;
1549 filemap_invalidate_unlock_shared(mapping);
1550 dout("filemap_fault %p %llu read inline data ret %x\n",
1554 ceph_restore_sigs(&oldset);
1556 ret = vmf_error(err);
1561 static vm_fault_t ceph_page_mkwrite(struct vm_fault *vmf)
1563 struct vm_area_struct *vma = vmf->vma;
1564 struct inode *inode = file_inode(vma->vm_file);
1565 struct ceph_inode_info *ci = ceph_inode(inode);
1566 struct ceph_file_info *fi = vma->vm_file->private_data;
1567 struct ceph_cap_flush *prealloc_cf;
1568 struct page *page = vmf->page;
1569 loff_t off = page_offset(page);
1570 loff_t size = i_size_read(inode);
1574 vm_fault_t ret = VM_FAULT_SIGBUS;
1576 if (ceph_inode_is_shutdown(inode))
1579 prealloc_cf = ceph_alloc_cap_flush();
1581 return VM_FAULT_OOM;
1583 sb_start_pagefault(inode->i_sb);
1584 ceph_block_sigs(&oldset);
1586 if (off + thp_size(page) <= size)
1587 len = thp_size(page);
1589 len = offset_in_thp(page, size);
1591 dout("page_mkwrite %p %llx.%llx %llu~%zd getting caps i_size %llu\n",
1592 inode, ceph_vinop(inode), off, len, size);
1593 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1594 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1596 want = CEPH_CAP_FILE_BUFFER;
1599 err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_WR, want, off + len, &got);
1603 dout("page_mkwrite %p %llu~%zd got cap refs on %s\n",
1604 inode, off, len, ceph_cap_string(got));
1606 /* Update time before taking page lock */
1607 file_update_time(vma->vm_file);
1608 inode_inc_iversion_raw(inode);
1611 struct ceph_snap_context *snapc;
1615 if (page_mkwrite_check_truncate(page, inode) < 0) {
1617 ret = VM_FAULT_NOPAGE;
1621 snapc = ceph_find_incompatible(page);
1623 /* success. we'll keep the page locked. */
1624 set_page_dirty(page);
1625 ret = VM_FAULT_LOCKED;
1631 if (IS_ERR(snapc)) {
1632 ret = VM_FAULT_SIGBUS;
1636 ceph_queue_writeback(inode);
1637 err = wait_event_killable(ci->i_cap_wq,
1638 context_is_writeable_or_written(inode, snapc));
1639 ceph_put_snap_context(snapc);
1642 if (ret == VM_FAULT_LOCKED) {
1644 spin_lock(&ci->i_ceph_lock);
1645 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1647 spin_unlock(&ci->i_ceph_lock);
1649 __mark_inode_dirty(inode, dirty);
1652 dout("page_mkwrite %p %llu~%zd dropping cap refs on %s ret %x\n",
1653 inode, off, len, ceph_cap_string(got), ret);
1654 ceph_put_cap_refs_async(ci, got);
1656 ceph_restore_sigs(&oldset);
1657 sb_end_pagefault(inode->i_sb);
1658 ceph_free_cap_flush(prealloc_cf);
1660 ret = vmf_error(err);
1664 void ceph_fill_inline_data(struct inode *inode, struct page *locked_page,
1665 char *data, size_t len)
1667 struct address_space *mapping = inode->i_mapping;
1673 if (i_size_read(inode) == 0)
1675 page = find_or_create_page(mapping, 0,
1676 mapping_gfp_constraint(mapping,
1680 if (PageUptodate(page)) {
1687 dout("fill_inline_data %p %llx.%llx len %zu locked_page %p\n",
1688 inode, ceph_vinop(inode), len, locked_page);
1691 void *kaddr = kmap_atomic(page);
1692 memcpy(kaddr, data, len);
1693 kunmap_atomic(kaddr);
1696 if (page != locked_page) {
1697 if (len < PAGE_SIZE)
1698 zero_user_segment(page, len, PAGE_SIZE);
1700 flush_dcache_page(page);
1702 SetPageUptodate(page);
1708 int ceph_uninline_data(struct file *file)
1710 struct inode *inode = file_inode(file);
1711 struct ceph_inode_info *ci = ceph_inode(inode);
1712 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1713 struct ceph_osd_request *req = NULL;
1714 struct ceph_cap_flush *prealloc_cf = NULL;
1715 struct folio *folio = NULL;
1716 u64 inline_version = CEPH_INLINE_NONE;
1717 struct page *pages[1];
1721 spin_lock(&ci->i_ceph_lock);
1722 inline_version = ci->i_inline_version;
1723 spin_unlock(&ci->i_ceph_lock);
1725 dout("uninline_data %p %llx.%llx inline_version %llu\n",
1726 inode, ceph_vinop(inode), inline_version);
1728 if (ceph_inode_is_shutdown(inode)) {
1733 if (inline_version == CEPH_INLINE_NONE)
1736 prealloc_cf = ceph_alloc_cap_flush();
1740 if (inline_version == 1) /* initial version, no data */
1743 folio = read_mapping_folio(inode->i_mapping, 0, file);
1744 if (IS_ERR(folio)) {
1745 err = PTR_ERR(folio);
1751 len = i_size_read(inode);
1752 if (len > folio_size(folio))
1753 len = folio_size(folio);
1755 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1756 ceph_vino(inode), 0, &len, 0, 1,
1757 CEPH_OSD_OP_CREATE, CEPH_OSD_FLAG_WRITE,
1764 req->r_mtime = inode->i_mtime;
1765 ceph_osdc_start_request(&fsc->client->osdc, req);
1766 err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1767 ceph_osdc_put_request(req);
1771 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1772 ceph_vino(inode), 0, &len, 1, 3,
1773 CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
1774 NULL, ci->i_truncate_seq,
1775 ci->i_truncate_size, false);
1781 pages[0] = folio_page(folio, 0);
1782 osd_req_op_extent_osd_data_pages(req, 1, pages, len, 0, false, false);
1785 __le64 xattr_buf = cpu_to_le64(inline_version);
1786 err = osd_req_op_xattr_init(req, 0, CEPH_OSD_OP_CMPXATTR,
1787 "inline_version", &xattr_buf,
1789 CEPH_OSD_CMPXATTR_OP_GT,
1790 CEPH_OSD_CMPXATTR_MODE_U64);
1797 int xattr_len = snprintf(xattr_buf, sizeof(xattr_buf),
1798 "%llu", inline_version);
1799 err = osd_req_op_xattr_init(req, 2, CEPH_OSD_OP_SETXATTR,
1801 xattr_buf, xattr_len, 0, 0);
1806 req->r_mtime = inode->i_mtime;
1807 ceph_osdc_start_request(&fsc->client->osdc, req);
1808 err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1810 ceph_update_write_metrics(&fsc->mdsc->metric, req->r_start_latency,
1811 req->r_end_latency, len, err);
1817 /* Set to CAP_INLINE_NONE and dirty the caps */
1818 down_read(&fsc->mdsc->snap_rwsem);
1819 spin_lock(&ci->i_ceph_lock);
1820 ci->i_inline_version = CEPH_INLINE_NONE;
1821 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR, &prealloc_cf);
1822 spin_unlock(&ci->i_ceph_lock);
1823 up_read(&fsc->mdsc->snap_rwsem);
1825 __mark_inode_dirty(inode, dirty);
1828 ceph_osdc_put_request(req);
1829 if (err == -ECANCELED)
1833 folio_unlock(folio);
1837 ceph_free_cap_flush(prealloc_cf);
1838 dout("uninline_data %p %llx.%llx inline_version %llu = %d\n",
1839 inode, ceph_vinop(inode), inline_version, err);
1843 static const struct vm_operations_struct ceph_vmops = {
1844 .fault = ceph_filemap_fault,
1845 .page_mkwrite = ceph_page_mkwrite,
1848 int ceph_mmap(struct file *file, struct vm_area_struct *vma)
1850 struct address_space *mapping = file->f_mapping;
1852 if (!mapping->a_ops->read_folio)
1854 vma->vm_ops = &ceph_vmops;
1863 static int __ceph_pool_perm_get(struct ceph_inode_info *ci,
1864 s64 pool, struct ceph_string *pool_ns)
1866 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->netfs.inode);
1867 struct ceph_mds_client *mdsc = fsc->mdsc;
1868 struct ceph_osd_request *rd_req = NULL, *wr_req = NULL;
1869 struct rb_node **p, *parent;
1870 struct ceph_pool_perm *perm;
1871 struct page **pages;
1873 int err = 0, err2 = 0, have = 0;
1875 down_read(&mdsc->pool_perm_rwsem);
1876 p = &mdsc->pool_perm_tree.rb_node;
1878 perm = rb_entry(*p, struct ceph_pool_perm, node);
1879 if (pool < perm->pool)
1881 else if (pool > perm->pool)
1882 p = &(*p)->rb_right;
1884 int ret = ceph_compare_string(pool_ns,
1890 p = &(*p)->rb_right;
1897 up_read(&mdsc->pool_perm_rwsem);
1902 dout("__ceph_pool_perm_get pool %lld ns %.*s no perm cached\n",
1903 pool, (int)pool_ns->len, pool_ns->str);
1905 dout("__ceph_pool_perm_get pool %lld no perm cached\n", pool);
1907 down_write(&mdsc->pool_perm_rwsem);
1908 p = &mdsc->pool_perm_tree.rb_node;
1912 perm = rb_entry(parent, struct ceph_pool_perm, node);
1913 if (pool < perm->pool)
1915 else if (pool > perm->pool)
1916 p = &(*p)->rb_right;
1918 int ret = ceph_compare_string(pool_ns,
1924 p = &(*p)->rb_right;
1932 up_write(&mdsc->pool_perm_rwsem);
1936 rd_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
1937 1, false, GFP_NOFS);
1943 rd_req->r_flags = CEPH_OSD_FLAG_READ;
1944 osd_req_op_init(rd_req, 0, CEPH_OSD_OP_STAT, 0);
1945 rd_req->r_base_oloc.pool = pool;
1947 rd_req->r_base_oloc.pool_ns = ceph_get_string(pool_ns);
1948 ceph_oid_printf(&rd_req->r_base_oid, "%llx.00000000", ci->i_vino.ino);
1950 err = ceph_osdc_alloc_messages(rd_req, GFP_NOFS);
1954 wr_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
1955 1, false, GFP_NOFS);
1961 wr_req->r_flags = CEPH_OSD_FLAG_WRITE;
1962 osd_req_op_init(wr_req, 0, CEPH_OSD_OP_CREATE, CEPH_OSD_OP_FLAG_EXCL);
1963 ceph_oloc_copy(&wr_req->r_base_oloc, &rd_req->r_base_oloc);
1964 ceph_oid_copy(&wr_req->r_base_oid, &rd_req->r_base_oid);
1966 err = ceph_osdc_alloc_messages(wr_req, GFP_NOFS);
1970 /* one page should be large enough for STAT data */
1971 pages = ceph_alloc_page_vector(1, GFP_KERNEL);
1972 if (IS_ERR(pages)) {
1973 err = PTR_ERR(pages);
1977 osd_req_op_raw_data_in_pages(rd_req, 0, pages, PAGE_SIZE,
1979 ceph_osdc_start_request(&fsc->client->osdc, rd_req);
1981 wr_req->r_mtime = ci->netfs.inode.i_mtime;
1982 ceph_osdc_start_request(&fsc->client->osdc, wr_req);
1984 err = ceph_osdc_wait_request(&fsc->client->osdc, rd_req);
1985 err2 = ceph_osdc_wait_request(&fsc->client->osdc, wr_req);
1987 if (err >= 0 || err == -ENOENT)
1989 else if (err != -EPERM) {
1990 if (err == -EBLOCKLISTED)
1991 fsc->blocklisted = true;
1995 if (err2 == 0 || err2 == -EEXIST)
1997 else if (err2 != -EPERM) {
1998 if (err2 == -EBLOCKLISTED)
1999 fsc->blocklisted = true;
2004 pool_ns_len = pool_ns ? pool_ns->len : 0;
2005 perm = kmalloc(sizeof(*perm) + pool_ns_len + 1, GFP_NOFS);
2013 perm->pool_ns_len = pool_ns_len;
2014 if (pool_ns_len > 0)
2015 memcpy(perm->pool_ns, pool_ns->str, pool_ns_len);
2016 perm->pool_ns[pool_ns_len] = 0;
2018 rb_link_node(&perm->node, parent, p);
2019 rb_insert_color(&perm->node, &mdsc->pool_perm_tree);
2022 up_write(&mdsc->pool_perm_rwsem);
2024 ceph_osdc_put_request(rd_req);
2025 ceph_osdc_put_request(wr_req);
2030 dout("__ceph_pool_perm_get pool %lld ns %.*s result = %d\n",
2031 pool, (int)pool_ns->len, pool_ns->str, err);
2033 dout("__ceph_pool_perm_get pool %lld result = %d\n", pool, err);
2037 int ceph_pool_perm_check(struct inode *inode, int need)
2039 struct ceph_inode_info *ci = ceph_inode(inode);
2040 struct ceph_string *pool_ns;
2044 /* Only need to do this for regular files */
2045 if (!S_ISREG(inode->i_mode))
2048 if (ci->i_vino.snap != CEPH_NOSNAP) {
2050 * Pool permission check needs to write to the first object.
2051 * But for snapshot, head of the first object may have alread
2052 * been deleted. Skip check to avoid creating orphan object.
2057 if (ceph_test_mount_opt(ceph_inode_to_client(inode),
2061 spin_lock(&ci->i_ceph_lock);
2062 flags = ci->i_ceph_flags;
2063 pool = ci->i_layout.pool_id;
2064 spin_unlock(&ci->i_ceph_lock);
2066 if (flags & CEPH_I_POOL_PERM) {
2067 if ((need & CEPH_CAP_FILE_RD) && !(flags & CEPH_I_POOL_RD)) {
2068 dout("ceph_pool_perm_check pool %lld no read perm\n",
2072 if ((need & CEPH_CAP_FILE_WR) && !(flags & CEPH_I_POOL_WR)) {
2073 dout("ceph_pool_perm_check pool %lld no write perm\n",
2080 pool_ns = ceph_try_get_string(ci->i_layout.pool_ns);
2081 ret = __ceph_pool_perm_get(ci, pool, pool_ns);
2082 ceph_put_string(pool_ns);
2086 flags = CEPH_I_POOL_PERM;
2087 if (ret & POOL_READ)
2088 flags |= CEPH_I_POOL_RD;
2089 if (ret & POOL_WRITE)
2090 flags |= CEPH_I_POOL_WR;
2092 spin_lock(&ci->i_ceph_lock);
2093 if (pool == ci->i_layout.pool_id &&
2094 pool_ns == rcu_dereference_raw(ci->i_layout.pool_ns)) {
2095 ci->i_ceph_flags |= flags;
2097 pool = ci->i_layout.pool_id;
2098 flags = ci->i_ceph_flags;
2100 spin_unlock(&ci->i_ceph_lock);
2104 void ceph_pool_perm_destroy(struct ceph_mds_client *mdsc)
2106 struct ceph_pool_perm *perm;
2109 while (!RB_EMPTY_ROOT(&mdsc->pool_perm_tree)) {
2110 n = rb_first(&mdsc->pool_perm_tree);
2111 perm = rb_entry(n, struct ceph_pool_perm, node);
2112 rb_erase(n, &mdsc->pool_perm_tree);