blob: 7ab6166011418b6deaedb35a927ee34af3d47a1a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Sage Weil1d3576f2009-10-06 11:31:09 -07003
4#include <linux/backing-dev.h>
5#include <linux/fs.h>
6#include <linux/mm.h>
7#include <linux/pagemap.h>
8#include <linux/writeback.h> /* generic_writepages */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Sage Weil1d3576f2009-10-06 11:31:09 -070010#include <linux/pagevec.h>
11#include <linux/task_io_accounting_ops.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010012#include <linux/signal.h>
Jeff Layton5c308352019-06-06 08:57:27 -040013#include <linux/iversion.h>
Sage Weil1d3576f2009-10-06 11:31:09 -070014
15#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070016#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040017#include "cache.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070018#include <linux/ceph/osd_client.h>
Ilya Dryomov08c1ac52018-02-17 10:41:20 +010019#include <linux/ceph/striper.h>
Sage Weil1d3576f2009-10-06 11:31:09 -070020
21/*
22 * Ceph address space ops.
23 *
24 * There are a few funny things going on here.
25 *
26 * The page->private field is used to reference a struct
27 * ceph_snap_context for _every_ dirty page. This indicates which
28 * snapshot the page was logically dirtied in, and thus which snap
29 * context needs to be associated with the osd write during writeback.
30 *
31 * Similarly, struct ceph_inode_info maintains a set of counters to
Lucas De Marchi25985ed2011-03-30 22:57:33 -030032 * count dirty pages on the inode. In the absence of snapshots,
Sage Weil1d3576f2009-10-06 11:31:09 -070033 * i_wrbuffer_ref == i_wrbuffer_ref_head == the dirty page count.
34 *
35 * When a snapshot is taken (that is, when the client receives
36 * notification that a snapshot was taken), each inode with caps and
37 * with dirty pages (dirty pages implies there is a cap) gets a new
38 * ceph_cap_snap in the i_cap_snaps list (which is sorted in ascending
39 * order, new snaps go to the tail). The i_wrbuffer_ref_head count is
40 * moved to capsnap->dirty. (Unless a sync write is currently in
41 * progress. In that case, the capsnap is said to be "pending", new
42 * writes cannot start, and the capsnap isn't "finalized" until the
43 * write completes (or fails) and a final size/mtime for the inode for
44 * that snap can be settled upon.) i_wrbuffer_ref_head is reset to 0.
45 *
46 * On writeback, we must submit writes to the osd IN SNAP ORDER. So,
47 * we look for the first capsnap in i_cap_snaps and write out pages in
48 * that snap context _only_. Then we move on to the next capsnap,
49 * eventually reaching the "live" or "head" context (i.e., pages that
50 * are not yet snapped) and are writing the most recently dirtied
51 * pages.
52 *
53 * Invalidate and so forth must take care to ensure the dirty page
54 * accounting is preserved.
55 */
56
Yehuda Sadeh2baba252009-12-18 13:51:57 -080057#define CONGESTION_ON_THRESH(congestion_kb) (congestion_kb >> (PAGE_SHIFT-10))
58#define CONGESTION_OFF_THRESH(congestion_kb) \
59 (CONGESTION_ON_THRESH(congestion_kb) - \
60 (CONGESTION_ON_THRESH(congestion_kb) >> 2))
61
Yan, Zheng61600ef2012-05-28 14:44:30 +080062static inline struct ceph_snap_context *page_snap_context(struct page *page)
63{
64 if (PagePrivate(page))
65 return (void *)page->private;
66 return NULL;
67}
Sage Weil1d3576f2009-10-06 11:31:09 -070068
69/*
70 * Dirty a page. Optimistically adjust accounting, on the assumption
71 * that we won't race with invalidate. If we do, readjust.
72 */
73static int ceph_set_page_dirty(struct page *page)
74{
75 struct address_space *mapping = page->mapping;
76 struct inode *inode;
77 struct ceph_inode_info *ci;
Sage Weil1d3576f2009-10-06 11:31:09 -070078 struct ceph_snap_context *snapc;
Sha Zhengju7d6e1f52013-08-21 16:27:34 +080079 int ret;
Sage Weil1d3576f2009-10-06 11:31:09 -070080
81 if (unlikely(!mapping))
82 return !TestSetPageDirty(page);
83
Sha Zhengju7d6e1f52013-08-21 16:27:34 +080084 if (PageDirty(page)) {
Sage Weil1d3576f2009-10-06 11:31:09 -070085 dout("%p set_page_dirty %p idx %lu -- already dirty\n",
86 mapping->host, page, page->index);
Sha Zhengju7d6e1f52013-08-21 16:27:34 +080087 BUG_ON(!PagePrivate(page));
Sage Weil1d3576f2009-10-06 11:31:09 -070088 return 0;
89 }
90
91 inode = mapping->host;
92 ci = ceph_inode(inode);
93
Sage Weil1d3576f2009-10-06 11:31:09 -070094 /* dirty the head */
Sage Weilbe655592011-11-30 09:47:09 -080095 spin_lock(&ci->i_ceph_lock);
Yan, Zheng5dda377c2015-04-30 14:40:54 +080096 BUG_ON(ci->i_wr_ref == 0); // caller should hold Fw reference
97 if (__ceph_have_pending_cap_snap(ci)) {
98 struct ceph_cap_snap *capsnap =
99 list_last_entry(&ci->i_cap_snaps,
100 struct ceph_cap_snap,
101 ci_item);
102 snapc = ceph_get_snap_context(capsnap->context);
103 capsnap->dirty_pages++;
104 } else {
105 BUG_ON(!ci->i_head_snapc);
106 snapc = ceph_get_snap_context(ci->i_head_snapc);
107 ++ci->i_wrbuffer_ref_head;
108 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700109 if (ci->i_wrbuffer_ref == 0)
Dave Chinner0444d762011-03-29 18:08:50 +1100110 ihold(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -0700111 ++ci->i_wrbuffer_ref;
112 dout("%p set_page_dirty %p idx %lu head %d/%d -> %d/%d "
113 "snapc %p seq %lld (%d snaps)\n",
114 mapping->host, page, page->index,
115 ci->i_wrbuffer_ref-1, ci->i_wrbuffer_ref_head-1,
116 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
117 snapc, snapc->seq, snapc->num_snaps);
Sage Weilbe655592011-11-30 09:47:09 -0800118 spin_unlock(&ci->i_ceph_lock);
Sage Weil1d3576f2009-10-06 11:31:09 -0700119
Sha Zhengju7d6e1f52013-08-21 16:27:34 +0800120 /*
121 * Reference snap context in page->private. Also set
122 * PagePrivate so that we get invalidatepage callback.
123 */
124 BUG_ON(PagePrivate(page));
125 page->private = (unsigned long)snapc;
126 SetPagePrivate(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700127
Sha Zhengju7d6e1f52013-08-21 16:27:34 +0800128 ret = __set_page_dirty_nobuffers(page);
129 WARN_ON(!PageLocked(page));
130 WARN_ON(!page->mapping);
Sage Weil1d3576f2009-10-06 11:31:09 -0700131
Sha Zhengju7d6e1f52013-08-21 16:27:34 +0800132 return ret;
Sage Weil1d3576f2009-10-06 11:31:09 -0700133}
134
135/*
136 * If we are truncating the full page (i.e. offset == 0), adjust the
137 * dirty page counters appropriately. Only called if there is private
138 * data on the page.
139 */
Lukas Czernerd47992f2013-05-21 23:17:23 -0400140static void ceph_invalidatepage(struct page *page, unsigned int offset,
141 unsigned int length)
Sage Weil1d3576f2009-10-06 11:31:09 -0700142{
Alexander Beregalov4ce1e9a2010-02-22 17:17:44 +0300143 struct inode *inode;
Sage Weil1d3576f2009-10-06 11:31:09 -0700144 struct ceph_inode_info *ci;
Yan, Zheng61600ef2012-05-28 14:44:30 +0800145 struct ceph_snap_context *snapc = page_snap_context(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700146
Alexander Beregalov4ce1e9a2010-02-22 17:17:44 +0300147 inode = page->mapping->host;
Milosz Tanskib150f5c12013-08-09 12:59:55 -0400148 ci = ceph_inode(inode);
149
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300150 if (offset != 0 || length != PAGE_SIZE) {
Milosz Tanskib150f5c12013-08-09 12:59:55 -0400151 dout("%p invalidatepage %p idx %lu partial dirty page %u~%u\n",
152 inode, page, page->index, offset, length);
153 return;
154 }
Alexander Beregalov4ce1e9a2010-02-22 17:17:44 +0300155
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400156 ceph_invalidate_fscache_page(inode, page);
157
Yan, Zhengb072d772017-08-30 11:27:29 +0800158 WARN_ON(!PageLocked(page));
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400159 if (!PagePrivate(page))
160 return;
161
Milosz Tanskib150f5c12013-08-09 12:59:55 -0400162 ClearPageChecked(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700163
Milosz Tanskib150f5c12013-08-09 12:59:55 -0400164 dout("%p invalidatepage %p idx %lu full dirty page\n",
165 inode, page, page->index);
166
167 ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
168 ceph_put_snap_context(snapc);
169 page->private = 0;
170 ClearPagePrivate(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700171}
172
Sage Weil1d3576f2009-10-06 11:31:09 -0700173static int ceph_releasepage(struct page *page, gfp_t g)
174{
NeilBrowne55f1a12016-08-31 12:59:29 +1000175 dout("%p releasepage %p idx %lu (%sdirty)\n", page->mapping->host,
176 page, page->index, PageDirty(page) ? "" : "not ");
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400177
178 /* Can we release the page from the cache? */
179 if (!ceph_release_fscache_page(page, g))
180 return 0;
181
182 return !PagePrivate(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700183}
184
185/*
186 * read a single page, without unlocking it.
187 */
Yan, Zhengdd2bc472017-08-04 11:22:31 +0800188static int ceph_do_readpage(struct file *filp, struct page *page)
Sage Weil1d3576f2009-10-06 11:31:09 -0700189{
Al Viro496ad9a2013-01-23 17:07:38 -0500190 struct inode *inode = file_inode(filp);
Sage Weil1d3576f2009-10-06 11:31:09 -0700191 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800192 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -0700193 int err = 0;
Yan, Zheng83701242014-11-14 22:36:18 +0800194 u64 off = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300195 u64 len = PAGE_SIZE;
Sage Weil1d3576f2009-10-06 11:31:09 -0700196
Yan, Zheng83701242014-11-14 22:36:18 +0800197 if (off >= i_size_read(inode)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300198 zero_user_segment(page, 0, PAGE_SIZE);
Yan, Zheng83701242014-11-14 22:36:18 +0800199 SetPageUptodate(page);
200 return 0;
201 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400202
Yan, Zhengfcc02d22015-01-10 11:43:12 +0800203 if (ci->i_inline_version != CEPH_INLINE_NONE) {
204 /*
205 * Uptodate inline data should have been added
206 * into page cache while getting Fcr caps.
207 */
208 if (off == 0)
209 return -EINVAL;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300210 zero_user_segment(page, 0, PAGE_SIZE);
Yan, Zhengfcc02d22015-01-10 11:43:12 +0800211 SetPageUptodate(page);
212 return 0;
213 }
Yan, Zheng83701242014-11-14 22:36:18 +0800214
215 err = ceph_readpage_from_fscache(inode, page);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400216 if (err == 0)
Yan, Zhengdd2bc472017-08-04 11:22:31 +0800217 return -EINPROGRESS;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400218
Sage Weil1d3576f2009-10-06 11:31:09 -0700219 dout("readpage inode %p file %p page %p index %lu\n",
220 inode, filp, page, page->index);
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800221 err = ceph_osdc_readpages(&fsc->client->osdc, ceph_vino(inode),
222 &ci->i_layout, off, &len,
Sage Weil1d3576f2009-10-06 11:31:09 -0700223 ci->i_truncate_seq, ci->i_truncate_size,
Sage Weilb7495fc2010-11-09 12:43:12 -0800224 &page, 1, 0);
Sage Weil1d3576f2009-10-06 11:31:09 -0700225 if (err == -ENOENT)
226 err = 0;
227 if (err < 0) {
228 SetPageError(page);
Li Wang18302802013-12-19 06:03:49 -0800229 ceph_fscache_readpage_cancel(inode, page);
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800230 if (err == -EBLACKLISTED)
231 fsc->blacklisted = true;
Sage Weil1d3576f2009-10-06 11:31:09 -0700232 goto out;
Sage Weil1d3576f2009-10-06 11:31:09 -0700233 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300234 if (err < PAGE_SIZE)
Zhang Zhen23cd5732014-05-28 15:09:55 +0800235 /* zero fill remainder of page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300236 zero_user_segment(page, err, PAGE_SIZE);
Zhang Zhen23cd5732014-05-28 15:09:55 +0800237 else
238 flush_dcache_page(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700239
Zhang Zhen23cd5732014-05-28 15:09:55 +0800240 SetPageUptodate(page);
241 ceph_readpage_to_fscache(inode, page);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400242
Sage Weil1d3576f2009-10-06 11:31:09 -0700243out:
244 return err < 0 ? err : 0;
245}
246
247static int ceph_readpage(struct file *filp, struct page *page)
248{
Yan, Zhengdd2bc472017-08-04 11:22:31 +0800249 int r = ceph_do_readpage(filp, page);
250 if (r != -EINPROGRESS)
251 unlock_page(page);
252 else
253 r = 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700254 return r;
255}
256
257/*
Sage Weil7c272192011-08-03 09:58:09 -0700258 * Finish an async read(ahead) op.
Sage Weil1d3576f2009-10-06 11:31:09 -0700259 */
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200260static void finish_read(struct ceph_osd_request *req)
Sage Weil1d3576f2009-10-06 11:31:09 -0700261{
Sage Weil7c272192011-08-03 09:58:09 -0700262 struct inode *inode = req->r_inode;
Alex Elder87060c12013-04-03 01:28:58 -0500263 struct ceph_osd_data *osd_data;
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200264 int rc = req->r_result <= 0 ? req->r_result : 0;
265 int bytes = req->r_result >= 0 ? req->r_result : 0;
Alex Eldere0c59482013-03-07 15:38:25 -0600266 int num_pages;
Sage Weil7c272192011-08-03 09:58:09 -0700267 int i;
268
Sage Weil7c272192011-08-03 09:58:09 -0700269 dout("finish_read %p req %p rc %d bytes %d\n", inode, req, rc, bytes);
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800270 if (rc == -EBLACKLISTED)
271 ceph_inode_to_client(inode)->blacklisted = true;
Sage Weil7c272192011-08-03 09:58:09 -0700272
273 /* unlock all pages, zeroing any data we didn't read */
Alex Elder406e2c92013-04-15 14:50:36 -0500274 osd_data = osd_req_op_extent_osd_data(req, 0);
Alex Elder87060c12013-04-03 01:28:58 -0500275 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
276 num_pages = calc_pages_for((u64)osd_data->alignment,
277 (u64)osd_data->length);
Alex Eldere0c59482013-03-07 15:38:25 -0600278 for (i = 0; i < num_pages; i++) {
Alex Elder87060c12013-04-03 01:28:58 -0500279 struct page *page = osd_data->pages[i];
Sage Weil7c272192011-08-03 09:58:09 -0700280
Yan, Zheng368e3582016-05-17 11:58:02 +0800281 if (rc < 0 && rc != -ENOENT) {
282 ceph_fscache_readpage_cancel(inode, page);
Li Wangf36132a2013-11-27 22:28:13 +0800283 goto unlock;
Yan, Zheng368e3582016-05-17 11:58:02 +0800284 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300285 if (bytes < (int)PAGE_SIZE) {
Sage Weil7c272192011-08-03 09:58:09 -0700286 /* zero (remainder of) page */
287 int s = bytes < 0 ? 0 : bytes;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300288 zero_user_segment(page, s, PAGE_SIZE);
Sage Weil7c272192011-08-03 09:58:09 -0700289 }
290 dout("finish_read %p uptodate %p idx %lu\n", inode, page,
291 page->index);
292 flush_dcache_page(page);
293 SetPageUptodate(page);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400294 ceph_readpage_to_fscache(inode, page);
Li Wangf36132a2013-11-27 22:28:13 +0800295unlock:
Sage Weil7c272192011-08-03 09:58:09 -0700296 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300297 put_page(page);
298 bytes -= PAGE_SIZE;
Sage Weil7c272192011-08-03 09:58:09 -0700299 }
Alex Elder87060c12013-04-03 01:28:58 -0500300 kfree(osd_data->pages);
Sage Weil7c272192011-08-03 09:58:09 -0700301}
302
303/*
304 * start an async read(ahead) operation. return nr_pages we submitted
305 * a read for on success, or negative error code.
306 */
Yan, Zheng5d988302017-12-15 11:15:36 +0800307static int start_read(struct inode *inode, struct ceph_rw_context *rw_ctx,
308 struct list_head *page_list, int max)
Sage Weil7c272192011-08-03 09:58:09 -0700309{
310 struct ceph_osd_client *osdc =
311 &ceph_inode_to_client(inode)->client->osdc;
312 struct ceph_inode_info *ci = ceph_inode(inode);
Nikolay Borisovf86196e2019-01-03 15:29:02 -0800313 struct page *page = lru_to_page(page_list);
Alex Elderacead002013-03-14 14:09:05 -0500314 struct ceph_vino vino;
Sage Weil7c272192011-08-03 09:58:09 -0700315 struct ceph_osd_request *req;
316 u64 off;
317 u64 len;
318 int i;
Sage Weil1d3576f2009-10-06 11:31:09 -0700319 struct page **pages;
Sage Weil7c272192011-08-03 09:58:09 -0700320 pgoff_t next_index;
321 int nr_pages = 0;
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800322 int got = 0;
323 int ret = 0;
324
Yan, Zheng5d988302017-12-15 11:15:36 +0800325 if (!rw_ctx) {
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800326 /* caller of readpages does not hold buffer and read caps
327 * (fadvise, madvise and readahead cases) */
328 int want = CEPH_CAP_FILE_CACHE;
Yan, Zheng5e3ded12019-07-25 20:16:43 +0800329 ret = ceph_try_get_caps(inode, CEPH_CAP_FILE_RD, want,
330 true, &got);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800331 if (ret < 0) {
332 dout("start_read %p, error getting cap\n", inode);
333 } else if (!(got & want)) {
334 dout("start_read %p, no cache cap\n", inode);
335 ret = 0;
336 }
337 if (ret <= 0) {
338 if (got)
339 ceph_put_cap_refs(ci, got);
340 while (!list_empty(page_list)) {
Nikolay Borisovf86196e2019-01-03 15:29:02 -0800341 page = lru_to_page(page_list);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800342 list_del(&page->lru);
343 put_page(page);
344 }
345 return ret;
346 }
347 }
Sage Weil7c272192011-08-03 09:58:09 -0700348
Alex Elder6285bc22012-10-02 10:25:51 -0500349 off = (u64) page_offset(page);
Sage Weil7c272192011-08-03 09:58:09 -0700350
351 /* count pages */
352 next_index = page->index;
353 list_for_each_entry_reverse(page, page_list, lru) {
354 if (page->index != next_index)
355 break;
356 nr_pages++;
357 next_index++;
Sage Weil0d66a482011-08-04 08:21:30 -0700358 if (max && nr_pages == max)
359 break;
Sage Weil7c272192011-08-03 09:58:09 -0700360 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300361 len = nr_pages << PAGE_SHIFT;
Sage Weil7c272192011-08-03 09:58:09 -0700362 dout("start_read %p nr_pages %d is %lld~%lld\n", inode, nr_pages,
363 off, len);
Alex Elderacead002013-03-14 14:09:05 -0500364 vino = ceph_vino(inode);
365 req = ceph_osdc_new_request(osdc, &ci->i_layout, vino, off, &len,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800366 0, 1, CEPH_OSD_OP_READ,
Alex Elderacead002013-03-14 14:09:05 -0500367 CEPH_OSD_FLAG_READ, NULL,
Sage Weil7c272192011-08-03 09:58:09 -0700368 ci->i_truncate_seq, ci->i_truncate_size,
Alex Elderacead002013-03-14 14:09:05 -0500369 false);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800370 if (IS_ERR(req)) {
371 ret = PTR_ERR(req);
372 goto out;
373 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700374
375 /* build page vector */
Alex Eldercf7b7e142013-03-01 18:00:15 -0600376 nr_pages = calc_pages_for(0, len);
Kees Cook6da2ec52018-06-12 13:55:00 -0700377 pages = kmalloc_array(nr_pages, sizeof(*pages), GFP_KERNEL);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800378 if (!pages) {
379 ret = -ENOMEM;
380 goto out_put;
381 }
Sage Weil7c272192011-08-03 09:58:09 -0700382 for (i = 0; i < nr_pages; ++i) {
383 page = list_entry(page_list->prev, struct page, lru);
384 BUG_ON(PageLocked(page));
385 list_del(&page->lru);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400386
Sage Weil7c272192011-08-03 09:58:09 -0700387 dout("start_read %p adding %p idx %lu\n", inode, page,
388 page->index);
389 if (add_to_page_cache_lru(page, &inode->i_data, page->index,
Yan, Zheng687265e2015-06-13 17:27:05 +0800390 GFP_KERNEL)) {
Milosz Tanskid4d3aa32013-09-03 19:11:17 -0400391 ceph_fscache_uncache_page(inode, page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300392 put_page(page);
Sage Weil7c272192011-08-03 09:58:09 -0700393 dout("start_read %p add_to_page_cache failed %p\n",
394 inode, page);
395 nr_pages = i;
Yan, Zheng1afe4782016-08-24 11:33:46 +0800396 if (nr_pages > 0) {
397 len = nr_pages << PAGE_SHIFT;
Yan, Zhengd641df82017-01-19 11:21:29 +0800398 osd_req_op_extent_update(req, 0, len);
Yan, Zheng1afe4782016-08-24 11:33:46 +0800399 break;
400 }
Sage Weil7c272192011-08-03 09:58:09 -0700401 goto out_pages;
Sage Weil1d3576f2009-10-06 11:31:09 -0700402 }
Sage Weil7c272192011-08-03 09:58:09 -0700403 pages[i] = page;
Sage Weil1d3576f2009-10-06 11:31:09 -0700404 }
Alex Elder406e2c92013-04-15 14:50:36 -0500405 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0, false, false);
Sage Weil7c272192011-08-03 09:58:09 -0700406 req->r_callback = finish_read;
407 req->r_inode = inode;
408
409 dout("start_read %p starting %p %lld~%lld\n", inode, req, off, len);
410 ret = ceph_osdc_start_request(osdc, req, false);
411 if (ret < 0)
412 goto out_pages;
413 ceph_osdc_put_request(req);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800414
415 /* After adding locked pages to page cache, the inode holds cache cap.
416 * So we can drop our cap refs. */
417 if (got)
418 ceph_put_cap_refs(ci, got);
419
Sage Weil7c272192011-08-03 09:58:09 -0700420 return nr_pages;
421
422out_pages:
Yan, Zheng1afe4782016-08-24 11:33:46 +0800423 for (i = 0; i < nr_pages; ++i) {
424 ceph_fscache_readpage_cancel(inode, pages[i]);
425 unlock_page(pages[i]);
426 }
427 ceph_put_page_vector(pages, nr_pages, false);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800428out_put:
Sage Weil7c272192011-08-03 09:58:09 -0700429 ceph_osdc_put_request(req);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800430out:
431 if (got)
432 ceph_put_cap_refs(ci, got);
Sage Weil7c272192011-08-03 09:58:09 -0700433 return ret;
Sage Weil1d3576f2009-10-06 11:31:09 -0700434}
435
Sage Weil7c272192011-08-03 09:58:09 -0700436
Sage Weil1d3576f2009-10-06 11:31:09 -0700437/*
438 * Read multiple pages. Leave pages we don't read + unlock in page_list;
439 * the caller (VM) cleans them up.
440 */
441static int ceph_readpages(struct file *file, struct address_space *mapping,
442 struct list_head *page_list, unsigned nr_pages)
443{
Al Viro496ad9a2013-01-23 17:07:38 -0500444 struct inode *inode = file_inode(file);
Sage Weil0d66a482011-08-04 08:21:30 -0700445 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Chengguang Xu73737682018-02-28 19:43:47 +0800446 struct ceph_file_info *fi = file->private_data;
Yan, Zheng5d988302017-12-15 11:15:36 +0800447 struct ceph_rw_context *rw_ctx;
Sage Weil1d3576f2009-10-06 11:31:09 -0700448 int rc = 0;
Sage Weil0d66a482011-08-04 08:21:30 -0700449 int max = 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700450
Yan, Zheng83701242014-11-14 22:36:18 +0800451 if (ceph_inode(inode)->i_inline_version != CEPH_INLINE_NONE)
452 return -EINVAL;
453
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400454 rc = ceph_readpages_from_fscache(mapping->host, mapping, page_list,
455 &nr_pages);
456
457 if (rc == 0)
458 goto out;
459
Chengguang Xu73737682018-02-28 19:43:47 +0800460 rw_ctx = ceph_find_rw_context(fi);
Yan, Zhengaa187922017-07-11 15:56:09 +0800461 max = fsc->mount_options->rsize >> PAGE_SHIFT;
Yan, Zheng5d988302017-12-15 11:15:36 +0800462 dout("readpages %p file %p ctx %p nr_pages %d max %d\n",
463 inode, file, rw_ctx, nr_pages, max);
Sage Weil7c272192011-08-03 09:58:09 -0700464 while (!list_empty(page_list)) {
Yan, Zheng5d988302017-12-15 11:15:36 +0800465 rc = start_read(inode, rw_ctx, page_list, max);
Sage Weil7c272192011-08-03 09:58:09 -0700466 if (rc < 0)
467 goto out;
Sage Weil1d3576f2009-10-06 11:31:09 -0700468 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700469out:
Milosz Tanski76be7782013-08-21 17:30:27 -0400470 ceph_fscache_readpages_cancel(inode, page_list);
471
Sage Weil7c272192011-08-03 09:58:09 -0700472 dout("readpages %p file %p ret %d\n", inode, file, rc);
Sage Weil1d3576f2009-10-06 11:31:09 -0700473 return rc;
474}
475
Yan, Zheng1f934b02017-08-30 11:36:06 +0800476struct ceph_writeback_ctl
477{
478 loff_t i_size;
479 u64 truncate_size;
480 u32 truncate_seq;
481 bool size_stable;
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800482 bool head_snapc;
Yan, Zheng1f934b02017-08-30 11:36:06 +0800483};
484
Sage Weil1d3576f2009-10-06 11:31:09 -0700485/*
486 * Get ref for the oldest snapc for an inode with dirty data... that is, the
487 * only snap context we are allowed to write back.
Sage Weil1d3576f2009-10-06 11:31:09 -0700488 */
Yan, Zheng1f934b02017-08-30 11:36:06 +0800489static struct ceph_snap_context *
Yan, Zheng05455e12017-09-02 10:50:48 +0800490get_oldest_context(struct inode *inode, struct ceph_writeback_ctl *ctl,
491 struct ceph_snap_context *page_snapc)
Sage Weil1d3576f2009-10-06 11:31:09 -0700492{
493 struct ceph_inode_info *ci = ceph_inode(inode);
494 struct ceph_snap_context *snapc = NULL;
495 struct ceph_cap_snap *capsnap = NULL;
496
Sage Weilbe655592011-11-30 09:47:09 -0800497 spin_lock(&ci->i_ceph_lock);
Sage Weil1d3576f2009-10-06 11:31:09 -0700498 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
499 dout(" cap_snap %p snapc %p has %d dirty pages\n", capsnap,
500 capsnap->context, capsnap->dirty_pages);
Yan, Zheng05455e12017-09-02 10:50:48 +0800501 if (!capsnap->dirty_pages)
502 continue;
503
504 /* get i_size, truncate_{seq,size} for page_snapc? */
505 if (snapc && capsnap->context != page_snapc)
506 continue;
507
508 if (ctl) {
509 if (capsnap->writing) {
510 ctl->i_size = i_size_read(inode);
511 ctl->size_stable = false;
512 } else {
513 ctl->i_size = capsnap->size;
514 ctl->size_stable = true;
Yan, Zheng1f934b02017-08-30 11:36:06 +0800515 }
Yan, Zheng05455e12017-09-02 10:50:48 +0800516 ctl->truncate_size = capsnap->truncate_size;
517 ctl->truncate_seq = capsnap->truncate_seq;
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800518 ctl->head_snapc = false;
Sage Weil1d3576f2009-10-06 11:31:09 -0700519 }
Yan, Zheng05455e12017-09-02 10:50:48 +0800520
521 if (snapc)
522 break;
523
524 snapc = ceph_get_snap_context(capsnap->context);
525 if (!page_snapc ||
526 page_snapc == snapc ||
527 page_snapc->seq > snapc->seq)
528 break;
Sage Weil1d3576f2009-10-06 11:31:09 -0700529 }
Sage Weil7d8cb262010-08-24 08:44:16 -0700530 if (!snapc && ci->i_wrbuffer_ref_head) {
Sage Weil80e755f2010-03-31 21:52:10 -0700531 snapc = ceph_get_snap_context(ci->i_head_snapc);
Sage Weil1d3576f2009-10-06 11:31:09 -0700532 dout(" head snapc %p has %d dirty pages\n",
533 snapc, ci->i_wrbuffer_ref_head);
Yan, Zheng1f934b02017-08-30 11:36:06 +0800534 if (ctl) {
535 ctl->i_size = i_size_read(inode);
536 ctl->truncate_size = ci->i_truncate_size;
537 ctl->truncate_seq = ci->i_truncate_seq;
538 ctl->size_stable = false;
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800539 ctl->head_snapc = true;
Yan, Zheng1f934b02017-08-30 11:36:06 +0800540 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700541 }
Sage Weilbe655592011-11-30 09:47:09 -0800542 spin_unlock(&ci->i_ceph_lock);
Sage Weil1d3576f2009-10-06 11:31:09 -0700543 return snapc;
544}
545
Yan, Zheng1f934b02017-08-30 11:36:06 +0800546static u64 get_writepages_data_length(struct inode *inode,
547 struct page *page, u64 start)
548{
549 struct ceph_inode_info *ci = ceph_inode(inode);
550 struct ceph_snap_context *snapc = page_snap_context(page);
551 struct ceph_cap_snap *capsnap = NULL;
552 u64 end = i_size_read(inode);
553
554 if (snapc != ci->i_head_snapc) {
555 bool found = false;
556 spin_lock(&ci->i_ceph_lock);
557 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
558 if (capsnap->context == snapc) {
559 if (!capsnap->writing)
560 end = capsnap->size;
561 found = true;
562 break;
563 }
564 }
565 spin_unlock(&ci->i_ceph_lock);
566 WARN_ON(!found);
567 }
568 if (end > page_offset(page) + PAGE_SIZE)
569 end = page_offset(page) + PAGE_SIZE;
570 return end > start ? end - start : 0;
571}
572
Sage Weil1d3576f2009-10-06 11:31:09 -0700573/*
574 * Write a single page, but leave the page locked.
575 *
Jeff Laytonb72b13e2019-07-02 12:35:52 -0400576 * If we get a write error, mark the mapping for error, but still adjust the
Sage Weil1d3576f2009-10-06 11:31:09 -0700577 * dirty page accounting (i.e., page is no longer dirty).
578 */
579static int writepage_nounlock(struct page *page, struct writeback_control *wbc)
580{
581 struct inode *inode;
582 struct ceph_inode_info *ci;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700583 struct ceph_fs_client *fsc;
Sage Weil6298a332010-03-31 22:01:38 -0700584 struct ceph_snap_context *snapc, *oldest;
Yan, Zhengfc2744a2013-05-31 16:48:29 +0800585 loff_t page_off = page_offset(page);
Yan, Zheng43986882017-05-23 17:48:28 +0800586 int err, len = PAGE_SIZE;
Yan, Zheng1f934b02017-08-30 11:36:06 +0800587 struct ceph_writeback_ctl ceph_wbc;
Sage Weil1d3576f2009-10-06 11:31:09 -0700588
589 dout("writepage %p idx %lu\n", page, page->index);
590
Sage Weil1d3576f2009-10-06 11:31:09 -0700591 inode = page->mapping->host;
592 ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700593 fsc = ceph_inode_to_client(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -0700594
595 /* verify this is a writeable snap context */
Yan, Zheng61600ef2012-05-28 14:44:30 +0800596 snapc = page_snap_context(page);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200597 if (!snapc) {
Sage Weil1d3576f2009-10-06 11:31:09 -0700598 dout("writepage %p page %p not dirty?\n", inode, page);
Yan, Zheng43986882017-05-23 17:48:28 +0800599 return 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700600 }
Yan, Zheng05455e12017-09-02 10:50:48 +0800601 oldest = get_oldest_context(inode, &ceph_wbc, snapc);
Sage Weil6298a332010-03-31 22:01:38 -0700602 if (snapc->seq > oldest->seq) {
Sage Weil1d3576f2009-10-06 11:31:09 -0700603 dout("writepage %p page %p snapc %p not writeable - noop\n",
Yan, Zheng61600ef2012-05-28 14:44:30 +0800604 inode, page, snapc);
Sage Weil1d3576f2009-10-06 11:31:09 -0700605 /* we should only noop if called by kswapd */
Yan, Zhengfa71fef2017-05-23 17:18:53 +0800606 WARN_ON(!(current->flags & PF_MEMALLOC));
Sage Weil6298a332010-03-31 22:01:38 -0700607 ceph_put_snap_context(oldest);
Yan, Zhengfa71fef2017-05-23 17:18:53 +0800608 redirty_page_for_writepage(wbc, page);
Yan, Zheng43986882017-05-23 17:48:28 +0800609 return 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700610 }
Sage Weil6298a332010-03-31 22:01:38 -0700611 ceph_put_snap_context(oldest);
Sage Weil1d3576f2009-10-06 11:31:09 -0700612
613 /* is this a partial page at end of file? */
Yan, Zheng1f934b02017-08-30 11:36:06 +0800614 if (page_off >= ceph_wbc.i_size) {
615 dout("%p page eof %llu\n", page, ceph_wbc.i_size);
Yan, Zheng05455e12017-09-02 10:50:48 +0800616 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Yan, Zheng43986882017-05-23 17:48:28 +0800617 return 0;
Yan, Zhengfc2744a2013-05-31 16:48:29 +0800618 }
Yan, Zheng43986882017-05-23 17:48:28 +0800619
Yan, Zheng1f934b02017-08-30 11:36:06 +0800620 if (ceph_wbc.i_size < page_off + len)
621 len = ceph_wbc.i_size - page_off;
Sage Weil1d3576f2009-10-06 11:31:09 -0700622
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800623 dout("writepage %p page %p index %lu on %llu~%u snapc %p seq %lld\n",
624 inode, page, page->index, page_off, len, snapc, snapc->seq);
Sage Weil1d3576f2009-10-06 11:31:09 -0700625
Yan, Zheng314c4732017-12-15 16:57:40 +0800626 if (atomic_long_inc_return(&fsc->writeback_count) >
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700627 CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb))
Jan Kara09dc9fc2017-04-12 12:24:33 +0200628 set_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800629
Sage Weil1d3576f2009-10-06 11:31:09 -0700630 set_page_writeback(page);
Yan, Zheng1f934b02017-08-30 11:36:06 +0800631 err = ceph_osdc_writepages(&fsc->client->osdc, ceph_vino(inode),
632 &ci->i_layout, snapc, page_off, len,
633 ceph_wbc.truncate_seq,
634 ceph_wbc.truncate_size,
Arnd Bergmannfac02dd2018-07-13 22:18:37 +0200635 &inode->i_mtime, &page, 1);
Sage Weil1d3576f2009-10-06 11:31:09 -0700636 if (err < 0) {
Yan, Zhengad15ec02016-05-13 17:29:51 +0800637 struct writeback_control tmp_wbc;
638 if (!wbc)
639 wbc = &tmp_wbc;
640 if (err == -ERESTARTSYS) {
641 /* killed by SIGKILL */
642 dout("writepage interrupted page %p\n", page);
643 redirty_page_for_writepage(wbc, page);
644 end_page_writeback(page);
Yan, Zheng43986882017-05-23 17:48:28 +0800645 return err;
Yan, Zhengad15ec02016-05-13 17:29:51 +0800646 }
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800647 if (err == -EBLACKLISTED)
648 fsc->blacklisted = true;
Yan, Zhengad15ec02016-05-13 17:29:51 +0800649 dout("writepage setting page/mapping error %d %p\n",
650 err, page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700651 mapping_set_error(&inode->i_data, err);
Yan, Zhengad15ec02016-05-13 17:29:51 +0800652 wbc->pages_skipped++;
Sage Weil1d3576f2009-10-06 11:31:09 -0700653 } else {
654 dout("writepage cleaned page %p\n", page);
655 err = 0; /* vfs expects us to return 0 */
656 }
657 page->private = 0;
658 ClearPagePrivate(page);
659 end_page_writeback(page);
660 ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
Sage Weil6298a332010-03-31 22:01:38 -0700661 ceph_put_snap_context(snapc); /* page's reference */
Yan, Zheng314c4732017-12-15 16:57:40 +0800662
663 if (atomic_long_dec_return(&fsc->writeback_count) <
664 CONGESTION_OFF_THRESH(fsc->mount_options->congestion_kb))
665 clear_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
666
Sage Weil1d3576f2009-10-06 11:31:09 -0700667 return err;
668}
669
670static int ceph_writepage(struct page *page, struct writeback_control *wbc)
671{
Yehuda Sadehdbd646a2009-12-16 14:51:06 -0800672 int err;
673 struct inode *inode = page->mapping->host;
674 BUG_ON(!inode);
Sage Weil70b666c2011-05-27 09:24:26 -0700675 ihold(inode);
Yehuda Sadehdbd646a2009-12-16 14:51:06 -0800676 err = writepage_nounlock(page, wbc);
Yan, Zhengad15ec02016-05-13 17:29:51 +0800677 if (err == -ERESTARTSYS) {
678 /* direct memory reclaimer was killed by SIGKILL. return 0
679 * to prevent caller from setting mapping/page error */
680 err = 0;
681 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700682 unlock_page(page);
Yehuda Sadehdbd646a2009-12-16 14:51:06 -0800683 iput(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -0700684 return err;
685}
686
Sage Weil1d3576f2009-10-06 11:31:09 -0700687/*
Sage Weil1d3576f2009-10-06 11:31:09 -0700688 * async writeback completion handler.
689 *
690 * If we get an error, set the mapping error bit, but not the individual
691 * page error bits.
692 */
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200693static void writepages_finish(struct ceph_osd_request *req)
Sage Weil1d3576f2009-10-06 11:31:09 -0700694{
695 struct inode *inode = req->r_inode;
Sage Weil1d3576f2009-10-06 11:31:09 -0700696 struct ceph_inode_info *ci = ceph_inode(inode);
Alex Elder87060c12013-04-03 01:28:58 -0500697 struct ceph_osd_data *osd_data;
Sage Weil1d3576f2009-10-06 11:31:09 -0700698 struct page *page;
Yan, Zheng5b646402016-01-07 16:00:17 +0800699 int num_pages, total_pages = 0;
700 int i, j;
701 int rc = req->r_result;
Sage Weil1d3576f2009-10-06 11:31:09 -0700702 struct ceph_snap_context *snapc = req->r_snapc;
703 struct address_space *mapping = inode->i_mapping;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700704 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Yan, Zheng5b646402016-01-07 16:00:17 +0800705 bool remove_page;
Sage Weil1d3576f2009-10-06 11:31:09 -0700706
Yan, Zheng5b646402016-01-07 16:00:17 +0800707 dout("writepages_finish %p rc %d\n", inode, rc);
Jeff Layton26544c622017-04-04 08:39:46 -0400708 if (rc < 0) {
Sage Weil1d3576f2009-10-06 11:31:09 -0700709 mapping_set_error(mapping, rc);
Jeff Layton26544c622017-04-04 08:39:46 -0400710 ceph_set_error_write(ci);
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800711 if (rc == -EBLACKLISTED)
712 fsc->blacklisted = true;
Jeff Layton26544c622017-04-04 08:39:46 -0400713 } else {
714 ceph_clear_error_write(ci);
715 }
Yan, Zheng5b646402016-01-07 16:00:17 +0800716
717 /*
718 * We lost the cache cap, need to truncate the page before
719 * it is unlocked, otherwise we'd truncate it later in the
720 * page truncation thread, possibly losing some data that
721 * raced its way in
722 */
723 remove_page = !(ceph_caps_issued(ci) &
724 (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO));
Sage Weil1d3576f2009-10-06 11:31:09 -0700725
726 /* clean all pages */
Yan, Zheng5b646402016-01-07 16:00:17 +0800727 for (i = 0; i < req->r_num_ops; i++) {
728 if (req->r_ops[i].op != CEPH_OSD_OP_WRITE)
729 break;
Sage Weil1d3576f2009-10-06 11:31:09 -0700730
Yan, Zheng5b646402016-01-07 16:00:17 +0800731 osd_data = osd_req_op_extent_osd_data(req, i);
732 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
733 num_pages = calc_pages_for((u64)osd_data->alignment,
734 (u64)osd_data->length);
735 total_pages += num_pages;
736 for (j = 0; j < num_pages; j++) {
737 page = osd_data->pages[j];
738 BUG_ON(!page);
739 WARN_ON(!PageUptodate(page));
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800740
Yan, Zheng5b646402016-01-07 16:00:17 +0800741 if (atomic_long_dec_return(&fsc->writeback_count) <
742 CONGESTION_OFF_THRESH(
743 fsc->mount_options->congestion_kb))
Jan Kara09dc9fc2017-04-12 12:24:33 +0200744 clear_bdi_congested(inode_to_bdi(inode),
Yan, Zheng5b646402016-01-07 16:00:17 +0800745 BLK_RW_ASYNC);
Yehuda Sadehe63dc5c2010-02-19 00:07:01 +0000746
Yan, Zheng5b646402016-01-07 16:00:17 +0800747 ceph_put_snap_context(page_snap_context(page));
748 page->private = 0;
749 ClearPagePrivate(page);
750 dout("unlocking %p\n", page);
751 end_page_writeback(page);
Yehuda Sadehe63dc5c2010-02-19 00:07:01 +0000752
Yan, Zheng5b646402016-01-07 16:00:17 +0800753 if (remove_page)
754 generic_error_remove_page(inode->i_mapping,
755 page);
756
757 unlock_page(page);
758 }
759 dout("writepages_finish %p wrote %llu bytes cleaned %d pages\n",
760 inode, osd_data->length, rc >= 0 ? num_pages : 0);
761
John Hubbard96ac9152019-08-08 20:56:47 -0700762 release_pages(osd_data->pages, num_pages);
Sage Weil1d3576f2009-10-06 11:31:09 -0700763 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700764
Yan, Zheng5b646402016-01-07 16:00:17 +0800765 ceph_put_wrbuffer_cap_refs(ci, total_pages, snapc);
766
767 osd_data = osd_req_op_extent_osd_data(req, 0);
Alex Elder87060c12013-04-03 01:28:58 -0500768 if (osd_data->pages_from_pool)
769 mempool_free(osd_data->pages,
Cheng Renquan640ef792010-03-26 17:40:33 +0800770 ceph_sb_to_client(inode->i_sb)->wb_pagevec_pool);
Sage Weil1d3576f2009-10-06 11:31:09 -0700771 else
Alex Elder87060c12013-04-03 01:28:58 -0500772 kfree(osd_data->pages);
Sage Weil1d3576f2009-10-06 11:31:09 -0700773 ceph_osdc_put_request(req);
774}
775
Sage Weil1d3576f2009-10-06 11:31:09 -0700776/*
777 * initiate async writeback
778 */
779static int ceph_writepages_start(struct address_space *mapping,
780 struct writeback_control *wbc)
781{
782 struct inode *inode = mapping->host;
Sage Weil1d3576f2009-10-06 11:31:09 -0700783 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zhengfc2744a2013-05-31 16:48:29 +0800784 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
785 struct ceph_vino vino = ceph_vino(inode);
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800786 pgoff_t index, start_index, end = -1;
Sage Weil80e755f2010-03-31 21:52:10 -0700787 struct ceph_snap_context *snapc = NULL, *last_snapc = NULL, *pgsnapc;
Sage Weil1d3576f2009-10-06 11:31:09 -0700788 struct pagevec pvec;
Sage Weil1d3576f2009-10-06 11:31:09 -0700789 int rc = 0;
Fabian Frederick93407472017-02-27 14:28:32 -0800790 unsigned int wsize = i_blocksize(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -0700791 struct ceph_osd_request *req = NULL;
Yan, Zheng1f934b02017-08-30 11:36:06 +0800792 struct ceph_writeback_ctl ceph_wbc;
Yan, Zheng590e9d92017-09-03 00:04:31 +0800793 bool should_loop, range_whole = false;
Yan, Zhengaf9cc402018-03-04 16:36:01 +0800794 bool done = false;
Sage Weil1d3576f2009-10-06 11:31:09 -0700795
Yanhu Cao3fb99d42017-07-21 17:20:10 +0800796 dout("writepages_start %p (mode=%s)\n", inode,
Sage Weil1d3576f2009-10-06 11:31:09 -0700797 wbc->sync_mode == WB_SYNC_NONE ? "NONE" :
798 (wbc->sync_mode == WB_SYNC_ALL ? "ALL" : "HOLD"));
799
Seraphime Kirkovski52953d52016-12-26 10:26:34 +0100800 if (READ_ONCE(fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
Yan, Zheng6c93df52016-04-15 13:56:12 +0800801 if (ci->i_wrbuffer_ref > 0) {
802 pr_warn_ratelimited(
803 "writepage_start %p %lld forced umount\n",
804 inode, ceph_ino(inode));
805 }
Yan, Zhenga341d4d2015-07-01 17:03:23 +0800806 mapping_set_error(mapping, -EIO);
Sage Weil1d3576f2009-10-06 11:31:09 -0700807 return -EIO; /* we're in a forced umount, don't write! */
808 }
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800809 if (fsc->mount_options->wsize < wsize)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700810 wsize = fsc->mount_options->wsize;
Sage Weil1d3576f2009-10-06 11:31:09 -0700811
Mel Gorman86679822017-11-15 17:37:52 -0800812 pagevec_init(&pvec);
Sage Weil1d3576f2009-10-06 11:31:09 -0700813
Yan, Zheng590e9d92017-09-03 00:04:31 +0800814 start_index = wbc->range_cyclic ? mapping->writeback_index : 0;
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800815 index = start_index;
Sage Weil1d3576f2009-10-06 11:31:09 -0700816
817retry:
818 /* find oldest snap context with dirty data */
Yan, Zheng05455e12017-09-02 10:50:48 +0800819 snapc = get_oldest_context(inode, &ceph_wbc, NULL);
Sage Weil1d3576f2009-10-06 11:31:09 -0700820 if (!snapc) {
821 /* hmm, why does writepages get called when there
822 is no dirty data? */
823 dout(" no snap context with dirty data?\n");
824 goto out;
825 }
826 dout(" oldest snapc is %p seq %lld (%d snaps)\n",
827 snapc, snapc->seq, snapc->num_snaps);
Yan, Zhengfc2744a2013-05-31 16:48:29 +0800828
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800829 should_loop = false;
830 if (ceph_wbc.head_snapc && snapc != last_snapc) {
831 /* where to start/end? */
832 if (wbc->range_cyclic) {
833 index = start_index;
834 end = -1;
835 if (index > 0)
836 should_loop = true;
837 dout(" cyclic, start at %lu\n", index);
838 } else {
839 index = wbc->range_start >> PAGE_SHIFT;
840 end = wbc->range_end >> PAGE_SHIFT;
841 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
842 range_whole = true;
843 dout(" not cyclic, %lu to %lu\n", index, end);
844 }
845 } else if (!ceph_wbc.head_snapc) {
846 /* Do not respect wbc->range_{start,end}. Dirty pages
847 * in that range can be associated with newer snapc.
848 * They are not writeable until we write all dirty pages
849 * associated with 'snapc' get written */
Yan, Zheng1582af22018-03-06 15:14:54 +0800850 if (index > 0)
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800851 should_loop = true;
852 dout(" non-head snapc, range whole\n");
Sage Weil1d3576f2009-10-06 11:31:09 -0700853 }
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800854
855 ceph_put_snap_context(last_snapc);
Sage Weil1d3576f2009-10-06 11:31:09 -0700856 last_snapc = snapc;
857
Yan, Zhengaf9cc402018-03-04 16:36:01 +0800858 while (!done && index <= end) {
Yan, Zheng5b646402016-01-07 16:00:17 +0800859 int num_ops = 0, op_idx;
Yan, Zheng0e5ecac2017-08-31 19:20:40 +0800860 unsigned i, pvec_pages, max_pages, locked_pages = 0;
Yan, Zheng5b646402016-01-07 16:00:17 +0800861 struct page **pages = NULL, **data_pages;
Alex Eldere5975c72013-03-14 14:09:05 -0500862 mempool_t *pool = NULL; /* Becomes non-null if mempool used */
Sage Weil1d3576f2009-10-06 11:31:09 -0700863 struct page *page;
Yan, Zheng0e5ecac2017-08-31 19:20:40 +0800864 pgoff_t strip_unit_end = 0;
Yan, Zheng5b646402016-01-07 16:00:17 +0800865 u64 offset = 0, len = 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700866
Yan, Zheng0e5ecac2017-08-31 19:20:40 +0800867 max_pages = wsize >> PAGE_SHIFT;
Sage Weil1d3576f2009-10-06 11:31:09 -0700868
869get_more_pages:
Jan Kara4be90292017-11-15 17:35:16 -0800870 pvec_pages = pagevec_lookup_range_nr_tag(&pvec, mapping, &index,
Jan Kara0ed75fc2017-11-15 17:34:41 -0800871 end, PAGECACHE_TAG_DIRTY,
Jan Kara4be90292017-11-15 17:35:16 -0800872 max_pages - locked_pages);
Jan Kara0ed75fc2017-11-15 17:34:41 -0800873 dout("pagevec_lookup_range_tag got %d\n", pvec_pages);
Sage Weil1d3576f2009-10-06 11:31:09 -0700874 if (!pvec_pages && !locked_pages)
875 break;
876 for (i = 0; i < pvec_pages && locked_pages < max_pages; i++) {
877 page = pvec.pages[i];
878 dout("? %p idx %lu\n", page, page->index);
879 if (locked_pages == 0)
880 lock_page(page); /* first page */
881 else if (!trylock_page(page))
882 break;
883
884 /* only dirty pages, or our accounting breaks */
885 if (unlikely(!PageDirty(page)) ||
886 unlikely(page->mapping != mapping)) {
887 dout("!dirty or !mapping %p\n", page);
888 unlock_page(page);
Yan, Zheng0713e5f2017-08-31 16:55:48 +0800889 continue;
Sage Weil1d3576f2009-10-06 11:31:09 -0700890 }
Yan, Zhengaf9cc402018-03-04 16:36:01 +0800891 /* only if matching snap context */
892 pgsnapc = page_snap_context(page);
893 if (pgsnapc != snapc) {
894 dout("page snapc %p %lld != oldest %p %lld\n",
895 pgsnapc, pgsnapc->seq, snapc, snapc->seq);
Yan, Zheng1582af22018-03-06 15:14:54 +0800896 if (!should_loop &&
897 !ceph_wbc.head_snapc &&
898 wbc->sync_mode != WB_SYNC_NONE)
899 should_loop = true;
Sage Weil1d3576f2009-10-06 11:31:09 -0700900 unlock_page(page);
Yan, Zhengaf9cc402018-03-04 16:36:01 +0800901 continue;
Sage Weil1d3576f2009-10-06 11:31:09 -0700902 }
Yan, Zheng1f934b02017-08-30 11:36:06 +0800903 if (page_offset(page) >= ceph_wbc.i_size) {
904 dout("%p page eof %llu\n",
905 page, ceph_wbc.i_size);
Erqi Chenc95f1c52019-07-24 10:26:09 +0800906 if ((ceph_wbc.size_stable ||
907 page_offset(page) >= i_size_read(inode)) &&
908 clear_page_dirty_for_io(page))
Yan, Zhengaf9cc402018-03-04 16:36:01 +0800909 mapping->a_ops->invalidatepage(page,
910 0, PAGE_SIZE);
911 unlock_page(page);
912 continue;
913 }
914 if (strip_unit_end && (page->index > strip_unit_end)) {
915 dout("end of strip unit %p\n", page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700916 unlock_page(page);
917 break;
918 }
919 if (PageWriteback(page)) {
Yan, Zheng0713e5f2017-08-31 16:55:48 +0800920 if (wbc->sync_mode == WB_SYNC_NONE) {
921 dout("%p under writeback\n", page);
922 unlock_page(page);
923 continue;
924 }
925 dout("waiting on writeback %p\n", page);
926 wait_on_page_writeback(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700927 }
928
Sage Weil1d3576f2009-10-06 11:31:09 -0700929 if (!clear_page_dirty_for_io(page)) {
930 dout("%p !clear_page_dirty_for_io\n", page);
931 unlock_page(page);
Yan, Zheng0713e5f2017-08-31 16:55:48 +0800932 continue;
Sage Weil1d3576f2009-10-06 11:31:09 -0700933 }
934
Alex Eldere5975c72013-03-14 14:09:05 -0500935 /*
936 * We have something to write. If this is
937 * the first locked page this time through,
Yan, Zheng5b646402016-01-07 16:00:17 +0800938 * calculate max possinle write size and
939 * allocate a page array
Alex Eldere5975c72013-03-14 14:09:05 -0500940 */
Sage Weil1d3576f2009-10-06 11:31:09 -0700941 if (locked_pages == 0) {
Yan, Zheng5b646402016-01-07 16:00:17 +0800942 u64 objnum;
943 u64 objoff;
Ilya Dryomovdccbf082018-02-17 09:29:58 +0100944 u32 xlen;
Yan, Zheng5b646402016-01-07 16:00:17 +0800945
Sage Weil1d3576f2009-10-06 11:31:09 -0700946 /* prepare async write request */
Alex Eldere5975c72013-03-14 14:09:05 -0500947 offset = (u64)page_offset(page);
Ilya Dryomovdccbf082018-02-17 09:29:58 +0100948 ceph_calc_file_object_mapping(&ci->i_layout,
949 offset, wsize,
950 &objnum, &objoff,
951 &xlen);
952 len = xlen;
Henry C Chang8c718972011-05-03 09:45:16 +0000953
Yanhu Cao3fb99d42017-07-21 17:20:10 +0800954 num_ops = 1;
Yan, Zheng5b646402016-01-07 16:00:17 +0800955 strip_unit_end = page->index +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300956 ((len - 1) >> PAGE_SHIFT);
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800957
Yan, Zheng5b646402016-01-07 16:00:17 +0800958 BUG_ON(pages);
Alex Elder88486952013-03-14 14:09:05 -0500959 max_pages = calc_pages_for(0, (u64)len);
Kees Cook6da2ec52018-06-12 13:55:00 -0700960 pages = kmalloc_array(max_pages,
961 sizeof(*pages),
962 GFP_NOFS);
Alex Elder88486952013-03-14 14:09:05 -0500963 if (!pages) {
964 pool = fsc->wb_pagevec_pool;
Alex Elder88486952013-03-14 14:09:05 -0500965 pages = mempool_alloc(pool, GFP_NOFS);
Alex Eldere5975c72013-03-14 14:09:05 -0500966 BUG_ON(!pages);
Alex Elder88486952013-03-14 14:09:05 -0500967 }
Yan, Zheng5b646402016-01-07 16:00:17 +0800968
969 len = 0;
970 } else if (page->index !=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300971 (offset + len) >> PAGE_SHIFT) {
Yan, Zheng5b646402016-01-07 16:00:17 +0800972 if (num_ops >= (pool ? CEPH_OSD_SLAB_OPS :
973 CEPH_OSD_MAX_OPS)) {
974 redirty_page_for_writepage(wbc, page);
975 unlock_page(page);
976 break;
977 }
978
979 num_ops++;
980 offset = (u64)page_offset(page);
981 len = 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700982 }
983
984 /* note position of first page in pvec */
Sage Weil1d3576f2009-10-06 11:31:09 -0700985 dout("%p will write page %p idx %lu\n",
986 inode, page, page->index);
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800987
Yan, Zheng5b646402016-01-07 16:00:17 +0800988 if (atomic_long_inc_return(&fsc->writeback_count) >
989 CONGESTION_ON_THRESH(
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700990 fsc->mount_options->congestion_kb)) {
Jan Kara09dc9fc2017-04-12 12:24:33 +0200991 set_bdi_congested(inode_to_bdi(inode),
Sage Weil213c99e2010-08-03 10:25:11 -0700992 BLK_RW_ASYNC);
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800993 }
994
Yan, Zheng0713e5f2017-08-31 16:55:48 +0800995
996 pages[locked_pages++] = page;
997 pvec.pages[i] = NULL;
998
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300999 len += PAGE_SIZE;
Sage Weil1d3576f2009-10-06 11:31:09 -07001000 }
1001
1002 /* did we get anything? */
1003 if (!locked_pages)
1004 goto release_pvec_pages;
1005 if (i) {
Yan, Zheng0713e5f2017-08-31 16:55:48 +08001006 unsigned j, n = 0;
1007 /* shift unused page to beginning of pvec */
1008 for (j = 0; j < pvec_pages; j++) {
1009 if (!pvec.pages[j])
1010 continue;
1011 if (n < j)
1012 pvec.pages[n] = pvec.pages[j];
1013 n++;
1014 }
1015 pvec.nr = n;
Sage Weil1d3576f2009-10-06 11:31:09 -07001016
1017 if (pvec_pages && i == pvec_pages &&
1018 locked_pages < max_pages) {
1019 dout("reached end pvec, trying for more\n");
Yan, Zheng0713e5f2017-08-31 16:55:48 +08001020 pagevec_release(&pvec);
Sage Weil1d3576f2009-10-06 11:31:09 -07001021 goto get_more_pages;
1022 }
Sage Weil1d3576f2009-10-06 11:31:09 -07001023 }
1024
Yan, Zheng5b646402016-01-07 16:00:17 +08001025new_request:
Alex Eldere5975c72013-03-14 14:09:05 -05001026 offset = page_offset(pages[0]);
Yan, Zheng5b646402016-01-07 16:00:17 +08001027 len = wsize;
1028
1029 req = ceph_osdc_new_request(&fsc->client->osdc,
1030 &ci->i_layout, vino,
1031 offset, &len, 0, num_ops,
Yan, Zheng1f934b02017-08-30 11:36:06 +08001032 CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
1033 snapc, ceph_wbc.truncate_seq,
1034 ceph_wbc.truncate_size, false);
Yan, Zheng5b646402016-01-07 16:00:17 +08001035 if (IS_ERR(req)) {
1036 req = ceph_osdc_new_request(&fsc->client->osdc,
1037 &ci->i_layout, vino,
1038 offset, &len, 0,
1039 min(num_ops,
1040 CEPH_OSD_SLAB_OPS),
1041 CEPH_OSD_OP_WRITE,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001042 CEPH_OSD_FLAG_WRITE,
Yan, Zheng1f934b02017-08-30 11:36:06 +08001043 snapc, ceph_wbc.truncate_seq,
1044 ceph_wbc.truncate_size, true);
Yan, Zheng5b646402016-01-07 16:00:17 +08001045 BUG_ON(IS_ERR(req));
Yan, Zhenge1966b42015-06-18 03:10:58 +08001046 }
Yan, Zheng5b646402016-01-07 16:00:17 +08001047 BUG_ON(len < page_offset(pages[locked_pages - 1]) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001048 PAGE_SIZE - offset);
Sage Weil1d3576f2009-10-06 11:31:09 -07001049
Yan, Zheng5b646402016-01-07 16:00:17 +08001050 req->r_callback = writepages_finish;
1051 req->r_inode = inode;
1052
1053 /* Format the osd request message and submit the write */
1054 len = 0;
1055 data_pages = pages;
1056 op_idx = 0;
1057 for (i = 0; i < locked_pages; i++) {
1058 u64 cur_offset = page_offset(pages[i]);
1059 if (offset + len != cur_offset) {
Yanhu Cao3fb99d42017-07-21 17:20:10 +08001060 if (op_idx + 1 == req->r_num_ops)
Yan, Zheng5b646402016-01-07 16:00:17 +08001061 break;
1062 osd_req_op_extent_dup_last(req, op_idx,
1063 cur_offset - offset);
1064 dout("writepages got pages at %llu~%llu\n",
1065 offset, len);
1066 osd_req_op_extent_osd_data_pages(req, op_idx,
1067 data_pages, len, 0,
Alex Eldera4ce40a2013-04-05 01:27:12 -05001068 !!pool, false);
Yan, Zheng5b646402016-01-07 16:00:17 +08001069 osd_req_op_extent_update(req, op_idx, len);
Alex Eldere5975c72013-03-14 14:09:05 -05001070
Yan, Zheng5b646402016-01-07 16:00:17 +08001071 len = 0;
1072 offset = cur_offset;
1073 data_pages = pages + i;
1074 op_idx++;
1075 }
1076
1077 set_page_writeback(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001078 len += PAGE_SIZE;
Yan, Zheng5b646402016-01-07 16:00:17 +08001079 }
1080
Yan, Zheng1f934b02017-08-30 11:36:06 +08001081 if (ceph_wbc.size_stable) {
1082 len = min(len, ceph_wbc.i_size - offset);
Yan, Zheng5b646402016-01-07 16:00:17 +08001083 } else if (i == locked_pages) {
1084 /* writepages_finish() clears writeback pages
1085 * according to the data length, so make sure
1086 * data length covers all locked pages */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001087 u64 min_len = len + 1 - PAGE_SIZE;
Yan, Zheng1f934b02017-08-30 11:36:06 +08001088 len = get_writepages_data_length(inode, pages[i - 1],
1089 offset);
Yan, Zheng5b646402016-01-07 16:00:17 +08001090 len = max(len, min_len);
1091 }
1092 dout("writepages got pages at %llu~%llu\n", offset, len);
1093
1094 osd_req_op_extent_osd_data_pages(req, op_idx, data_pages, len,
1095 0, !!pool, false);
1096 osd_req_op_extent_update(req, op_idx, len);
1097
Yan, Zheng5b646402016-01-07 16:00:17 +08001098 BUG_ON(op_idx + 1 != req->r_num_ops);
1099
Alex Eldere5975c72013-03-14 14:09:05 -05001100 pool = NULL;
Yan, Zheng5b646402016-01-07 16:00:17 +08001101 if (i < locked_pages) {
1102 BUG_ON(num_ops <= req->r_num_ops);
1103 num_ops -= req->r_num_ops;
Yan, Zheng5b646402016-01-07 16:00:17 +08001104 locked_pages -= i;
Alex Eldere5975c72013-03-14 14:09:05 -05001105
Yan, Zheng5b646402016-01-07 16:00:17 +08001106 /* allocate new pages array for next request */
1107 data_pages = pages;
Kees Cook6da2ec52018-06-12 13:55:00 -07001108 pages = kmalloc_array(locked_pages, sizeof(*pages),
1109 GFP_NOFS);
Yan, Zheng5b646402016-01-07 16:00:17 +08001110 if (!pages) {
1111 pool = fsc->wb_pagevec_pool;
1112 pages = mempool_alloc(pool, GFP_NOFS);
1113 BUG_ON(!pages);
1114 }
1115 memcpy(pages, data_pages + i,
1116 locked_pages * sizeof(*pages));
1117 memset(data_pages + i, 0,
1118 locked_pages * sizeof(*pages));
1119 } else {
1120 BUG_ON(num_ops != req->r_num_ops);
1121 index = pages[i - 1]->index + 1;
1122 /* request message now owns the pages array */
1123 pages = NULL;
1124 }
Alex Eldere5975c72013-03-14 14:09:05 -05001125
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001126 req->r_mtime = inode->i_mtime;
Sage Weil9d6fcb02011-05-12 15:48:16 -07001127 rc = ceph_osdc_start_request(&fsc->client->osdc, req, true);
1128 BUG_ON(rc);
Sage Weil1d3576f2009-10-06 11:31:09 -07001129 req = NULL;
1130
Yan, Zheng5b646402016-01-07 16:00:17 +08001131 wbc->nr_to_write -= i;
1132 if (pages)
1133 goto new_request;
1134
Yan, Zheng2a2d9272017-09-01 16:53:58 +08001135 /*
1136 * We stop writing back only if we are not doing
1137 * integrity sync. In case of integrity sync we have to
1138 * keep going until we have written all the pages
1139 * we tagged for writeback prior to entering this loop.
1140 */
1141 if (wbc->nr_to_write <= 0 && wbc->sync_mode == WB_SYNC_NONE)
Yan, Zhengaf9cc402018-03-04 16:36:01 +08001142 done = true;
Sage Weil1d3576f2009-10-06 11:31:09 -07001143
1144release_pvec_pages:
1145 dout("pagevec_release on %d pages (%p)\n", (int)pvec.nr,
1146 pvec.nr ? pvec.pages[0] : NULL);
1147 pagevec_release(&pvec);
Sage Weil1d3576f2009-10-06 11:31:09 -07001148 }
1149
1150 if (should_loop && !done) {
1151 /* more to do; loop back to beginning of file */
1152 dout("writepages looping back to beginning of file\n");
Yan, Zheng2a2d9272017-09-01 16:53:58 +08001153 end = start_index - 1; /* OK even when start_index == 0 */
Yan, Zhengf2756352017-09-01 17:03:16 +08001154
1155 /* to write dirty pages associated with next snapc,
1156 * we need to wait until current writes complete */
1157 if (wbc->sync_mode != WB_SYNC_NONE &&
1158 start_index == 0 && /* all dirty pages were checked */
1159 !ceph_wbc.head_snapc) {
1160 struct page *page;
1161 unsigned i, nr;
1162 index = 0;
1163 while ((index <= end) &&
1164 (nr = pagevec_lookup_tag(&pvec, mapping, &index,
Jan Kara67fd7072017-11-15 17:35:19 -08001165 PAGECACHE_TAG_WRITEBACK))) {
Yan, Zhengf2756352017-09-01 17:03:16 +08001166 for (i = 0; i < nr; i++) {
1167 page = pvec.pages[i];
1168 if (page_snap_context(page) != snapc)
1169 continue;
1170 wait_on_page_writeback(page);
1171 }
1172 pagevec_release(&pvec);
1173 cond_resched();
1174 }
1175 }
1176
Yan, Zheng2a2d9272017-09-01 16:53:58 +08001177 start_index = 0;
Sage Weil1d3576f2009-10-06 11:31:09 -07001178 index = 0;
1179 goto retry;
1180 }
1181
1182 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
1183 mapping->writeback_index = index;
1184
1185out:
Ilya Dryomov3ed97d62016-04-26 15:05:29 +02001186 ceph_osdc_put_request(req);
Yan, Zheng2a2d9272017-09-01 16:53:58 +08001187 ceph_put_snap_context(last_snapc);
1188 dout("writepages dend - startone, rc = %d\n", rc);
Sage Weil1d3576f2009-10-06 11:31:09 -07001189 return rc;
1190}
1191
1192
1193
1194/*
1195 * See if a given @snapc is either writeable, or already written.
1196 */
1197static int context_is_writeable_or_written(struct inode *inode,
1198 struct ceph_snap_context *snapc)
1199{
Yan, Zheng05455e12017-09-02 10:50:48 +08001200 struct ceph_snap_context *oldest = get_oldest_context(inode, NULL, NULL);
Sage Weil6298a332010-03-31 22:01:38 -07001201 int ret = !oldest || snapc->seq <= oldest->seq;
1202
1203 ceph_put_snap_context(oldest);
1204 return ret;
Sage Weil1d3576f2009-10-06 11:31:09 -07001205}
1206
1207/*
1208 * We are only allowed to write into/dirty the page if the page is
1209 * clean, or already dirty within the same snap context.
Sage Weil8f883c22010-03-19 13:27:53 -07001210 *
1211 * called with page locked.
1212 * return success with page locked,
1213 * or any failure (incl -EAGAIN) with page unlocked.
Sage Weil1d3576f2009-10-06 11:31:09 -07001214 */
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001215static int ceph_update_writeable_page(struct file *file,
1216 loff_t pos, unsigned len,
1217 struct page *page)
Sage Weil1d3576f2009-10-06 11:31:09 -07001218{
Al Viro496ad9a2013-01-23 17:07:38 -05001219 struct inode *inode = file_inode(file);
Yan, Zheng6c93df52016-04-15 13:56:12 +08001220 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -07001221 struct ceph_inode_info *ci = ceph_inode(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001222 loff_t page_off = pos & PAGE_MASK;
1223 int pos_in_page = pos & ~PAGE_MASK;
Sage Weil1d3576f2009-10-06 11:31:09 -07001224 int end_in_page = pos_in_page + len;
1225 loff_t i_size;
Sage Weil1d3576f2009-10-06 11:31:09 -07001226 int r;
Sage Weil80e755f2010-03-31 21:52:10 -07001227 struct ceph_snap_context *snapc, *oldest;
Sage Weil1d3576f2009-10-06 11:31:09 -07001228
Seraphime Kirkovski52953d52016-12-26 10:26:34 +01001229 if (READ_ONCE(fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
Yan, Zheng6c93df52016-04-15 13:56:12 +08001230 dout(" page %p forced umount\n", page);
1231 unlock_page(page);
1232 return -EIO;
1233 }
1234
Sage Weil1d3576f2009-10-06 11:31:09 -07001235retry_locked:
1236 /* writepages currently holds page lock, but if we change that later, */
1237 wait_on_page_writeback(page);
1238
Yan, Zheng61600ef2012-05-28 14:44:30 +08001239 snapc = page_snap_context(page);
Sage Weil80e755f2010-03-31 21:52:10 -07001240 if (snapc && snapc != ci->i_head_snapc) {
Sage Weil1d3576f2009-10-06 11:31:09 -07001241 /*
1242 * this page is already dirty in another (older) snap
1243 * context! is it writeable now?
1244 */
Yan, Zheng05455e12017-09-02 10:50:48 +08001245 oldest = get_oldest_context(inode, NULL, NULL);
Sage Weil80e755f2010-03-31 21:52:10 -07001246 if (snapc->seq > oldest->seq) {
Sage Weil6298a332010-03-31 22:01:38 -07001247 ceph_put_snap_context(oldest);
Sage Weil1d3576f2009-10-06 11:31:09 -07001248 dout(" page %p snapc %p not current or oldest\n",
Sage Weil6298a332010-03-31 22:01:38 -07001249 page, snapc);
Sage Weil1d3576f2009-10-06 11:31:09 -07001250 /*
1251 * queue for writeback, and wait for snapc to
1252 * be writeable or written
1253 */
Sage Weil6298a332010-03-31 22:01:38 -07001254 snapc = ceph_get_snap_context(snapc);
Sage Weil1d3576f2009-10-06 11:31:09 -07001255 unlock_page(page);
Sage Weil3c6f6b72010-02-09 15:24:44 -08001256 ceph_queue_writeback(inode);
Yan, Zhenga78bbd42016-05-13 11:30:24 +08001257 r = wait_event_killable(ci->i_cap_wq,
Sage Weil1d3576f2009-10-06 11:31:09 -07001258 context_is_writeable_or_written(inode, snapc));
1259 ceph_put_snap_context(snapc);
Sage Weil8f883c22010-03-19 13:27:53 -07001260 if (r == -ERESTARTSYS)
1261 return r;
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001262 return -EAGAIN;
Sage Weil1d3576f2009-10-06 11:31:09 -07001263 }
Sage Weil6298a332010-03-31 22:01:38 -07001264 ceph_put_snap_context(oldest);
Sage Weil1d3576f2009-10-06 11:31:09 -07001265
1266 /* yay, writeable, do it now (without dropping page lock) */
1267 dout(" page %p snapc %p not current, but oldest\n",
1268 page, snapc);
1269 if (!clear_page_dirty_for_io(page))
1270 goto retry_locked;
1271 r = writepage_nounlock(page, NULL);
1272 if (r < 0)
Yan, Zhengdd2bc472017-08-04 11:22:31 +08001273 goto fail_unlock;
Sage Weil1d3576f2009-10-06 11:31:09 -07001274 goto retry_locked;
1275 }
1276
1277 if (PageUptodate(page)) {
1278 dout(" page %p already uptodate\n", page);
1279 return 0;
1280 }
1281
1282 /* full page? */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001283 if (pos_in_page == 0 && len == PAGE_SIZE)
Sage Weil1d3576f2009-10-06 11:31:09 -07001284 return 0;
1285
1286 /* past end of file? */
Yan, Zheng99c88e62015-12-30 11:32:46 +08001287 i_size = i_size_read(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -07001288
Sage Weil1d3576f2009-10-06 11:31:09 -07001289 if (page_off >= i_size ||
1290 (pos_in_page == 0 && (pos+len) >= i_size &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001291 end_in_page - pos_in_page != PAGE_SIZE)) {
Sage Weil1d3576f2009-10-06 11:31:09 -07001292 dout(" zeroing %p 0 - %d and %d - %d\n",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001293 page, pos_in_page, end_in_page, (int)PAGE_SIZE);
Sage Weil1d3576f2009-10-06 11:31:09 -07001294 zero_user_segments(page,
1295 0, pos_in_page,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001296 end_in_page, PAGE_SIZE);
Sage Weil1d3576f2009-10-06 11:31:09 -07001297 return 0;
1298 }
1299
1300 /* we need to read it. */
Yan, Zhengdd2bc472017-08-04 11:22:31 +08001301 r = ceph_do_readpage(file, page);
1302 if (r < 0) {
1303 if (r == -EINPROGRESS)
1304 return -EAGAIN;
1305 goto fail_unlock;
1306 }
Sage Weil1d3576f2009-10-06 11:31:09 -07001307 goto retry_locked;
Yan, Zhengdd2bc472017-08-04 11:22:31 +08001308fail_unlock:
Sage Weil1d3576f2009-10-06 11:31:09 -07001309 unlock_page(page);
1310 return r;
1311}
1312
1313/*
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001314 * We are only allowed to write into/dirty the page if the page is
1315 * clean, or already dirty within the same snap context.
1316 */
1317static int ceph_write_begin(struct file *file, struct address_space *mapping,
1318 loff_t pos, unsigned len, unsigned flags,
1319 struct page **pagep, void **fsdata)
1320{
Al Viro496ad9a2013-01-23 17:07:38 -05001321 struct inode *inode = file_inode(file);
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001322 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001323 pgoff_t index = pos >> PAGE_SHIFT;
Sage Weil7971bd92013-05-01 21:15:58 -07001324 int r;
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001325
1326 do {
Sage Weil8f883c22010-03-19 13:27:53 -07001327 /* get a page */
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001328 page = grab_cache_page_write_begin(mapping, index, 0);
Sage Weil7971bd92013-05-01 21:15:58 -07001329 if (!page)
1330 return -ENOMEM;
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001331
1332 dout("write_begin file %p inode %p page %p %d~%d\n", file,
Sage Weil213c99e2010-08-03 10:25:11 -07001333 inode, page, (int)pos, (int)len);
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001334
1335 r = ceph_update_writeable_page(file, pos, len, page);
Taesoo Kimc1d00b22015-03-20 17:36:56 -04001336 if (r < 0)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001337 put_page(page);
Taesoo Kimc1d00b22015-03-20 17:36:56 -04001338 else
1339 *pagep = page;
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001340 } while (r == -EAGAIN);
1341
1342 return r;
1343}
1344
1345/*
Sage Weil1d3576f2009-10-06 11:31:09 -07001346 * we don't do anything in here that simple_write_end doesn't do
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001347 * except adjust dirty page accounting
Sage Weil1d3576f2009-10-06 11:31:09 -07001348 */
1349static int ceph_write_end(struct file *file, struct address_space *mapping,
1350 loff_t pos, unsigned len, unsigned copied,
1351 struct page *page, void *fsdata)
1352{
Al Viro496ad9a2013-01-23 17:07:38 -05001353 struct inode *inode = file_inode(file);
Yan, Zhengefb0ca72017-05-22 12:03:32 +08001354 bool check_cap = false;
Sage Weil1d3576f2009-10-06 11:31:09 -07001355
1356 dout("write_end file %p inode %p page %p %d~%d (%d)\n", file,
1357 inode, page, (int)pos, (int)copied, (int)len);
1358
1359 /* zero the stale part of the page if we did a short copy */
Al Virob9de3132016-09-05 22:20:03 -04001360 if (!PageUptodate(page)) {
1361 if (copied < len) {
1362 copied = 0;
1363 goto out;
1364 }
1365 SetPageUptodate(page);
1366 }
Sage Weil1d3576f2009-10-06 11:31:09 -07001367
1368 /* did file size increase? */
Yan, Zheng99c88e62015-12-30 11:32:46 +08001369 if (pos+copied > i_size_read(inode))
Sage Weil1d3576f2009-10-06 11:31:09 -07001370 check_cap = ceph_inode_set_size(inode, pos+copied);
1371
Sage Weil1d3576f2009-10-06 11:31:09 -07001372 set_page_dirty(page);
1373
Al Virob9de3132016-09-05 22:20:03 -04001374out:
Sage Weil1d3576f2009-10-06 11:31:09 -07001375 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001376 put_page(page);
Sage Weil1d3576f2009-10-06 11:31:09 -07001377
1378 if (check_cap)
1379 ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, NULL);
1380
1381 return copied;
1382}
1383
1384/*
1385 * we set .direct_IO to indicate direct io is supported, but since we
1386 * intercept O_DIRECT reads and writes early, this function should
1387 * never get called.
1388 */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07001389static ssize_t ceph_direct_io(struct kiocb *iocb, struct iov_iter *iter)
Sage Weil1d3576f2009-10-06 11:31:09 -07001390{
1391 WARN_ON(1);
1392 return -EINVAL;
1393}
1394
1395const struct address_space_operations ceph_aops = {
1396 .readpage = ceph_readpage,
1397 .readpages = ceph_readpages,
1398 .writepage = ceph_writepage,
1399 .writepages = ceph_writepages_start,
1400 .write_begin = ceph_write_begin,
1401 .write_end = ceph_write_end,
1402 .set_page_dirty = ceph_set_page_dirty,
1403 .invalidatepage = ceph_invalidatepage,
1404 .releasepage = ceph_releasepage,
1405 .direct_IO = ceph_direct_io,
1406};
1407
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001408static void ceph_block_sigs(sigset_t *oldset)
1409{
1410 sigset_t mask;
1411 siginitsetinv(&mask, sigmask(SIGKILL));
1412 sigprocmask(SIG_BLOCK, &mask, oldset);
1413}
1414
1415static void ceph_restore_sigs(sigset_t *oldset)
1416{
1417 sigprocmask(SIG_SETMASK, oldset, NULL);
1418}
Sage Weil1d3576f2009-10-06 11:31:09 -07001419
1420/*
1421 * vm ops
1422 */
Souptick Joarder24499842018-07-23 21:32:24 +05301423static vm_fault_t ceph_filemap_fault(struct vm_fault *vmf)
Yan, Zheng61f68812013-11-28 14:28:14 +08001424{
Dave Jiang11bac802017-02-24 14:56:41 -08001425 struct vm_area_struct *vma = vmf->vma;
Yan, Zheng61f68812013-11-28 14:28:14 +08001426 struct inode *inode = file_inode(vma->vm_file);
1427 struct ceph_inode_info *ci = ceph_inode(inode);
1428 struct ceph_file_info *fi = vma->vm_file->private_data;
Yan, Zheng3738daa2014-11-14 22:10:07 +08001429 struct page *pinned_page = NULL;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001430 loff_t off = vmf->pgoff << PAGE_SHIFT;
Souptick Joarder24499842018-07-23 21:32:24 +05301431 int want, got, err;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001432 sigset_t oldset;
Souptick Joarder24499842018-07-23 21:32:24 +05301433 vm_fault_t ret = VM_FAULT_SIGBUS;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001434
1435 ceph_block_sigs(&oldset);
Yan, Zheng61f68812013-11-28 14:28:14 +08001436
1437 dout("filemap_fault %p %llx.%llx %llu~%zd trying to get caps\n",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001438 inode, ceph_vinop(inode), off, (size_t)PAGE_SIZE);
Yan, Zheng61f68812013-11-28 14:28:14 +08001439 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1440 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1441 else
1442 want = CEPH_CAP_FILE_CACHE;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001443
1444 got = 0;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001445 err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_RD, want, -1,
1446 &got, &pinned_page);
Souptick Joarder24499842018-07-23 21:32:24 +05301447 if (err < 0)
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001448 goto out_restore;
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001449
Yan, Zheng61f68812013-11-28 14:28:14 +08001450 dout("filemap_fault %p %llu~%zd got cap refs on %s\n",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001451 inode, off, (size_t)PAGE_SIZE, ceph_cap_string(got));
Yan, Zheng61f68812013-11-28 14:28:14 +08001452
Yan, Zheng83701242014-11-14 22:36:18 +08001453 if ((got & (CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO)) ||
Yan, Zheng2b1ac852016-10-25 10:51:55 +08001454 ci->i_inline_version == CEPH_INLINE_NONE) {
Yan, Zheng5d988302017-12-15 11:15:36 +08001455 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
1456 ceph_add_rw_context(fi, &rw_ctx);
Dave Jiang11bac802017-02-24 14:56:41 -08001457 ret = filemap_fault(vmf);
Yan, Zheng5d988302017-12-15 11:15:36 +08001458 ceph_del_rw_context(fi, &rw_ctx);
Souptick Joarder24499842018-07-23 21:32:24 +05301459 dout("filemap_fault %p %llu~%zd drop cap refs %s ret %x\n",
1460 inode, off, (size_t)PAGE_SIZE,
1461 ceph_cap_string(got), ret);
Yan, Zheng2b1ac852016-10-25 10:51:55 +08001462 } else
Souptick Joarder24499842018-07-23 21:32:24 +05301463 err = -EAGAIN;
Yan, Zheng61f68812013-11-28 14:28:14 +08001464
Yan, Zheng3738daa2014-11-14 22:10:07 +08001465 if (pinned_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001466 put_page(pinned_page);
Yan, Zheng61f68812013-11-28 14:28:14 +08001467 ceph_put_cap_refs(ci, got);
1468
Souptick Joarder24499842018-07-23 21:32:24 +05301469 if (err != -EAGAIN)
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001470 goto out_restore;
Yan, Zheng83701242014-11-14 22:36:18 +08001471
1472 /* read inline data */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001473 if (off >= PAGE_SIZE) {
Yan, Zheng83701242014-11-14 22:36:18 +08001474 /* does not support inline data > PAGE_SIZE */
1475 ret = VM_FAULT_SIGBUS;
1476 } else {
Yan, Zheng83701242014-11-14 22:36:18 +08001477 struct address_space *mapping = inode->i_mapping;
1478 struct page *page = find_or_create_page(mapping, 0,
Michal Hockoc62d2552015-11-06 16:28:49 -08001479 mapping_gfp_constraint(mapping,
1480 ~__GFP_FS));
Yan, Zheng83701242014-11-14 22:36:18 +08001481 if (!page) {
1482 ret = VM_FAULT_OOM;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001483 goto out_inline;
Yan, Zheng83701242014-11-14 22:36:18 +08001484 }
Souptick Joarder24499842018-07-23 21:32:24 +05301485 err = __ceph_do_getattr(inode, page,
Yan, Zheng83701242014-11-14 22:36:18 +08001486 CEPH_STAT_CAP_INLINE_DATA, true);
Souptick Joarder24499842018-07-23 21:32:24 +05301487 if (err < 0 || off >= i_size_read(inode)) {
Yan, Zheng83701242014-11-14 22:36:18 +08001488 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001489 put_page(page);
Souptick Joarderc64a2b02019-01-05 01:00:29 +05301490 ret = vmf_error(err);
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001491 goto out_inline;
Yan, Zheng83701242014-11-14 22:36:18 +08001492 }
Souptick Joarder24499842018-07-23 21:32:24 +05301493 if (err < PAGE_SIZE)
1494 zero_user_segment(page, err, PAGE_SIZE);
Yan, Zheng83701242014-11-14 22:36:18 +08001495 else
1496 flush_dcache_page(page);
1497 SetPageUptodate(page);
1498 vmf->page = page;
1499 ret = VM_FAULT_MAJOR | VM_FAULT_LOCKED;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001500out_inline:
Souptick Joarder24499842018-07-23 21:32:24 +05301501 dout("filemap_fault %p %llu~%zd read inline data ret %x\n",
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001502 inode, off, (size_t)PAGE_SIZE, ret);
Yan, Zheng83701242014-11-14 22:36:18 +08001503 }
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001504out_restore:
1505 ceph_restore_sigs(&oldset);
Souptick Joarder24499842018-07-23 21:32:24 +05301506 if (err < 0)
1507 ret = vmf_error(err);
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001508
Yan, Zheng61f68812013-11-28 14:28:14 +08001509 return ret;
1510}
Sage Weil1d3576f2009-10-06 11:31:09 -07001511
1512/*
1513 * Reuse write_begin here for simplicity.
1514 */
Souptick Joarder24499842018-07-23 21:32:24 +05301515static vm_fault_t ceph_page_mkwrite(struct vm_fault *vmf)
Sage Weil1d3576f2009-10-06 11:31:09 -07001516{
Dave Jiang11bac802017-02-24 14:56:41 -08001517 struct vm_area_struct *vma = vmf->vma;
Al Viro496ad9a2013-01-23 17:07:38 -05001518 struct inode *inode = file_inode(vma->vm_file);
Yan, Zheng61f68812013-11-28 14:28:14 +08001519 struct ceph_inode_info *ci = ceph_inode(inode);
1520 struct ceph_file_info *fi = vma->vm_file->private_data;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001521 struct ceph_cap_flush *prealloc_cf;
Yan, Zheng61f68812013-11-28 14:28:14 +08001522 struct page *page = vmf->page;
Alex Elder6285bc22012-10-02 10:25:51 -05001523 loff_t off = page_offset(page);
Yan, Zheng61f68812013-11-28 14:28:14 +08001524 loff_t size = i_size_read(inode);
1525 size_t len;
Souptick Joarder24499842018-07-23 21:32:24 +05301526 int want, got, err;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001527 sigset_t oldset;
Souptick Joarder24499842018-07-23 21:32:24 +05301528 vm_fault_t ret = VM_FAULT_SIGBUS;
Sage Weil1d3576f2009-10-06 11:31:09 -07001529
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001530 prealloc_cf = ceph_alloc_cap_flush();
1531 if (!prealloc_cf)
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001532 return VM_FAULT_OOM;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001533
Jeff Layton249c1df2019-08-01 10:06:40 -04001534 sb_start_pagefault(inode->i_sb);
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001535 ceph_block_sigs(&oldset);
Sage Weil1d3576f2009-10-06 11:31:09 -07001536
Yan, Zheng28127bd2014-11-14 22:38:29 +08001537 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1538 struct page *locked_page = NULL;
1539 if (off == 0) {
1540 lock_page(page);
1541 locked_page = page;
1542 }
Souptick Joarder24499842018-07-23 21:32:24 +05301543 err = ceph_uninline_data(vma->vm_file, locked_page);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001544 if (locked_page)
1545 unlock_page(locked_page);
Souptick Joarder24499842018-07-23 21:32:24 +05301546 if (err < 0)
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001547 goto out_free;
Yan, Zheng28127bd2014-11-14 22:38:29 +08001548 }
1549
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001550 if (off + PAGE_SIZE <= size)
1551 len = PAGE_SIZE;
Sage Weil1d3576f2009-10-06 11:31:09 -07001552 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001553 len = size & ~PAGE_MASK;
Sage Weil1d3576f2009-10-06 11:31:09 -07001554
Yan, Zheng61f68812013-11-28 14:28:14 +08001555 dout("page_mkwrite %p %llx.%llx %llu~%zd getting caps i_size %llu\n",
1556 inode, ceph_vinop(inode), off, len, size);
1557 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1558 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1559 else
1560 want = CEPH_CAP_FILE_BUFFER;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001561
1562 got = 0;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001563 err = ceph_get_caps(vma->vm_file, CEPH_CAP_FILE_WR, want, off + len,
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001564 &got, NULL);
Souptick Joarder24499842018-07-23 21:32:24 +05301565 if (err < 0)
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001566 goto out_free;
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001567
Yan, Zheng61f68812013-11-28 14:28:14 +08001568 dout("page_mkwrite %p %llu~%zd got cap refs on %s\n",
1569 inode, off, len, ceph_cap_string(got));
1570
1571 /* Update time before taking page lock */
1572 file_update_time(vma->vm_file);
Jeff Layton5c308352019-06-06 08:57:27 -04001573 inode_inc_iversion_raw(inode);
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001574
Yan, Zhengf0b33df2016-05-10 19:09:06 +08001575 do {
1576 lock_page(page);
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001577
Yan, Zhengf0b33df2016-05-10 19:09:06 +08001578 if ((off > size) || (page->mapping != inode->i_mapping)) {
1579 unlock_page(page);
1580 ret = VM_FAULT_NOPAGE;
1581 break;
1582 }
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001583
Souptick Joarder24499842018-07-23 21:32:24 +05301584 err = ceph_update_writeable_page(vma->vm_file, off, len, page);
1585 if (err >= 0) {
Yan, Zhengf0b33df2016-05-10 19:09:06 +08001586 /* success. we'll keep the page locked. */
1587 set_page_dirty(page);
1588 ret = VM_FAULT_LOCKED;
1589 }
Souptick Joarder24499842018-07-23 21:32:24 +05301590 } while (err == -EAGAIN);
Yan, Zhengf0b33df2016-05-10 19:09:06 +08001591
Yan, Zheng28127bd2014-11-14 22:38:29 +08001592 if (ret == VM_FAULT_LOCKED ||
1593 ci->i_inline_version != CEPH_INLINE_NONE) {
Yan, Zheng61f68812013-11-28 14:28:14 +08001594 int dirty;
1595 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001596 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001597 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1598 &prealloc_cf);
Yan, Zheng61f68812013-11-28 14:28:14 +08001599 spin_unlock(&ci->i_ceph_lock);
1600 if (dirty)
1601 __mark_inode_dirty(inode, dirty);
1602 }
1603
Souptick Joarder24499842018-07-23 21:32:24 +05301604 dout("page_mkwrite %p %llu~%zd dropping cap refs on %s ret %x\n",
Yan, Zheng61f68812013-11-28 14:28:14 +08001605 inode, off, len, ceph_cap_string(got), ret);
1606 ceph_put_cap_refs(ci, got);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001607out_free:
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001608 ceph_restore_sigs(&oldset);
Jeff Layton249c1df2019-08-01 10:06:40 -04001609 sb_end_pagefault(inode->i_sb);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001610 ceph_free_cap_flush(prealloc_cf);
Souptick Joarder24499842018-07-23 21:32:24 +05301611 if (err < 0)
1612 ret = vmf_error(err);
Sage Weil1d3576f2009-10-06 11:31:09 -07001613 return ret;
1614}
1615
Yan, Zheng31c542a2014-11-14 21:41:55 +08001616void ceph_fill_inline_data(struct inode *inode, struct page *locked_page,
1617 char *data, size_t len)
1618{
1619 struct address_space *mapping = inode->i_mapping;
1620 struct page *page;
1621
1622 if (locked_page) {
1623 page = locked_page;
1624 } else {
1625 if (i_size_read(inode) == 0)
1626 return;
1627 page = find_or_create_page(mapping, 0,
Michal Hockoc62d2552015-11-06 16:28:49 -08001628 mapping_gfp_constraint(mapping,
1629 ~__GFP_FS));
Yan, Zheng31c542a2014-11-14 21:41:55 +08001630 if (!page)
1631 return;
1632 if (PageUptodate(page)) {
1633 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001634 put_page(page);
Yan, Zheng31c542a2014-11-14 21:41:55 +08001635 return;
1636 }
1637 }
1638
Ilya Dryomov0668ff52014-12-19 13:10:10 +03001639 dout("fill_inline_data %p %llx.%llx len %zu locked_page %p\n",
Yan, Zheng31c542a2014-11-14 21:41:55 +08001640 inode, ceph_vinop(inode), len, locked_page);
1641
1642 if (len > 0) {
1643 void *kaddr = kmap_atomic(page);
1644 memcpy(kaddr, data, len);
1645 kunmap_atomic(kaddr);
1646 }
1647
1648 if (page != locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001649 if (len < PAGE_SIZE)
1650 zero_user_segment(page, len, PAGE_SIZE);
Yan, Zheng31c542a2014-11-14 21:41:55 +08001651 else
1652 flush_dcache_page(page);
1653
1654 SetPageUptodate(page);
1655 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001656 put_page(page);
Yan, Zheng31c542a2014-11-14 21:41:55 +08001657 }
1658}
1659
Yan, Zheng28127bd2014-11-14 22:38:29 +08001660int ceph_uninline_data(struct file *filp, struct page *locked_page)
1661{
1662 struct inode *inode = file_inode(filp);
1663 struct ceph_inode_info *ci = ceph_inode(inode);
1664 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1665 struct ceph_osd_request *req;
1666 struct page *page = NULL;
1667 u64 len, inline_version;
1668 int err = 0;
1669 bool from_pagecache = false;
1670
1671 spin_lock(&ci->i_ceph_lock);
1672 inline_version = ci->i_inline_version;
1673 spin_unlock(&ci->i_ceph_lock);
1674
1675 dout("uninline_data %p %llx.%llx inline_version %llu\n",
1676 inode, ceph_vinop(inode), inline_version);
1677
1678 if (inline_version == 1 || /* initial version, no data */
1679 inline_version == CEPH_INLINE_NONE)
1680 goto out;
1681
1682 if (locked_page) {
1683 page = locked_page;
1684 WARN_ON(!PageUptodate(page));
1685 } else if (ceph_caps_issued(ci) &
1686 (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) {
1687 page = find_get_page(inode->i_mapping, 0);
1688 if (page) {
1689 if (PageUptodate(page)) {
1690 from_pagecache = true;
1691 lock_page(page);
1692 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001693 put_page(page);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001694 page = NULL;
1695 }
1696 }
1697 }
1698
1699 if (page) {
1700 len = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001701 if (len > PAGE_SIZE)
1702 len = PAGE_SIZE;
Yan, Zheng28127bd2014-11-14 22:38:29 +08001703 } else {
1704 page = __page_cache_alloc(GFP_NOFS);
1705 if (!page) {
1706 err = -ENOMEM;
1707 goto out;
1708 }
1709 err = __ceph_do_getattr(inode, page,
1710 CEPH_STAT_CAP_INLINE_DATA, true);
1711 if (err < 0) {
1712 /* no inline data */
1713 if (err == -ENODATA)
1714 err = 0;
1715 goto out;
1716 }
1717 len = err;
1718 }
1719
1720 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1721 ceph_vino(inode), 0, &len, 0, 1,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001722 CEPH_OSD_OP_CREATE, CEPH_OSD_FLAG_WRITE,
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001723 NULL, 0, 0, false);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001724 if (IS_ERR(req)) {
1725 err = PTR_ERR(req);
1726 goto out;
1727 }
1728
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001729 req->r_mtime = inode->i_mtime;
Yan, Zheng28127bd2014-11-14 22:38:29 +08001730 err = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1731 if (!err)
1732 err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1733 ceph_osdc_put_request(req);
1734 if (err < 0)
1735 goto out;
1736
1737 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1738 ceph_vino(inode), 0, &len, 1, 3,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001739 CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001740 NULL, ci->i_truncate_seq,
1741 ci->i_truncate_size, false);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001742 if (IS_ERR(req)) {
1743 err = PTR_ERR(req);
1744 goto out;
1745 }
1746
1747 osd_req_op_extent_osd_data_pages(req, 1, &page, len, 0, false, false);
1748
Yan, Zhengec137c12015-04-13 11:25:07 +08001749 {
1750 __le64 xattr_buf = cpu_to_le64(inline_version);
1751 err = osd_req_op_xattr_init(req, 0, CEPH_OSD_OP_CMPXATTR,
1752 "inline_version", &xattr_buf,
1753 sizeof(xattr_buf),
1754 CEPH_OSD_CMPXATTR_OP_GT,
1755 CEPH_OSD_CMPXATTR_MODE_U64);
1756 if (err)
1757 goto out_put;
1758 }
Yan, Zheng28127bd2014-11-14 22:38:29 +08001759
Yan, Zhengec137c12015-04-13 11:25:07 +08001760 {
1761 char xattr_buf[32];
1762 int xattr_len = snprintf(xattr_buf, sizeof(xattr_buf),
1763 "%llu", inline_version);
1764 err = osd_req_op_xattr_init(req, 2, CEPH_OSD_OP_SETXATTR,
1765 "inline_version",
1766 xattr_buf, xattr_len, 0, 0);
1767 if (err)
1768 goto out_put;
1769 }
Yan, Zheng28127bd2014-11-14 22:38:29 +08001770
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001771 req->r_mtime = inode->i_mtime;
Yan, Zheng28127bd2014-11-14 22:38:29 +08001772 err = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1773 if (!err)
1774 err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1775out_put:
1776 ceph_osdc_put_request(req);
1777 if (err == -ECANCELED)
1778 err = 0;
1779out:
1780 if (page && page != locked_page) {
1781 if (from_pagecache) {
1782 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001783 put_page(page);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001784 } else
1785 __free_pages(page, 0);
1786 }
1787
1788 dout("uninline_data %p %llx.%llx inline_version %llu = %d\n",
1789 inode, ceph_vinop(inode), inline_version, err);
1790 return err;
1791}
1792
Kirill A. Shutemov7cbea8d2015-09-09 15:39:26 -07001793static const struct vm_operations_struct ceph_vmops = {
Yan, Zheng61f68812013-11-28 14:28:14 +08001794 .fault = ceph_filemap_fault,
Sage Weil1d3576f2009-10-06 11:31:09 -07001795 .page_mkwrite = ceph_page_mkwrite,
1796};
1797
1798int ceph_mmap(struct file *file, struct vm_area_struct *vma)
1799{
1800 struct address_space *mapping = file->f_mapping;
1801
1802 if (!mapping->a_ops->readpage)
1803 return -ENOEXEC;
1804 file_accessed(file);
1805 vma->vm_ops = &ceph_vmops;
Sage Weil1d3576f2009-10-06 11:31:09 -07001806 return 0;
1807}
Yan, Zheng10183a62015-04-27 15:33:28 +08001808
1809enum {
1810 POOL_READ = 1,
1811 POOL_WRITE = 2,
1812};
1813
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001814static int __ceph_pool_perm_get(struct ceph_inode_info *ci,
1815 s64 pool, struct ceph_string *pool_ns)
Yan, Zheng10183a62015-04-27 15:33:28 +08001816{
1817 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1818 struct ceph_mds_client *mdsc = fsc->mdsc;
1819 struct ceph_osd_request *rd_req = NULL, *wr_req = NULL;
1820 struct rb_node **p, *parent;
1821 struct ceph_pool_perm *perm;
1822 struct page **pages;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001823 size_t pool_ns_len;
Yan, Zheng10183a62015-04-27 15:33:28 +08001824 int err = 0, err2 = 0, have = 0;
1825
1826 down_read(&mdsc->pool_perm_rwsem);
1827 p = &mdsc->pool_perm_tree.rb_node;
1828 while (*p) {
1829 perm = rb_entry(*p, struct ceph_pool_perm, node);
1830 if (pool < perm->pool)
1831 p = &(*p)->rb_left;
1832 else if (pool > perm->pool)
1833 p = &(*p)->rb_right;
1834 else {
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001835 int ret = ceph_compare_string(pool_ns,
1836 perm->pool_ns,
1837 perm->pool_ns_len);
1838 if (ret < 0)
1839 p = &(*p)->rb_left;
1840 else if (ret > 0)
1841 p = &(*p)->rb_right;
1842 else {
1843 have = perm->perm;
1844 break;
1845 }
Yan, Zheng10183a62015-04-27 15:33:28 +08001846 }
1847 }
1848 up_read(&mdsc->pool_perm_rwsem);
1849 if (*p)
1850 goto out;
1851
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001852 if (pool_ns)
1853 dout("__ceph_pool_perm_get pool %lld ns %.*s no perm cached\n",
1854 pool, (int)pool_ns->len, pool_ns->str);
1855 else
1856 dout("__ceph_pool_perm_get pool %lld no perm cached\n", pool);
Yan, Zheng10183a62015-04-27 15:33:28 +08001857
1858 down_write(&mdsc->pool_perm_rwsem);
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001859 p = &mdsc->pool_perm_tree.rb_node;
Yan, Zheng10183a62015-04-27 15:33:28 +08001860 parent = NULL;
1861 while (*p) {
1862 parent = *p;
1863 perm = rb_entry(parent, struct ceph_pool_perm, node);
1864 if (pool < perm->pool)
1865 p = &(*p)->rb_left;
1866 else if (pool > perm->pool)
1867 p = &(*p)->rb_right;
1868 else {
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001869 int ret = ceph_compare_string(pool_ns,
1870 perm->pool_ns,
1871 perm->pool_ns_len);
1872 if (ret < 0)
1873 p = &(*p)->rb_left;
1874 else if (ret > 0)
1875 p = &(*p)->rb_right;
1876 else {
1877 have = perm->perm;
1878 break;
1879 }
Yan, Zheng10183a62015-04-27 15:33:28 +08001880 }
1881 }
1882 if (*p) {
1883 up_write(&mdsc->pool_perm_rwsem);
1884 goto out;
1885 }
1886
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001887 rd_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
Yan, Zheng10183a62015-04-27 15:33:28 +08001888 1, false, GFP_NOFS);
1889 if (!rd_req) {
1890 err = -ENOMEM;
1891 goto out_unlock;
1892 }
1893
1894 rd_req->r_flags = CEPH_OSD_FLAG_READ;
1895 osd_req_op_init(rd_req, 0, CEPH_OSD_OP_STAT, 0);
1896 rd_req->r_base_oloc.pool = pool;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001897 if (pool_ns)
1898 rd_req->r_base_oloc.pool_ns = ceph_get_string(pool_ns);
Ilya Dryomovd30291b2016-04-29 19:54:20 +02001899 ceph_oid_printf(&rd_req->r_base_oid, "%llx.00000000", ci->i_vino.ino);
Yan, Zheng10183a62015-04-27 15:33:28 +08001900
Ilya Dryomov13d1ad12016-04-27 14:15:51 +02001901 err = ceph_osdc_alloc_messages(rd_req, GFP_NOFS);
1902 if (err)
1903 goto out_unlock;
Yan, Zheng10183a62015-04-27 15:33:28 +08001904
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001905 wr_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
Yan, Zheng10183a62015-04-27 15:33:28 +08001906 1, false, GFP_NOFS);
1907 if (!wr_req) {
1908 err = -ENOMEM;
1909 goto out_unlock;
1910 }
1911
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001912 wr_req->r_flags = CEPH_OSD_FLAG_WRITE;
Yan, Zheng10183a62015-04-27 15:33:28 +08001913 osd_req_op_init(wr_req, 0, CEPH_OSD_OP_CREATE, CEPH_OSD_OP_FLAG_EXCL);
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001914 ceph_oloc_copy(&wr_req->r_base_oloc, &rd_req->r_base_oloc);
Ilya Dryomovd30291b2016-04-29 19:54:20 +02001915 ceph_oid_copy(&wr_req->r_base_oid, &rd_req->r_base_oid);
Yan, Zheng10183a62015-04-27 15:33:28 +08001916
Ilya Dryomov13d1ad12016-04-27 14:15:51 +02001917 err = ceph_osdc_alloc_messages(wr_req, GFP_NOFS);
1918 if (err)
1919 goto out_unlock;
Yan, Zheng10183a62015-04-27 15:33:28 +08001920
1921 /* one page should be large enough for STAT data */
1922 pages = ceph_alloc_page_vector(1, GFP_KERNEL);
1923 if (IS_ERR(pages)) {
1924 err = PTR_ERR(pages);
1925 goto out_unlock;
1926 }
1927
1928 osd_req_op_raw_data_in_pages(rd_req, 0, pages, PAGE_SIZE,
1929 0, false, true);
Yan, Zheng10183a62015-04-27 15:33:28 +08001930 err = ceph_osdc_start_request(&fsc->client->osdc, rd_req, false);
1931
Arnd Bergmannfac02dd2018-07-13 22:18:37 +02001932 wr_req->r_mtime = ci->vfs_inode.i_mtime;
Yan, Zheng10183a62015-04-27 15:33:28 +08001933 err2 = ceph_osdc_start_request(&fsc->client->osdc, wr_req, false);
1934
1935 if (!err)
1936 err = ceph_osdc_wait_request(&fsc->client->osdc, rd_req);
1937 if (!err2)
1938 err2 = ceph_osdc_wait_request(&fsc->client->osdc, wr_req);
1939
1940 if (err >= 0 || err == -ENOENT)
1941 have |= POOL_READ;
Yan, Zheng131d7eb2019-07-25 20:16:47 +08001942 else if (err != -EPERM) {
1943 if (err == -EBLACKLISTED)
1944 fsc->blacklisted = true;
Yan, Zheng10183a62015-04-27 15:33:28 +08001945 goto out_unlock;
Yan, Zheng131d7eb2019-07-25 20:16:47 +08001946 }
Yan, Zheng10183a62015-04-27 15:33:28 +08001947
1948 if (err2 == 0 || err2 == -EEXIST)
1949 have |= POOL_WRITE;
1950 else if (err2 != -EPERM) {
Yan, Zheng131d7eb2019-07-25 20:16:47 +08001951 if (err2 == -EBLACKLISTED)
1952 fsc->blacklisted = true;
Yan, Zheng10183a62015-04-27 15:33:28 +08001953 err = err2;
1954 goto out_unlock;
1955 }
1956
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001957 pool_ns_len = pool_ns ? pool_ns->len : 0;
1958 perm = kmalloc(sizeof(*perm) + pool_ns_len + 1, GFP_NOFS);
Yan, Zheng10183a62015-04-27 15:33:28 +08001959 if (!perm) {
1960 err = -ENOMEM;
1961 goto out_unlock;
1962 }
1963
1964 perm->pool = pool;
1965 perm->perm = have;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001966 perm->pool_ns_len = pool_ns_len;
1967 if (pool_ns_len > 0)
1968 memcpy(perm->pool_ns, pool_ns->str, pool_ns_len);
1969 perm->pool_ns[pool_ns_len] = 0;
1970
Yan, Zheng10183a62015-04-27 15:33:28 +08001971 rb_link_node(&perm->node, parent, p);
1972 rb_insert_color(&perm->node, &mdsc->pool_perm_tree);
1973 err = 0;
1974out_unlock:
1975 up_write(&mdsc->pool_perm_rwsem);
1976
Ilya Dryomov3ed97d62016-04-26 15:05:29 +02001977 ceph_osdc_put_request(rd_req);
1978 ceph_osdc_put_request(wr_req);
Yan, Zheng10183a62015-04-27 15:33:28 +08001979out:
1980 if (!err)
1981 err = have;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001982 if (pool_ns)
1983 dout("__ceph_pool_perm_get pool %lld ns %.*s result = %d\n",
1984 pool, (int)pool_ns->len, pool_ns->str, err);
1985 else
1986 dout("__ceph_pool_perm_get pool %lld result = %d\n", pool, err);
Yan, Zheng10183a62015-04-27 15:33:28 +08001987 return err;
1988}
1989
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001990int ceph_pool_perm_check(struct inode *inode, int need)
Yan, Zheng10183a62015-04-27 15:33:28 +08001991{
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001992 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001993 struct ceph_string *pool_ns;
Yan, Zheng5e3ded12019-07-25 20:16:43 +08001994 s64 pool;
Yan, Zheng10183a62015-04-27 15:33:28 +08001995 int ret, flags;
1996
Yan, Zheng80e80fb2016-12-13 16:03:26 +08001997 if (ci->i_vino.snap != CEPH_NOSNAP) {
1998 /*
1999 * Pool permission check needs to write to the first object.
2000 * But for snapshot, head of the first object may have alread
2001 * been deleted. Skip check to avoid creating orphan object.
2002 */
2003 return 0;
2004 }
2005
Yan, Zheng5e3ded12019-07-25 20:16:43 +08002006 if (ceph_test_mount_opt(ceph_inode_to_client(inode),
Yan, Zheng10183a62015-04-27 15:33:28 +08002007 NOPOOLPERM))
2008 return 0;
2009
2010 spin_lock(&ci->i_ceph_lock);
2011 flags = ci->i_ceph_flags;
Yan, Zheng76271512016-02-03 21:24:49 +08002012 pool = ci->i_layout.pool_id;
Yan, Zheng10183a62015-04-27 15:33:28 +08002013 spin_unlock(&ci->i_ceph_lock);
2014check:
2015 if (flags & CEPH_I_POOL_PERM) {
2016 if ((need & CEPH_CAP_FILE_RD) && !(flags & CEPH_I_POOL_RD)) {
Yan, Zheng76271512016-02-03 21:24:49 +08002017 dout("ceph_pool_perm_check pool %lld no read perm\n",
Yan, Zheng10183a62015-04-27 15:33:28 +08002018 pool);
2019 return -EPERM;
2020 }
2021 if ((need & CEPH_CAP_FILE_WR) && !(flags & CEPH_I_POOL_WR)) {
Yan, Zheng76271512016-02-03 21:24:49 +08002022 dout("ceph_pool_perm_check pool %lld no write perm\n",
Yan, Zheng10183a62015-04-27 15:33:28 +08002023 pool);
2024 return -EPERM;
2025 }
2026 return 0;
2027 }
2028
Yan, Zheng779fe0f2016-03-07 09:35:06 +08002029 pool_ns = ceph_try_get_string(ci->i_layout.pool_ns);
2030 ret = __ceph_pool_perm_get(ci, pool, pool_ns);
2031 ceph_put_string(pool_ns);
Yan, Zheng10183a62015-04-27 15:33:28 +08002032 if (ret < 0)
2033 return ret;
2034
2035 flags = CEPH_I_POOL_PERM;
2036 if (ret & POOL_READ)
2037 flags |= CEPH_I_POOL_RD;
2038 if (ret & POOL_WRITE)
2039 flags |= CEPH_I_POOL_WR;
2040
2041 spin_lock(&ci->i_ceph_lock);
Yan, Zheng779fe0f2016-03-07 09:35:06 +08002042 if (pool == ci->i_layout.pool_id &&
2043 pool_ns == rcu_dereference_raw(ci->i_layout.pool_ns)) {
2044 ci->i_ceph_flags |= flags;
Yan, Zheng10183a62015-04-27 15:33:28 +08002045 } else {
Yan, Zheng76271512016-02-03 21:24:49 +08002046 pool = ci->i_layout.pool_id;
Yan, Zheng10183a62015-04-27 15:33:28 +08002047 flags = ci->i_ceph_flags;
2048 }
2049 spin_unlock(&ci->i_ceph_lock);
2050 goto check;
2051}
2052
2053void ceph_pool_perm_destroy(struct ceph_mds_client *mdsc)
2054{
2055 struct ceph_pool_perm *perm;
2056 struct rb_node *n;
2057
2058 while (!RB_EMPTY_ROOT(&mdsc->pool_perm_tree)) {
2059 n = rb_first(&mdsc->pool_perm_tree);
2060 perm = rb_entry(n, struct ceph_pool_perm, node);
2061 rb_erase(n, &mdsc->pool_perm_tree);
2062 kfree(perm);
2063 }
2064}