1 #include "ceph_debug.h"
3 #include <linux/backing-dev.h>
6 #include <linux/pagemap.h>
7 #include <linux/writeback.h> /* generic_writepages */
8 #include <linux/slab.h>
9 #include <linux/pagevec.h>
10 #include <linux/task_io_accounting_ops.h>
13 #include "osd_client.h"
16 * Ceph address space ops.
18 * There are a few funny things going on here.
20 * The page->private field is used to reference a struct
21 * ceph_snap_context for _every_ dirty page. This indicates which
22 * snapshot the page was logically dirtied in, and thus which snap
23 * context needs to be associated with the osd write during writeback.
25 * Similarly, struct ceph_inode_info maintains a set of counters to
26 * count dirty pages on the inode. In the absense of snapshots,
27 * i_wrbuffer_ref == i_wrbuffer_ref_head == the dirty page count.
29 * When a snapshot is taken (that is, when the client receives
30 * notification that a snapshot was taken), each inode with caps and
31 * with dirty pages (dirty pages implies there is a cap) gets a new
32 * ceph_cap_snap in the i_cap_snaps list (which is sorted in ascending
33 * order, new snaps go to the tail). The i_wrbuffer_ref_head count is
34 * moved to capsnap->dirty. (Unless a sync write is currently in
35 * progress. In that case, the capsnap is said to be "pending", new
36 * writes cannot start, and the capsnap isn't "finalized" until the
37 * write completes (or fails) and a final size/mtime for the inode for
38 * that snap can be settled upon.) i_wrbuffer_ref_head is reset to 0.
40 * On writeback, we must submit writes to the osd IN SNAP ORDER. So,
41 * we look for the first capsnap in i_cap_snaps and write out pages in
42 * that snap context _only_. Then we move on to the next capsnap,
43 * eventually reaching the "live" or "head" context (i.e., pages that
44 * are not yet snapped) and are writing the most recently dirtied
47 * Invalidate and so forth must take care to ensure the dirty page
48 * accounting is preserved.
51 #define CONGESTION_ON_THRESH(congestion_kb) (congestion_kb >> (PAGE_SHIFT-10))
52 #define CONGESTION_OFF_THRESH(congestion_kb) \
53 (CONGESTION_ON_THRESH(congestion_kb) - \
54 (CONGESTION_ON_THRESH(congestion_kb) >> 2))
59 * Dirty a page. Optimistically adjust accounting, on the assumption
60 * that we won't race with invalidate. If we do, readjust.
62 static int ceph_set_page_dirty(struct page
*page
)
64 struct address_space
*mapping
= page
->mapping
;
66 struct ceph_inode_info
*ci
;
68 struct ceph_snap_context
*snapc
;
70 if (unlikely(!mapping
))
71 return !TestSetPageDirty(page
);
73 if (TestSetPageDirty(page
)) {
74 dout("%p set_page_dirty %p idx %lu -- already dirty\n",
75 mapping
->host
, page
, page
->index
);
79 inode
= mapping
->host
;
80 ci
= ceph_inode(inode
);
83 * Note that we're grabbing a snapc ref here without holding
86 snapc
= ceph_get_snap_context(ci
->i_snap_realm
->cached_context
);
89 spin_lock(&inode
->i_lock
);
90 if (ci
->i_wrbuffer_ref_head
== 0)
91 ci
->i_head_snapc
= ceph_get_snap_context(snapc
);
92 ++ci
->i_wrbuffer_ref_head
;
93 if (ci
->i_wrbuffer_ref
== 0)
96 dout("%p set_page_dirty %p idx %lu head %d/%d -> %d/%d "
97 "snapc %p seq %lld (%d snaps)\n",
98 mapping
->host
, page
, page
->index
,
99 ci
->i_wrbuffer_ref
-1, ci
->i_wrbuffer_ref_head
-1,
100 ci
->i_wrbuffer_ref
, ci
->i_wrbuffer_ref_head
,
101 snapc
, snapc
->seq
, snapc
->num_snaps
);
102 spin_unlock(&inode
->i_lock
);
104 /* now adjust page */
105 spin_lock_irq(&mapping
->tree_lock
);
106 if (page
->mapping
) { /* Race with truncate? */
107 WARN_ON_ONCE(!PageUptodate(page
));
109 if (mapping_cap_account_dirty(mapping
)) {
110 __inc_zone_page_state(page
, NR_FILE_DIRTY
);
111 __inc_bdi_stat(mapping
->backing_dev_info
,
113 task_io_account_write(PAGE_CACHE_SIZE
);
115 radix_tree_tag_set(&mapping
->page_tree
,
116 page_index(page
), PAGECACHE_TAG_DIRTY
);
119 * Reference snap context in page->private. Also set
120 * PagePrivate so that we get invalidatepage callback.
122 page
->private = (unsigned long)snapc
;
123 SetPagePrivate(page
);
125 dout("ANON set_page_dirty %p (raced truncate?)\n", page
);
129 spin_unlock_irq(&mapping
->tree_lock
);
132 /* whoops, we failed to dirty the page */
133 ceph_put_wrbuffer_cap_refs(ci
, 1, snapc
);
135 __mark_inode_dirty(mapping
->host
, I_DIRTY_PAGES
);
137 BUG_ON(!PageDirty(page
));
142 * If we are truncating the full page (i.e. offset == 0), adjust the
143 * dirty page counters appropriately. Only called if there is private
146 static void ceph_invalidatepage(struct page
*page
, unsigned long offset
)
149 struct ceph_inode_info
*ci
;
150 struct ceph_snap_context
*snapc
= (void *)page
->private;
152 BUG_ON(!PageLocked(page
));
153 BUG_ON(!page
->private);
154 BUG_ON(!PagePrivate(page
));
155 BUG_ON(!page
->mapping
);
157 inode
= page
->mapping
->host
;
160 * We can get non-dirty pages here due to races between
161 * set_page_dirty and truncate_complete_page; just spit out a
162 * warning, in case we end up with accounting problems later.
164 if (!PageDirty(page
))
165 pr_err("%p invalidatepage %p page not dirty\n", inode
, page
);
168 ClearPageChecked(page
);
170 ci
= ceph_inode(inode
);
172 dout("%p invalidatepage %p idx %lu full dirty page %lu\n",
173 inode
, page
, page
->index
, offset
);
174 ceph_put_wrbuffer_cap_refs(ci
, 1, snapc
);
175 ceph_put_snap_context(snapc
);
177 ClearPagePrivate(page
);
179 dout("%p invalidatepage %p idx %lu partial dirty page\n",
180 inode
, page
, page
->index
);
184 /* just a sanity check */
185 static int ceph_releasepage(struct page
*page
, gfp_t g
)
187 struct inode
*inode
= page
->mapping
? page
->mapping
->host
: NULL
;
188 dout("%p releasepage %p idx %lu\n", inode
, page
, page
->index
);
189 WARN_ON(PageDirty(page
));
190 WARN_ON(page
->private);
191 WARN_ON(PagePrivate(page
));
196 * read a single page, without unlocking it.
198 static int readpage_nounlock(struct file
*filp
, struct page
*page
)
200 struct inode
*inode
= filp
->f_dentry
->d_inode
;
201 struct ceph_inode_info
*ci
= ceph_inode(inode
);
202 struct ceph_osd_client
*osdc
= &ceph_inode_to_client(inode
)->osdc
;
204 u64 len
= PAGE_CACHE_SIZE
;
206 dout("readpage inode %p file %p page %p index %lu\n",
207 inode
, filp
, page
, page
->index
);
208 err
= ceph_osdc_readpages(osdc
, ceph_vino(inode
), &ci
->i_layout
,
209 page
->index
<< PAGE_CACHE_SHIFT
, &len
,
210 ci
->i_truncate_seq
, ci
->i_truncate_size
,
217 } else if (err
< PAGE_CACHE_SIZE
) {
218 /* zero fill remainder of page */
219 zero_user_segment(page
, err
, PAGE_CACHE_SIZE
);
221 SetPageUptodate(page
);
224 return err
< 0 ? err
: 0;
227 static int ceph_readpage(struct file
*filp
, struct page
*page
)
229 int r
= readpage_nounlock(filp
, page
);
235 * Build a vector of contiguous pages from the provided page list.
237 static struct page
**page_vector_from_list(struct list_head
*page_list
,
242 int next_index
, contig_pages
= 0;
244 /* build page vector */
245 pages
= kmalloc(sizeof(*pages
) * *nr_pages
, GFP_NOFS
);
247 return ERR_PTR(-ENOMEM
);
249 BUG_ON(list_empty(page_list
));
250 next_index
= list_entry(page_list
->prev
, struct page
, lru
)->index
;
251 list_for_each_entry_reverse(page
, page_list
, lru
) {
252 if (page
->index
== next_index
) {
253 dout("readpages page %d %p\n", contig_pages
, page
);
254 pages
[contig_pages
] = page
;
261 *nr_pages
= contig_pages
;
266 * Read multiple pages. Leave pages we don't read + unlock in page_list;
267 * the caller (VM) cleans them up.
269 static int ceph_readpages(struct file
*file
, struct address_space
*mapping
,
270 struct list_head
*page_list
, unsigned nr_pages
)
272 struct inode
*inode
= file
->f_dentry
->d_inode
;
273 struct ceph_inode_info
*ci
= ceph_inode(inode
);
274 struct ceph_osd_client
*osdc
= &ceph_inode_to_client(inode
)->osdc
;
280 dout("readpages %p file %p nr_pages %d\n",
281 inode
, file
, nr_pages
);
283 pages
= page_vector_from_list(page_list
, &nr_pages
);
285 return PTR_ERR(pages
);
287 /* guess read extent */
288 offset
= pages
[0]->index
<< PAGE_CACHE_SHIFT
;
289 len
= nr_pages
<< PAGE_CACHE_SHIFT
;
290 rc
= ceph_osdc_readpages(osdc
, ceph_vino(inode
), &ci
->i_layout
,
292 ci
->i_truncate_seq
, ci
->i_truncate_size
,
299 for (; !list_empty(page_list
) && len
> 0;
300 rc
-= PAGE_CACHE_SIZE
, len
-= PAGE_CACHE_SIZE
) {
302 list_entry(page_list
->prev
, struct page
, lru
);
304 list_del(&page
->lru
);
306 if (rc
< (int)PAGE_CACHE_SIZE
) {
307 /* zero (remainder of) page */
308 int s
= rc
< 0 ? 0 : rc
;
309 zero_user_segment(page
, s
, PAGE_CACHE_SIZE
);
312 if (add_to_page_cache_lru(page
, mapping
, page
->index
, GFP_NOFS
)) {
313 page_cache_release(page
);
314 dout("readpages %p add_to_page_cache failed %p\n",
318 dout("readpages %p adding %p idx %lu\n", inode
, page
,
320 flush_dcache_page(page
);
321 SetPageUptodate(page
);
323 page_cache_release(page
);
333 * Get ref for the oldest snapc for an inode with dirty data... that is, the
334 * only snap context we are allowed to write back.
336 static struct ceph_snap_context
*get_oldest_context(struct inode
*inode
,
339 struct ceph_inode_info
*ci
= ceph_inode(inode
);
340 struct ceph_snap_context
*snapc
= NULL
;
341 struct ceph_cap_snap
*capsnap
= NULL
;
343 spin_lock(&inode
->i_lock
);
344 list_for_each_entry(capsnap
, &ci
->i_cap_snaps
, ci_item
) {
345 dout(" cap_snap %p snapc %p has %d dirty pages\n", capsnap
,
346 capsnap
->context
, capsnap
->dirty_pages
);
347 if (capsnap
->dirty_pages
) {
348 snapc
= ceph_get_snap_context(capsnap
->context
);
350 *snap_size
= capsnap
->size
;
354 if (!snapc
&& ci
->i_head_snapc
) {
355 snapc
= ceph_get_snap_context(ci
->i_head_snapc
);
356 dout(" head snapc %p has %d dirty pages\n",
357 snapc
, ci
->i_wrbuffer_ref_head
);
359 spin_unlock(&inode
->i_lock
);
364 * Write a single page, but leave the page locked.
366 * If we get a write error, set the page error bit, but still adjust the
367 * dirty page accounting (i.e., page is no longer dirty).
369 static int writepage_nounlock(struct page
*page
, struct writeback_control
*wbc
)
372 struct ceph_inode_info
*ci
;
373 struct ceph_client
*client
;
374 struct ceph_osd_client
*osdc
;
375 loff_t page_off
= page
->index
<< PAGE_CACHE_SHIFT
;
376 int len
= PAGE_CACHE_SIZE
;
379 struct ceph_snap_context
*snapc
, *oldest
;
383 dout("writepage %p idx %lu\n", page
, page
->index
);
385 if (!page
->mapping
|| !page
->mapping
->host
) {
386 dout("writepage %p - no mapping\n", page
);
389 inode
= page
->mapping
->host
;
390 ci
= ceph_inode(inode
);
391 client
= ceph_inode_to_client(inode
);
392 osdc
= &client
->osdc
;
394 /* verify this is a writeable snap context */
395 snapc
= (void *)page
->private;
397 dout("writepage %p page %p not dirty?\n", inode
, page
);
400 oldest
= get_oldest_context(inode
, &snap_size
);
401 if (snapc
->seq
> oldest
->seq
) {
402 dout("writepage %p page %p snapc %p not writeable - noop\n",
403 inode
, page
, (void *)page
->private);
404 /* we should only noop if called by kswapd */
405 WARN_ON((current
->flags
& PF_MEMALLOC
) == 0);
406 ceph_put_snap_context(oldest
);
409 ceph_put_snap_context(oldest
);
411 /* is this a partial page at end of file? */
415 i_size
= i_size_read(inode
);
416 if (i_size
< page_off
+ len
)
417 len
= i_size
- page_off
;
419 dout("writepage %p page %p index %lu on %llu~%u\n",
420 inode
, page
, page
->index
, page_off
, len
);
422 writeback_stat
= atomic_long_inc_return(&client
->writeback_count
);
424 CONGESTION_ON_THRESH(client
->mount_args
->congestion_kb
))
425 set_bdi_congested(&client
->backing_dev_info
, BLK_RW_ASYNC
);
427 set_page_writeback(page
);
428 err
= ceph_osdc_writepages(osdc
, ceph_vino(inode
),
429 &ci
->i_layout
, snapc
,
431 ci
->i_truncate_seq
, ci
->i_truncate_size
,
433 &page
, 1, 0, 0, true);
435 dout("writepage setting page/mapping error %d %p\n", err
, page
);
437 mapping_set_error(&inode
->i_data
, err
);
439 wbc
->pages_skipped
++;
441 dout("writepage cleaned page %p\n", page
);
442 err
= 0; /* vfs expects us to return 0 */
445 ClearPagePrivate(page
);
446 end_page_writeback(page
);
447 ceph_put_wrbuffer_cap_refs(ci
, 1, snapc
);
448 ceph_put_snap_context(snapc
); /* page's reference */
453 static int ceph_writepage(struct page
*page
, struct writeback_control
*wbc
)
456 struct inode
*inode
= page
->mapping
->host
;
459 err
= writepage_nounlock(page
, wbc
);
467 * lame release_pages helper. release_pages() isn't exported to
470 static void ceph_release_pages(struct page
**pages
, int num
)
475 pagevec_init(&pvec
, 0);
476 for (i
= 0; i
< num
; i
++) {
477 if (pagevec_add(&pvec
, pages
[i
]) == 0)
478 pagevec_release(&pvec
);
480 pagevec_release(&pvec
);
485 * async writeback completion handler.
487 * If we get an error, set the mapping error bit, but not the individual
490 static void writepages_finish(struct ceph_osd_request
*req
,
491 struct ceph_msg
*msg
)
493 struct inode
*inode
= req
->r_inode
;
494 struct ceph_osd_reply_head
*replyhead
;
495 struct ceph_osd_op
*op
;
496 struct ceph_inode_info
*ci
= ceph_inode(inode
);
500 struct ceph_snap_context
*snapc
= req
->r_snapc
;
501 struct address_space
*mapping
= inode
->i_mapping
;
504 struct ceph_client
*client
= ceph_inode_to_client(inode
);
506 unsigned issued
= ceph_caps_issued(ci
);
509 replyhead
= msg
->front
.iov_base
;
510 WARN_ON(le32_to_cpu(replyhead
->num_ops
) == 0);
511 op
= (void *)(replyhead
+ 1);
512 rc
= le32_to_cpu(replyhead
->result
);
513 bytes
= le64_to_cpu(op
->extent
.length
);
517 * Assume we wrote the pages we originally sent. The
518 * osd might reply with fewer pages if our writeback
519 * raced with a truncation and was adjusted at the osd,
520 * so don't believe the reply.
522 wrote
= req
->r_num_pages
;
525 mapping_set_error(mapping
, rc
);
527 dout("writepages_finish %p rc %d bytes %llu wrote %d (pages)\n",
528 inode
, rc
, bytes
, wrote
);
530 /* clean all pages */
531 for (i
= 0; i
< req
->r_num_pages
; i
++) {
532 page
= req
->r_pages
[i
];
534 WARN_ON(!PageUptodate(page
));
537 atomic_long_dec_return(&client
->writeback_count
);
539 CONGESTION_OFF_THRESH(client
->mount_args
->congestion_kb
))
540 clear_bdi_congested(&client
->backing_dev_info
,
543 ceph_put_snap_context((void *)page
->private);
545 ClearPagePrivate(page
);
546 dout("unlocking %d %p\n", i
, page
);
547 end_page_writeback(page
);
550 * We lost the cache cap, need to truncate the page before
551 * it is unlocked, otherwise we'd truncate it later in the
552 * page truncation thread, possibly losing some data that
555 if ((issued
& CEPH_CAP_FILE_CACHE
) == 0)
556 generic_error_remove_page(inode
->i_mapping
, page
);
560 dout("%p wrote+cleaned %d pages\n", inode
, wrote
);
561 ceph_put_wrbuffer_cap_refs(ci
, req
->r_num_pages
, snapc
);
563 ceph_release_pages(req
->r_pages
, req
->r_num_pages
);
564 if (req
->r_pages_from_pool
)
565 mempool_free(req
->r_pages
,
566 ceph_sb_to_client(inode
->i_sb
)->wb_pagevec_pool
);
569 ceph_osdc_put_request(req
);
573 * allocate a page vec, either directly, or if necessary, via a the
574 * mempool. we avoid the mempool if we can because req->r_num_pages
575 * may be less than the maximum write size.
577 static void alloc_page_vec(struct ceph_client
*client
,
578 struct ceph_osd_request
*req
)
580 req
->r_pages
= kmalloc(sizeof(struct page
*) * req
->r_num_pages
,
583 req
->r_pages
= mempool_alloc(client
->wb_pagevec_pool
, GFP_NOFS
);
584 req
->r_pages_from_pool
= 1;
585 WARN_ON(!req
->r_pages
);
590 * initiate async writeback
592 static int ceph_writepages_start(struct address_space
*mapping
,
593 struct writeback_control
*wbc
)
595 struct inode
*inode
= mapping
->host
;
596 struct backing_dev_info
*bdi
= mapping
->backing_dev_info
;
597 struct ceph_inode_info
*ci
= ceph_inode(inode
);
598 struct ceph_client
*client
;
599 pgoff_t index
, start
, end
;
602 pgoff_t max_pages
= 0, max_pages_ever
= 0;
603 struct ceph_snap_context
*snapc
= NULL
, *last_snapc
= NULL
, *pgsnapc
;
607 unsigned wsize
= 1 << inode
->i_blkbits
;
608 struct ceph_osd_request
*req
= NULL
;
613 * Include a 'sync' in the OSD request if this is a data
614 * integrity write (e.g., O_SYNC write or fsync()), or if our
615 * cap is being revoked.
617 do_sync
= wbc
->sync_mode
== WB_SYNC_ALL
;
618 if (ceph_caps_revoking(ci
, CEPH_CAP_FILE_BUFFER
))
620 dout("writepages_start %p dosync=%d (mode=%s)\n",
622 wbc
->sync_mode
== WB_SYNC_NONE
? "NONE" :
623 (wbc
->sync_mode
== WB_SYNC_ALL
? "ALL" : "HOLD"));
625 client
= ceph_inode_to_client(inode
);
626 if (client
->mount_state
== CEPH_MOUNT_SHUTDOWN
) {
627 pr_warning("writepage_start %p on forced umount\n", inode
);
628 return -EIO
; /* we're in a forced umount, don't write! */
630 if (client
->mount_args
->wsize
&& client
->mount_args
->wsize
< wsize
)
631 wsize
= client
->mount_args
->wsize
;
632 if (wsize
< PAGE_CACHE_SIZE
)
633 wsize
= PAGE_CACHE_SIZE
;
634 max_pages_ever
= wsize
>> PAGE_CACHE_SHIFT
;
636 pagevec_init(&pvec
, 0);
639 if (wbc
->nonblocking
&& bdi_write_congested(bdi
)) {
640 dout(" writepages congested\n");
641 wbc
->encountered_congestion
= 1;
645 /* where to start/end? */
646 if (wbc
->range_cyclic
) {
647 start
= mapping
->writeback_index
; /* Start from prev offset */
649 dout(" cyclic, start at %lu\n", start
);
651 start
= wbc
->range_start
>> PAGE_CACHE_SHIFT
;
652 end
= wbc
->range_end
>> PAGE_CACHE_SHIFT
;
653 if (wbc
->range_start
== 0 && wbc
->range_end
== LLONG_MAX
)
656 dout(" not cyclic, %lu to %lu\n", start
, end
);
661 /* find oldest snap context with dirty data */
662 ceph_put_snap_context(snapc
);
663 snapc
= get_oldest_context(inode
, &snap_size
);
665 /* hmm, why does writepages get called when there
667 dout(" no snap context with dirty data?\n");
670 dout(" oldest snapc is %p seq %lld (%d snaps)\n",
671 snapc
, snapc
->seq
, snapc
->num_snaps
);
672 if (last_snapc
&& snapc
!= last_snapc
) {
673 /* if we switched to a newer snapc, restart our scan at the
674 * start of the original file range. */
675 dout(" snapc differs from last pass, restarting at %lu\n",
681 while (!done
&& index
<= end
) {
685 int pvec_pages
, locked_pages
;
689 struct ceph_osd_request_head
*reqhead
;
690 struct ceph_osd_op
*op
;
695 max_pages
= max_pages_ever
;
699 want
= min(end
- index
,
700 min((pgoff_t
)PAGEVEC_SIZE
,
701 max_pages
- (pgoff_t
)locked_pages
) - 1)
703 pvec_pages
= pagevec_lookup_tag(&pvec
, mapping
, &index
,
706 dout("pagevec_lookup_tag got %d\n", pvec_pages
);
707 if (!pvec_pages
&& !locked_pages
)
709 for (i
= 0; i
< pvec_pages
&& locked_pages
< max_pages
; i
++) {
710 page
= pvec
.pages
[i
];
711 dout("? %p idx %lu\n", page
, page
->index
);
712 if (locked_pages
== 0)
713 lock_page(page
); /* first page */
714 else if (!trylock_page(page
))
717 /* only dirty pages, or our accounting breaks */
718 if (unlikely(!PageDirty(page
)) ||
719 unlikely(page
->mapping
!= mapping
)) {
720 dout("!dirty or !mapping %p\n", page
);
724 if (!wbc
->range_cyclic
&& page
->index
> end
) {
725 dout("end of range %p\n", page
);
730 if (next
&& (page
->index
!= next
)) {
731 dout("not consecutive %p\n", page
);
735 if (wbc
->sync_mode
!= WB_SYNC_NONE
) {
736 dout("waiting on writeback %p\n", page
);
737 wait_on_page_writeback(page
);
739 if ((snap_size
&& page_offset(page
) > snap_size
) ||
741 page_offset(page
) > i_size_read(inode
))) {
742 dout("%p page eof %llu\n", page
, snap_size
?
743 snap_size
: i_size_read(inode
));
748 if (PageWriteback(page
)) {
749 dout("%p under writeback\n", page
);
754 /* only if matching snap context */
755 pgsnapc
= (void *)page
->private;
756 if (pgsnapc
->seq
> snapc
->seq
) {
757 dout("page snapc %p %lld > oldest %p %lld\n",
758 pgsnapc
, pgsnapc
->seq
, snapc
, snapc
->seq
);
761 continue; /* keep looking for snap */
765 if (!clear_page_dirty_for_io(page
)) {
766 dout("%p !clear_page_dirty_for_io\n", page
);
772 if (locked_pages
== 0) {
773 /* prepare async write request */
774 offset
= page
->index
<< PAGE_CACHE_SHIFT
;
776 req
= ceph_osdc_new_request(&client
->osdc
,
781 CEPH_OSD_FLAG_WRITE
|
782 CEPH_OSD_FLAG_ONDISK
,
786 &inode
->i_mtime
, true, 1);
787 max_pages
= req
->r_num_pages
;
789 alloc_page_vec(client
, req
);
790 req
->r_callback
= writepages_finish
;
791 req
->r_inode
= inode
;
794 /* note position of first page in pvec */
797 dout("%p will write page %p idx %lu\n",
798 inode
, page
, page
->index
);
800 writeback_stat
= atomic_long_inc_return(&client
->writeback_count
);
801 if (writeback_stat
> CONGESTION_ON_THRESH(client
->mount_args
->congestion_kb
)) {
802 set_bdi_congested(&client
->backing_dev_info
, BLK_RW_ASYNC
);
805 set_page_writeback(page
);
806 req
->r_pages
[locked_pages
] = page
;
808 next
= page
->index
+ 1;
811 /* did we get anything? */
813 goto release_pvec_pages
;
816 BUG_ON(!locked_pages
|| first
< 0);
818 if (pvec_pages
&& i
== pvec_pages
&&
819 locked_pages
< max_pages
) {
820 dout("reached end pvec, trying for more\n");
821 pagevec_reinit(&pvec
);
825 /* shift unused pages over in the pvec... we
826 * will need to release them below. */
827 for (j
= i
; j
< pvec_pages
; j
++) {
828 dout(" pvec leftover page %p\n",
830 pvec
.pages
[j
-i
+first
] = pvec
.pages
[j
];
835 /* submit the write */
836 offset
= req
->r_pages
[0]->index
<< PAGE_CACHE_SHIFT
;
837 len
= min((snap_size
? snap_size
: i_size_read(inode
)) - offset
,
838 (u64
)locked_pages
<< PAGE_CACHE_SHIFT
);
839 dout("writepages got %d pages at %llu~%llu\n",
840 locked_pages
, offset
, len
);
842 /* revise final length, page count */
843 req
->r_num_pages
= locked_pages
;
844 reqhead
= req
->r_request
->front
.iov_base
;
845 op
= (void *)(reqhead
+ 1);
846 op
->extent
.length
= cpu_to_le64(len
);
847 op
->payload_len
= cpu_to_le32(len
);
848 req
->r_request
->hdr
.data_len
= cpu_to_le32(len
);
850 ceph_osdc_start_request(&client
->osdc
, req
, true);
855 wbc
->nr_to_write
-= locked_pages
;
856 if (wbc
->nr_to_write
<= 0)
860 dout("pagevec_release on %d pages (%p)\n", (int)pvec
.nr
,
861 pvec
.nr
? pvec
.pages
[0] : NULL
);
862 pagevec_release(&pvec
);
864 if (locked_pages
&& !done
)
868 if (should_loop
&& !done
) {
869 /* more to do; loop back to beginning of file */
870 dout("writepages looping back to beginning of file\n");
876 if (wbc
->range_cyclic
|| (range_whole
&& wbc
->nr_to_write
> 0))
877 mapping
->writeback_index
= index
;
881 ceph_osdc_put_request(req
);
883 rc
= 0; /* vfs expects us to return 0 */
884 ceph_put_snap_context(snapc
);
885 dout("writepages done, rc = %d\n", rc
);
893 * See if a given @snapc is either writeable, or already written.
895 static int context_is_writeable_or_written(struct inode
*inode
,
896 struct ceph_snap_context
*snapc
)
898 struct ceph_snap_context
*oldest
= get_oldest_context(inode
, NULL
);
899 int ret
= !oldest
|| snapc
->seq
<= oldest
->seq
;
901 ceph_put_snap_context(oldest
);
906 * We are only allowed to write into/dirty the page if the page is
907 * clean, or already dirty within the same snap context.
909 * called with page locked.
910 * return success with page locked,
911 * or any failure (incl -EAGAIN) with page unlocked.
913 static int ceph_update_writeable_page(struct file
*file
,
914 loff_t pos
, unsigned len
,
917 struct inode
*inode
= file
->f_dentry
->d_inode
;
918 struct ceph_inode_info
*ci
= ceph_inode(inode
);
919 struct ceph_mds_client
*mdsc
= &ceph_inode_to_client(inode
)->mdsc
;
920 loff_t page_off
= pos
& PAGE_CACHE_MASK
;
921 int pos_in_page
= pos
& ~PAGE_CACHE_MASK
;
922 int end_in_page
= pos_in_page
+ len
;
925 struct ceph_snap_context
*snapc
, *oldest
;
928 /* writepages currently holds page lock, but if we change that later, */
929 wait_on_page_writeback(page
);
931 /* check snap context */
932 BUG_ON(!ci
->i_snap_realm
);
933 down_read(&mdsc
->snap_rwsem
);
934 BUG_ON(!ci
->i_snap_realm
->cached_context
);
935 snapc
= (void *)page
->private;
936 if (snapc
&& snapc
!= ci
->i_head_snapc
) {
938 * this page is already dirty in another (older) snap
939 * context! is it writeable now?
941 oldest
= get_oldest_context(inode
, NULL
);
942 up_read(&mdsc
->snap_rwsem
);
944 if (snapc
->seq
> oldest
->seq
) {
945 ceph_put_snap_context(oldest
);
946 dout(" page %p snapc %p not current or oldest\n",
949 * queue for writeback, and wait for snapc to
950 * be writeable or written
952 snapc
= ceph_get_snap_context(snapc
);
954 ceph_queue_writeback(inode
);
955 r
= wait_event_interruptible(ci
->i_cap_wq
,
956 context_is_writeable_or_written(inode
, snapc
));
957 ceph_put_snap_context(snapc
);
958 if (r
== -ERESTARTSYS
)
962 ceph_put_snap_context(oldest
);
964 /* yay, writeable, do it now (without dropping page lock) */
965 dout(" page %p snapc %p not current, but oldest\n",
967 if (!clear_page_dirty_for_io(page
))
969 r
= writepage_nounlock(page
, NULL
);
975 if (PageUptodate(page
)) {
976 dout(" page %p already uptodate\n", page
);
981 if (pos_in_page
== 0 && len
== PAGE_CACHE_SIZE
)
984 /* past end of file? */
985 i_size
= inode
->i_size
; /* caller holds i_mutex */
987 if (i_size
+ len
> inode
->i_sb
->s_maxbytes
) {
988 /* file is too big */
993 if (page_off
>= i_size
||
994 (pos_in_page
== 0 && (pos
+len
) >= i_size
&&
995 end_in_page
- pos_in_page
!= PAGE_CACHE_SIZE
)) {
996 dout(" zeroing %p 0 - %d and %d - %d\n",
997 page
, pos_in_page
, end_in_page
, (int)PAGE_CACHE_SIZE
);
998 zero_user_segments(page
,
1000 end_in_page
, PAGE_CACHE_SIZE
);
1004 /* we need to read it. */
1005 up_read(&mdsc
->snap_rwsem
);
1006 r
= readpage_nounlock(file
, page
);
1012 up_read(&mdsc
->snap_rwsem
);
1019 * We are only allowed to write into/dirty the page if the page is
1020 * clean, or already dirty within the same snap context.
1022 static int ceph_write_begin(struct file
*file
, struct address_space
*mapping
,
1023 loff_t pos
, unsigned len
, unsigned flags
,
1024 struct page
**pagep
, void **fsdata
)
1026 struct inode
*inode
= file
->f_dentry
->d_inode
;
1028 pgoff_t index
= pos
>> PAGE_CACHE_SHIFT
;
1033 page
= grab_cache_page_write_begin(mapping
, index
, 0);
1038 dout("write_begin file %p inode %p page %p %d~%d\n", file
,
1039 inode
, page
, (int)pos
, (int)len
);
1041 r
= ceph_update_writeable_page(file
, pos
, len
, page
);
1042 } while (r
== -EAGAIN
);
1048 * we don't do anything in here that simple_write_end doesn't do
1049 * except adjust dirty page accounting and drop read lock on
1052 static int ceph_write_end(struct file
*file
, struct address_space
*mapping
,
1053 loff_t pos
, unsigned len
, unsigned copied
,
1054 struct page
*page
, void *fsdata
)
1056 struct inode
*inode
= file
->f_dentry
->d_inode
;
1057 struct ceph_client
*client
= ceph_inode_to_client(inode
);
1058 struct ceph_mds_client
*mdsc
= &client
->mdsc
;
1059 unsigned from
= pos
& (PAGE_CACHE_SIZE
- 1);
1062 dout("write_end file %p inode %p page %p %d~%d (%d)\n", file
,
1063 inode
, page
, (int)pos
, (int)copied
, (int)len
);
1065 /* zero the stale part of the page if we did a short copy */
1067 zero_user_segment(page
, from
+copied
, len
);
1069 /* did file size increase? */
1070 /* (no need for i_size_read(); we caller holds i_mutex */
1071 if (pos
+copied
> inode
->i_size
)
1072 check_cap
= ceph_inode_set_size(inode
, pos
+copied
);
1074 if (!PageUptodate(page
))
1075 SetPageUptodate(page
);
1077 set_page_dirty(page
);
1080 up_read(&mdsc
->snap_rwsem
);
1081 page_cache_release(page
);
1084 ceph_check_caps(ceph_inode(inode
), CHECK_CAPS_AUTHONLY
, NULL
);
1090 * we set .direct_IO to indicate direct io is supported, but since we
1091 * intercept O_DIRECT reads and writes early, this function should
1094 static ssize_t
ceph_direct_io(int rw
, struct kiocb
*iocb
,
1095 const struct iovec
*iov
,
1096 loff_t pos
, unsigned long nr_segs
)
1102 const struct address_space_operations ceph_aops
= {
1103 .readpage
= ceph_readpage
,
1104 .readpages
= ceph_readpages
,
1105 .writepage
= ceph_writepage
,
1106 .writepages
= ceph_writepages_start
,
1107 .write_begin
= ceph_write_begin
,
1108 .write_end
= ceph_write_end
,
1109 .set_page_dirty
= ceph_set_page_dirty
,
1110 .invalidatepage
= ceph_invalidatepage
,
1111 .releasepage
= ceph_releasepage
,
1112 .direct_IO
= ceph_direct_io
,
1121 * Reuse write_begin here for simplicity.
1123 static int ceph_page_mkwrite(struct vm_area_struct
*vma
, struct vm_fault
*vmf
)
1125 struct inode
*inode
= vma
->vm_file
->f_dentry
->d_inode
;
1126 struct page
*page
= vmf
->page
;
1127 struct ceph_mds_client
*mdsc
= &ceph_inode_to_client(inode
)->mdsc
;
1128 loff_t off
= page
->index
<< PAGE_CACHE_SHIFT
;
1132 size
= i_size_read(inode
);
1133 if (off
+ PAGE_CACHE_SIZE
<= size
)
1134 len
= PAGE_CACHE_SIZE
;
1136 len
= size
& ~PAGE_CACHE_MASK
;
1138 dout("page_mkwrite %p %llu~%llu page %p idx %lu\n", inode
,
1139 off
, len
, page
, page
->index
);
1143 ret
= VM_FAULT_NOPAGE
;
1145 (page
->mapping
!= inode
->i_mapping
))
1148 ret
= ceph_update_writeable_page(vma
->vm_file
, off
, len
, page
);
1150 /* success. we'll keep the page locked. */
1151 set_page_dirty(page
);
1152 up_read(&mdsc
->snap_rwsem
);
1153 ret
= VM_FAULT_LOCKED
;
1158 ret
= VM_FAULT_SIGBUS
;
1161 dout("page_mkwrite %p %llu~%llu = %d\n", inode
, off
, len
, ret
);
1162 if (ret
!= VM_FAULT_LOCKED
)
1167 static struct vm_operations_struct ceph_vmops
= {
1168 .fault
= filemap_fault
,
1169 .page_mkwrite
= ceph_page_mkwrite
,
1172 int ceph_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1174 struct address_space
*mapping
= file
->f_mapping
;
1176 if (!mapping
->a_ops
->readpage
)
1178 file_accessed(file
);
1179 vma
->vm_ops
= &ceph_vmops
;
1180 vma
->vm_flags
|= VM_CAN_NONLINEAR
;