blob: 5f7ad3d0df2ea69121acded120e26d05515fd79a [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>
Sage Weil1d3576f2009-10-06 11:31:09 -070013
14#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070015#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040016#include "cache.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070017#include <linux/ceph/osd_client.h>
Ilya Dryomov08c1ac52018-02-17 10:41:20 +010018#include <linux/ceph/striper.h>
Sage Weil1d3576f2009-10-06 11:31:09 -070019
20/*
21 * Ceph address space ops.
22 *
23 * There are a few funny things going on here.
24 *
25 * The page->private field is used to reference a struct
26 * ceph_snap_context for _every_ dirty page. This indicates which
27 * snapshot the page was logically dirtied in, and thus which snap
28 * context needs to be associated with the osd write during writeback.
29 *
30 * Similarly, struct ceph_inode_info maintains a set of counters to
Lucas De Marchi25985ed2011-03-30 22:57:33 -030031 * count dirty pages on the inode. In the absence of snapshots,
Sage Weil1d3576f2009-10-06 11:31:09 -070032 * i_wrbuffer_ref == i_wrbuffer_ref_head == the dirty page count.
33 *
34 * When a snapshot is taken (that is, when the client receives
35 * notification that a snapshot was taken), each inode with caps and
36 * with dirty pages (dirty pages implies there is a cap) gets a new
37 * ceph_cap_snap in the i_cap_snaps list (which is sorted in ascending
38 * order, new snaps go to the tail). The i_wrbuffer_ref_head count is
39 * moved to capsnap->dirty. (Unless a sync write is currently in
40 * progress. In that case, the capsnap is said to be "pending", new
41 * writes cannot start, and the capsnap isn't "finalized" until the
42 * write completes (or fails) and a final size/mtime for the inode for
43 * that snap can be settled upon.) i_wrbuffer_ref_head is reset to 0.
44 *
45 * On writeback, we must submit writes to the osd IN SNAP ORDER. So,
46 * we look for the first capsnap in i_cap_snaps and write out pages in
47 * that snap context _only_. Then we move on to the next capsnap,
48 * eventually reaching the "live" or "head" context (i.e., pages that
49 * are not yet snapped) and are writing the most recently dirtied
50 * pages.
51 *
52 * Invalidate and so forth must take care to ensure the dirty page
53 * accounting is preserved.
54 */
55
Yehuda Sadeh2baba252009-12-18 13:51:57 -080056#define CONGESTION_ON_THRESH(congestion_kb) (congestion_kb >> (PAGE_SHIFT-10))
57#define CONGESTION_OFF_THRESH(congestion_kb) \
58 (CONGESTION_ON_THRESH(congestion_kb) - \
59 (CONGESTION_ON_THRESH(congestion_kb) >> 2))
60
Yan, Zheng61600ef2012-05-28 14:44:30 +080061static inline struct ceph_snap_context *page_snap_context(struct page *page)
62{
63 if (PagePrivate(page))
64 return (void *)page->private;
65 return NULL;
66}
Sage Weil1d3576f2009-10-06 11:31:09 -070067
68/*
69 * Dirty a page. Optimistically adjust accounting, on the assumption
70 * that we won't race with invalidate. If we do, readjust.
71 */
72static int ceph_set_page_dirty(struct page *page)
73{
74 struct address_space *mapping = page->mapping;
75 struct inode *inode;
76 struct ceph_inode_info *ci;
Sage Weil1d3576f2009-10-06 11:31:09 -070077 struct ceph_snap_context *snapc;
Sha Zhengju7d6e1f52013-08-21 16:27:34 +080078 int ret;
Sage Weil1d3576f2009-10-06 11:31:09 -070079
80 if (unlikely(!mapping))
81 return !TestSetPageDirty(page);
82
Sha Zhengju7d6e1f52013-08-21 16:27:34 +080083 if (PageDirty(page)) {
Sage Weil1d3576f2009-10-06 11:31:09 -070084 dout("%p set_page_dirty %p idx %lu -- already dirty\n",
85 mapping->host, page, page->index);
Sha Zhengju7d6e1f52013-08-21 16:27:34 +080086 BUG_ON(!PagePrivate(page));
Sage Weil1d3576f2009-10-06 11:31:09 -070087 return 0;
88 }
89
90 inode = mapping->host;
91 ci = ceph_inode(inode);
92
Sage Weil1d3576f2009-10-06 11:31:09 -070093 /* dirty the head */
Sage Weilbe655592011-11-30 09:47:09 -080094 spin_lock(&ci->i_ceph_lock);
Yan, Zheng5dda377c2015-04-30 14:40:54 +080095 BUG_ON(ci->i_wr_ref == 0); // caller should hold Fw reference
96 if (__ceph_have_pending_cap_snap(ci)) {
97 struct ceph_cap_snap *capsnap =
98 list_last_entry(&ci->i_cap_snaps,
99 struct ceph_cap_snap,
100 ci_item);
101 snapc = ceph_get_snap_context(capsnap->context);
102 capsnap->dirty_pages++;
103 } else {
104 BUG_ON(!ci->i_head_snapc);
105 snapc = ceph_get_snap_context(ci->i_head_snapc);
106 ++ci->i_wrbuffer_ref_head;
107 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700108 if (ci->i_wrbuffer_ref == 0)
Dave Chinner0444d762011-03-29 18:08:50 +1100109 ihold(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -0700110 ++ci->i_wrbuffer_ref;
111 dout("%p set_page_dirty %p idx %lu head %d/%d -> %d/%d "
112 "snapc %p seq %lld (%d snaps)\n",
113 mapping->host, page, page->index,
114 ci->i_wrbuffer_ref-1, ci->i_wrbuffer_ref_head-1,
115 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
116 snapc, snapc->seq, snapc->num_snaps);
Sage Weilbe655592011-11-30 09:47:09 -0800117 spin_unlock(&ci->i_ceph_lock);
Sage Weil1d3576f2009-10-06 11:31:09 -0700118
Sha Zhengju7d6e1f52013-08-21 16:27:34 +0800119 /*
120 * Reference snap context in page->private. Also set
121 * PagePrivate so that we get invalidatepage callback.
122 */
123 BUG_ON(PagePrivate(page));
124 page->private = (unsigned long)snapc;
125 SetPagePrivate(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700126
Sha Zhengju7d6e1f52013-08-21 16:27:34 +0800127 ret = __set_page_dirty_nobuffers(page);
128 WARN_ON(!PageLocked(page));
129 WARN_ON(!page->mapping);
Sage Weil1d3576f2009-10-06 11:31:09 -0700130
Sha Zhengju7d6e1f52013-08-21 16:27:34 +0800131 return ret;
Sage Weil1d3576f2009-10-06 11:31:09 -0700132}
133
134/*
135 * If we are truncating the full page (i.e. offset == 0), adjust the
136 * dirty page counters appropriately. Only called if there is private
137 * data on the page.
138 */
Lukas Czernerd47992f2013-05-21 23:17:23 -0400139static void ceph_invalidatepage(struct page *page, unsigned int offset,
140 unsigned int length)
Sage Weil1d3576f2009-10-06 11:31:09 -0700141{
Alexander Beregalov4ce1e9a2010-02-22 17:17:44 +0300142 struct inode *inode;
Sage Weil1d3576f2009-10-06 11:31:09 -0700143 struct ceph_inode_info *ci;
Yan, Zheng61600ef2012-05-28 14:44:30 +0800144 struct ceph_snap_context *snapc = page_snap_context(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700145
Alexander Beregalov4ce1e9a2010-02-22 17:17:44 +0300146 inode = page->mapping->host;
Milosz Tanskib150f5c12013-08-09 12:59:55 -0400147 ci = ceph_inode(inode);
148
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300149 if (offset != 0 || length != PAGE_SIZE) {
Milosz Tanskib150f5c12013-08-09 12:59:55 -0400150 dout("%p invalidatepage %p idx %lu partial dirty page %u~%u\n",
151 inode, page, page->index, offset, length);
152 return;
153 }
Alexander Beregalov4ce1e9a2010-02-22 17:17:44 +0300154
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400155 ceph_invalidate_fscache_page(inode, page);
156
Yan, Zhengb072d772017-08-30 11:27:29 +0800157 WARN_ON(!PageLocked(page));
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400158 if (!PagePrivate(page))
159 return;
160
Milosz Tanskib150f5c12013-08-09 12:59:55 -0400161 ClearPageChecked(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700162
Milosz Tanskib150f5c12013-08-09 12:59:55 -0400163 dout("%p invalidatepage %p idx %lu full dirty page\n",
164 inode, page, page->index);
165
166 ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
167 ceph_put_snap_context(snapc);
168 page->private = 0;
169 ClearPagePrivate(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700170}
171
Sage Weil1d3576f2009-10-06 11:31:09 -0700172static int ceph_releasepage(struct page *page, gfp_t g)
173{
NeilBrowne55f1a12016-08-31 12:59:29 +1000174 dout("%p releasepage %p idx %lu (%sdirty)\n", page->mapping->host,
175 page, page->index, PageDirty(page) ? "" : "not ");
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400176
177 /* Can we release the page from the cache? */
178 if (!ceph_release_fscache_page(page, g))
179 return 0;
180
181 return !PagePrivate(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700182}
183
184/*
185 * read a single page, without unlocking it.
186 */
Yan, Zhengdd2bc472017-08-04 11:22:31 +0800187static int ceph_do_readpage(struct file *filp, struct page *page)
Sage Weil1d3576f2009-10-06 11:31:09 -0700188{
Al Viro496ad9a2013-01-23 17:07:38 -0500189 struct inode *inode = file_inode(filp);
Sage Weil1d3576f2009-10-06 11:31:09 -0700190 struct ceph_inode_info *ci = ceph_inode(inode);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400191 struct ceph_osd_client *osdc =
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700192 &ceph_inode_to_client(inode)->client->osdc;
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);
221 err = ceph_osdc_readpages(osdc, ceph_vino(inode), &ci->i_layout,
Yan, Zheng83701242014-11-14 22:36:18 +0800222 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);
Sage Weil1d3576f2009-10-06 11:31:09 -0700230 goto out;
Sage Weil1d3576f2009-10-06 11:31:09 -0700231 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300232 if (err < PAGE_SIZE)
Zhang Zhen23cd5732014-05-28 15:09:55 +0800233 /* zero fill remainder of page */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300234 zero_user_segment(page, err, PAGE_SIZE);
Zhang Zhen23cd5732014-05-28 15:09:55 +0800235 else
236 flush_dcache_page(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700237
Zhang Zhen23cd5732014-05-28 15:09:55 +0800238 SetPageUptodate(page);
239 ceph_readpage_to_fscache(inode, page);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400240
Sage Weil1d3576f2009-10-06 11:31:09 -0700241out:
242 return err < 0 ? err : 0;
243}
244
245static int ceph_readpage(struct file *filp, struct page *page)
246{
Yan, Zhengdd2bc472017-08-04 11:22:31 +0800247 int r = ceph_do_readpage(filp, page);
248 if (r != -EINPROGRESS)
249 unlock_page(page);
250 else
251 r = 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700252 return r;
253}
254
255/*
Sage Weil7c272192011-08-03 09:58:09 -0700256 * Finish an async read(ahead) op.
Sage Weil1d3576f2009-10-06 11:31:09 -0700257 */
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200258static void finish_read(struct ceph_osd_request *req)
Sage Weil1d3576f2009-10-06 11:31:09 -0700259{
Sage Weil7c272192011-08-03 09:58:09 -0700260 struct inode *inode = req->r_inode;
Alex Elder87060c12013-04-03 01:28:58 -0500261 struct ceph_osd_data *osd_data;
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200262 int rc = req->r_result <= 0 ? req->r_result : 0;
263 int bytes = req->r_result >= 0 ? req->r_result : 0;
Alex Eldere0c59482013-03-07 15:38:25 -0600264 int num_pages;
Sage Weil7c272192011-08-03 09:58:09 -0700265 int i;
266
Sage Weil7c272192011-08-03 09:58:09 -0700267 dout("finish_read %p req %p rc %d bytes %d\n", inode, req, rc, bytes);
268
269 /* unlock all pages, zeroing any data we didn't read */
Alex Elder406e2c92013-04-15 14:50:36 -0500270 osd_data = osd_req_op_extent_osd_data(req, 0);
Alex Elder87060c12013-04-03 01:28:58 -0500271 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
272 num_pages = calc_pages_for((u64)osd_data->alignment,
273 (u64)osd_data->length);
Alex Eldere0c59482013-03-07 15:38:25 -0600274 for (i = 0; i < num_pages; i++) {
Alex Elder87060c12013-04-03 01:28:58 -0500275 struct page *page = osd_data->pages[i];
Sage Weil7c272192011-08-03 09:58:09 -0700276
Yan, Zheng368e3582016-05-17 11:58:02 +0800277 if (rc < 0 && rc != -ENOENT) {
278 ceph_fscache_readpage_cancel(inode, page);
Li Wangf36132a2013-11-27 22:28:13 +0800279 goto unlock;
Yan, Zheng368e3582016-05-17 11:58:02 +0800280 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300281 if (bytes < (int)PAGE_SIZE) {
Sage Weil7c272192011-08-03 09:58:09 -0700282 /* zero (remainder of) page */
283 int s = bytes < 0 ? 0 : bytes;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300284 zero_user_segment(page, s, PAGE_SIZE);
Sage Weil7c272192011-08-03 09:58:09 -0700285 }
286 dout("finish_read %p uptodate %p idx %lu\n", inode, page,
287 page->index);
288 flush_dcache_page(page);
289 SetPageUptodate(page);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400290 ceph_readpage_to_fscache(inode, page);
Li Wangf36132a2013-11-27 22:28:13 +0800291unlock:
Sage Weil7c272192011-08-03 09:58:09 -0700292 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300293 put_page(page);
294 bytes -= PAGE_SIZE;
Sage Weil7c272192011-08-03 09:58:09 -0700295 }
Alex Elder87060c12013-04-03 01:28:58 -0500296 kfree(osd_data->pages);
Sage Weil7c272192011-08-03 09:58:09 -0700297}
298
299/*
300 * start an async read(ahead) operation. return nr_pages we submitted
301 * a read for on success, or negative error code.
302 */
Yan, Zheng5d988302017-12-15 11:15:36 +0800303static int start_read(struct inode *inode, struct ceph_rw_context *rw_ctx,
304 struct list_head *page_list, int max)
Sage Weil7c272192011-08-03 09:58:09 -0700305{
306 struct ceph_osd_client *osdc =
307 &ceph_inode_to_client(inode)->client->osdc;
308 struct ceph_inode_info *ci = ceph_inode(inode);
309 struct page *page = list_entry(page_list->prev, struct page, lru);
Alex Elderacead002013-03-14 14:09:05 -0500310 struct ceph_vino vino;
Sage Weil7c272192011-08-03 09:58:09 -0700311 struct ceph_osd_request *req;
312 u64 off;
313 u64 len;
314 int i;
Sage Weil1d3576f2009-10-06 11:31:09 -0700315 struct page **pages;
Sage Weil7c272192011-08-03 09:58:09 -0700316 pgoff_t next_index;
317 int nr_pages = 0;
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800318 int got = 0;
319 int ret = 0;
320
Yan, Zheng5d988302017-12-15 11:15:36 +0800321 if (!rw_ctx) {
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800322 /* caller of readpages does not hold buffer and read caps
323 * (fadvise, madvise and readahead cases) */
324 int want = CEPH_CAP_FILE_CACHE;
325 ret = ceph_try_get_caps(ci, CEPH_CAP_FILE_RD, want, &got);
326 if (ret < 0) {
327 dout("start_read %p, error getting cap\n", inode);
328 } else if (!(got & want)) {
329 dout("start_read %p, no cache cap\n", inode);
330 ret = 0;
331 }
332 if (ret <= 0) {
333 if (got)
334 ceph_put_cap_refs(ci, got);
335 while (!list_empty(page_list)) {
336 page = list_entry(page_list->prev,
337 struct page, lru);
338 list_del(&page->lru);
339 put_page(page);
340 }
341 return ret;
342 }
343 }
Sage Weil7c272192011-08-03 09:58:09 -0700344
Alex Elder6285bc22012-10-02 10:25:51 -0500345 off = (u64) page_offset(page);
Sage Weil7c272192011-08-03 09:58:09 -0700346
347 /* count pages */
348 next_index = page->index;
349 list_for_each_entry_reverse(page, page_list, lru) {
350 if (page->index != next_index)
351 break;
352 nr_pages++;
353 next_index++;
Sage Weil0d66a482011-08-04 08:21:30 -0700354 if (max && nr_pages == max)
355 break;
Sage Weil7c272192011-08-03 09:58:09 -0700356 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300357 len = nr_pages << PAGE_SHIFT;
Sage Weil7c272192011-08-03 09:58:09 -0700358 dout("start_read %p nr_pages %d is %lld~%lld\n", inode, nr_pages,
359 off, len);
Alex Elderacead002013-03-14 14:09:05 -0500360 vino = ceph_vino(inode);
361 req = ceph_osdc_new_request(osdc, &ci->i_layout, vino, off, &len,
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800362 0, 1, CEPH_OSD_OP_READ,
Alex Elderacead002013-03-14 14:09:05 -0500363 CEPH_OSD_FLAG_READ, NULL,
Sage Weil7c272192011-08-03 09:58:09 -0700364 ci->i_truncate_seq, ci->i_truncate_size,
Alex Elderacead002013-03-14 14:09:05 -0500365 false);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800366 if (IS_ERR(req)) {
367 ret = PTR_ERR(req);
368 goto out;
369 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700370
371 /* build page vector */
Alex Eldercf7b7e142013-03-01 18:00:15 -0600372 nr_pages = calc_pages_for(0, len);
Yan, Zheng687265e2015-06-13 17:27:05 +0800373 pages = kmalloc(sizeof(*pages) * nr_pages, GFP_KERNEL);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800374 if (!pages) {
375 ret = -ENOMEM;
376 goto out_put;
377 }
Sage Weil7c272192011-08-03 09:58:09 -0700378 for (i = 0; i < nr_pages; ++i) {
379 page = list_entry(page_list->prev, struct page, lru);
380 BUG_ON(PageLocked(page));
381 list_del(&page->lru);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400382
Sage Weil7c272192011-08-03 09:58:09 -0700383 dout("start_read %p adding %p idx %lu\n", inode, page,
384 page->index);
385 if (add_to_page_cache_lru(page, &inode->i_data, page->index,
Yan, Zheng687265e2015-06-13 17:27:05 +0800386 GFP_KERNEL)) {
Milosz Tanskid4d3aa32013-09-03 19:11:17 -0400387 ceph_fscache_uncache_page(inode, page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300388 put_page(page);
Sage Weil7c272192011-08-03 09:58:09 -0700389 dout("start_read %p add_to_page_cache failed %p\n",
390 inode, page);
391 nr_pages = i;
Yan, Zheng1afe4782016-08-24 11:33:46 +0800392 if (nr_pages > 0) {
393 len = nr_pages << PAGE_SHIFT;
Yan, Zhengd641df82017-01-19 11:21:29 +0800394 osd_req_op_extent_update(req, 0, len);
Yan, Zheng1afe4782016-08-24 11:33:46 +0800395 break;
396 }
Sage Weil7c272192011-08-03 09:58:09 -0700397 goto out_pages;
Sage Weil1d3576f2009-10-06 11:31:09 -0700398 }
Sage Weil7c272192011-08-03 09:58:09 -0700399 pages[i] = page;
Sage Weil1d3576f2009-10-06 11:31:09 -0700400 }
Alex Elder406e2c92013-04-15 14:50:36 -0500401 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0, false, false);
Sage Weil7c272192011-08-03 09:58:09 -0700402 req->r_callback = finish_read;
403 req->r_inode = inode;
404
405 dout("start_read %p starting %p %lld~%lld\n", inode, req, off, len);
406 ret = ceph_osdc_start_request(osdc, req, false);
407 if (ret < 0)
408 goto out_pages;
409 ceph_osdc_put_request(req);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800410
411 /* After adding locked pages to page cache, the inode holds cache cap.
412 * So we can drop our cap refs. */
413 if (got)
414 ceph_put_cap_refs(ci, got);
415
Sage Weil7c272192011-08-03 09:58:09 -0700416 return nr_pages;
417
418out_pages:
Yan, Zheng1afe4782016-08-24 11:33:46 +0800419 for (i = 0; i < nr_pages; ++i) {
420 ceph_fscache_readpage_cancel(inode, pages[i]);
421 unlock_page(pages[i]);
422 }
423 ceph_put_page_vector(pages, nr_pages, false);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800424out_put:
Sage Weil7c272192011-08-03 09:58:09 -0700425 ceph_osdc_put_request(req);
Yan, Zheng2b1ac852016-10-25 10:51:55 +0800426out:
427 if (got)
428 ceph_put_cap_refs(ci, got);
Sage Weil7c272192011-08-03 09:58:09 -0700429 return ret;
Sage Weil1d3576f2009-10-06 11:31:09 -0700430}
431
Sage Weil7c272192011-08-03 09:58:09 -0700432
Sage Weil1d3576f2009-10-06 11:31:09 -0700433/*
434 * Read multiple pages. Leave pages we don't read + unlock in page_list;
435 * the caller (VM) cleans them up.
436 */
437static int ceph_readpages(struct file *file, struct address_space *mapping,
438 struct list_head *page_list, unsigned nr_pages)
439{
Al Viro496ad9a2013-01-23 17:07:38 -0500440 struct inode *inode = file_inode(file);
Sage Weil0d66a482011-08-04 08:21:30 -0700441 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Chengguang Xu73737682018-02-28 19:43:47 +0800442 struct ceph_file_info *fi = file->private_data;
Yan, Zheng5d988302017-12-15 11:15:36 +0800443 struct ceph_rw_context *rw_ctx;
Sage Weil1d3576f2009-10-06 11:31:09 -0700444 int rc = 0;
Sage Weil0d66a482011-08-04 08:21:30 -0700445 int max = 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700446
Yan, Zheng83701242014-11-14 22:36:18 +0800447 if (ceph_inode(inode)->i_inline_version != CEPH_INLINE_NONE)
448 return -EINVAL;
449
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400450 rc = ceph_readpages_from_fscache(mapping->host, mapping, page_list,
451 &nr_pages);
452
453 if (rc == 0)
454 goto out;
455
Chengguang Xu73737682018-02-28 19:43:47 +0800456 rw_ctx = ceph_find_rw_context(fi);
Yan, Zhengaa187922017-07-11 15:56:09 +0800457 max = fsc->mount_options->rsize >> PAGE_SHIFT;
Yan, Zheng5d988302017-12-15 11:15:36 +0800458 dout("readpages %p file %p ctx %p nr_pages %d max %d\n",
459 inode, file, rw_ctx, nr_pages, max);
Sage Weil7c272192011-08-03 09:58:09 -0700460 while (!list_empty(page_list)) {
Yan, Zheng5d988302017-12-15 11:15:36 +0800461 rc = start_read(inode, rw_ctx, page_list, max);
Sage Weil7c272192011-08-03 09:58:09 -0700462 if (rc < 0)
463 goto out;
Sage Weil1d3576f2009-10-06 11:31:09 -0700464 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700465out:
Milosz Tanski76be7782013-08-21 17:30:27 -0400466 ceph_fscache_readpages_cancel(inode, page_list);
467
Sage Weil7c272192011-08-03 09:58:09 -0700468 dout("readpages %p file %p ret %d\n", inode, file, rc);
Sage Weil1d3576f2009-10-06 11:31:09 -0700469 return rc;
470}
471
Yan, Zheng1f934b02017-08-30 11:36:06 +0800472struct ceph_writeback_ctl
473{
474 loff_t i_size;
475 u64 truncate_size;
476 u32 truncate_seq;
477 bool size_stable;
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800478 bool head_snapc;
Yan, Zheng1f934b02017-08-30 11:36:06 +0800479};
480
Sage Weil1d3576f2009-10-06 11:31:09 -0700481/*
482 * Get ref for the oldest snapc for an inode with dirty data... that is, the
483 * only snap context we are allowed to write back.
Sage Weil1d3576f2009-10-06 11:31:09 -0700484 */
Yan, Zheng1f934b02017-08-30 11:36:06 +0800485static struct ceph_snap_context *
Yan, Zheng05455e12017-09-02 10:50:48 +0800486get_oldest_context(struct inode *inode, struct ceph_writeback_ctl *ctl,
487 struct ceph_snap_context *page_snapc)
Sage Weil1d3576f2009-10-06 11:31:09 -0700488{
489 struct ceph_inode_info *ci = ceph_inode(inode);
490 struct ceph_snap_context *snapc = NULL;
491 struct ceph_cap_snap *capsnap = NULL;
492
Sage Weilbe655592011-11-30 09:47:09 -0800493 spin_lock(&ci->i_ceph_lock);
Sage Weil1d3576f2009-10-06 11:31:09 -0700494 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
495 dout(" cap_snap %p snapc %p has %d dirty pages\n", capsnap,
496 capsnap->context, capsnap->dirty_pages);
Yan, Zheng05455e12017-09-02 10:50:48 +0800497 if (!capsnap->dirty_pages)
498 continue;
499
500 /* get i_size, truncate_{seq,size} for page_snapc? */
501 if (snapc && capsnap->context != page_snapc)
502 continue;
503
504 if (ctl) {
505 if (capsnap->writing) {
506 ctl->i_size = i_size_read(inode);
507 ctl->size_stable = false;
508 } else {
509 ctl->i_size = capsnap->size;
510 ctl->size_stable = true;
Yan, Zheng1f934b02017-08-30 11:36:06 +0800511 }
Yan, Zheng05455e12017-09-02 10:50:48 +0800512 ctl->truncate_size = capsnap->truncate_size;
513 ctl->truncate_seq = capsnap->truncate_seq;
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800514 ctl->head_snapc = false;
Sage Weil1d3576f2009-10-06 11:31:09 -0700515 }
Yan, Zheng05455e12017-09-02 10:50:48 +0800516
517 if (snapc)
518 break;
519
520 snapc = ceph_get_snap_context(capsnap->context);
521 if (!page_snapc ||
522 page_snapc == snapc ||
523 page_snapc->seq > snapc->seq)
524 break;
Sage Weil1d3576f2009-10-06 11:31:09 -0700525 }
Sage Weil7d8cb262010-08-24 08:44:16 -0700526 if (!snapc && ci->i_wrbuffer_ref_head) {
Sage Weil80e755f2010-03-31 21:52:10 -0700527 snapc = ceph_get_snap_context(ci->i_head_snapc);
Sage Weil1d3576f2009-10-06 11:31:09 -0700528 dout(" head snapc %p has %d dirty pages\n",
529 snapc, ci->i_wrbuffer_ref_head);
Yan, Zheng1f934b02017-08-30 11:36:06 +0800530 if (ctl) {
531 ctl->i_size = i_size_read(inode);
532 ctl->truncate_size = ci->i_truncate_size;
533 ctl->truncate_seq = ci->i_truncate_seq;
534 ctl->size_stable = false;
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800535 ctl->head_snapc = true;
Yan, Zheng1f934b02017-08-30 11:36:06 +0800536 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700537 }
Sage Weilbe655592011-11-30 09:47:09 -0800538 spin_unlock(&ci->i_ceph_lock);
Sage Weil1d3576f2009-10-06 11:31:09 -0700539 return snapc;
540}
541
Yan, Zheng1f934b02017-08-30 11:36:06 +0800542static u64 get_writepages_data_length(struct inode *inode,
543 struct page *page, u64 start)
544{
545 struct ceph_inode_info *ci = ceph_inode(inode);
546 struct ceph_snap_context *snapc = page_snap_context(page);
547 struct ceph_cap_snap *capsnap = NULL;
548 u64 end = i_size_read(inode);
549
550 if (snapc != ci->i_head_snapc) {
551 bool found = false;
552 spin_lock(&ci->i_ceph_lock);
553 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
554 if (capsnap->context == snapc) {
555 if (!capsnap->writing)
556 end = capsnap->size;
557 found = true;
558 break;
559 }
560 }
561 spin_unlock(&ci->i_ceph_lock);
562 WARN_ON(!found);
563 }
564 if (end > page_offset(page) + PAGE_SIZE)
565 end = page_offset(page) + PAGE_SIZE;
566 return end > start ? end - start : 0;
567}
568
Sage Weil1d3576f2009-10-06 11:31:09 -0700569/*
570 * Write a single page, but leave the page locked.
571 *
572 * If we get a write error, set the page error bit, but still adjust the
573 * dirty page accounting (i.e., page is no longer dirty).
574 */
575static int writepage_nounlock(struct page *page, struct writeback_control *wbc)
576{
577 struct inode *inode;
578 struct ceph_inode_info *ci;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700579 struct ceph_fs_client *fsc;
Sage Weil6298a332010-03-31 22:01:38 -0700580 struct ceph_snap_context *snapc, *oldest;
Yan, Zhengfc2744a2013-05-31 16:48:29 +0800581 loff_t page_off = page_offset(page);
Yan, Zheng43986882017-05-23 17:48:28 +0800582 int err, len = PAGE_SIZE;
Yan, Zheng1f934b02017-08-30 11:36:06 +0800583 struct ceph_writeback_ctl ceph_wbc;
Sage Weil1d3576f2009-10-06 11:31:09 -0700584
585 dout("writepage %p idx %lu\n", page, page->index);
586
Sage Weil1d3576f2009-10-06 11:31:09 -0700587 inode = page->mapping->host;
588 ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700589 fsc = ceph_inode_to_client(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -0700590
591 /* verify this is a writeable snap context */
Yan, Zheng61600ef2012-05-28 14:44:30 +0800592 snapc = page_snap_context(page);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200593 if (!snapc) {
Sage Weil1d3576f2009-10-06 11:31:09 -0700594 dout("writepage %p page %p not dirty?\n", inode, page);
Yan, Zheng43986882017-05-23 17:48:28 +0800595 return 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700596 }
Yan, Zheng05455e12017-09-02 10:50:48 +0800597 oldest = get_oldest_context(inode, &ceph_wbc, snapc);
Sage Weil6298a332010-03-31 22:01:38 -0700598 if (snapc->seq > oldest->seq) {
Sage Weil1d3576f2009-10-06 11:31:09 -0700599 dout("writepage %p page %p snapc %p not writeable - noop\n",
Yan, Zheng61600ef2012-05-28 14:44:30 +0800600 inode, page, snapc);
Sage Weil1d3576f2009-10-06 11:31:09 -0700601 /* we should only noop if called by kswapd */
Yan, Zhengfa71fef2017-05-23 17:18:53 +0800602 WARN_ON(!(current->flags & PF_MEMALLOC));
Sage Weil6298a332010-03-31 22:01:38 -0700603 ceph_put_snap_context(oldest);
Yan, Zhengfa71fef2017-05-23 17:18:53 +0800604 redirty_page_for_writepage(wbc, page);
Yan, Zheng43986882017-05-23 17:48:28 +0800605 return 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700606 }
Sage Weil6298a332010-03-31 22:01:38 -0700607 ceph_put_snap_context(oldest);
Sage Weil1d3576f2009-10-06 11:31:09 -0700608
609 /* is this a partial page at end of file? */
Yan, Zheng1f934b02017-08-30 11:36:06 +0800610 if (page_off >= ceph_wbc.i_size) {
611 dout("%p page eof %llu\n", page, ceph_wbc.i_size);
Yan, Zheng05455e12017-09-02 10:50:48 +0800612 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
Yan, Zheng43986882017-05-23 17:48:28 +0800613 return 0;
Yan, Zhengfc2744a2013-05-31 16:48:29 +0800614 }
Yan, Zheng43986882017-05-23 17:48:28 +0800615
Yan, Zheng1f934b02017-08-30 11:36:06 +0800616 if (ceph_wbc.i_size < page_off + len)
617 len = ceph_wbc.i_size - page_off;
Sage Weil1d3576f2009-10-06 11:31:09 -0700618
Yan, Zheng1c0a9c22017-08-16 17:24:58 +0800619 dout("writepage %p page %p index %lu on %llu~%u snapc %p seq %lld\n",
620 inode, page, page->index, page_off, len, snapc, snapc->seq);
Sage Weil1d3576f2009-10-06 11:31:09 -0700621
Yan, Zheng314c4732017-12-15 16:57:40 +0800622 if (atomic_long_inc_return(&fsc->writeback_count) >
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700623 CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb))
Jan Kara09dc9fc2017-04-12 12:24:33 +0200624 set_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800625
Sage Weil1d3576f2009-10-06 11:31:09 -0700626 set_page_writeback(page);
Yan, Zheng1f934b02017-08-30 11:36:06 +0800627 err = ceph_osdc_writepages(&fsc->client->osdc, ceph_vino(inode),
628 &ci->i_layout, snapc, page_off, len,
629 ceph_wbc.truncate_seq,
630 ceph_wbc.truncate_size,
Alex Elder24808822013-02-15 11:42:29 -0600631 &inode->i_mtime, &page, 1);
Sage Weil1d3576f2009-10-06 11:31:09 -0700632 if (err < 0) {
Yan, Zhengad15ec02016-05-13 17:29:51 +0800633 struct writeback_control tmp_wbc;
634 if (!wbc)
635 wbc = &tmp_wbc;
636 if (err == -ERESTARTSYS) {
637 /* killed by SIGKILL */
638 dout("writepage interrupted page %p\n", page);
639 redirty_page_for_writepage(wbc, page);
640 end_page_writeback(page);
Yan, Zheng43986882017-05-23 17:48:28 +0800641 return err;
Yan, Zhengad15ec02016-05-13 17:29:51 +0800642 }
643 dout("writepage setting page/mapping error %d %p\n",
644 err, page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700645 SetPageError(page);
646 mapping_set_error(&inode->i_data, err);
Yan, Zhengad15ec02016-05-13 17:29:51 +0800647 wbc->pages_skipped++;
Sage Weil1d3576f2009-10-06 11:31:09 -0700648 } else {
649 dout("writepage cleaned page %p\n", page);
650 err = 0; /* vfs expects us to return 0 */
651 }
652 page->private = 0;
653 ClearPagePrivate(page);
654 end_page_writeback(page);
655 ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
Sage Weil6298a332010-03-31 22:01:38 -0700656 ceph_put_snap_context(snapc); /* page's reference */
Yan, Zheng314c4732017-12-15 16:57:40 +0800657
658 if (atomic_long_dec_return(&fsc->writeback_count) <
659 CONGESTION_OFF_THRESH(fsc->mount_options->congestion_kb))
660 clear_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
661
Sage Weil1d3576f2009-10-06 11:31:09 -0700662 return err;
663}
664
665static int ceph_writepage(struct page *page, struct writeback_control *wbc)
666{
Yehuda Sadehdbd646a2009-12-16 14:51:06 -0800667 int err;
668 struct inode *inode = page->mapping->host;
669 BUG_ON(!inode);
Sage Weil70b666c2011-05-27 09:24:26 -0700670 ihold(inode);
Yehuda Sadehdbd646a2009-12-16 14:51:06 -0800671 err = writepage_nounlock(page, wbc);
Yan, Zhengad15ec02016-05-13 17:29:51 +0800672 if (err == -ERESTARTSYS) {
673 /* direct memory reclaimer was killed by SIGKILL. return 0
674 * to prevent caller from setting mapping/page error */
675 err = 0;
676 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700677 unlock_page(page);
Yehuda Sadehdbd646a2009-12-16 14:51:06 -0800678 iput(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -0700679 return err;
680}
681
Sage Weil1d3576f2009-10-06 11:31:09 -0700682/*
683 * lame release_pages helper. release_pages() isn't exported to
684 * modules.
685 */
686static void ceph_release_pages(struct page **pages, int num)
687{
688 struct pagevec pvec;
689 int i;
690
Mel Gorman86679822017-11-15 17:37:52 -0800691 pagevec_init(&pvec);
Sage Weil1d3576f2009-10-06 11:31:09 -0700692 for (i = 0; i < num; i++) {
693 if (pagevec_add(&pvec, pages[i]) == 0)
694 pagevec_release(&pvec);
695 }
696 pagevec_release(&pvec);
697}
698
Sage Weil1d3576f2009-10-06 11:31:09 -0700699/*
700 * async writeback completion handler.
701 *
702 * If we get an error, set the mapping error bit, but not the individual
703 * page error bits.
704 */
Ilya Dryomov85e084f2016-04-28 16:07:24 +0200705static void writepages_finish(struct ceph_osd_request *req)
Sage Weil1d3576f2009-10-06 11:31:09 -0700706{
707 struct inode *inode = req->r_inode;
Sage Weil1d3576f2009-10-06 11:31:09 -0700708 struct ceph_inode_info *ci = ceph_inode(inode);
Alex Elder87060c12013-04-03 01:28:58 -0500709 struct ceph_osd_data *osd_data;
Sage Weil1d3576f2009-10-06 11:31:09 -0700710 struct page *page;
Yan, Zheng5b646402016-01-07 16:00:17 +0800711 int num_pages, total_pages = 0;
712 int i, j;
713 int rc = req->r_result;
Sage Weil1d3576f2009-10-06 11:31:09 -0700714 struct ceph_snap_context *snapc = req->r_snapc;
715 struct address_space *mapping = inode->i_mapping;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700716 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Yan, Zheng5b646402016-01-07 16:00:17 +0800717 bool remove_page;
Sage Weil1d3576f2009-10-06 11:31:09 -0700718
Yan, Zheng5b646402016-01-07 16:00:17 +0800719 dout("writepages_finish %p rc %d\n", inode, rc);
Jeff Layton26544c622017-04-04 08:39:46 -0400720 if (rc < 0) {
Sage Weil1d3576f2009-10-06 11:31:09 -0700721 mapping_set_error(mapping, rc);
Jeff Layton26544c622017-04-04 08:39:46 -0400722 ceph_set_error_write(ci);
723 } else {
724 ceph_clear_error_write(ci);
725 }
Yan, Zheng5b646402016-01-07 16:00:17 +0800726
727 /*
728 * We lost the cache cap, need to truncate the page before
729 * it is unlocked, otherwise we'd truncate it later in the
730 * page truncation thread, possibly losing some data that
731 * raced its way in
732 */
733 remove_page = !(ceph_caps_issued(ci) &
734 (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO));
Sage Weil1d3576f2009-10-06 11:31:09 -0700735
736 /* clean all pages */
Yan, Zheng5b646402016-01-07 16:00:17 +0800737 for (i = 0; i < req->r_num_ops; i++) {
738 if (req->r_ops[i].op != CEPH_OSD_OP_WRITE)
739 break;
Sage Weil1d3576f2009-10-06 11:31:09 -0700740
Yan, Zheng5b646402016-01-07 16:00:17 +0800741 osd_data = osd_req_op_extent_osd_data(req, i);
742 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
743 num_pages = calc_pages_for((u64)osd_data->alignment,
744 (u64)osd_data->length);
745 total_pages += num_pages;
746 for (j = 0; j < num_pages; j++) {
747 page = osd_data->pages[j];
748 BUG_ON(!page);
749 WARN_ON(!PageUptodate(page));
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800750
Yan, Zheng5b646402016-01-07 16:00:17 +0800751 if (atomic_long_dec_return(&fsc->writeback_count) <
752 CONGESTION_OFF_THRESH(
753 fsc->mount_options->congestion_kb))
Jan Kara09dc9fc2017-04-12 12:24:33 +0200754 clear_bdi_congested(inode_to_bdi(inode),
Yan, Zheng5b646402016-01-07 16:00:17 +0800755 BLK_RW_ASYNC);
Yehuda Sadehe63dc5c2010-02-19 00:07:01 +0000756
Yan, Zheng5b646402016-01-07 16:00:17 +0800757 ceph_put_snap_context(page_snap_context(page));
758 page->private = 0;
759 ClearPagePrivate(page);
760 dout("unlocking %p\n", page);
761 end_page_writeback(page);
Yehuda Sadehe63dc5c2010-02-19 00:07:01 +0000762
Yan, Zheng5b646402016-01-07 16:00:17 +0800763 if (remove_page)
764 generic_error_remove_page(inode->i_mapping,
765 page);
766
767 unlock_page(page);
768 }
769 dout("writepages_finish %p wrote %llu bytes cleaned %d pages\n",
770 inode, osd_data->length, rc >= 0 ? num_pages : 0);
771
772 ceph_release_pages(osd_data->pages, num_pages);
Sage Weil1d3576f2009-10-06 11:31:09 -0700773 }
Sage Weil1d3576f2009-10-06 11:31:09 -0700774
Yan, Zheng5b646402016-01-07 16:00:17 +0800775 ceph_put_wrbuffer_cap_refs(ci, total_pages, snapc);
776
777 osd_data = osd_req_op_extent_osd_data(req, 0);
Alex Elder87060c12013-04-03 01:28:58 -0500778 if (osd_data->pages_from_pool)
779 mempool_free(osd_data->pages,
Cheng Renquan640ef792010-03-26 17:40:33 +0800780 ceph_sb_to_client(inode->i_sb)->wb_pagevec_pool);
Sage Weil1d3576f2009-10-06 11:31:09 -0700781 else
Alex Elder87060c12013-04-03 01:28:58 -0500782 kfree(osd_data->pages);
Sage Weil1d3576f2009-10-06 11:31:09 -0700783 ceph_osdc_put_request(req);
784}
785
Sage Weil1d3576f2009-10-06 11:31:09 -0700786/*
787 * initiate async writeback
788 */
789static int ceph_writepages_start(struct address_space *mapping,
790 struct writeback_control *wbc)
791{
792 struct inode *inode = mapping->host;
Sage Weil1d3576f2009-10-06 11:31:09 -0700793 struct ceph_inode_info *ci = ceph_inode(inode);
Yan, Zhengfc2744a2013-05-31 16:48:29 +0800794 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
795 struct ceph_vino vino = ceph_vino(inode);
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800796 pgoff_t index, start_index, end = -1;
Sage Weil80e755f2010-03-31 21:52:10 -0700797 struct ceph_snap_context *snapc = NULL, *last_snapc = NULL, *pgsnapc;
Sage Weil1d3576f2009-10-06 11:31:09 -0700798 struct pagevec pvec;
Sage Weil1d3576f2009-10-06 11:31:09 -0700799 int rc = 0;
Fabian Frederick93407472017-02-27 14:28:32 -0800800 unsigned int wsize = i_blocksize(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -0700801 struct ceph_osd_request *req = NULL;
Yan, Zheng1f934b02017-08-30 11:36:06 +0800802 struct ceph_writeback_ctl ceph_wbc;
Yan, Zheng590e9d92017-09-03 00:04:31 +0800803 bool should_loop, range_whole = false;
Yan, Zhengaf9cc402018-03-04 16:36:01 +0800804 bool done = false;
Sage Weil1d3576f2009-10-06 11:31:09 -0700805
Yanhu Cao3fb99d42017-07-21 17:20:10 +0800806 dout("writepages_start %p (mode=%s)\n", inode,
Sage Weil1d3576f2009-10-06 11:31:09 -0700807 wbc->sync_mode == WB_SYNC_NONE ? "NONE" :
808 (wbc->sync_mode == WB_SYNC_ALL ? "ALL" : "HOLD"));
809
Seraphime Kirkovski52953d52016-12-26 10:26:34 +0100810 if (READ_ONCE(fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
Yan, Zheng6c93df52016-04-15 13:56:12 +0800811 if (ci->i_wrbuffer_ref > 0) {
812 pr_warn_ratelimited(
813 "writepage_start %p %lld forced umount\n",
814 inode, ceph_ino(inode));
815 }
Yan, Zhenga341d4d2015-07-01 17:03:23 +0800816 mapping_set_error(mapping, -EIO);
Sage Weil1d3576f2009-10-06 11:31:09 -0700817 return -EIO; /* we're in a forced umount, don't write! */
818 }
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800819 if (fsc->mount_options->wsize < wsize)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700820 wsize = fsc->mount_options->wsize;
Sage Weil1d3576f2009-10-06 11:31:09 -0700821
Mel Gorman86679822017-11-15 17:37:52 -0800822 pagevec_init(&pvec);
Sage Weil1d3576f2009-10-06 11:31:09 -0700823
Yan, Zheng590e9d92017-09-03 00:04:31 +0800824 start_index = wbc->range_cyclic ? mapping->writeback_index : 0;
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800825 index = start_index;
Sage Weil1d3576f2009-10-06 11:31:09 -0700826
827retry:
828 /* find oldest snap context with dirty data */
Yan, Zheng05455e12017-09-02 10:50:48 +0800829 snapc = get_oldest_context(inode, &ceph_wbc, NULL);
Sage Weil1d3576f2009-10-06 11:31:09 -0700830 if (!snapc) {
831 /* hmm, why does writepages get called when there
832 is no dirty data? */
833 dout(" no snap context with dirty data?\n");
834 goto out;
835 }
836 dout(" oldest snapc is %p seq %lld (%d snaps)\n",
837 snapc, snapc->seq, snapc->num_snaps);
Yan, Zhengfc2744a2013-05-31 16:48:29 +0800838
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800839 should_loop = false;
840 if (ceph_wbc.head_snapc && snapc != last_snapc) {
841 /* where to start/end? */
842 if (wbc->range_cyclic) {
843 index = start_index;
844 end = -1;
845 if (index > 0)
846 should_loop = true;
847 dout(" cyclic, start at %lu\n", index);
848 } else {
849 index = wbc->range_start >> PAGE_SHIFT;
850 end = wbc->range_end >> PAGE_SHIFT;
851 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
852 range_whole = true;
853 dout(" not cyclic, %lu to %lu\n", index, end);
854 }
855 } else if (!ceph_wbc.head_snapc) {
856 /* Do not respect wbc->range_{start,end}. Dirty pages
857 * in that range can be associated with newer snapc.
858 * They are not writeable until we write all dirty pages
859 * associated with 'snapc' get written */
Yan, Zheng1582af22018-03-06 15:14:54 +0800860 if (index > 0)
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800861 should_loop = true;
862 dout(" non-head snapc, range whole\n");
Sage Weil1d3576f2009-10-06 11:31:09 -0700863 }
Yan, Zheng2a2d9272017-09-01 16:53:58 +0800864
865 ceph_put_snap_context(last_snapc);
Sage Weil1d3576f2009-10-06 11:31:09 -0700866 last_snapc = snapc;
867
Yan, Zhengaf9cc402018-03-04 16:36:01 +0800868 while (!done && index <= end) {
Yan, Zheng5b646402016-01-07 16:00:17 +0800869 int num_ops = 0, op_idx;
Yan, Zheng0e5ecac2017-08-31 19:20:40 +0800870 unsigned i, pvec_pages, max_pages, locked_pages = 0;
Yan, Zheng5b646402016-01-07 16:00:17 +0800871 struct page **pages = NULL, **data_pages;
Alex Eldere5975c72013-03-14 14:09:05 -0500872 mempool_t *pool = NULL; /* Becomes non-null if mempool used */
Sage Weil1d3576f2009-10-06 11:31:09 -0700873 struct page *page;
Yan, Zheng0e5ecac2017-08-31 19:20:40 +0800874 pgoff_t strip_unit_end = 0;
Yan, Zheng5b646402016-01-07 16:00:17 +0800875 u64 offset = 0, len = 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700876
Yan, Zheng0e5ecac2017-08-31 19:20:40 +0800877 max_pages = wsize >> PAGE_SHIFT;
Sage Weil1d3576f2009-10-06 11:31:09 -0700878
879get_more_pages:
Jan Kara4be90292017-11-15 17:35:16 -0800880 pvec_pages = pagevec_lookup_range_nr_tag(&pvec, mapping, &index,
Jan Kara0ed75fc2017-11-15 17:34:41 -0800881 end, PAGECACHE_TAG_DIRTY,
Jan Kara4be90292017-11-15 17:35:16 -0800882 max_pages - locked_pages);
Jan Kara0ed75fc2017-11-15 17:34:41 -0800883 dout("pagevec_lookup_range_tag got %d\n", pvec_pages);
Sage Weil1d3576f2009-10-06 11:31:09 -0700884 if (!pvec_pages && !locked_pages)
885 break;
886 for (i = 0; i < pvec_pages && locked_pages < max_pages; i++) {
887 page = pvec.pages[i];
888 dout("? %p idx %lu\n", page, page->index);
889 if (locked_pages == 0)
890 lock_page(page); /* first page */
891 else if (!trylock_page(page))
892 break;
893
894 /* only dirty pages, or our accounting breaks */
895 if (unlikely(!PageDirty(page)) ||
896 unlikely(page->mapping != mapping)) {
897 dout("!dirty or !mapping %p\n", page);
898 unlock_page(page);
Yan, Zheng0713e5f2017-08-31 16:55:48 +0800899 continue;
Sage Weil1d3576f2009-10-06 11:31:09 -0700900 }
Yan, Zhengaf9cc402018-03-04 16:36:01 +0800901 /* only if matching snap context */
902 pgsnapc = page_snap_context(page);
903 if (pgsnapc != snapc) {
904 dout("page snapc %p %lld != oldest %p %lld\n",
905 pgsnapc, pgsnapc->seq, snapc, snapc->seq);
Yan, Zheng1582af22018-03-06 15:14:54 +0800906 if (!should_loop &&
907 !ceph_wbc.head_snapc &&
908 wbc->sync_mode != WB_SYNC_NONE)
909 should_loop = true;
Sage Weil1d3576f2009-10-06 11:31:09 -0700910 unlock_page(page);
Yan, Zhengaf9cc402018-03-04 16:36:01 +0800911 continue;
Sage Weil1d3576f2009-10-06 11:31:09 -0700912 }
Yan, Zheng1f934b02017-08-30 11:36:06 +0800913 if (page_offset(page) >= ceph_wbc.i_size) {
914 dout("%p page eof %llu\n",
915 page, ceph_wbc.i_size);
Yan, Zhengaf9cc402018-03-04 16:36:01 +0800916 if (ceph_wbc.size_stable ||
917 page_offset(page) >= i_size_read(inode))
918 mapping->a_ops->invalidatepage(page,
919 0, PAGE_SIZE);
920 unlock_page(page);
921 continue;
922 }
923 if (strip_unit_end && (page->index > strip_unit_end)) {
924 dout("end of strip unit %p\n", page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700925 unlock_page(page);
926 break;
927 }
928 if (PageWriteback(page)) {
Yan, Zheng0713e5f2017-08-31 16:55:48 +0800929 if (wbc->sync_mode == WB_SYNC_NONE) {
930 dout("%p under writeback\n", page);
931 unlock_page(page);
932 continue;
933 }
934 dout("waiting on writeback %p\n", page);
935 wait_on_page_writeback(page);
Sage Weil1d3576f2009-10-06 11:31:09 -0700936 }
937
Sage Weil1d3576f2009-10-06 11:31:09 -0700938 if (!clear_page_dirty_for_io(page)) {
939 dout("%p !clear_page_dirty_for_io\n", page);
940 unlock_page(page);
Yan, Zheng0713e5f2017-08-31 16:55:48 +0800941 continue;
Sage Weil1d3576f2009-10-06 11:31:09 -0700942 }
943
Alex Eldere5975c72013-03-14 14:09:05 -0500944 /*
945 * We have something to write. If this is
946 * the first locked page this time through,
Yan, Zheng5b646402016-01-07 16:00:17 +0800947 * calculate max possinle write size and
948 * allocate a page array
Alex Eldere5975c72013-03-14 14:09:05 -0500949 */
Sage Weil1d3576f2009-10-06 11:31:09 -0700950 if (locked_pages == 0) {
Yan, Zheng5b646402016-01-07 16:00:17 +0800951 u64 objnum;
952 u64 objoff;
Ilya Dryomovdccbf082018-02-17 09:29:58 +0100953 u32 xlen;
Yan, Zheng5b646402016-01-07 16:00:17 +0800954
Sage Weil1d3576f2009-10-06 11:31:09 -0700955 /* prepare async write request */
Alex Eldere5975c72013-03-14 14:09:05 -0500956 offset = (u64)page_offset(page);
Ilya Dryomovdccbf082018-02-17 09:29:58 +0100957 ceph_calc_file_object_mapping(&ci->i_layout,
958 offset, wsize,
959 &objnum, &objoff,
960 &xlen);
961 len = xlen;
Henry C Chang8c718972011-05-03 09:45:16 +0000962
Yanhu Cao3fb99d42017-07-21 17:20:10 +0800963 num_ops = 1;
Yan, Zheng5b646402016-01-07 16:00:17 +0800964 strip_unit_end = page->index +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300965 ((len - 1) >> PAGE_SHIFT);
Yan, Zheng715e4cd2014-11-13 14:40:37 +0800966
Yan, Zheng5b646402016-01-07 16:00:17 +0800967 BUG_ON(pages);
Alex Elder88486952013-03-14 14:09:05 -0500968 max_pages = calc_pages_for(0, (u64)len);
Yan, Zhengfc2744a2013-05-31 16:48:29 +0800969 pages = kmalloc(max_pages * sizeof (*pages),
970 GFP_NOFS);
Alex Elder88486952013-03-14 14:09:05 -0500971 if (!pages) {
972 pool = fsc->wb_pagevec_pool;
Alex Elder88486952013-03-14 14:09:05 -0500973 pages = mempool_alloc(pool, GFP_NOFS);
Alex Eldere5975c72013-03-14 14:09:05 -0500974 BUG_ON(!pages);
Alex Elder88486952013-03-14 14:09:05 -0500975 }
Yan, Zheng5b646402016-01-07 16:00:17 +0800976
977 len = 0;
978 } else if (page->index !=
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300979 (offset + len) >> PAGE_SHIFT) {
Yan, Zheng5b646402016-01-07 16:00:17 +0800980 if (num_ops >= (pool ? CEPH_OSD_SLAB_OPS :
981 CEPH_OSD_MAX_OPS)) {
982 redirty_page_for_writepage(wbc, page);
983 unlock_page(page);
984 break;
985 }
986
987 num_ops++;
988 offset = (u64)page_offset(page);
989 len = 0;
Sage Weil1d3576f2009-10-06 11:31:09 -0700990 }
991
992 /* note position of first page in pvec */
Sage Weil1d3576f2009-10-06 11:31:09 -0700993 dout("%p will write page %p idx %lu\n",
994 inode, page, page->index);
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800995
Yan, Zheng5b646402016-01-07 16:00:17 +0800996 if (atomic_long_inc_return(&fsc->writeback_count) >
997 CONGESTION_ON_THRESH(
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700998 fsc->mount_options->congestion_kb)) {
Jan Kara09dc9fc2017-04-12 12:24:33 +0200999 set_bdi_congested(inode_to_bdi(inode),
Sage Weil213c99e2010-08-03 10:25:11 -07001000 BLK_RW_ASYNC);
Yehuda Sadeh2baba252009-12-18 13:51:57 -08001001 }
1002
Yan, Zheng0713e5f2017-08-31 16:55:48 +08001003
1004 pages[locked_pages++] = page;
1005 pvec.pages[i] = NULL;
1006
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001007 len += PAGE_SIZE;
Sage Weil1d3576f2009-10-06 11:31:09 -07001008 }
1009
1010 /* did we get anything? */
1011 if (!locked_pages)
1012 goto release_pvec_pages;
1013 if (i) {
Yan, Zheng0713e5f2017-08-31 16:55:48 +08001014 unsigned j, n = 0;
1015 /* shift unused page to beginning of pvec */
1016 for (j = 0; j < pvec_pages; j++) {
1017 if (!pvec.pages[j])
1018 continue;
1019 if (n < j)
1020 pvec.pages[n] = pvec.pages[j];
1021 n++;
1022 }
1023 pvec.nr = n;
Sage Weil1d3576f2009-10-06 11:31:09 -07001024
1025 if (pvec_pages && i == pvec_pages &&
1026 locked_pages < max_pages) {
1027 dout("reached end pvec, trying for more\n");
Yan, Zheng0713e5f2017-08-31 16:55:48 +08001028 pagevec_release(&pvec);
Sage Weil1d3576f2009-10-06 11:31:09 -07001029 goto get_more_pages;
1030 }
Sage Weil1d3576f2009-10-06 11:31:09 -07001031 }
1032
Yan, Zheng5b646402016-01-07 16:00:17 +08001033new_request:
Alex Eldere5975c72013-03-14 14:09:05 -05001034 offset = page_offset(pages[0]);
Yan, Zheng5b646402016-01-07 16:00:17 +08001035 len = wsize;
1036
1037 req = ceph_osdc_new_request(&fsc->client->osdc,
1038 &ci->i_layout, vino,
1039 offset, &len, 0, num_ops,
Yan, Zheng1f934b02017-08-30 11:36:06 +08001040 CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
1041 snapc, ceph_wbc.truncate_seq,
1042 ceph_wbc.truncate_size, false);
Yan, Zheng5b646402016-01-07 16:00:17 +08001043 if (IS_ERR(req)) {
1044 req = ceph_osdc_new_request(&fsc->client->osdc,
1045 &ci->i_layout, vino,
1046 offset, &len, 0,
1047 min(num_ops,
1048 CEPH_OSD_SLAB_OPS),
1049 CEPH_OSD_OP_WRITE,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001050 CEPH_OSD_FLAG_WRITE,
Yan, Zheng1f934b02017-08-30 11:36:06 +08001051 snapc, ceph_wbc.truncate_seq,
1052 ceph_wbc.truncate_size, true);
Yan, Zheng5b646402016-01-07 16:00:17 +08001053 BUG_ON(IS_ERR(req));
Yan, Zhenge1966b42015-06-18 03:10:58 +08001054 }
Yan, Zheng5b646402016-01-07 16:00:17 +08001055 BUG_ON(len < page_offset(pages[locked_pages - 1]) +
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001056 PAGE_SIZE - offset);
Sage Weil1d3576f2009-10-06 11:31:09 -07001057
Yan, Zheng5b646402016-01-07 16:00:17 +08001058 req->r_callback = writepages_finish;
1059 req->r_inode = inode;
1060
1061 /* Format the osd request message and submit the write */
1062 len = 0;
1063 data_pages = pages;
1064 op_idx = 0;
1065 for (i = 0; i < locked_pages; i++) {
1066 u64 cur_offset = page_offset(pages[i]);
1067 if (offset + len != cur_offset) {
Yanhu Cao3fb99d42017-07-21 17:20:10 +08001068 if (op_idx + 1 == req->r_num_ops)
Yan, Zheng5b646402016-01-07 16:00:17 +08001069 break;
1070 osd_req_op_extent_dup_last(req, op_idx,
1071 cur_offset - offset);
1072 dout("writepages got pages at %llu~%llu\n",
1073 offset, len);
1074 osd_req_op_extent_osd_data_pages(req, op_idx,
1075 data_pages, len, 0,
Alex Eldera4ce40a2013-04-05 01:27:12 -05001076 !!pool, false);
Yan, Zheng5b646402016-01-07 16:00:17 +08001077 osd_req_op_extent_update(req, op_idx, len);
Alex Eldere5975c72013-03-14 14:09:05 -05001078
Yan, Zheng5b646402016-01-07 16:00:17 +08001079 len = 0;
1080 offset = cur_offset;
1081 data_pages = pages + i;
1082 op_idx++;
1083 }
1084
1085 set_page_writeback(pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001086 len += PAGE_SIZE;
Yan, Zheng5b646402016-01-07 16:00:17 +08001087 }
1088
Yan, Zheng1f934b02017-08-30 11:36:06 +08001089 if (ceph_wbc.size_stable) {
1090 len = min(len, ceph_wbc.i_size - offset);
Yan, Zheng5b646402016-01-07 16:00:17 +08001091 } else if (i == locked_pages) {
1092 /* writepages_finish() clears writeback pages
1093 * according to the data length, so make sure
1094 * data length covers all locked pages */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001095 u64 min_len = len + 1 - PAGE_SIZE;
Yan, Zheng1f934b02017-08-30 11:36:06 +08001096 len = get_writepages_data_length(inode, pages[i - 1],
1097 offset);
Yan, Zheng5b646402016-01-07 16:00:17 +08001098 len = max(len, min_len);
1099 }
1100 dout("writepages got pages at %llu~%llu\n", offset, len);
1101
1102 osd_req_op_extent_osd_data_pages(req, op_idx, data_pages, len,
1103 0, !!pool, false);
1104 osd_req_op_extent_update(req, op_idx, len);
1105
Yan, Zheng5b646402016-01-07 16:00:17 +08001106 BUG_ON(op_idx + 1 != req->r_num_ops);
1107
Alex Eldere5975c72013-03-14 14:09:05 -05001108 pool = NULL;
Yan, Zheng5b646402016-01-07 16:00:17 +08001109 if (i < locked_pages) {
1110 BUG_ON(num_ops <= req->r_num_ops);
1111 num_ops -= req->r_num_ops;
Yan, Zheng5b646402016-01-07 16:00:17 +08001112 locked_pages -= i;
Alex Eldere5975c72013-03-14 14:09:05 -05001113
Yan, Zheng5b646402016-01-07 16:00:17 +08001114 /* allocate new pages array for next request */
1115 data_pages = pages;
1116 pages = kmalloc(locked_pages * sizeof (*pages),
1117 GFP_NOFS);
1118 if (!pages) {
1119 pool = fsc->wb_pagevec_pool;
1120 pages = mempool_alloc(pool, GFP_NOFS);
1121 BUG_ON(!pages);
1122 }
1123 memcpy(pages, data_pages + i,
1124 locked_pages * sizeof(*pages));
1125 memset(data_pages + i, 0,
1126 locked_pages * sizeof(*pages));
1127 } else {
1128 BUG_ON(num_ops != req->r_num_ops);
1129 index = pages[i - 1]->index + 1;
1130 /* request message now owns the pages array */
1131 pages = NULL;
1132 }
Alex Eldere5975c72013-03-14 14:09:05 -05001133
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001134 req->r_mtime = inode->i_mtime;
Sage Weil9d6fcb02011-05-12 15:48:16 -07001135 rc = ceph_osdc_start_request(&fsc->client->osdc, req, true);
1136 BUG_ON(rc);
Sage Weil1d3576f2009-10-06 11:31:09 -07001137 req = NULL;
1138
Yan, Zheng5b646402016-01-07 16:00:17 +08001139 wbc->nr_to_write -= i;
1140 if (pages)
1141 goto new_request;
1142
Yan, Zheng2a2d9272017-09-01 16:53:58 +08001143 /*
1144 * We stop writing back only if we are not doing
1145 * integrity sync. In case of integrity sync we have to
1146 * keep going until we have written all the pages
1147 * we tagged for writeback prior to entering this loop.
1148 */
1149 if (wbc->nr_to_write <= 0 && wbc->sync_mode == WB_SYNC_NONE)
Yan, Zhengaf9cc402018-03-04 16:36:01 +08001150 done = true;
Sage Weil1d3576f2009-10-06 11:31:09 -07001151
1152release_pvec_pages:
1153 dout("pagevec_release on %d pages (%p)\n", (int)pvec.nr,
1154 pvec.nr ? pvec.pages[0] : NULL);
1155 pagevec_release(&pvec);
Sage Weil1d3576f2009-10-06 11:31:09 -07001156 }
1157
1158 if (should_loop && !done) {
1159 /* more to do; loop back to beginning of file */
1160 dout("writepages looping back to beginning of file\n");
Yan, Zheng2a2d9272017-09-01 16:53:58 +08001161 end = start_index - 1; /* OK even when start_index == 0 */
Yan, Zhengf2756352017-09-01 17:03:16 +08001162
1163 /* to write dirty pages associated with next snapc,
1164 * we need to wait until current writes complete */
1165 if (wbc->sync_mode != WB_SYNC_NONE &&
1166 start_index == 0 && /* all dirty pages were checked */
1167 !ceph_wbc.head_snapc) {
1168 struct page *page;
1169 unsigned i, nr;
1170 index = 0;
1171 while ((index <= end) &&
1172 (nr = pagevec_lookup_tag(&pvec, mapping, &index,
Jan Kara67fd7072017-11-15 17:35:19 -08001173 PAGECACHE_TAG_WRITEBACK))) {
Yan, Zhengf2756352017-09-01 17:03:16 +08001174 for (i = 0; i < nr; i++) {
1175 page = pvec.pages[i];
1176 if (page_snap_context(page) != snapc)
1177 continue;
1178 wait_on_page_writeback(page);
1179 }
1180 pagevec_release(&pvec);
1181 cond_resched();
1182 }
1183 }
1184
Yan, Zheng2a2d9272017-09-01 16:53:58 +08001185 start_index = 0;
Sage Weil1d3576f2009-10-06 11:31:09 -07001186 index = 0;
1187 goto retry;
1188 }
1189
1190 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
1191 mapping->writeback_index = index;
1192
1193out:
Ilya Dryomov3ed97d62016-04-26 15:05:29 +02001194 ceph_osdc_put_request(req);
Yan, Zheng2a2d9272017-09-01 16:53:58 +08001195 ceph_put_snap_context(last_snapc);
1196 dout("writepages dend - startone, rc = %d\n", rc);
Sage Weil1d3576f2009-10-06 11:31:09 -07001197 return rc;
1198}
1199
1200
1201
1202/*
1203 * See if a given @snapc is either writeable, or already written.
1204 */
1205static int context_is_writeable_or_written(struct inode *inode,
1206 struct ceph_snap_context *snapc)
1207{
Yan, Zheng05455e12017-09-02 10:50:48 +08001208 struct ceph_snap_context *oldest = get_oldest_context(inode, NULL, NULL);
Sage Weil6298a332010-03-31 22:01:38 -07001209 int ret = !oldest || snapc->seq <= oldest->seq;
1210
1211 ceph_put_snap_context(oldest);
1212 return ret;
Sage Weil1d3576f2009-10-06 11:31:09 -07001213}
1214
1215/*
1216 * We are only allowed to write into/dirty the page if the page is
1217 * clean, or already dirty within the same snap context.
Sage Weil8f883c22010-03-19 13:27:53 -07001218 *
1219 * called with page locked.
1220 * return success with page locked,
1221 * or any failure (incl -EAGAIN) with page unlocked.
Sage Weil1d3576f2009-10-06 11:31:09 -07001222 */
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001223static int ceph_update_writeable_page(struct file *file,
1224 loff_t pos, unsigned len,
1225 struct page *page)
Sage Weil1d3576f2009-10-06 11:31:09 -07001226{
Al Viro496ad9a2013-01-23 17:07:38 -05001227 struct inode *inode = file_inode(file);
Yan, Zheng6c93df52016-04-15 13:56:12 +08001228 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -07001229 struct ceph_inode_info *ci = ceph_inode(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001230 loff_t page_off = pos & PAGE_MASK;
1231 int pos_in_page = pos & ~PAGE_MASK;
Sage Weil1d3576f2009-10-06 11:31:09 -07001232 int end_in_page = pos_in_page + len;
1233 loff_t i_size;
Sage Weil1d3576f2009-10-06 11:31:09 -07001234 int r;
Sage Weil80e755f2010-03-31 21:52:10 -07001235 struct ceph_snap_context *snapc, *oldest;
Sage Weil1d3576f2009-10-06 11:31:09 -07001236
Seraphime Kirkovski52953d52016-12-26 10:26:34 +01001237 if (READ_ONCE(fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
Yan, Zheng6c93df52016-04-15 13:56:12 +08001238 dout(" page %p forced umount\n", page);
1239 unlock_page(page);
1240 return -EIO;
1241 }
1242
Sage Weil1d3576f2009-10-06 11:31:09 -07001243retry_locked:
1244 /* writepages currently holds page lock, but if we change that later, */
1245 wait_on_page_writeback(page);
1246
Yan, Zheng61600ef2012-05-28 14:44:30 +08001247 snapc = page_snap_context(page);
Sage Weil80e755f2010-03-31 21:52:10 -07001248 if (snapc && snapc != ci->i_head_snapc) {
Sage Weil1d3576f2009-10-06 11:31:09 -07001249 /*
1250 * this page is already dirty in another (older) snap
1251 * context! is it writeable now?
1252 */
Yan, Zheng05455e12017-09-02 10:50:48 +08001253 oldest = get_oldest_context(inode, NULL, NULL);
Sage Weil80e755f2010-03-31 21:52:10 -07001254 if (snapc->seq > oldest->seq) {
Sage Weil6298a332010-03-31 22:01:38 -07001255 ceph_put_snap_context(oldest);
Sage Weil1d3576f2009-10-06 11:31:09 -07001256 dout(" page %p snapc %p not current or oldest\n",
Sage Weil6298a332010-03-31 22:01:38 -07001257 page, snapc);
Sage Weil1d3576f2009-10-06 11:31:09 -07001258 /*
1259 * queue for writeback, and wait for snapc to
1260 * be writeable or written
1261 */
Sage Weil6298a332010-03-31 22:01:38 -07001262 snapc = ceph_get_snap_context(snapc);
Sage Weil1d3576f2009-10-06 11:31:09 -07001263 unlock_page(page);
Sage Weil3c6f6b72010-02-09 15:24:44 -08001264 ceph_queue_writeback(inode);
Yan, Zhenga78bbd42016-05-13 11:30:24 +08001265 r = wait_event_killable(ci->i_cap_wq,
Sage Weil1d3576f2009-10-06 11:31:09 -07001266 context_is_writeable_or_written(inode, snapc));
1267 ceph_put_snap_context(snapc);
Sage Weil8f883c22010-03-19 13:27:53 -07001268 if (r == -ERESTARTSYS)
1269 return r;
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001270 return -EAGAIN;
Sage Weil1d3576f2009-10-06 11:31:09 -07001271 }
Sage Weil6298a332010-03-31 22:01:38 -07001272 ceph_put_snap_context(oldest);
Sage Weil1d3576f2009-10-06 11:31:09 -07001273
1274 /* yay, writeable, do it now (without dropping page lock) */
1275 dout(" page %p snapc %p not current, but oldest\n",
1276 page, snapc);
1277 if (!clear_page_dirty_for_io(page))
1278 goto retry_locked;
1279 r = writepage_nounlock(page, NULL);
1280 if (r < 0)
Yan, Zhengdd2bc472017-08-04 11:22:31 +08001281 goto fail_unlock;
Sage Weil1d3576f2009-10-06 11:31:09 -07001282 goto retry_locked;
1283 }
1284
1285 if (PageUptodate(page)) {
1286 dout(" page %p already uptodate\n", page);
1287 return 0;
1288 }
1289
1290 /* full page? */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001291 if (pos_in_page == 0 && len == PAGE_SIZE)
Sage Weil1d3576f2009-10-06 11:31:09 -07001292 return 0;
1293
1294 /* past end of file? */
Yan, Zheng99c88e62015-12-30 11:32:46 +08001295 i_size = i_size_read(inode);
Sage Weil1d3576f2009-10-06 11:31:09 -07001296
Sage Weil1d3576f2009-10-06 11:31:09 -07001297 if (page_off >= i_size ||
1298 (pos_in_page == 0 && (pos+len) >= i_size &&
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001299 end_in_page - pos_in_page != PAGE_SIZE)) {
Sage Weil1d3576f2009-10-06 11:31:09 -07001300 dout(" zeroing %p 0 - %d and %d - %d\n",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001301 page, pos_in_page, end_in_page, (int)PAGE_SIZE);
Sage Weil1d3576f2009-10-06 11:31:09 -07001302 zero_user_segments(page,
1303 0, pos_in_page,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001304 end_in_page, PAGE_SIZE);
Sage Weil1d3576f2009-10-06 11:31:09 -07001305 return 0;
1306 }
1307
1308 /* we need to read it. */
Yan, Zhengdd2bc472017-08-04 11:22:31 +08001309 r = ceph_do_readpage(file, page);
1310 if (r < 0) {
1311 if (r == -EINPROGRESS)
1312 return -EAGAIN;
1313 goto fail_unlock;
1314 }
Sage Weil1d3576f2009-10-06 11:31:09 -07001315 goto retry_locked;
Yan, Zhengdd2bc472017-08-04 11:22:31 +08001316fail_unlock:
Sage Weil1d3576f2009-10-06 11:31:09 -07001317 unlock_page(page);
1318 return r;
1319}
1320
1321/*
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001322 * We are only allowed to write into/dirty the page if the page is
1323 * clean, or already dirty within the same snap context.
1324 */
1325static int ceph_write_begin(struct file *file, struct address_space *mapping,
1326 loff_t pos, unsigned len, unsigned flags,
1327 struct page **pagep, void **fsdata)
1328{
Al Viro496ad9a2013-01-23 17:07:38 -05001329 struct inode *inode = file_inode(file);
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001330 struct page *page;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001331 pgoff_t index = pos >> PAGE_SHIFT;
Sage Weil7971bd92013-05-01 21:15:58 -07001332 int r;
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001333
1334 do {
Sage Weil8f883c22010-03-19 13:27:53 -07001335 /* get a page */
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001336 page = grab_cache_page_write_begin(mapping, index, 0);
Sage Weil7971bd92013-05-01 21:15:58 -07001337 if (!page)
1338 return -ENOMEM;
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001339
1340 dout("write_begin file %p inode %p page %p %d~%d\n", file,
Sage Weil213c99e2010-08-03 10:25:11 -07001341 inode, page, (int)pos, (int)len);
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001342
1343 r = ceph_update_writeable_page(file, pos, len, page);
Taesoo Kimc1d00b22015-03-20 17:36:56 -04001344 if (r < 0)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001345 put_page(page);
Taesoo Kimc1d00b22015-03-20 17:36:56 -04001346 else
1347 *pagep = page;
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001348 } while (r == -EAGAIN);
1349
1350 return r;
1351}
1352
1353/*
Sage Weil1d3576f2009-10-06 11:31:09 -07001354 * we don't do anything in here that simple_write_end doesn't do
Yan, Zheng5dda377c2015-04-30 14:40:54 +08001355 * except adjust dirty page accounting
Sage Weil1d3576f2009-10-06 11:31:09 -07001356 */
1357static int ceph_write_end(struct file *file, struct address_space *mapping,
1358 loff_t pos, unsigned len, unsigned copied,
1359 struct page *page, void *fsdata)
1360{
Al Viro496ad9a2013-01-23 17:07:38 -05001361 struct inode *inode = file_inode(file);
Yan, Zhengefb0ca72017-05-22 12:03:32 +08001362 bool check_cap = false;
Sage Weil1d3576f2009-10-06 11:31:09 -07001363
1364 dout("write_end file %p inode %p page %p %d~%d (%d)\n", file,
1365 inode, page, (int)pos, (int)copied, (int)len);
1366
1367 /* zero the stale part of the page if we did a short copy */
Al Virob9de3132016-09-05 22:20:03 -04001368 if (!PageUptodate(page)) {
1369 if (copied < len) {
1370 copied = 0;
1371 goto out;
1372 }
1373 SetPageUptodate(page);
1374 }
Sage Weil1d3576f2009-10-06 11:31:09 -07001375
1376 /* did file size increase? */
Yan, Zheng99c88e62015-12-30 11:32:46 +08001377 if (pos+copied > i_size_read(inode))
Sage Weil1d3576f2009-10-06 11:31:09 -07001378 check_cap = ceph_inode_set_size(inode, pos+copied);
1379
Sage Weil1d3576f2009-10-06 11:31:09 -07001380 set_page_dirty(page);
1381
Al Virob9de3132016-09-05 22:20:03 -04001382out:
Sage Weil1d3576f2009-10-06 11:31:09 -07001383 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001384 put_page(page);
Sage Weil1d3576f2009-10-06 11:31:09 -07001385
1386 if (check_cap)
1387 ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, NULL);
1388
1389 return copied;
1390}
1391
1392/*
1393 * we set .direct_IO to indicate direct io is supported, but since we
1394 * intercept O_DIRECT reads and writes early, this function should
1395 * never get called.
1396 */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -07001397static ssize_t ceph_direct_io(struct kiocb *iocb, struct iov_iter *iter)
Sage Weil1d3576f2009-10-06 11:31:09 -07001398{
1399 WARN_ON(1);
1400 return -EINVAL;
1401}
1402
1403const struct address_space_operations ceph_aops = {
1404 .readpage = ceph_readpage,
1405 .readpages = ceph_readpages,
1406 .writepage = ceph_writepage,
1407 .writepages = ceph_writepages_start,
1408 .write_begin = ceph_write_begin,
1409 .write_end = ceph_write_end,
1410 .set_page_dirty = ceph_set_page_dirty,
1411 .invalidatepage = ceph_invalidatepage,
1412 .releasepage = ceph_releasepage,
1413 .direct_IO = ceph_direct_io,
1414};
1415
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001416static void ceph_block_sigs(sigset_t *oldset)
1417{
1418 sigset_t mask;
1419 siginitsetinv(&mask, sigmask(SIGKILL));
1420 sigprocmask(SIG_BLOCK, &mask, oldset);
1421}
1422
1423static void ceph_restore_sigs(sigset_t *oldset)
1424{
1425 sigprocmask(SIG_SETMASK, oldset, NULL);
1426}
Sage Weil1d3576f2009-10-06 11:31:09 -07001427
1428/*
1429 * vm ops
1430 */
Dave Jiang11bac802017-02-24 14:56:41 -08001431static int ceph_filemap_fault(struct vm_fault *vmf)
Yan, Zheng61f68812013-11-28 14:28:14 +08001432{
Dave Jiang11bac802017-02-24 14:56:41 -08001433 struct vm_area_struct *vma = vmf->vma;
Yan, Zheng61f68812013-11-28 14:28:14 +08001434 struct inode *inode = file_inode(vma->vm_file);
1435 struct ceph_inode_info *ci = ceph_inode(inode);
1436 struct ceph_file_info *fi = vma->vm_file->private_data;
Yan, Zheng3738daa2014-11-14 22:10:07 +08001437 struct page *pinned_page = NULL;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001438 loff_t off = vmf->pgoff << PAGE_SHIFT;
Yan, Zheng61f68812013-11-28 14:28:14 +08001439 int want, got, ret;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001440 sigset_t oldset;
1441
1442 ceph_block_sigs(&oldset);
Yan, Zheng61f68812013-11-28 14:28:14 +08001443
1444 dout("filemap_fault %p %llx.%llx %llu~%zd trying to get caps\n",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001445 inode, ceph_vinop(inode), off, (size_t)PAGE_SIZE);
Yan, Zheng61f68812013-11-28 14:28:14 +08001446 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1447 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1448 else
1449 want = CEPH_CAP_FILE_CACHE;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001450
1451 got = 0;
1452 ret = ceph_get_caps(ci, CEPH_CAP_FILE_RD, want, -1, &got, &pinned_page);
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001453 if (ret < 0)
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001454 goto out_restore;
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001455
Yan, Zheng61f68812013-11-28 14:28:14 +08001456 dout("filemap_fault %p %llu~%zd got cap refs on %s\n",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001457 inode, off, (size_t)PAGE_SIZE, ceph_cap_string(got));
Yan, Zheng61f68812013-11-28 14:28:14 +08001458
Yan, Zheng83701242014-11-14 22:36:18 +08001459 if ((got & (CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO)) ||
Yan, Zheng2b1ac852016-10-25 10:51:55 +08001460 ci->i_inline_version == CEPH_INLINE_NONE) {
Yan, Zheng5d988302017-12-15 11:15:36 +08001461 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
1462 ceph_add_rw_context(fi, &rw_ctx);
Dave Jiang11bac802017-02-24 14:56:41 -08001463 ret = filemap_fault(vmf);
Yan, Zheng5d988302017-12-15 11:15:36 +08001464 ceph_del_rw_context(fi, &rw_ctx);
Yan, Zheng2b1ac852016-10-25 10:51:55 +08001465 } else
Yan, Zheng83701242014-11-14 22:36:18 +08001466 ret = -EAGAIN;
Yan, Zheng61f68812013-11-28 14:28:14 +08001467
1468 dout("filemap_fault %p %llu~%zd dropping cap refs on %s ret %d\n",
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001469 inode, off, (size_t)PAGE_SIZE, ceph_cap_string(got), ret);
Yan, Zheng3738daa2014-11-14 22:10:07 +08001470 if (pinned_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001471 put_page(pinned_page);
Yan, Zheng61f68812013-11-28 14:28:14 +08001472 ceph_put_cap_refs(ci, got);
1473
Yan, Zheng83701242014-11-14 22:36:18 +08001474 if (ret != -EAGAIN)
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001475 goto out_restore;
Yan, Zheng83701242014-11-14 22:36:18 +08001476
1477 /* read inline data */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001478 if (off >= PAGE_SIZE) {
Yan, Zheng83701242014-11-14 22:36:18 +08001479 /* does not support inline data > PAGE_SIZE */
1480 ret = VM_FAULT_SIGBUS;
1481 } else {
1482 int ret1;
1483 struct address_space *mapping = inode->i_mapping;
1484 struct page *page = find_or_create_page(mapping, 0,
Michal Hockoc62d2552015-11-06 16:28:49 -08001485 mapping_gfp_constraint(mapping,
1486 ~__GFP_FS));
Yan, Zheng83701242014-11-14 22:36:18 +08001487 if (!page) {
1488 ret = VM_FAULT_OOM;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001489 goto out_inline;
Yan, Zheng83701242014-11-14 22:36:18 +08001490 }
1491 ret1 = __ceph_do_getattr(inode, page,
1492 CEPH_STAT_CAP_INLINE_DATA, true);
1493 if (ret1 < 0 || off >= i_size_read(inode)) {
1494 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001495 put_page(page);
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001496 if (ret1 < 0)
1497 ret = ret1;
1498 else
1499 ret = VM_FAULT_SIGBUS;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001500 goto out_inline;
Yan, Zheng83701242014-11-14 22:36:18 +08001501 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001502 if (ret1 < PAGE_SIZE)
1503 zero_user_segment(page, ret1, PAGE_SIZE);
Yan, Zheng83701242014-11-14 22:36:18 +08001504 else
1505 flush_dcache_page(page);
1506 SetPageUptodate(page);
1507 vmf->page = page;
1508 ret = VM_FAULT_MAJOR | VM_FAULT_LOCKED;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001509out_inline:
1510 dout("filemap_fault %p %llu~%zd read inline data ret %d\n",
1511 inode, off, (size_t)PAGE_SIZE, ret);
Yan, Zheng83701242014-11-14 22:36:18 +08001512 }
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001513out_restore:
1514 ceph_restore_sigs(&oldset);
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001515 if (ret < 0)
1516 ret = (ret == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS;
1517
Yan, Zheng61f68812013-11-28 14:28:14 +08001518 return ret;
1519}
Sage Weil1d3576f2009-10-06 11:31:09 -07001520
1521/*
1522 * Reuse write_begin here for simplicity.
1523 */
Dave Jiang11bac802017-02-24 14:56:41 -08001524static int ceph_page_mkwrite(struct vm_fault *vmf)
Sage Weil1d3576f2009-10-06 11:31:09 -07001525{
Dave Jiang11bac802017-02-24 14:56:41 -08001526 struct vm_area_struct *vma = vmf->vma;
Al Viro496ad9a2013-01-23 17:07:38 -05001527 struct inode *inode = file_inode(vma->vm_file);
Yan, Zheng61f68812013-11-28 14:28:14 +08001528 struct ceph_inode_info *ci = ceph_inode(inode);
1529 struct ceph_file_info *fi = vma->vm_file->private_data;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001530 struct ceph_cap_flush *prealloc_cf;
Yan, Zheng61f68812013-11-28 14:28:14 +08001531 struct page *page = vmf->page;
Alex Elder6285bc22012-10-02 10:25:51 -05001532 loff_t off = page_offset(page);
Yan, Zheng61f68812013-11-28 14:28:14 +08001533 loff_t size = i_size_read(inode);
1534 size_t len;
1535 int want, got, ret;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001536 sigset_t oldset;
Sage Weil1d3576f2009-10-06 11:31:09 -07001537
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001538 prealloc_cf = ceph_alloc_cap_flush();
1539 if (!prealloc_cf)
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001540 return VM_FAULT_OOM;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001541
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001542 ceph_block_sigs(&oldset);
Sage Weil1d3576f2009-10-06 11:31:09 -07001543
Yan, Zheng28127bd2014-11-14 22:38:29 +08001544 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1545 struct page *locked_page = NULL;
1546 if (off == 0) {
1547 lock_page(page);
1548 locked_page = page;
1549 }
1550 ret = ceph_uninline_data(vma->vm_file, locked_page);
1551 if (locked_page)
1552 unlock_page(locked_page);
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001553 if (ret < 0)
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001554 goto out_free;
Yan, Zheng28127bd2014-11-14 22:38:29 +08001555 }
1556
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001557 if (off + PAGE_SIZE <= size)
1558 len = PAGE_SIZE;
Sage Weil1d3576f2009-10-06 11:31:09 -07001559 else
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001560 len = size & ~PAGE_MASK;
Sage Weil1d3576f2009-10-06 11:31:09 -07001561
Yan, Zheng61f68812013-11-28 14:28:14 +08001562 dout("page_mkwrite %p %llx.%llx %llu~%zd getting caps i_size %llu\n",
1563 inode, ceph_vinop(inode), off, len, size);
1564 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1565 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1566 else
1567 want = CEPH_CAP_FILE_BUFFER;
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001568
1569 got = 0;
1570 ret = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, off + len,
1571 &got, NULL);
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001572 if (ret < 0)
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001573 goto out_free;
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001574
Yan, Zheng61f68812013-11-28 14:28:14 +08001575 dout("page_mkwrite %p %llu~%zd got cap refs on %s\n",
1576 inode, off, len, ceph_cap_string(got));
1577
1578 /* Update time before taking page lock */
1579 file_update_time(vma->vm_file);
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001580
Yan, Zhengf0b33df2016-05-10 19:09:06 +08001581 do {
1582 lock_page(page);
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001583
Yan, Zhengf0b33df2016-05-10 19:09:06 +08001584 if ((off > size) || (page->mapping != inode->i_mapping)) {
1585 unlock_page(page);
1586 ret = VM_FAULT_NOPAGE;
1587 break;
1588 }
Yehuda Sadeh4af6b222010-02-09 11:02:51 -08001589
Yan, Zhengf0b33df2016-05-10 19:09:06 +08001590 ret = ceph_update_writeable_page(vma->vm_file, off, len, page);
1591 if (ret >= 0) {
1592 /* success. we'll keep the page locked. */
1593 set_page_dirty(page);
1594 ret = VM_FAULT_LOCKED;
1595 }
1596 } while (ret == -EAGAIN);
1597
Yan, Zheng28127bd2014-11-14 22:38:29 +08001598 if (ret == VM_FAULT_LOCKED ||
1599 ci->i_inline_version != CEPH_INLINE_NONE) {
Yan, Zheng61f68812013-11-28 14:28:14 +08001600 int dirty;
1601 spin_lock(&ci->i_ceph_lock);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001602 ci->i_inline_version = CEPH_INLINE_NONE;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001603 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1604 &prealloc_cf);
Yan, Zheng61f68812013-11-28 14:28:14 +08001605 spin_unlock(&ci->i_ceph_lock);
1606 if (dirty)
1607 __mark_inode_dirty(inode, dirty);
1608 }
1609
1610 dout("page_mkwrite %p %llu~%zd dropping cap refs on %s ret %d\n",
1611 inode, off, len, ceph_cap_string(got), ret);
1612 ceph_put_cap_refs(ci, got);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001613out_free:
Yan, Zheng4f7e89f2016-05-10 18:40:28 +08001614 ceph_restore_sigs(&oldset);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +08001615 ceph_free_cap_flush(prealloc_cf);
Yan, Zheng6ce026e2016-05-10 18:59:13 +08001616 if (ret < 0)
1617 ret = (ret == -ENOMEM) ? VM_FAULT_OOM : VM_FAULT_SIGBUS;
Sage Weil1d3576f2009-10-06 11:31:09 -07001618 return ret;
1619}
1620
Yan, Zheng31c542a2014-11-14 21:41:55 +08001621void ceph_fill_inline_data(struct inode *inode, struct page *locked_page,
1622 char *data, size_t len)
1623{
1624 struct address_space *mapping = inode->i_mapping;
1625 struct page *page;
1626
1627 if (locked_page) {
1628 page = locked_page;
1629 } else {
1630 if (i_size_read(inode) == 0)
1631 return;
1632 page = find_or_create_page(mapping, 0,
Michal Hockoc62d2552015-11-06 16:28:49 -08001633 mapping_gfp_constraint(mapping,
1634 ~__GFP_FS));
Yan, Zheng31c542a2014-11-14 21:41:55 +08001635 if (!page)
1636 return;
1637 if (PageUptodate(page)) {
1638 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001639 put_page(page);
Yan, Zheng31c542a2014-11-14 21:41:55 +08001640 return;
1641 }
1642 }
1643
Ilya Dryomov0668ff52014-12-19 13:10:10 +03001644 dout("fill_inline_data %p %llx.%llx len %zu locked_page %p\n",
Yan, Zheng31c542a2014-11-14 21:41:55 +08001645 inode, ceph_vinop(inode), len, locked_page);
1646
1647 if (len > 0) {
1648 void *kaddr = kmap_atomic(page);
1649 memcpy(kaddr, data, len);
1650 kunmap_atomic(kaddr);
1651 }
1652
1653 if (page != locked_page) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001654 if (len < PAGE_SIZE)
1655 zero_user_segment(page, len, PAGE_SIZE);
Yan, Zheng31c542a2014-11-14 21:41:55 +08001656 else
1657 flush_dcache_page(page);
1658
1659 SetPageUptodate(page);
1660 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001661 put_page(page);
Yan, Zheng31c542a2014-11-14 21:41:55 +08001662 }
1663}
1664
Yan, Zheng28127bd2014-11-14 22:38:29 +08001665int ceph_uninline_data(struct file *filp, struct page *locked_page)
1666{
1667 struct inode *inode = file_inode(filp);
1668 struct ceph_inode_info *ci = ceph_inode(inode);
1669 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1670 struct ceph_osd_request *req;
1671 struct page *page = NULL;
1672 u64 len, inline_version;
1673 int err = 0;
1674 bool from_pagecache = false;
1675
1676 spin_lock(&ci->i_ceph_lock);
1677 inline_version = ci->i_inline_version;
1678 spin_unlock(&ci->i_ceph_lock);
1679
1680 dout("uninline_data %p %llx.%llx inline_version %llu\n",
1681 inode, ceph_vinop(inode), inline_version);
1682
1683 if (inline_version == 1 || /* initial version, no data */
1684 inline_version == CEPH_INLINE_NONE)
1685 goto out;
1686
1687 if (locked_page) {
1688 page = locked_page;
1689 WARN_ON(!PageUptodate(page));
1690 } else if (ceph_caps_issued(ci) &
1691 (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) {
1692 page = find_get_page(inode->i_mapping, 0);
1693 if (page) {
1694 if (PageUptodate(page)) {
1695 from_pagecache = true;
1696 lock_page(page);
1697 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001698 put_page(page);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001699 page = NULL;
1700 }
1701 }
1702 }
1703
1704 if (page) {
1705 len = i_size_read(inode);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001706 if (len > PAGE_SIZE)
1707 len = PAGE_SIZE;
Yan, Zheng28127bd2014-11-14 22:38:29 +08001708 } else {
1709 page = __page_cache_alloc(GFP_NOFS);
1710 if (!page) {
1711 err = -ENOMEM;
1712 goto out;
1713 }
1714 err = __ceph_do_getattr(inode, page,
1715 CEPH_STAT_CAP_INLINE_DATA, true);
1716 if (err < 0) {
1717 /* no inline data */
1718 if (err == -ENODATA)
1719 err = 0;
1720 goto out;
1721 }
1722 len = err;
1723 }
1724
1725 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1726 ceph_vino(inode), 0, &len, 0, 1,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001727 CEPH_OSD_OP_CREATE, CEPH_OSD_FLAG_WRITE,
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001728 NULL, 0, 0, false);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001729 if (IS_ERR(req)) {
1730 err = PTR_ERR(req);
1731 goto out;
1732 }
1733
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001734 req->r_mtime = inode->i_mtime;
Yan, Zheng28127bd2014-11-14 22:38:29 +08001735 err = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1736 if (!err)
1737 err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1738 ceph_osdc_put_request(req);
1739 if (err < 0)
1740 goto out;
1741
1742 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1743 ceph_vino(inode), 0, &len, 1, 3,
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001744 CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001745 NULL, ci->i_truncate_seq,
1746 ci->i_truncate_size, false);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001747 if (IS_ERR(req)) {
1748 err = PTR_ERR(req);
1749 goto out;
1750 }
1751
1752 osd_req_op_extent_osd_data_pages(req, 1, &page, len, 0, false, false);
1753
Yan, Zhengec137c12015-04-13 11:25:07 +08001754 {
1755 __le64 xattr_buf = cpu_to_le64(inline_version);
1756 err = osd_req_op_xattr_init(req, 0, CEPH_OSD_OP_CMPXATTR,
1757 "inline_version", &xattr_buf,
1758 sizeof(xattr_buf),
1759 CEPH_OSD_CMPXATTR_OP_GT,
1760 CEPH_OSD_CMPXATTR_MODE_U64);
1761 if (err)
1762 goto out_put;
1763 }
Yan, Zheng28127bd2014-11-14 22:38:29 +08001764
Yan, Zhengec137c12015-04-13 11:25:07 +08001765 {
1766 char xattr_buf[32];
1767 int xattr_len = snprintf(xattr_buf, sizeof(xattr_buf),
1768 "%llu", inline_version);
1769 err = osd_req_op_xattr_init(req, 2, CEPH_OSD_OP_SETXATTR,
1770 "inline_version",
1771 xattr_buf, xattr_len, 0, 0);
1772 if (err)
1773 goto out_put;
1774 }
Yan, Zheng28127bd2014-11-14 22:38:29 +08001775
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001776 req->r_mtime = inode->i_mtime;
Yan, Zheng28127bd2014-11-14 22:38:29 +08001777 err = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1778 if (!err)
1779 err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1780out_put:
1781 ceph_osdc_put_request(req);
1782 if (err == -ECANCELED)
1783 err = 0;
1784out:
1785 if (page && page != locked_page) {
1786 if (from_pagecache) {
1787 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001788 put_page(page);
Yan, Zheng28127bd2014-11-14 22:38:29 +08001789 } else
1790 __free_pages(page, 0);
1791 }
1792
1793 dout("uninline_data %p %llx.%llx inline_version %llu = %d\n",
1794 inode, ceph_vinop(inode), inline_version, err);
1795 return err;
1796}
1797
Kirill A. Shutemov7cbea8d2015-09-09 15:39:26 -07001798static const struct vm_operations_struct ceph_vmops = {
Yan, Zheng61f68812013-11-28 14:28:14 +08001799 .fault = ceph_filemap_fault,
Sage Weil1d3576f2009-10-06 11:31:09 -07001800 .page_mkwrite = ceph_page_mkwrite,
1801};
1802
1803int ceph_mmap(struct file *file, struct vm_area_struct *vma)
1804{
1805 struct address_space *mapping = file->f_mapping;
1806
1807 if (!mapping->a_ops->readpage)
1808 return -ENOEXEC;
1809 file_accessed(file);
1810 vma->vm_ops = &ceph_vmops;
Sage Weil1d3576f2009-10-06 11:31:09 -07001811 return 0;
1812}
Yan, Zheng10183a62015-04-27 15:33:28 +08001813
1814enum {
1815 POOL_READ = 1,
1816 POOL_WRITE = 2,
1817};
1818
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001819static int __ceph_pool_perm_get(struct ceph_inode_info *ci,
1820 s64 pool, struct ceph_string *pool_ns)
Yan, Zheng10183a62015-04-27 15:33:28 +08001821{
1822 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1823 struct ceph_mds_client *mdsc = fsc->mdsc;
1824 struct ceph_osd_request *rd_req = NULL, *wr_req = NULL;
1825 struct rb_node **p, *parent;
1826 struct ceph_pool_perm *perm;
1827 struct page **pages;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001828 size_t pool_ns_len;
Yan, Zheng10183a62015-04-27 15:33:28 +08001829 int err = 0, err2 = 0, have = 0;
1830
1831 down_read(&mdsc->pool_perm_rwsem);
1832 p = &mdsc->pool_perm_tree.rb_node;
1833 while (*p) {
1834 perm = rb_entry(*p, struct ceph_pool_perm, node);
1835 if (pool < perm->pool)
1836 p = &(*p)->rb_left;
1837 else if (pool > perm->pool)
1838 p = &(*p)->rb_right;
1839 else {
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001840 int ret = ceph_compare_string(pool_ns,
1841 perm->pool_ns,
1842 perm->pool_ns_len);
1843 if (ret < 0)
1844 p = &(*p)->rb_left;
1845 else if (ret > 0)
1846 p = &(*p)->rb_right;
1847 else {
1848 have = perm->perm;
1849 break;
1850 }
Yan, Zheng10183a62015-04-27 15:33:28 +08001851 }
1852 }
1853 up_read(&mdsc->pool_perm_rwsem);
1854 if (*p)
1855 goto out;
1856
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001857 if (pool_ns)
1858 dout("__ceph_pool_perm_get pool %lld ns %.*s no perm cached\n",
1859 pool, (int)pool_ns->len, pool_ns->str);
1860 else
1861 dout("__ceph_pool_perm_get pool %lld no perm cached\n", pool);
Yan, Zheng10183a62015-04-27 15:33:28 +08001862
1863 down_write(&mdsc->pool_perm_rwsem);
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001864 p = &mdsc->pool_perm_tree.rb_node;
Yan, Zheng10183a62015-04-27 15:33:28 +08001865 parent = NULL;
1866 while (*p) {
1867 parent = *p;
1868 perm = rb_entry(parent, struct ceph_pool_perm, node);
1869 if (pool < perm->pool)
1870 p = &(*p)->rb_left;
1871 else if (pool > perm->pool)
1872 p = &(*p)->rb_right;
1873 else {
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001874 int ret = ceph_compare_string(pool_ns,
1875 perm->pool_ns,
1876 perm->pool_ns_len);
1877 if (ret < 0)
1878 p = &(*p)->rb_left;
1879 else if (ret > 0)
1880 p = &(*p)->rb_right;
1881 else {
1882 have = perm->perm;
1883 break;
1884 }
Yan, Zheng10183a62015-04-27 15:33:28 +08001885 }
1886 }
1887 if (*p) {
1888 up_write(&mdsc->pool_perm_rwsem);
1889 goto out;
1890 }
1891
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001892 rd_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
Yan, Zheng10183a62015-04-27 15:33:28 +08001893 1, false, GFP_NOFS);
1894 if (!rd_req) {
1895 err = -ENOMEM;
1896 goto out_unlock;
1897 }
1898
1899 rd_req->r_flags = CEPH_OSD_FLAG_READ;
1900 osd_req_op_init(rd_req, 0, CEPH_OSD_OP_STAT, 0);
1901 rd_req->r_base_oloc.pool = pool;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001902 if (pool_ns)
1903 rd_req->r_base_oloc.pool_ns = ceph_get_string(pool_ns);
Ilya Dryomovd30291b2016-04-29 19:54:20 +02001904 ceph_oid_printf(&rd_req->r_base_oid, "%llx.00000000", ci->i_vino.ino);
Yan, Zheng10183a62015-04-27 15:33:28 +08001905
Ilya Dryomov13d1ad12016-04-27 14:15:51 +02001906 err = ceph_osdc_alloc_messages(rd_req, GFP_NOFS);
1907 if (err)
1908 goto out_unlock;
Yan, Zheng10183a62015-04-27 15:33:28 +08001909
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001910 wr_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
Yan, Zheng10183a62015-04-27 15:33:28 +08001911 1, false, GFP_NOFS);
1912 if (!wr_req) {
1913 err = -ENOMEM;
1914 goto out_unlock;
1915 }
1916
Ilya Dryomov54ea0042017-02-11 18:48:41 +01001917 wr_req->r_flags = CEPH_OSD_FLAG_WRITE;
Yan, Zheng10183a62015-04-27 15:33:28 +08001918 osd_req_op_init(wr_req, 0, CEPH_OSD_OP_CREATE, CEPH_OSD_OP_FLAG_EXCL);
Ilya Dryomov63244fa2016-04-28 16:07:23 +02001919 ceph_oloc_copy(&wr_req->r_base_oloc, &rd_req->r_base_oloc);
Ilya Dryomovd30291b2016-04-29 19:54:20 +02001920 ceph_oid_copy(&wr_req->r_base_oid, &rd_req->r_base_oid);
Yan, Zheng10183a62015-04-27 15:33:28 +08001921
Ilya Dryomov13d1ad12016-04-27 14:15:51 +02001922 err = ceph_osdc_alloc_messages(wr_req, GFP_NOFS);
1923 if (err)
1924 goto out_unlock;
Yan, Zheng10183a62015-04-27 15:33:28 +08001925
1926 /* one page should be large enough for STAT data */
1927 pages = ceph_alloc_page_vector(1, GFP_KERNEL);
1928 if (IS_ERR(pages)) {
1929 err = PTR_ERR(pages);
1930 goto out_unlock;
1931 }
1932
1933 osd_req_op_raw_data_in_pages(rd_req, 0, pages, PAGE_SIZE,
1934 0, false, true);
Yan, Zheng10183a62015-04-27 15:33:28 +08001935 err = ceph_osdc_start_request(&fsc->client->osdc, rd_req, false);
1936
Ilya Dryomovbb873b5392016-05-26 00:29:52 +02001937 wr_req->r_mtime = ci->vfs_inode.i_mtime;
Jeff Laytona1f40202017-04-04 08:39:37 -04001938 wr_req->r_abort_on_full = true;
Yan, Zheng10183a62015-04-27 15:33:28 +08001939 err2 = ceph_osdc_start_request(&fsc->client->osdc, wr_req, false);
1940
1941 if (!err)
1942 err = ceph_osdc_wait_request(&fsc->client->osdc, rd_req);
1943 if (!err2)
1944 err2 = ceph_osdc_wait_request(&fsc->client->osdc, wr_req);
1945
1946 if (err >= 0 || err == -ENOENT)
1947 have |= POOL_READ;
1948 else if (err != -EPERM)
1949 goto out_unlock;
1950
1951 if (err2 == 0 || err2 == -EEXIST)
1952 have |= POOL_WRITE;
1953 else if (err2 != -EPERM) {
1954 err = err2;
1955 goto out_unlock;
1956 }
1957
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001958 pool_ns_len = pool_ns ? pool_ns->len : 0;
1959 perm = kmalloc(sizeof(*perm) + pool_ns_len + 1, GFP_NOFS);
Yan, Zheng10183a62015-04-27 15:33:28 +08001960 if (!perm) {
1961 err = -ENOMEM;
1962 goto out_unlock;
1963 }
1964
1965 perm->pool = pool;
1966 perm->perm = have;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001967 perm->pool_ns_len = pool_ns_len;
1968 if (pool_ns_len > 0)
1969 memcpy(perm->pool_ns, pool_ns->str, pool_ns_len);
1970 perm->pool_ns[pool_ns_len] = 0;
1971
Yan, Zheng10183a62015-04-27 15:33:28 +08001972 rb_link_node(&perm->node, parent, p);
1973 rb_insert_color(&perm->node, &mdsc->pool_perm_tree);
1974 err = 0;
1975out_unlock:
1976 up_write(&mdsc->pool_perm_rwsem);
1977
Ilya Dryomov3ed97d62016-04-26 15:05:29 +02001978 ceph_osdc_put_request(rd_req);
1979 ceph_osdc_put_request(wr_req);
Yan, Zheng10183a62015-04-27 15:33:28 +08001980out:
1981 if (!err)
1982 err = have;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001983 if (pool_ns)
1984 dout("__ceph_pool_perm_get pool %lld ns %.*s result = %d\n",
1985 pool, (int)pool_ns->len, pool_ns->str, err);
1986 else
1987 dout("__ceph_pool_perm_get pool %lld result = %d\n", pool, err);
Yan, Zheng10183a62015-04-27 15:33:28 +08001988 return err;
1989}
1990
1991int ceph_pool_perm_check(struct ceph_inode_info *ci, int need)
1992{
Yan, Zheng76271512016-02-03 21:24:49 +08001993 s64 pool;
Yan, Zheng779fe0f2016-03-07 09:35:06 +08001994 struct ceph_string *pool_ns;
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, Zheng10183a62015-04-27 15:33:28 +08002006 if (ceph_test_mount_opt(ceph_inode_to_client(&ci->vfs_inode),
2007 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}