]> git.ipfire.org Git - people/ms/linux.git/blame - fs/ceph/addr.c
ceph: track and report error of async metadata operation
[people/ms/linux.git] / fs / ceph / addr.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
3d14c5d2 2#include <linux/ceph/ceph_debug.h>
1d3576fd
SW
3
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 */
5a0e3ad6 9#include <linux/slab.h>
1d3576fd
SW
10#include <linux/pagevec.h>
11#include <linux/task_io_accounting_ops.h>
f361bf4a 12#include <linux/signal.h>
5c308356 13#include <linux/iversion.h>
1d3576fd
SW
14
15#include "super.h"
3d14c5d2 16#include "mds_client.h"
99ccbd22 17#include "cache.h"
3d14c5d2 18#include <linux/ceph/osd_client.h>
08c1ac50 19#include <linux/ceph/striper.h>
1d3576fd
SW
20
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
25985edc 32 * count dirty pages on the inode. In the absence of snapshots,
1d3576fd
SW
33 * 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
2baba250
YS
57#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
61600ef8
YZ
62static 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}
1d3576fd
SW
68
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;
1d3576fd 78 struct ceph_snap_context *snapc;
7d6e1f54 79 int ret;
1d3576fd
SW
80
81 if (unlikely(!mapping))
82 return !TestSetPageDirty(page);
83
7d6e1f54 84 if (PageDirty(page)) {
1d3576fd
SW
85 dout("%p set_page_dirty %p idx %lu -- already dirty\n",
86 mapping->host, page, page->index);
7d6e1f54 87 BUG_ON(!PagePrivate(page));
1d3576fd
SW
88 return 0;
89 }
90
91 inode = mapping->host;
92 ci = ceph_inode(inode);
93
1d3576fd 94 /* dirty the head */
be655596 95 spin_lock(&ci->i_ceph_lock);
5dda377c
YZ
96 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 }
1d3576fd 109 if (ci->i_wrbuffer_ref == 0)
0444d76a 110 ihold(inode);
1d3576fd
SW
111 ++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);
be655596 118 spin_unlock(&ci->i_ceph_lock);
1d3576fd 119
7d6e1f54
SZ
120 /*
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);
1d3576fd 127
7d6e1f54
SZ
128 ret = __set_page_dirty_nobuffers(page);
129 WARN_ON(!PageLocked(page));
130 WARN_ON(!page->mapping);
1d3576fd 131
7d6e1f54 132 return ret;
1d3576fd
SW
133}
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 */
d47992f8
LC
140static void ceph_invalidatepage(struct page *page, unsigned int offset,
141 unsigned int length)
1d3576fd 142{
4ce1e9ad 143 struct inode *inode;
1d3576fd 144 struct ceph_inode_info *ci;
61600ef8 145 struct ceph_snap_context *snapc = page_snap_context(page);
1d3576fd 146
4ce1e9ad 147 inode = page->mapping->host;
b150f5c1
MT
148 ci = ceph_inode(inode);
149
09cbfeaf 150 if (offset != 0 || length != PAGE_SIZE) {
b150f5c1
MT
151 dout("%p invalidatepage %p idx %lu partial dirty page %u~%u\n",
152 inode, page, page->index, offset, length);
153 return;
154 }
4ce1e9ad 155
99ccbd22
MT
156 ceph_invalidate_fscache_page(inode, page);
157
b072d774 158 WARN_ON(!PageLocked(page));
99ccbd22
MT
159 if (!PagePrivate(page))
160 return;
161
b150f5c1 162 ClearPageChecked(page);
1d3576fd 163
b150f5c1
MT
164 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);
1d3576fd
SW
171}
172
1d3576fd
SW
173static int ceph_releasepage(struct page *page, gfp_t g)
174{
e55f1a18
N
175 dout("%p releasepage %p idx %lu (%sdirty)\n", page->mapping->host,
176 page, page->index, PageDirty(page) ? "" : "not ");
99ccbd22
MT
177
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);
1d3576fd
SW
183}
184
185/*
186 * read a single page, without unlocking it.
187 */
dd2bc473 188static int ceph_do_readpage(struct file *filp, struct page *page)
1d3576fd 189{
496ad9aa 190 struct inode *inode = file_inode(filp);
1d3576fd 191 struct ceph_inode_info *ci = ceph_inode(inode);
99ccbd22 192 struct ceph_osd_client *osdc =
3d14c5d2 193 &ceph_inode_to_client(inode)->client->osdc;
1d3576fd 194 int err = 0;
83701246 195 u64 off = page_offset(page);
09cbfeaf 196 u64 len = PAGE_SIZE;
1d3576fd 197
83701246 198 if (off >= i_size_read(inode)) {
09cbfeaf 199 zero_user_segment(page, 0, PAGE_SIZE);
83701246
YZ
200 SetPageUptodate(page);
201 return 0;
202 }
99ccbd22 203
fcc02d2a
YZ
204 if (ci->i_inline_version != CEPH_INLINE_NONE) {
205 /*
206 * Uptodate inline data should have been added
207 * into page cache while getting Fcr caps.
208 */
209 if (off == 0)
210 return -EINVAL;
09cbfeaf 211 zero_user_segment(page, 0, PAGE_SIZE);
fcc02d2a
YZ
212 SetPageUptodate(page);
213 return 0;
214 }
83701246
YZ
215
216 err = ceph_readpage_from_fscache(inode, page);
99ccbd22 217 if (err == 0)
dd2bc473 218 return -EINPROGRESS;
99ccbd22 219
1d3576fd
SW
220 dout("readpage inode %p file %p page %p index %lu\n",
221 inode, filp, page, page->index);
222 err = ceph_osdc_readpages(osdc, ceph_vino(inode), &ci->i_layout,
83701246 223 off, &len,
1d3576fd 224 ci->i_truncate_seq, ci->i_truncate_size,
b7495fc2 225 &page, 1, 0);
1d3576fd
SW
226 if (err == -ENOENT)
227 err = 0;
228 if (err < 0) {
229 SetPageError(page);
18302805 230 ceph_fscache_readpage_cancel(inode, page);
1d3576fd 231 goto out;
1d3576fd 232 }
09cbfeaf 233 if (err < PAGE_SIZE)
23cd573b 234 /* zero fill remainder of page */
09cbfeaf 235 zero_user_segment(page, err, PAGE_SIZE);
23cd573b
ZZ
236 else
237 flush_dcache_page(page);
1d3576fd 238
23cd573b
ZZ
239 SetPageUptodate(page);
240 ceph_readpage_to_fscache(inode, page);
99ccbd22 241
1d3576fd
SW
242out:
243 return err < 0 ? err : 0;
244}
245
246static int ceph_readpage(struct file *filp, struct page *page)
247{
dd2bc473
YZ
248 int r = ceph_do_readpage(filp, page);
249 if (r != -EINPROGRESS)
250 unlock_page(page);
251 else
252 r = 0;
1d3576fd
SW
253 return r;
254}
255
256/*
7c272194 257 * Finish an async read(ahead) op.
1d3576fd 258 */
85e084fe 259static void finish_read(struct ceph_osd_request *req)
1d3576fd 260{
7c272194 261 struct inode *inode = req->r_inode;
87060c10 262 struct ceph_osd_data *osd_data;
85e084fe
ID
263 int rc = req->r_result <= 0 ? req->r_result : 0;
264 int bytes = req->r_result >= 0 ? req->r_result : 0;
e0c59487 265 int num_pages;
7c272194 266 int i;
1d3576fd 267
7c272194
SW
268 dout("finish_read %p req %p rc %d bytes %d\n", inode, req, rc, bytes);
269
270 /* unlock all pages, zeroing any data we didn't read */
406e2c9f 271 osd_data = osd_req_op_extent_osd_data(req, 0);
87060c10
AE
272 BUG_ON(osd_data->type != CEPH_OSD_DATA_TYPE_PAGES);
273 num_pages = calc_pages_for((u64)osd_data->alignment,
274 (u64)osd_data->length);
e0c59487 275 for (i = 0; i < num_pages; i++) {
87060c10 276 struct page *page = osd_data->pages[i];
7c272194 277
368e3585
YZ
278 if (rc < 0 && rc != -ENOENT) {
279 ceph_fscache_readpage_cancel(inode, page);
f36132a7 280 goto unlock;
368e3585 281 }
09cbfeaf 282 if (bytes < (int)PAGE_SIZE) {
7c272194
SW
283 /* zero (remainder of) page */
284 int s = bytes < 0 ? 0 : bytes;
09cbfeaf 285 zero_user_segment(page, s, PAGE_SIZE);
1d3576fd 286 }
7c272194
SW
287 dout("finish_read %p uptodate %p idx %lu\n", inode, page,
288 page->index);
289 flush_dcache_page(page);
290 SetPageUptodate(page);
99ccbd22 291 ceph_readpage_to_fscache(inode, page);
f36132a7 292unlock:
7c272194 293 unlock_page(page);
09cbfeaf
KS
294 put_page(page);
295 bytes -= PAGE_SIZE;
1d3576fd 296 }
87060c10 297 kfree(osd_data->pages);
1d3576fd
SW
298}
299
300/*
7c272194
SW
301 * start an async read(ahead) operation. return nr_pages we submitted
302 * a read for on success, or negative error code.
1d3576fd 303 */
5d988308
YZ
304static int start_read(struct inode *inode, struct ceph_rw_context *rw_ctx,
305 struct list_head *page_list, int max)
1d3576fd 306{
3d14c5d2
YS
307 struct ceph_osd_client *osdc =
308 &ceph_inode_to_client(inode)->client->osdc;
7c272194 309 struct ceph_inode_info *ci = ceph_inode(inode);
f86196ea 310 struct page *page = lru_to_page(page_list);
acead002 311 struct ceph_vino vino;
7c272194
SW
312 struct ceph_osd_request *req;
313 u64 off;
1d3576fd 314 u64 len;
7c272194
SW
315 int i;
316 struct page **pages;
317 pgoff_t next_index;
318 int nr_pages = 0;
2b1ac852
YZ
319 int got = 0;
320 int ret = 0;
321
5d988308 322 if (!rw_ctx) {
2b1ac852
YZ
323 /* caller of readpages does not hold buffer and read caps
324 * (fadvise, madvise and readahead cases) */
325 int want = CEPH_CAP_FILE_CACHE;
2ee9dd95 326 ret = ceph_try_get_caps(ci, CEPH_CAP_FILE_RD, want, true, &got);
2b1ac852
YZ
327 if (ret < 0) {
328 dout("start_read %p, error getting cap\n", inode);
329 } else if (!(got & want)) {
330 dout("start_read %p, no cache cap\n", inode);
331 ret = 0;
332 }
333 if (ret <= 0) {
334 if (got)
335 ceph_put_cap_refs(ci, got);
336 while (!list_empty(page_list)) {
f86196ea 337 page = lru_to_page(page_list);
2b1ac852
YZ
338 list_del(&page->lru);
339 put_page(page);
340 }
341 return ret;
342 }
343 }
1d3576fd 344
6285bc23 345 off = (u64) page_offset(page);
1d3576fd 346
7c272194
SW
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++;
0d66a487
SW
354 if (max && nr_pages == max)
355 break;
7c272194 356 }
09cbfeaf 357 len = nr_pages << PAGE_SHIFT;
7c272194
SW
358 dout("start_read %p nr_pages %d is %lld~%lld\n", inode, nr_pages,
359 off, len);
acead002
AE
360 vino = ceph_vino(inode);
361 req = ceph_osdc_new_request(osdc, &ci->i_layout, vino, off, &len,
715e4cd4 362 0, 1, CEPH_OSD_OP_READ,
acead002 363 CEPH_OSD_FLAG_READ, NULL,
7c272194 364 ci->i_truncate_seq, ci->i_truncate_size,
acead002 365 false);
2b1ac852
YZ
366 if (IS_ERR(req)) {
367 ret = PTR_ERR(req);
368 goto out;
369 }
1d3576fd 370
7c272194 371 /* build page vector */
cf7b7e14 372 nr_pages = calc_pages_for(0, len);
6da2ec56 373 pages = kmalloc_array(nr_pages, sizeof(*pages), GFP_KERNEL);
2b1ac852
YZ
374 if (!pages) {
375 ret = -ENOMEM;
376 goto out_put;
377 }
7c272194
SW
378 for (i = 0; i < nr_pages; ++i) {
379 page = list_entry(page_list->prev, struct page, lru);
380 BUG_ON(PageLocked(page));
1d3576fd 381 list_del(&page->lru);
99ccbd22 382
7c272194
SW
383 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,
687265e5 386 GFP_KERNEL)) {
d4d3aa38 387 ceph_fscache_uncache_page(inode, page);
09cbfeaf 388 put_page(page);
7c272194 389 dout("start_read %p add_to_page_cache failed %p\n",
1d3576fd 390 inode, page);
7c272194 391 nr_pages = i;
1afe4785
YZ
392 if (nr_pages > 0) {
393 len = nr_pages << PAGE_SHIFT;
d641df81 394 osd_req_op_extent_update(req, 0, len);
1afe4785
YZ
395 break;
396 }
7c272194 397 goto out_pages;
1d3576fd 398 }
7c272194 399 pages[i] = page;
1d3576fd 400 }
406e2c9f 401 osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0, false, false);
7c272194
SW
402 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);
2b1ac852
YZ
410
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
7c272194
SW
416 return nr_pages;
417
418out_pages:
1afe4785
YZ
419 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);
2b1ac852 424out_put:
7c272194 425 ceph_osdc_put_request(req);
2b1ac852
YZ
426out:
427 if (got)
428 ceph_put_cap_refs(ci, got);
7c272194
SW
429 return ret;
430}
1d3576fd 431
7c272194
SW
432
433/*
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{
496ad9aa 440 struct inode *inode = file_inode(file);
0d66a487 441 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
73737682 442 struct ceph_file_info *fi = file->private_data;
5d988308 443 struct ceph_rw_context *rw_ctx;
7c272194 444 int rc = 0;
0d66a487
SW
445 int max = 0;
446
83701246
YZ
447 if (ceph_inode(inode)->i_inline_version != CEPH_INLINE_NONE)
448 return -EINVAL;
449
99ccbd22
MT
450 rc = ceph_readpages_from_fscache(mapping->host, mapping, page_list,
451 &nr_pages);
452
453 if (rc == 0)
454 goto out;
455
73737682 456 rw_ctx = ceph_find_rw_context(fi);
aa187926 457 max = fsc->mount_options->rsize >> PAGE_SHIFT;
5d988308
YZ
458 dout("readpages %p file %p ctx %p nr_pages %d max %d\n",
459 inode, file, rw_ctx, nr_pages, max);
7c272194 460 while (!list_empty(page_list)) {
5d988308 461 rc = start_read(inode, rw_ctx, page_list, max);
7c272194
SW
462 if (rc < 0)
463 goto out;
7c272194 464 }
1d3576fd 465out:
76be778b
MT
466 ceph_fscache_readpages_cancel(inode, page_list);
467
7c272194 468 dout("readpages %p file %p ret %d\n", inode, file, rc);
1d3576fd
SW
469 return rc;
470}
471
1f934b00
YZ
472struct ceph_writeback_ctl
473{
474 loff_t i_size;
475 u64 truncate_size;
476 u32 truncate_seq;
477 bool size_stable;
2a2d927e 478 bool head_snapc;
1f934b00
YZ
479};
480
1d3576fd
SW
481/*
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.
1d3576fd 484 */
1f934b00 485static struct ceph_snap_context *
05455e11
YZ
486get_oldest_context(struct inode *inode, struct ceph_writeback_ctl *ctl,
487 struct ceph_snap_context *page_snapc)
1d3576fd
SW
488{
489 struct ceph_inode_info *ci = ceph_inode(inode);
490 struct ceph_snap_context *snapc = NULL;
491 struct ceph_cap_snap *capsnap = NULL;
492
be655596 493 spin_lock(&ci->i_ceph_lock);
1d3576fd
SW
494 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);
05455e11
YZ
497 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;
1f934b00 511 }
05455e11
YZ
512 ctl->truncate_size = capsnap->truncate_size;
513 ctl->truncate_seq = capsnap->truncate_seq;
2a2d927e 514 ctl->head_snapc = false;
1d3576fd 515 }
05455e11
YZ
516
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;
1d3576fd 525 }
7d8cb26d 526 if (!snapc && ci->i_wrbuffer_ref_head) {
80e755fe 527 snapc = ceph_get_snap_context(ci->i_head_snapc);
1d3576fd
SW
528 dout(" head snapc %p has %d dirty pages\n",
529 snapc, ci->i_wrbuffer_ref_head);
1f934b00
YZ
530 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;
2a2d927e 535 ctl->head_snapc = true;
1f934b00 536 }
1d3576fd 537 }
be655596 538 spin_unlock(&ci->i_ceph_lock);
1d3576fd
SW
539 return snapc;
540}
541
1f934b00
YZ
542static 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
1d3576fd
SW
569/*
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;
3d14c5d2 579 struct ceph_fs_client *fsc;
6298a337 580 struct ceph_snap_context *snapc, *oldest;
fc2744aa 581 loff_t page_off = page_offset(page);
43986881 582 int err, len = PAGE_SIZE;
1f934b00 583 struct ceph_writeback_ctl ceph_wbc;
1d3576fd
SW
584
585 dout("writepage %p idx %lu\n", page, page->index);
586
1d3576fd
SW
587 inode = page->mapping->host;
588 ci = ceph_inode(inode);
3d14c5d2 589 fsc = ceph_inode_to_client(inode);
1d3576fd
SW
590
591 /* verify this is a writeable snap context */
61600ef8 592 snapc = page_snap_context(page);
d37b1d99 593 if (!snapc) {
1d3576fd 594 dout("writepage %p page %p not dirty?\n", inode, page);
43986881 595 return 0;
1d3576fd 596 }
05455e11 597 oldest = get_oldest_context(inode, &ceph_wbc, snapc);
6298a337 598 if (snapc->seq > oldest->seq) {
1d3576fd 599 dout("writepage %p page %p snapc %p not writeable - noop\n",
61600ef8 600 inode, page, snapc);
1d3576fd 601 /* we should only noop if called by kswapd */
fa71fefb 602 WARN_ON(!(current->flags & PF_MEMALLOC));
6298a337 603 ceph_put_snap_context(oldest);
fa71fefb 604 redirty_page_for_writepage(wbc, page);
43986881 605 return 0;
1d3576fd 606 }
6298a337 607 ceph_put_snap_context(oldest);
1d3576fd
SW
608
609 /* is this a partial page at end of file? */
1f934b00
YZ
610 if (page_off >= ceph_wbc.i_size) {
611 dout("%p page eof %llu\n", page, ceph_wbc.i_size);
05455e11 612 page->mapping->a_ops->invalidatepage(page, 0, PAGE_SIZE);
43986881 613 return 0;
fc2744aa 614 }
43986881 615
1f934b00
YZ
616 if (ceph_wbc.i_size < page_off + len)
617 len = ceph_wbc.i_size - page_off;
1d3576fd 618
1c0a9c2d
YZ
619 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);
1d3576fd 621
314c4737 622 if (atomic_long_inc_return(&fsc->writeback_count) >
3d14c5d2 623 CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb))
09dc9fc2 624 set_bdi_congested(inode_to_bdi(inode), BLK_RW_ASYNC);
2baba250 625
1d3576fd 626 set_page_writeback(page);
1f934b00
YZ
627 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,
fac02ddf 631 &inode->i_mtime, &page, 1);
1d3576fd 632 if (err < 0) {
ad15ec06
YZ
633 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);
43986881 641 return err;
ad15ec06
YZ
642 }
643 dout("writepage setting page/mapping error %d %p\n",
644 err, page);
1d3576fd
SW
645 SetPageError(page);
646 mapping_set_error(&inode->i_data, err);
ad15ec06 647 wbc->pages_skipped++;
1d3576fd
SW
648 } 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);
6298a337 656 ceph_put_snap_context(snapc); /* page's reference */
314c4737
YZ
657
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
1d3576fd
SW
662 return err;
663}
664
665static int ceph_writepage(struct page *page, struct writeback_control *wbc)
666{
dbd646a8
YS
667 int err;
668 struct inode *inode = page->mapping->host;
669 BUG_ON(!inode);
70b666c3 670 ihold(inode);
dbd646a8 671 err = writepage_nounlock(page, wbc);
ad15ec06
YZ
672 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 }
1d3576fd 677 unlock_page(page);
dbd646a8 678 iput(inode);
1d3576fd
SW
679 return err;
680}
681
1d3576fd
SW
682/*
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
86679820 691 pagevec_init(&pvec);
1d3576fd
SW
692 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
1d3576fd
SW
699/*
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 */
85e084fe 705static void writepages_finish(struct ceph_osd_request *req)
1d3576fd
SW
706{
707 struct inode *inode = req->r_inode;
1d3576fd 708 struct ceph_inode_info *ci = ceph_inode(inode);
87060c10 709 struct ceph_osd_data *osd_data;
1d3576fd 710 struct page *page;
5b64640c
YZ
711 int num_pages, total_pages = 0;
712 int i, j;
713 int rc = req->r_result;
1d3576fd
SW
714 struct ceph_snap_context *snapc = req->r_snapc;
715 struct address_space *mapping = inode->i_mapping;
3d14c5d2 716 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
5b64640c 717 bool remove_page;
1d3576fd 718
5b64640c 719 dout("writepages_finish %p rc %d\n", inode, rc);
26544c62 720 if (rc < 0) {
1d3576fd 721 mapping_set_error(mapping, rc);
26544c62
JL
722 ceph_set_error_write(ci);
723 } else {
724 ceph_clear_error_write(ci);
725 }
5b64640c
YZ
726
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));
1d3576fd
SW
735
736 /* clean all pages */
5b64640c
YZ
737 for (i = 0; i < req->r_num_ops; i++) {
738 if (req->r_ops[i].op != CEPH_OSD_OP_WRITE)
739 break;
e63dc5c7 740
5b64640c
YZ
741 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));
750
751 if (atomic_long_dec_return(&fsc->writeback_count) <
752 CONGESTION_OFF_THRESH(
753 fsc->mount_options->congestion_kb))
09dc9fc2 754 clear_bdi_congested(inode_to_bdi(inode),
5b64640c
YZ
755 BLK_RW_ASYNC);
756
757 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);
762
763 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);
e63dc5c7 771
5b64640c 772 ceph_release_pages(osd_data->pages, num_pages);
1d3576fd 773 }
1d3576fd 774
5b64640c
YZ
775 ceph_put_wrbuffer_cap_refs(ci, total_pages, snapc);
776
777 osd_data = osd_req_op_extent_osd_data(req, 0);
87060c10
AE
778 if (osd_data->pages_from_pool)
779 mempool_free(osd_data->pages,
640ef79d 780 ceph_sb_to_client(inode->i_sb)->wb_pagevec_pool);
1d3576fd 781 else
87060c10 782 kfree(osd_data->pages);
1d3576fd
SW
783 ceph_osdc_put_request(req);
784}
785
1d3576fd
SW
786/*
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;
1d3576fd 793 struct ceph_inode_info *ci = ceph_inode(inode);
fc2744aa
YZ
794 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
795 struct ceph_vino vino = ceph_vino(inode);
2a2d927e 796 pgoff_t index, start_index, end = -1;
80e755fe 797 struct ceph_snap_context *snapc = NULL, *last_snapc = NULL, *pgsnapc;
1d3576fd 798 struct pagevec pvec;
1d3576fd 799 int rc = 0;
93407472 800 unsigned int wsize = i_blocksize(inode);
1d3576fd 801 struct ceph_osd_request *req = NULL;
1f934b00 802 struct ceph_writeback_ctl ceph_wbc;
590e9d98 803 bool should_loop, range_whole = false;
af9cc401 804 bool done = false;
1d3576fd 805
3fb99d48 806 dout("writepages_start %p (mode=%s)\n", inode,
1d3576fd
SW
807 wbc->sync_mode == WB_SYNC_NONE ? "NONE" :
808 (wbc->sync_mode == WB_SYNC_ALL ? "ALL" : "HOLD"));
809
52953d55 810 if (READ_ONCE(fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
6c93df5d
YZ
811 if (ci->i_wrbuffer_ref > 0) {
812 pr_warn_ratelimited(
813 "writepage_start %p %lld forced umount\n",
814 inode, ceph_ino(inode));
815 }
a341d4df 816 mapping_set_error(mapping, -EIO);
1d3576fd
SW
817 return -EIO; /* we're in a forced umount, don't write! */
818 }
95cca2b4 819 if (fsc->mount_options->wsize < wsize)
3d14c5d2 820 wsize = fsc->mount_options->wsize;
1d3576fd 821
86679820 822 pagevec_init(&pvec);
1d3576fd 823
590e9d98 824 start_index = wbc->range_cyclic ? mapping->writeback_index : 0;
2a2d927e 825 index = start_index;
1d3576fd
SW
826
827retry:
828 /* find oldest snap context with dirty data */
05455e11 829 snapc = get_oldest_context(inode, &ceph_wbc, NULL);
1d3576fd
SW
830 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);
fc2744aa 838
2a2d927e
YZ
839 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 */
1582af2e 860 if (index > 0)
2a2d927e
YZ
861 should_loop = true;
862 dout(" non-head snapc, range whole\n");
1d3576fd 863 }
2a2d927e
YZ
864
865 ceph_put_snap_context(last_snapc);
1d3576fd
SW
866 last_snapc = snapc;
867
af9cc401 868 while (!done && index <= end) {
5b64640c 869 int num_ops = 0, op_idx;
0e5ecac7 870 unsigned i, pvec_pages, max_pages, locked_pages = 0;
5b64640c 871 struct page **pages = NULL, **data_pages;
e5975c7c 872 mempool_t *pool = NULL; /* Becomes non-null if mempool used */
1d3576fd 873 struct page *page;
0e5ecac7 874 pgoff_t strip_unit_end = 0;
5b64640c 875 u64 offset = 0, len = 0;
1d3576fd 876
0e5ecac7 877 max_pages = wsize >> PAGE_SHIFT;
1d3576fd
SW
878
879get_more_pages:
4be90299 880 pvec_pages = pagevec_lookup_range_nr_tag(&pvec, mapping, &index,
0ed75fc8 881 end, PAGECACHE_TAG_DIRTY,
4be90299 882 max_pages - locked_pages);
0ed75fc8 883 dout("pagevec_lookup_range_tag got %d\n", pvec_pages);
1d3576fd
SW
884 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);
0713e5f2 899 continue;
1d3576fd 900 }
af9cc401
YZ
901 /* 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);
1582af2e
YZ
906 if (!should_loop &&
907 !ceph_wbc.head_snapc &&
908 wbc->sync_mode != WB_SYNC_NONE)
909 should_loop = true;
1d3576fd 910 unlock_page(page);
af9cc401 911 continue;
1d3576fd 912 }
1f934b00
YZ
913 if (page_offset(page) >= ceph_wbc.i_size) {
914 dout("%p page eof %llu\n",
915 page, ceph_wbc.i_size);
c95f1c5f
EC
916 if ((ceph_wbc.size_stable ||
917 page_offset(page) >= i_size_read(inode)) &&
918 clear_page_dirty_for_io(page))
af9cc401
YZ
919 mapping->a_ops->invalidatepage(page,
920 0, PAGE_SIZE);
921 unlock_page(page);
922 continue;
923 }
924 if (strip_unit_end && (page->index > strip_unit_end)) {
925 dout("end of strip unit %p\n", page);
1d3576fd
SW
926 unlock_page(page);
927 break;
928 }
929 if (PageWriteback(page)) {
0713e5f2
YZ
930 if (wbc->sync_mode == WB_SYNC_NONE) {
931 dout("%p under writeback\n", page);
932 unlock_page(page);
933 continue;
934 }
935 dout("waiting on writeback %p\n", page);
936 wait_on_page_writeback(page);
1d3576fd
SW
937 }
938
1d3576fd
SW
939 if (!clear_page_dirty_for_io(page)) {
940 dout("%p !clear_page_dirty_for_io\n", page);
941 unlock_page(page);
0713e5f2 942 continue;
1d3576fd
SW
943 }
944
e5975c7c
AE
945 /*
946 * We have something to write. If this is
947 * the first locked page this time through,
5b64640c
YZ
948 * calculate max possinle write size and
949 * allocate a page array
e5975c7c 950 */
1d3576fd 951 if (locked_pages == 0) {
5b64640c
YZ
952 u64 objnum;
953 u64 objoff;
dccbf080 954 u32 xlen;
5b64640c 955
1d3576fd 956 /* prepare async write request */
e5975c7c 957 offset = (u64)page_offset(page);
dccbf080
ID
958 ceph_calc_file_object_mapping(&ci->i_layout,
959 offset, wsize,
960 &objnum, &objoff,
961 &xlen);
962 len = xlen;
8c71897b 963
3fb99d48 964 num_ops = 1;
5b64640c 965 strip_unit_end = page->index +
09cbfeaf 966 ((len - 1) >> PAGE_SHIFT);
88486957 967
5b64640c 968 BUG_ON(pages);
88486957 969 max_pages = calc_pages_for(0, (u64)len);
6da2ec56
KC
970 pages = kmalloc_array(max_pages,
971 sizeof(*pages),
972 GFP_NOFS);
88486957
AE
973 if (!pages) {
974 pool = fsc->wb_pagevec_pool;
88486957 975 pages = mempool_alloc(pool, GFP_NOFS);
e5975c7c 976 BUG_ON(!pages);
88486957 977 }
5b64640c
YZ
978
979 len = 0;
980 } else if (page->index !=
09cbfeaf 981 (offset + len) >> PAGE_SHIFT) {
5b64640c
YZ
982 if (num_ops >= (pool ? CEPH_OSD_SLAB_OPS :
983 CEPH_OSD_MAX_OPS)) {
984 redirty_page_for_writepage(wbc, page);
985 unlock_page(page);
986 break;
987 }
988
989 num_ops++;
990 offset = (u64)page_offset(page);
991 len = 0;
1d3576fd
SW
992 }
993
994 /* note position of first page in pvec */
1d3576fd
SW
995 dout("%p will write page %p idx %lu\n",
996 inode, page, page->index);
2baba250 997
5b64640c
YZ
998 if (atomic_long_inc_return(&fsc->writeback_count) >
999 CONGESTION_ON_THRESH(
3d14c5d2 1000 fsc->mount_options->congestion_kb)) {
09dc9fc2 1001 set_bdi_congested(inode_to_bdi(inode),
213c99ee 1002 BLK_RW_ASYNC);
2baba250
YS
1003 }
1004
0713e5f2
YZ
1005
1006 pages[locked_pages++] = page;
1007 pvec.pages[i] = NULL;
1008
09cbfeaf 1009 len += PAGE_SIZE;
1d3576fd
SW
1010 }
1011
1012 /* did we get anything? */
1013 if (!locked_pages)
1014 goto release_pvec_pages;
1015 if (i) {
0713e5f2
YZ
1016 unsigned j, n = 0;
1017 /* shift unused page to beginning of pvec */
1018 for (j = 0; j < pvec_pages; j++) {
1019 if (!pvec.pages[j])
1020 continue;
1021 if (n < j)
1022 pvec.pages[n] = pvec.pages[j];
1023 n++;
1024 }
1025 pvec.nr = n;
1d3576fd
SW
1026
1027 if (pvec_pages && i == pvec_pages &&
1028 locked_pages < max_pages) {
1029 dout("reached end pvec, trying for more\n");
0713e5f2 1030 pagevec_release(&pvec);
1d3576fd
SW
1031 goto get_more_pages;
1032 }
1d3576fd
SW
1033 }
1034
5b64640c 1035new_request:
e5975c7c 1036 offset = page_offset(pages[0]);
5b64640c
YZ
1037 len = wsize;
1038
1039 req = ceph_osdc_new_request(&fsc->client->osdc,
1040 &ci->i_layout, vino,
1041 offset, &len, 0, num_ops,
1f934b00
YZ
1042 CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
1043 snapc, ceph_wbc.truncate_seq,
1044 ceph_wbc.truncate_size, false);
5b64640c
YZ
1045 if (IS_ERR(req)) {
1046 req = ceph_osdc_new_request(&fsc->client->osdc,
1047 &ci->i_layout, vino,
1048 offset, &len, 0,
1049 min(num_ops,
1050 CEPH_OSD_SLAB_OPS),
1051 CEPH_OSD_OP_WRITE,
54ea0046 1052 CEPH_OSD_FLAG_WRITE,
1f934b00
YZ
1053 snapc, ceph_wbc.truncate_seq,
1054 ceph_wbc.truncate_size, true);
5b64640c 1055 BUG_ON(IS_ERR(req));
e1966b49 1056 }
5b64640c 1057 BUG_ON(len < page_offset(pages[locked_pages - 1]) +
09cbfeaf 1058 PAGE_SIZE - offset);
5b64640c
YZ
1059
1060 req->r_callback = writepages_finish;
1061 req->r_inode = inode;
1d3576fd 1062
5b64640c
YZ
1063 /* Format the osd request message and submit the write */
1064 len = 0;
1065 data_pages = pages;
1066 op_idx = 0;
1067 for (i = 0; i < locked_pages; i++) {
1068 u64 cur_offset = page_offset(pages[i]);
1069 if (offset + len != cur_offset) {
3fb99d48 1070 if (op_idx + 1 == req->r_num_ops)
5b64640c
YZ
1071 break;
1072 osd_req_op_extent_dup_last(req, op_idx,
1073 cur_offset - offset);
1074 dout("writepages got pages at %llu~%llu\n",
1075 offset, len);
1076 osd_req_op_extent_osd_data_pages(req, op_idx,
1077 data_pages, len, 0,
a4ce40a9 1078 !!pool, false);
5b64640c 1079 osd_req_op_extent_update(req, op_idx, len);
e5975c7c 1080
5b64640c
YZ
1081 len = 0;
1082 offset = cur_offset;
1083 data_pages = pages + i;
1084 op_idx++;
1085 }
1086
1087 set_page_writeback(pages[i]);
09cbfeaf 1088 len += PAGE_SIZE;
5b64640c
YZ
1089 }
1090
1f934b00
YZ
1091 if (ceph_wbc.size_stable) {
1092 len = min(len, ceph_wbc.i_size - offset);
5b64640c
YZ
1093 } else if (i == locked_pages) {
1094 /* writepages_finish() clears writeback pages
1095 * according to the data length, so make sure
1096 * data length covers all locked pages */
09cbfeaf 1097 u64 min_len = len + 1 - PAGE_SIZE;
1f934b00
YZ
1098 len = get_writepages_data_length(inode, pages[i - 1],
1099 offset);
5b64640c
YZ
1100 len = max(len, min_len);
1101 }
1102 dout("writepages got pages at %llu~%llu\n", offset, len);
e5975c7c 1103
5b64640c
YZ
1104 osd_req_op_extent_osd_data_pages(req, op_idx, data_pages, len,
1105 0, !!pool, false);
1106 osd_req_op_extent_update(req, op_idx, len);
e5975c7c 1107
5b64640c
YZ
1108 BUG_ON(op_idx + 1 != req->r_num_ops);
1109
1110 pool = NULL;
1111 if (i < locked_pages) {
1112 BUG_ON(num_ops <= req->r_num_ops);
1113 num_ops -= req->r_num_ops;
5b64640c
YZ
1114 locked_pages -= i;
1115
1116 /* allocate new pages array for next request */
1117 data_pages = pages;
6da2ec56
KC
1118 pages = kmalloc_array(locked_pages, sizeof(*pages),
1119 GFP_NOFS);
5b64640c
YZ
1120 if (!pages) {
1121 pool = fsc->wb_pagevec_pool;
1122 pages = mempool_alloc(pool, GFP_NOFS);
1123 BUG_ON(!pages);
1124 }
1125 memcpy(pages, data_pages + i,
1126 locked_pages * sizeof(*pages));
1127 memset(data_pages + i, 0,
1128 locked_pages * sizeof(*pages));
1129 } else {
1130 BUG_ON(num_ops != req->r_num_ops);
1131 index = pages[i - 1]->index + 1;
1132 /* request message now owns the pages array */
1133 pages = NULL;
1134 }
e5975c7c 1135
fac02ddf 1136 req->r_mtime = inode->i_mtime;
9d6fcb08
SW
1137 rc = ceph_osdc_start_request(&fsc->client->osdc, req, true);
1138 BUG_ON(rc);
1d3576fd
SW
1139 req = NULL;
1140
5b64640c
YZ
1141 wbc->nr_to_write -= i;
1142 if (pages)
1143 goto new_request;
1144
2a2d927e
YZ
1145 /*
1146 * We stop writing back only if we are not doing
1147 * integrity sync. In case of integrity sync we have to
1148 * keep going until we have written all the pages
1149 * we tagged for writeback prior to entering this loop.
1150 */
1151 if (wbc->nr_to_write <= 0 && wbc->sync_mode == WB_SYNC_NONE)
af9cc401 1152 done = true;
1d3576fd
SW
1153
1154release_pvec_pages:
1155 dout("pagevec_release on %d pages (%p)\n", (int)pvec.nr,
1156 pvec.nr ? pvec.pages[0] : NULL);
1157 pagevec_release(&pvec);
1d3576fd
SW
1158 }
1159
1160 if (should_loop && !done) {
1161 /* more to do; loop back to beginning of file */
1162 dout("writepages looping back to beginning of file\n");
2a2d927e 1163 end = start_index - 1; /* OK even when start_index == 0 */
f275635e
YZ
1164
1165 /* to write dirty pages associated with next snapc,
1166 * we need to wait until current writes complete */
1167 if (wbc->sync_mode != WB_SYNC_NONE &&
1168 start_index == 0 && /* all dirty pages were checked */
1169 !ceph_wbc.head_snapc) {
1170 struct page *page;
1171 unsigned i, nr;
1172 index = 0;
1173 while ((index <= end) &&
1174 (nr = pagevec_lookup_tag(&pvec, mapping, &index,
67fd707f 1175 PAGECACHE_TAG_WRITEBACK))) {
f275635e
YZ
1176 for (i = 0; i < nr; i++) {
1177 page = pvec.pages[i];
1178 if (page_snap_context(page) != snapc)
1179 continue;
1180 wait_on_page_writeback(page);
1181 }
1182 pagevec_release(&pvec);
1183 cond_resched();
1184 }
1185 }
1186
2a2d927e 1187 start_index = 0;
1d3576fd
SW
1188 index = 0;
1189 goto retry;
1190 }
1191
1192 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
1193 mapping->writeback_index = index;
1194
1195out:
3ed97d63 1196 ceph_osdc_put_request(req);
2a2d927e
YZ
1197 ceph_put_snap_context(last_snapc);
1198 dout("writepages dend - startone, rc = %d\n", rc);
1d3576fd
SW
1199 return rc;
1200}
1201
1202
1203
1204/*
1205 * See if a given @snapc is either writeable, or already written.
1206 */
1207static int context_is_writeable_or_written(struct inode *inode,
1208 struct ceph_snap_context *snapc)
1209{
05455e11 1210 struct ceph_snap_context *oldest = get_oldest_context(inode, NULL, NULL);
6298a337
SW
1211 int ret = !oldest || snapc->seq <= oldest->seq;
1212
1213 ceph_put_snap_context(oldest);
1214 return ret;
1d3576fd
SW
1215}
1216
1217/*
1218 * We are only allowed to write into/dirty the page if the page is
1219 * clean, or already dirty within the same snap context.
8f883c24
SW
1220 *
1221 * called with page locked.
1222 * return success with page locked,
1223 * or any failure (incl -EAGAIN) with page unlocked.
1d3576fd 1224 */
4af6b225
YS
1225static int ceph_update_writeable_page(struct file *file,
1226 loff_t pos, unsigned len,
1227 struct page *page)
1d3576fd 1228{
496ad9aa 1229 struct inode *inode = file_inode(file);
6c93df5d 1230 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1d3576fd 1231 struct ceph_inode_info *ci = ceph_inode(inode);
09cbfeaf
KS
1232 loff_t page_off = pos & PAGE_MASK;
1233 int pos_in_page = pos & ~PAGE_MASK;
1d3576fd
SW
1234 int end_in_page = pos_in_page + len;
1235 loff_t i_size;
1d3576fd 1236 int r;
80e755fe 1237 struct ceph_snap_context *snapc, *oldest;
1d3576fd 1238
52953d55 1239 if (READ_ONCE(fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
6c93df5d
YZ
1240 dout(" page %p forced umount\n", page);
1241 unlock_page(page);
1242 return -EIO;
1243 }
1244
1d3576fd
SW
1245retry_locked:
1246 /* writepages currently holds page lock, but if we change that later, */
1247 wait_on_page_writeback(page);
1248
61600ef8 1249 snapc = page_snap_context(page);
80e755fe 1250 if (snapc && snapc != ci->i_head_snapc) {
1d3576fd
SW
1251 /*
1252 * this page is already dirty in another (older) snap
1253 * context! is it writeable now?
1254 */
05455e11 1255 oldest = get_oldest_context(inode, NULL, NULL);
80e755fe 1256 if (snapc->seq > oldest->seq) {
6298a337 1257 ceph_put_snap_context(oldest);
1d3576fd 1258 dout(" page %p snapc %p not current or oldest\n",
6298a337 1259 page, snapc);
1d3576fd
SW
1260 /*
1261 * queue for writeback, and wait for snapc to
1262 * be writeable or written
1263 */
6298a337 1264 snapc = ceph_get_snap_context(snapc);
1d3576fd 1265 unlock_page(page);
3c6f6b79 1266 ceph_queue_writeback(inode);
a78bbd4b 1267 r = wait_event_killable(ci->i_cap_wq,
1d3576fd
SW
1268 context_is_writeable_or_written(inode, snapc));
1269 ceph_put_snap_context(snapc);
8f883c24
SW
1270 if (r == -ERESTARTSYS)
1271 return r;
4af6b225 1272 return -EAGAIN;
1d3576fd 1273 }
6298a337 1274 ceph_put_snap_context(oldest);
1d3576fd
SW
1275
1276 /* yay, writeable, do it now (without dropping page lock) */
1277 dout(" page %p snapc %p not current, but oldest\n",
1278 page, snapc);
1279 if (!clear_page_dirty_for_io(page))
1280 goto retry_locked;
1281 r = writepage_nounlock(page, NULL);
1282 if (r < 0)
dd2bc473 1283 goto fail_unlock;
1d3576fd
SW
1284 goto retry_locked;
1285 }
1286
1287 if (PageUptodate(page)) {
1288 dout(" page %p already uptodate\n", page);
1289 return 0;
1290 }
1291
1292 /* full page? */
09cbfeaf 1293 if (pos_in_page == 0 && len == PAGE_SIZE)
1d3576fd
SW
1294 return 0;
1295
1296 /* past end of file? */
99c88e69 1297 i_size = i_size_read(inode);
1d3576fd 1298
1d3576fd
SW
1299 if (page_off >= i_size ||
1300 (pos_in_page == 0 && (pos+len) >= i_size &&
09cbfeaf 1301 end_in_page - pos_in_page != PAGE_SIZE)) {
1d3576fd 1302 dout(" zeroing %p 0 - %d and %d - %d\n",
09cbfeaf 1303 page, pos_in_page, end_in_page, (int)PAGE_SIZE);
1d3576fd
SW
1304 zero_user_segments(page,
1305 0, pos_in_page,
09cbfeaf 1306 end_in_page, PAGE_SIZE);
1d3576fd
SW
1307 return 0;
1308 }
1309
1310 /* we need to read it. */
dd2bc473
YZ
1311 r = ceph_do_readpage(file, page);
1312 if (r < 0) {
1313 if (r == -EINPROGRESS)
1314 return -EAGAIN;
1315 goto fail_unlock;
1316 }
1d3576fd 1317 goto retry_locked;
dd2bc473 1318fail_unlock:
1d3576fd
SW
1319 unlock_page(page);
1320 return r;
1321}
1322
4af6b225
YS
1323/*
1324 * We are only allowed to write into/dirty the page if the page is
1325 * clean, or already dirty within the same snap context.
1326 */
1327static int ceph_write_begin(struct file *file, struct address_space *mapping,
1328 loff_t pos, unsigned len, unsigned flags,
1329 struct page **pagep, void **fsdata)
1330{
496ad9aa 1331 struct inode *inode = file_inode(file);
4af6b225 1332 struct page *page;
09cbfeaf 1333 pgoff_t index = pos >> PAGE_SHIFT;
7971bd92 1334 int r;
4af6b225
YS
1335
1336 do {
8f883c24 1337 /* get a page */
4af6b225 1338 page = grab_cache_page_write_begin(mapping, index, 0);
7971bd92
SW
1339 if (!page)
1340 return -ENOMEM;
4af6b225
YS
1341
1342 dout("write_begin file %p inode %p page %p %d~%d\n", file,
213c99ee 1343 inode, page, (int)pos, (int)len);
4af6b225
YS
1344
1345 r = ceph_update_writeable_page(file, pos, len, page);
c1d00b2d 1346 if (r < 0)
09cbfeaf 1347 put_page(page);
c1d00b2d
TK
1348 else
1349 *pagep = page;
4af6b225
YS
1350 } while (r == -EAGAIN);
1351
1352 return r;
1353}
1354
1d3576fd
SW
1355/*
1356 * we don't do anything in here that simple_write_end doesn't do
5dda377c 1357 * except adjust dirty page accounting
1d3576fd
SW
1358 */
1359static int ceph_write_end(struct file *file, struct address_space *mapping,
1360 loff_t pos, unsigned len, unsigned copied,
1361 struct page *page, void *fsdata)
1362{
496ad9aa 1363 struct inode *inode = file_inode(file);
efb0ca76 1364 bool check_cap = false;
1d3576fd
SW
1365
1366 dout("write_end file %p inode %p page %p %d~%d (%d)\n", file,
1367 inode, page, (int)pos, (int)copied, (int)len);
1368
1369 /* zero the stale part of the page if we did a short copy */
b9de313c
AV
1370 if (!PageUptodate(page)) {
1371 if (copied < len) {
1372 copied = 0;
1373 goto out;
1374 }
1375 SetPageUptodate(page);
1376 }
1d3576fd
SW
1377
1378 /* did file size increase? */
99c88e69 1379 if (pos+copied > i_size_read(inode))
1d3576fd
SW
1380 check_cap = ceph_inode_set_size(inode, pos+copied);
1381
1d3576fd
SW
1382 set_page_dirty(page);
1383
b9de313c 1384out:
1d3576fd 1385 unlock_page(page);
09cbfeaf 1386 put_page(page);
1d3576fd
SW
1387
1388 if (check_cap)
1389 ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, NULL);
1390
1391 return copied;
1392}
1393
1394/*
1395 * we set .direct_IO to indicate direct io is supported, but since we
1396 * intercept O_DIRECT reads and writes early, this function should
1397 * never get called.
1398 */
c8b8e32d 1399static ssize_t ceph_direct_io(struct kiocb *iocb, struct iov_iter *iter)
1d3576fd
SW
1400{
1401 WARN_ON(1);
1402 return -EINVAL;
1403}
1404
1405const struct address_space_operations ceph_aops = {
1406 .readpage = ceph_readpage,
1407 .readpages = ceph_readpages,
1408 .writepage = ceph_writepage,
1409 .writepages = ceph_writepages_start,
1410 .write_begin = ceph_write_begin,
1411 .write_end = ceph_write_end,
1412 .set_page_dirty = ceph_set_page_dirty,
1413 .invalidatepage = ceph_invalidatepage,
1414 .releasepage = ceph_releasepage,
1415 .direct_IO = ceph_direct_io,
1416};
1417
4f7e89f6
YZ
1418static void ceph_block_sigs(sigset_t *oldset)
1419{
1420 sigset_t mask;
1421 siginitsetinv(&mask, sigmask(SIGKILL));
1422 sigprocmask(SIG_BLOCK, &mask, oldset);
1423}
1424
1425static void ceph_restore_sigs(sigset_t *oldset)
1426{
1427 sigprocmask(SIG_SETMASK, oldset, NULL);
1428}
1d3576fd
SW
1429
1430/*
1431 * vm ops
1432 */
24499847 1433static vm_fault_t ceph_filemap_fault(struct vm_fault *vmf)
61f68816 1434{
11bac800 1435 struct vm_area_struct *vma = vmf->vma;
61f68816
YZ
1436 struct inode *inode = file_inode(vma->vm_file);
1437 struct ceph_inode_info *ci = ceph_inode(inode);
1438 struct ceph_file_info *fi = vma->vm_file->private_data;
3738daa6 1439 struct page *pinned_page = NULL;
09cbfeaf 1440 loff_t off = vmf->pgoff << PAGE_SHIFT;
24499847 1441 int want, got, err;
4f7e89f6 1442 sigset_t oldset;
24499847 1443 vm_fault_t ret = VM_FAULT_SIGBUS;
4f7e89f6
YZ
1444
1445 ceph_block_sigs(&oldset);
61f68816
YZ
1446
1447 dout("filemap_fault %p %llx.%llx %llu~%zd trying to get caps\n",
09cbfeaf 1448 inode, ceph_vinop(inode), off, (size_t)PAGE_SIZE);
61f68816
YZ
1449 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1450 want = CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO;
1451 else
1452 want = CEPH_CAP_FILE_CACHE;
4f7e89f6
YZ
1453
1454 got = 0;
24499847
SJ
1455 err = ceph_get_caps(ci, CEPH_CAP_FILE_RD, want, -1, &got, &pinned_page);
1456 if (err < 0)
4f7e89f6 1457 goto out_restore;
6ce026e4 1458
61f68816 1459 dout("filemap_fault %p %llu~%zd got cap refs on %s\n",
09cbfeaf 1460 inode, off, (size_t)PAGE_SIZE, ceph_cap_string(got));
61f68816 1461
83701246 1462 if ((got & (CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO)) ||
2b1ac852 1463 ci->i_inline_version == CEPH_INLINE_NONE) {
5d988308
YZ
1464 CEPH_DEFINE_RW_CONTEXT(rw_ctx, got);
1465 ceph_add_rw_context(fi, &rw_ctx);
11bac800 1466 ret = filemap_fault(vmf);
5d988308 1467 ceph_del_rw_context(fi, &rw_ctx);
24499847
SJ
1468 dout("filemap_fault %p %llu~%zd drop cap refs %s ret %x\n",
1469 inode, off, (size_t)PAGE_SIZE,
1470 ceph_cap_string(got), ret);
2b1ac852 1471 } else
24499847 1472 err = -EAGAIN;
61f68816 1473
3738daa6 1474 if (pinned_page)
09cbfeaf 1475 put_page(pinned_page);
61f68816
YZ
1476 ceph_put_cap_refs(ci, got);
1477
24499847 1478 if (err != -EAGAIN)
4f7e89f6 1479 goto out_restore;
83701246
YZ
1480
1481 /* read inline data */
09cbfeaf 1482 if (off >= PAGE_SIZE) {
83701246
YZ
1483 /* does not support inline data > PAGE_SIZE */
1484 ret = VM_FAULT_SIGBUS;
1485 } else {
83701246
YZ
1486 struct address_space *mapping = inode->i_mapping;
1487 struct page *page = find_or_create_page(mapping, 0,
c62d2555
MH
1488 mapping_gfp_constraint(mapping,
1489 ~__GFP_FS));
83701246
YZ
1490 if (!page) {
1491 ret = VM_FAULT_OOM;
4f7e89f6 1492 goto out_inline;
83701246 1493 }
24499847 1494 err = __ceph_do_getattr(inode, page,
83701246 1495 CEPH_STAT_CAP_INLINE_DATA, true);
24499847 1496 if (err < 0 || off >= i_size_read(inode)) {
83701246 1497 unlock_page(page);
09cbfeaf 1498 put_page(page);
c64a2b05 1499 ret = vmf_error(err);
4f7e89f6 1500 goto out_inline;
83701246 1501 }
24499847
SJ
1502 if (err < PAGE_SIZE)
1503 zero_user_segment(page, err, PAGE_SIZE);
83701246
YZ
1504 else
1505 flush_dcache_page(page);
1506 SetPageUptodate(page);
1507 vmf->page = page;
1508 ret = VM_FAULT_MAJOR | VM_FAULT_LOCKED;
4f7e89f6 1509out_inline:
24499847 1510 dout("filemap_fault %p %llu~%zd read inline data ret %x\n",
4f7e89f6 1511 inode, off, (size_t)PAGE_SIZE, ret);
83701246 1512 }
4f7e89f6
YZ
1513out_restore:
1514 ceph_restore_sigs(&oldset);
24499847
SJ
1515 if (err < 0)
1516 ret = vmf_error(err);
6ce026e4 1517
61f68816
YZ
1518 return ret;
1519}
1d3576fd
SW
1520
1521/*
1522 * Reuse write_begin here for simplicity.
1523 */
24499847 1524static vm_fault_t ceph_page_mkwrite(struct vm_fault *vmf)
1d3576fd 1525{
11bac800 1526 struct vm_area_struct *vma = vmf->vma;
496ad9aa 1527 struct inode *inode = file_inode(vma->vm_file);
61f68816
YZ
1528 struct ceph_inode_info *ci = ceph_inode(inode);
1529 struct ceph_file_info *fi = vma->vm_file->private_data;
f66fd9f0 1530 struct ceph_cap_flush *prealloc_cf;
61f68816 1531 struct page *page = vmf->page;
6285bc23 1532 loff_t off = page_offset(page);
61f68816
YZ
1533 loff_t size = i_size_read(inode);
1534 size_t len;
24499847 1535 int want, got, err;
4f7e89f6 1536 sigset_t oldset;
24499847 1537 vm_fault_t ret = VM_FAULT_SIGBUS;
3ca9c3bd 1538
f66fd9f0
YZ
1539 prealloc_cf = ceph_alloc_cap_flush();
1540 if (!prealloc_cf)
6ce026e4 1541 return VM_FAULT_OOM;
f66fd9f0 1542
4f7e89f6 1543 ceph_block_sigs(&oldset);
f66fd9f0 1544
28127bdd
YZ
1545 if (ci->i_inline_version != CEPH_INLINE_NONE) {
1546 struct page *locked_page = NULL;
1547 if (off == 0) {
1548 lock_page(page);
1549 locked_page = page;
1550 }
24499847 1551 err = ceph_uninline_data(vma->vm_file, locked_page);
28127bdd
YZ
1552 if (locked_page)
1553 unlock_page(locked_page);
24499847 1554 if (err < 0)
f66fd9f0 1555 goto out_free;
28127bdd
YZ
1556 }
1557
09cbfeaf
KS
1558 if (off + PAGE_SIZE <= size)
1559 len = PAGE_SIZE;
1d3576fd 1560 else
09cbfeaf 1561 len = size & ~PAGE_MASK;
1d3576fd 1562
61f68816
YZ
1563 dout("page_mkwrite %p %llx.%llx %llu~%zd getting caps i_size %llu\n",
1564 inode, ceph_vinop(inode), off, len, size);
1565 if (fi->fmode & CEPH_FILE_MODE_LAZY)
1566 want = CEPH_CAP_FILE_BUFFER | CEPH_CAP_FILE_LAZYIO;
1567 else
1568 want = CEPH_CAP_FILE_BUFFER;
4f7e89f6
YZ
1569
1570 got = 0;
24499847 1571 err = ceph_get_caps(ci, CEPH_CAP_FILE_WR, want, off + len,
4f7e89f6 1572 &got, NULL);
24499847 1573 if (err < 0)
4f7e89f6 1574 goto out_free;
6ce026e4 1575
61f68816
YZ
1576 dout("page_mkwrite %p %llu~%zd got cap refs on %s\n",
1577 inode, off, len, ceph_cap_string(got));
1578
1579 /* Update time before taking page lock */
1580 file_update_time(vma->vm_file);
5c308356 1581 inode_inc_iversion_raw(inode);
4af6b225 1582
f0b33df5
YZ
1583 do {
1584 lock_page(page);
4af6b225 1585
f0b33df5
YZ
1586 if ((off > size) || (page->mapping != inode->i_mapping)) {
1587 unlock_page(page);
1588 ret = VM_FAULT_NOPAGE;
1589 break;
1590 }
1591
24499847
SJ
1592 err = ceph_update_writeable_page(vma->vm_file, off, len, page);
1593 if (err >= 0) {
f0b33df5
YZ
1594 /* success. we'll keep the page locked. */
1595 set_page_dirty(page);
1596 ret = VM_FAULT_LOCKED;
1597 }
24499847 1598 } while (err == -EAGAIN);
4af6b225 1599
28127bdd
YZ
1600 if (ret == VM_FAULT_LOCKED ||
1601 ci->i_inline_version != CEPH_INLINE_NONE) {
61f68816
YZ
1602 int dirty;
1603 spin_lock(&ci->i_ceph_lock);
28127bdd 1604 ci->i_inline_version = CEPH_INLINE_NONE;
f66fd9f0
YZ
1605 dirty = __ceph_mark_dirty_caps(ci, CEPH_CAP_FILE_WR,
1606 &prealloc_cf);
61f68816
YZ
1607 spin_unlock(&ci->i_ceph_lock);
1608 if (dirty)
1609 __mark_inode_dirty(inode, dirty);
1610 }
1611
24499847 1612 dout("page_mkwrite %p %llu~%zd dropping cap refs on %s ret %x\n",
61f68816
YZ
1613 inode, off, len, ceph_cap_string(got), ret);
1614 ceph_put_cap_refs(ci, got);
f66fd9f0 1615out_free:
4f7e89f6 1616 ceph_restore_sigs(&oldset);
f66fd9f0 1617 ceph_free_cap_flush(prealloc_cf);
24499847
SJ
1618 if (err < 0)
1619 ret = vmf_error(err);
1d3576fd
SW
1620 return ret;
1621}
1622
31c542a1
YZ
1623void ceph_fill_inline_data(struct inode *inode, struct page *locked_page,
1624 char *data, size_t len)
1625{
1626 struct address_space *mapping = inode->i_mapping;
1627 struct page *page;
1628
1629 if (locked_page) {
1630 page = locked_page;
1631 } else {
1632 if (i_size_read(inode) == 0)
1633 return;
1634 page = find_or_create_page(mapping, 0,
c62d2555
MH
1635 mapping_gfp_constraint(mapping,
1636 ~__GFP_FS));
31c542a1
YZ
1637 if (!page)
1638 return;
1639 if (PageUptodate(page)) {
1640 unlock_page(page);
09cbfeaf 1641 put_page(page);
31c542a1
YZ
1642 return;
1643 }
1644 }
1645
0668ff52 1646 dout("fill_inline_data %p %llx.%llx len %zu locked_page %p\n",
31c542a1
YZ
1647 inode, ceph_vinop(inode), len, locked_page);
1648
1649 if (len > 0) {
1650 void *kaddr = kmap_atomic(page);
1651 memcpy(kaddr, data, len);
1652 kunmap_atomic(kaddr);
1653 }
1654
1655 if (page != locked_page) {
09cbfeaf
KS
1656 if (len < PAGE_SIZE)
1657 zero_user_segment(page, len, PAGE_SIZE);
31c542a1
YZ
1658 else
1659 flush_dcache_page(page);
1660
1661 SetPageUptodate(page);
1662 unlock_page(page);
09cbfeaf 1663 put_page(page);
31c542a1
YZ
1664 }
1665}
1666
28127bdd
YZ
1667int ceph_uninline_data(struct file *filp, struct page *locked_page)
1668{
1669 struct inode *inode = file_inode(filp);
1670 struct ceph_inode_info *ci = ceph_inode(inode);
1671 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1672 struct ceph_osd_request *req;
1673 struct page *page = NULL;
1674 u64 len, inline_version;
1675 int err = 0;
1676 bool from_pagecache = false;
1677
1678 spin_lock(&ci->i_ceph_lock);
1679 inline_version = ci->i_inline_version;
1680 spin_unlock(&ci->i_ceph_lock);
1681
1682 dout("uninline_data %p %llx.%llx inline_version %llu\n",
1683 inode, ceph_vinop(inode), inline_version);
1684
1685 if (inline_version == 1 || /* initial version, no data */
1686 inline_version == CEPH_INLINE_NONE)
1687 goto out;
1688
1689 if (locked_page) {
1690 page = locked_page;
1691 WARN_ON(!PageUptodate(page));
1692 } else if (ceph_caps_issued(ci) &
1693 (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) {
1694 page = find_get_page(inode->i_mapping, 0);
1695 if (page) {
1696 if (PageUptodate(page)) {
1697 from_pagecache = true;
1698 lock_page(page);
1699 } else {
09cbfeaf 1700 put_page(page);
28127bdd
YZ
1701 page = NULL;
1702 }
1703 }
1704 }
1705
1706 if (page) {
1707 len = i_size_read(inode);
09cbfeaf
KS
1708 if (len > PAGE_SIZE)
1709 len = PAGE_SIZE;
28127bdd
YZ
1710 } else {
1711 page = __page_cache_alloc(GFP_NOFS);
1712 if (!page) {
1713 err = -ENOMEM;
1714 goto out;
1715 }
1716 err = __ceph_do_getattr(inode, page,
1717 CEPH_STAT_CAP_INLINE_DATA, true);
1718 if (err < 0) {
1719 /* no inline data */
1720 if (err == -ENODATA)
1721 err = 0;
1722 goto out;
1723 }
1724 len = err;
1725 }
1726
1727 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1728 ceph_vino(inode), 0, &len, 0, 1,
54ea0046 1729 CEPH_OSD_OP_CREATE, CEPH_OSD_FLAG_WRITE,
34b759b4 1730 NULL, 0, 0, false);
28127bdd
YZ
1731 if (IS_ERR(req)) {
1732 err = PTR_ERR(req);
1733 goto out;
1734 }
1735
fac02ddf 1736 req->r_mtime = inode->i_mtime;
28127bdd
YZ
1737 err = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1738 if (!err)
1739 err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1740 ceph_osdc_put_request(req);
1741 if (err < 0)
1742 goto out;
1743
1744 req = ceph_osdc_new_request(&fsc->client->osdc, &ci->i_layout,
1745 ceph_vino(inode), 0, &len, 1, 3,
54ea0046 1746 CEPH_OSD_OP_WRITE, CEPH_OSD_FLAG_WRITE,
34b759b4
ID
1747 NULL, ci->i_truncate_seq,
1748 ci->i_truncate_size, false);
28127bdd
YZ
1749 if (IS_ERR(req)) {
1750 err = PTR_ERR(req);
1751 goto out;
1752 }
1753
1754 osd_req_op_extent_osd_data_pages(req, 1, &page, len, 0, false, false);
1755
ec137c10
YZ
1756 {
1757 __le64 xattr_buf = cpu_to_le64(inline_version);
1758 err = osd_req_op_xattr_init(req, 0, CEPH_OSD_OP_CMPXATTR,
1759 "inline_version", &xattr_buf,
1760 sizeof(xattr_buf),
1761 CEPH_OSD_CMPXATTR_OP_GT,
1762 CEPH_OSD_CMPXATTR_MODE_U64);
1763 if (err)
1764 goto out_put;
1765 }
1766
1767 {
1768 char xattr_buf[32];
1769 int xattr_len = snprintf(xattr_buf, sizeof(xattr_buf),
1770 "%llu", inline_version);
1771 err = osd_req_op_xattr_init(req, 2, CEPH_OSD_OP_SETXATTR,
1772 "inline_version",
1773 xattr_buf, xattr_len, 0, 0);
1774 if (err)
1775 goto out_put;
1776 }
28127bdd 1777
fac02ddf 1778 req->r_mtime = inode->i_mtime;
28127bdd
YZ
1779 err = ceph_osdc_start_request(&fsc->client->osdc, req, false);
1780 if (!err)
1781 err = ceph_osdc_wait_request(&fsc->client->osdc, req);
1782out_put:
1783 ceph_osdc_put_request(req);
1784 if (err == -ECANCELED)
1785 err = 0;
1786out:
1787 if (page && page != locked_page) {
1788 if (from_pagecache) {
1789 unlock_page(page);
09cbfeaf 1790 put_page(page);
28127bdd
YZ
1791 } else
1792 __free_pages(page, 0);
1793 }
1794
1795 dout("uninline_data %p %llx.%llx inline_version %llu = %d\n",
1796 inode, ceph_vinop(inode), inline_version, err);
1797 return err;
1798}
1799
7cbea8dc 1800static const struct vm_operations_struct ceph_vmops = {
61f68816 1801 .fault = ceph_filemap_fault,
1d3576fd
SW
1802 .page_mkwrite = ceph_page_mkwrite,
1803};
1804
1805int ceph_mmap(struct file *file, struct vm_area_struct *vma)
1806{
1807 struct address_space *mapping = file->f_mapping;
1808
1809 if (!mapping->a_ops->readpage)
1810 return -ENOEXEC;
1811 file_accessed(file);
1812 vma->vm_ops = &ceph_vmops;
1d3576fd
SW
1813 return 0;
1814}
10183a69
YZ
1815
1816enum {
1817 POOL_READ = 1,
1818 POOL_WRITE = 2,
1819};
1820
779fe0fb
YZ
1821static int __ceph_pool_perm_get(struct ceph_inode_info *ci,
1822 s64 pool, struct ceph_string *pool_ns)
10183a69
YZ
1823{
1824 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1825 struct ceph_mds_client *mdsc = fsc->mdsc;
1826 struct ceph_osd_request *rd_req = NULL, *wr_req = NULL;
1827 struct rb_node **p, *parent;
1828 struct ceph_pool_perm *perm;
1829 struct page **pages;
779fe0fb 1830 size_t pool_ns_len;
10183a69
YZ
1831 int err = 0, err2 = 0, have = 0;
1832
1833 down_read(&mdsc->pool_perm_rwsem);
1834 p = &mdsc->pool_perm_tree.rb_node;
1835 while (*p) {
1836 perm = rb_entry(*p, struct ceph_pool_perm, node);
1837 if (pool < perm->pool)
1838 p = &(*p)->rb_left;
1839 else if (pool > perm->pool)
1840 p = &(*p)->rb_right;
1841 else {
779fe0fb
YZ
1842 int ret = ceph_compare_string(pool_ns,
1843 perm->pool_ns,
1844 perm->pool_ns_len);
1845 if (ret < 0)
1846 p = &(*p)->rb_left;
1847 else if (ret > 0)
1848 p = &(*p)->rb_right;
1849 else {
1850 have = perm->perm;
1851 break;
1852 }
10183a69
YZ
1853 }
1854 }
1855 up_read(&mdsc->pool_perm_rwsem);
1856 if (*p)
1857 goto out;
1858
779fe0fb
YZ
1859 if (pool_ns)
1860 dout("__ceph_pool_perm_get pool %lld ns %.*s no perm cached\n",
1861 pool, (int)pool_ns->len, pool_ns->str);
1862 else
1863 dout("__ceph_pool_perm_get pool %lld no perm cached\n", pool);
10183a69
YZ
1864
1865 down_write(&mdsc->pool_perm_rwsem);
779fe0fb 1866 p = &mdsc->pool_perm_tree.rb_node;
10183a69
YZ
1867 parent = NULL;
1868 while (*p) {
1869 parent = *p;
1870 perm = rb_entry(parent, struct ceph_pool_perm, node);
1871 if (pool < perm->pool)
1872 p = &(*p)->rb_left;
1873 else if (pool > perm->pool)
1874 p = &(*p)->rb_right;
1875 else {
779fe0fb
YZ
1876 int ret = ceph_compare_string(pool_ns,
1877 perm->pool_ns,
1878 perm->pool_ns_len);
1879 if (ret < 0)
1880 p = &(*p)->rb_left;
1881 else if (ret > 0)
1882 p = &(*p)->rb_right;
1883 else {
1884 have = perm->perm;
1885 break;
1886 }
10183a69
YZ
1887 }
1888 }
1889 if (*p) {
1890 up_write(&mdsc->pool_perm_rwsem);
1891 goto out;
1892 }
1893
34b759b4 1894 rd_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
10183a69
YZ
1895 1, false, GFP_NOFS);
1896 if (!rd_req) {
1897 err = -ENOMEM;
1898 goto out_unlock;
1899 }
1900
1901 rd_req->r_flags = CEPH_OSD_FLAG_READ;
1902 osd_req_op_init(rd_req, 0, CEPH_OSD_OP_STAT, 0);
1903 rd_req->r_base_oloc.pool = pool;
779fe0fb
YZ
1904 if (pool_ns)
1905 rd_req->r_base_oloc.pool_ns = ceph_get_string(pool_ns);
d30291b9 1906 ceph_oid_printf(&rd_req->r_base_oid, "%llx.00000000", ci->i_vino.ino);
10183a69 1907
13d1ad16
ID
1908 err = ceph_osdc_alloc_messages(rd_req, GFP_NOFS);
1909 if (err)
1910 goto out_unlock;
10183a69 1911
34b759b4 1912 wr_req = ceph_osdc_alloc_request(&fsc->client->osdc, NULL,
10183a69
YZ
1913 1, false, GFP_NOFS);
1914 if (!wr_req) {
1915 err = -ENOMEM;
1916 goto out_unlock;
1917 }
1918
54ea0046 1919 wr_req->r_flags = CEPH_OSD_FLAG_WRITE;
10183a69 1920 osd_req_op_init(wr_req, 0, CEPH_OSD_OP_CREATE, CEPH_OSD_OP_FLAG_EXCL);
63244fa1 1921 ceph_oloc_copy(&wr_req->r_base_oloc, &rd_req->r_base_oloc);
d30291b9 1922 ceph_oid_copy(&wr_req->r_base_oid, &rd_req->r_base_oid);
10183a69 1923
13d1ad16
ID
1924 err = ceph_osdc_alloc_messages(wr_req, GFP_NOFS);
1925 if (err)
1926 goto out_unlock;
10183a69
YZ
1927
1928 /* one page should be large enough for STAT data */
1929 pages = ceph_alloc_page_vector(1, GFP_KERNEL);
1930 if (IS_ERR(pages)) {
1931 err = PTR_ERR(pages);
1932 goto out_unlock;
1933 }
1934
1935 osd_req_op_raw_data_in_pages(rd_req, 0, pages, PAGE_SIZE,
1936 0, false, true);
10183a69
YZ
1937 err = ceph_osdc_start_request(&fsc->client->osdc, rd_req, false);
1938
fac02ddf 1939 wr_req->r_mtime = ci->vfs_inode.i_mtime;
10183a69
YZ
1940 err2 = ceph_osdc_start_request(&fsc->client->osdc, wr_req, false);
1941
1942 if (!err)
1943 err = ceph_osdc_wait_request(&fsc->client->osdc, rd_req);
1944 if (!err2)
1945 err2 = ceph_osdc_wait_request(&fsc->client->osdc, wr_req);
1946
1947 if (err >= 0 || err == -ENOENT)
1948 have |= POOL_READ;
1949 else if (err != -EPERM)
1950 goto out_unlock;
1951
1952 if (err2 == 0 || err2 == -EEXIST)
1953 have |= POOL_WRITE;
1954 else if (err2 != -EPERM) {
1955 err = err2;
1956 goto out_unlock;
1957 }
1958
779fe0fb
YZ
1959 pool_ns_len = pool_ns ? pool_ns->len : 0;
1960 perm = kmalloc(sizeof(*perm) + pool_ns_len + 1, GFP_NOFS);
10183a69
YZ
1961 if (!perm) {
1962 err = -ENOMEM;
1963 goto out_unlock;
1964 }
1965
1966 perm->pool = pool;
1967 perm->perm = have;
779fe0fb
YZ
1968 perm->pool_ns_len = pool_ns_len;
1969 if (pool_ns_len > 0)
1970 memcpy(perm->pool_ns, pool_ns->str, pool_ns_len);
1971 perm->pool_ns[pool_ns_len] = 0;
1972
10183a69
YZ
1973 rb_link_node(&perm->node, parent, p);
1974 rb_insert_color(&perm->node, &mdsc->pool_perm_tree);
1975 err = 0;
1976out_unlock:
1977 up_write(&mdsc->pool_perm_rwsem);
1978
3ed97d63
ID
1979 ceph_osdc_put_request(rd_req);
1980 ceph_osdc_put_request(wr_req);
10183a69
YZ
1981out:
1982 if (!err)
1983 err = have;
779fe0fb
YZ
1984 if (pool_ns)
1985 dout("__ceph_pool_perm_get pool %lld ns %.*s result = %d\n",
1986 pool, (int)pool_ns->len, pool_ns->str, err);
1987 else
1988 dout("__ceph_pool_perm_get pool %lld result = %d\n", pool, err);
10183a69
YZ
1989 return err;
1990}
1991
1992int ceph_pool_perm_check(struct ceph_inode_info *ci, int need)
1993{
7627151e 1994 s64 pool;
779fe0fb 1995 struct ceph_string *pool_ns;
10183a69
YZ
1996 int ret, flags;
1997
80e80fbb
YZ
1998 if (ci->i_vino.snap != CEPH_NOSNAP) {
1999 /*
2000 * Pool permission check needs to write to the first object.
2001 * But for snapshot, head of the first object may have alread
2002 * been deleted. Skip check to avoid creating orphan object.
2003 */
2004 return 0;
2005 }
2006
10183a69
YZ
2007 if (ceph_test_mount_opt(ceph_inode_to_client(&ci->vfs_inode),
2008 NOPOOLPERM))
2009 return 0;
2010
2011 spin_lock(&ci->i_ceph_lock);
2012 flags = ci->i_ceph_flags;
7627151e 2013 pool = ci->i_layout.pool_id;
10183a69
YZ
2014 spin_unlock(&ci->i_ceph_lock);
2015check:
2016 if (flags & CEPH_I_POOL_PERM) {
2017 if ((need & CEPH_CAP_FILE_RD) && !(flags & CEPH_I_POOL_RD)) {
7627151e 2018 dout("ceph_pool_perm_check pool %lld no read perm\n",
10183a69
YZ
2019 pool);
2020 return -EPERM;
2021 }
2022 if ((need & CEPH_CAP_FILE_WR) && !(flags & CEPH_I_POOL_WR)) {
7627151e 2023 dout("ceph_pool_perm_check pool %lld no write perm\n",
10183a69
YZ
2024 pool);
2025 return -EPERM;
2026 }
2027 return 0;
2028 }
2029
779fe0fb
YZ
2030 pool_ns = ceph_try_get_string(ci->i_layout.pool_ns);
2031 ret = __ceph_pool_perm_get(ci, pool, pool_ns);
2032 ceph_put_string(pool_ns);
10183a69
YZ
2033 if (ret < 0)
2034 return ret;
2035
2036 flags = CEPH_I_POOL_PERM;
2037 if (ret & POOL_READ)
2038 flags |= CEPH_I_POOL_RD;
2039 if (ret & POOL_WRITE)
2040 flags |= CEPH_I_POOL_WR;
2041
2042 spin_lock(&ci->i_ceph_lock);
779fe0fb
YZ
2043 if (pool == ci->i_layout.pool_id &&
2044 pool_ns == rcu_dereference_raw(ci->i_layout.pool_ns)) {
2045 ci->i_ceph_flags |= flags;
10183a69 2046 } else {
7627151e 2047 pool = ci->i_layout.pool_id;
10183a69
YZ
2048 flags = ci->i_ceph_flags;
2049 }
2050 spin_unlock(&ci->i_ceph_lock);
2051 goto check;
2052}
2053
2054void ceph_pool_perm_destroy(struct ceph_mds_client *mdsc)
2055{
2056 struct ceph_pool_perm *perm;
2057 struct rb_node *n;
2058
2059 while (!RB_EMPTY_ROOT(&mdsc->pool_perm_tree)) {
2060 n = rb_first(&mdsc->pool_perm_tree);
2061 perm = rb_entry(n, struct ceph_pool_perm, node);
2062 rb_erase(n, &mdsc->pool_perm_tree);
2063 kfree(perm);
2064 }
2065}