1 #include <linux/ceph/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 "mds_client.h"
15 #include <linux/ceph/osd_client.h>
18 * Ceph address space ops.
20 * There are a few funny things going on here.
22 * The page->private field is used to reference a struct
23 * ceph_snap_context for _every_ dirty page. This indicates which
24 * snapshot the page was logically dirtied in, and thus which snap
25 * context needs to be associated with the osd write during writeback.
27 * Similarly, struct ceph_inode_info maintains a set of counters to
28 * count dirty pages on the inode. In the absence of snapshots,
29 * i_wrbuffer_ref == i_wrbuffer_ref_head == the dirty page count.
31 * When a snapshot is taken (that is, when the client receives
32 * notification that a snapshot was taken), each inode with caps and
33 * with dirty pages (dirty pages implies there is a cap) gets a new
34 * ceph_cap_snap in the i_cap_snaps list (which is sorted in ascending
35 * order, new snaps go to the tail). The i_wrbuffer_ref_head count is
36 * moved to capsnap->dirty. (Unless a sync write is currently in
37 * progress. In that case, the capsnap is said to be "pending", new
38 * writes cannot start, and the capsnap isn't "finalized" until the
39 * write completes (or fails) and a final size/mtime for the inode for
40 * that snap can be settled upon.) i_wrbuffer_ref_head is reset to 0.
42 * On writeback, we must submit writes to the osd IN SNAP ORDER. So,
43 * we look for the first capsnap in i_cap_snaps and write out pages in
44 * that snap context _only_. Then we move on to the next capsnap,
45 * eventually reaching the "live" or "head" context (i.e., pages that
46 * are not yet snapped) and are writing the most recently dirtied
49 * Invalidate and so forth must take care to ensure the dirty page
50 * accounting is preserved.
53 #define CONGESTION_ON_THRESH(congestion_kb) (congestion_kb >> (PAGE_SHIFT-10))
54 #define CONGESTION_OFF_THRESH(congestion_kb) \
55 (CONGESTION_ON_THRESH(congestion_kb) - \
56 (CONGESTION_ON_THRESH(congestion_kb) >> 2))
58 static inline struct ceph_snap_context
*page_snap_context(struct page
*page
)
60 if (PagePrivate(page
))
61 return (void *)page
->private;
66 * Dirty a page. Optimistically adjust accounting, on the assumption
67 * that we won't race with invalidate. If we do, readjust.
69 static int ceph_set_page_dirty(struct page
*page
)
71 struct address_space
*mapping
= page
->mapping
;
73 struct ceph_inode_info
*ci
;
74 struct ceph_snap_context
*snapc
;
77 if (unlikely(!mapping
))
78 return !TestSetPageDirty(page
);
80 if (PageDirty(page
)) {
81 dout("%p set_page_dirty %p idx %lu -- already dirty\n",
82 mapping
->host
, page
, page
->index
);
83 BUG_ON(!PagePrivate(page
));
87 inode
= mapping
->host
;
88 ci
= ceph_inode(inode
);
91 spin_lock(&ci
->i_ceph_lock
);
92 BUG_ON(ci
->i_wr_ref
== 0); // caller should hold Fw reference
93 if (__ceph_have_pending_cap_snap(ci
)) {
94 struct ceph_cap_snap
*capsnap
=
95 list_last_entry(&ci
->i_cap_snaps
,
98 snapc
= ceph_get_snap_context(capsnap
->context
);
99 capsnap
->dirty_pages
++;
101 BUG_ON(!ci
->i_head_snapc
);
102 snapc
= ceph_get_snap_context(ci
->i_head_snapc
);
103 ++ci
->i_wrbuffer_ref_head
;
105 if (ci
->i_wrbuffer_ref
== 0)
107 ++ci
->i_wrbuffer_ref
;
108 dout("%p set_page_dirty %p idx %lu head %d/%d -> %d/%d "
109 "snapc %p seq %lld (%d snaps)\n",
110 mapping
->host
, page
, page
->index
,
111 ci
->i_wrbuffer_ref
-1, ci
->i_wrbuffer_ref_head
-1,
112 ci
->i_wrbuffer_ref
, ci
->i_wrbuffer_ref_head
,
113 snapc
, snapc
->seq
, snapc
->num_snaps
);
114 spin_unlock(&ci
->i_ceph_lock
);
117 * Reference snap context in page->private. Also set
118 * PagePrivate so that we get invalidatepage callback.
120 BUG_ON(PagePrivate(page
));
121 page
->private = (unsigned long)snapc
;
122 SetPagePrivate(page
);
124 ret
= __set_page_dirty_nobuffers(page
);
125 WARN_ON(!PageLocked(page
));
126 WARN_ON(!page
->mapping
);
132 * If we are truncating the full page (i.e. offset == 0), adjust the
133 * dirty page counters appropriately. Only called if there is private
136 static void ceph_invalidatepage(struct page
*page
, unsigned int offset
,
140 struct ceph_inode_info
*ci
;
141 struct ceph_snap_context
*snapc
= page_snap_context(page
);
143 inode
= page
->mapping
->host
;
144 ci
= ceph_inode(inode
);
146 if (offset
!= 0 || length
!= PAGE_CACHE_SIZE
) {
147 dout("%p invalidatepage %p idx %lu partial dirty page %u~%u\n",
148 inode
, page
, page
->index
, offset
, length
);
152 ceph_invalidate_fscache_page(inode
, page
);
154 if (!PagePrivate(page
))
158 * We can get non-dirty pages here due to races between
159 * set_page_dirty and truncate_complete_page; just spit out a
160 * warning, in case we end up with accounting problems later.
162 if (!PageDirty(page
))
163 pr_err("%p invalidatepage %p page not dirty\n", inode
, page
);
165 ClearPageChecked(page
);
167 dout("%p invalidatepage %p idx %lu full dirty page\n",
168 inode
, page
, page
->index
);
170 ceph_put_wrbuffer_cap_refs(ci
, 1, snapc
);
171 ceph_put_snap_context(snapc
);
173 ClearPagePrivate(page
);
176 static int ceph_releasepage(struct page
*page
, gfp_t g
)
178 struct inode
*inode
= page
->mapping
? page
->mapping
->host
: NULL
;
179 dout("%p releasepage %p idx %lu\n", inode
, page
, page
->index
);
180 WARN_ON(PageDirty(page
));
182 /* Can we release the page from the cache? */
183 if (!ceph_release_fscache_page(page
, g
))
186 return !PagePrivate(page
);
190 * read a single page, without unlocking it.
192 static int readpage_nounlock(struct file
*filp
, struct page
*page
)
194 struct inode
*inode
= file_inode(filp
);
195 struct ceph_inode_info
*ci
= ceph_inode(inode
);
196 struct ceph_osd_client
*osdc
=
197 &ceph_inode_to_client(inode
)->client
->osdc
;
199 u64 off
= page_offset(page
);
200 u64 len
= PAGE_CACHE_SIZE
;
202 if (off
>= i_size_read(inode
)) {
203 zero_user_segment(page
, 0, PAGE_CACHE_SIZE
);
204 SetPageUptodate(page
);
208 if (ci
->i_inline_version
!= CEPH_INLINE_NONE
) {
210 * Uptodate inline data should have been added
211 * into page cache while getting Fcr caps.
215 zero_user_segment(page
, 0, PAGE_CACHE_SIZE
);
216 SetPageUptodate(page
);
220 err
= ceph_readpage_from_fscache(inode
, page
);
224 dout("readpage inode %p file %p page %p index %lu\n",
225 inode
, filp
, page
, page
->index
);
226 err
= ceph_osdc_readpages(osdc
, ceph_vino(inode
), &ci
->i_layout
,
228 ci
->i_truncate_seq
, ci
->i_truncate_size
,
234 ceph_fscache_readpage_cancel(inode
, page
);
237 if (err
< PAGE_CACHE_SIZE
)
238 /* zero fill remainder of page */
239 zero_user_segment(page
, err
, PAGE_CACHE_SIZE
);
241 flush_dcache_page(page
);
243 SetPageUptodate(page
);
244 ceph_readpage_to_fscache(inode
, page
);
247 return err
< 0 ? err
: 0;
250 static int ceph_readpage(struct file
*filp
, struct page
*page
)
252 int r
= readpage_nounlock(filp
, page
);
258 * Finish an async read(ahead) op.
260 static void finish_read(struct ceph_osd_request
*req
, struct ceph_msg
*msg
)
262 struct inode
*inode
= req
->r_inode
;
263 struct ceph_osd_data
*osd_data
;
264 int rc
= req
->r_result
;
265 int bytes
= le32_to_cpu(msg
->hdr
.data_len
);
269 dout("finish_read %p req %p rc %d bytes %d\n", inode
, req
, rc
, bytes
);
271 /* unlock all pages, zeroing any data we didn't read */
272 osd_data
= osd_req_op_extent_osd_data(req
, 0);
273 BUG_ON(osd_data
->type
!= CEPH_OSD_DATA_TYPE_PAGES
);
274 num_pages
= calc_pages_for((u64
)osd_data
->alignment
,
275 (u64
)osd_data
->length
);
276 for (i
= 0; i
< num_pages
; i
++) {
277 struct page
*page
= osd_data
->pages
[i
];
281 if (bytes
< (int)PAGE_CACHE_SIZE
) {
282 /* zero (remainder of) page */
283 int s
= bytes
< 0 ? 0 : bytes
;
284 zero_user_segment(page
, s
, PAGE_CACHE_SIZE
);
286 dout("finish_read %p uptodate %p idx %lu\n", inode
, page
,
288 flush_dcache_page(page
);
289 SetPageUptodate(page
);
290 ceph_readpage_to_fscache(inode
, page
);
293 page_cache_release(page
);
294 bytes
-= PAGE_CACHE_SIZE
;
296 kfree(osd_data
->pages
);
299 static void ceph_unlock_page_vector(struct page
**pages
, int num_pages
)
303 for (i
= 0; i
< num_pages
; i
++)
304 unlock_page(pages
[i
]);
308 * start an async read(ahead) operation. return nr_pages we submitted
309 * a read for on success, or negative error code.
311 static int start_read(struct inode
*inode
, struct list_head
*page_list
, int max
)
313 struct ceph_osd_client
*osdc
=
314 &ceph_inode_to_client(inode
)->client
->osdc
;
315 struct ceph_inode_info
*ci
= ceph_inode(inode
);
316 struct page
*page
= list_entry(page_list
->prev
, struct page
, lru
);
317 struct ceph_vino vino
;
318 struct ceph_osd_request
*req
;
327 off
= (u64
) page_offset(page
);
330 next_index
= page
->index
;
331 list_for_each_entry_reverse(page
, page_list
, lru
) {
332 if (page
->index
!= next_index
)
336 if (max
&& nr_pages
== max
)
339 len
= nr_pages
<< PAGE_CACHE_SHIFT
;
340 dout("start_read %p nr_pages %d is %lld~%lld\n", inode
, nr_pages
,
342 vino
= ceph_vino(inode
);
343 req
= ceph_osdc_new_request(osdc
, &ci
->i_layout
, vino
, off
, &len
,
344 0, 1, CEPH_OSD_OP_READ
,
345 CEPH_OSD_FLAG_READ
, NULL
,
346 ci
->i_truncate_seq
, ci
->i_truncate_size
,
351 /* build page vector */
352 nr_pages
= calc_pages_for(0, len
);
353 pages
= kmalloc(sizeof(*pages
) * nr_pages
, GFP_KERNEL
);
357 for (i
= 0; i
< nr_pages
; ++i
) {
358 page
= list_entry(page_list
->prev
, struct page
, lru
);
359 BUG_ON(PageLocked(page
));
360 list_del(&page
->lru
);
362 dout("start_read %p adding %p idx %lu\n", inode
, page
,
364 if (add_to_page_cache_lru(page
, &inode
->i_data
, page
->index
,
366 ceph_fscache_uncache_page(inode
, page
);
367 page_cache_release(page
);
368 dout("start_read %p add_to_page_cache failed %p\n",
375 osd_req_op_extent_osd_data_pages(req
, 0, pages
, len
, 0, false, false);
376 req
->r_callback
= finish_read
;
377 req
->r_inode
= inode
;
379 ceph_osdc_build_request(req
, off
, NULL
, vino
.snap
, NULL
);
381 dout("start_read %p starting %p %lld~%lld\n", inode
, req
, off
, len
);
382 ret
= ceph_osdc_start_request(osdc
, req
, false);
385 ceph_osdc_put_request(req
);
389 ceph_unlock_page_vector(pages
, nr_pages
);
390 ceph_release_page_vector(pages
, nr_pages
);
392 ceph_osdc_put_request(req
);
398 * Read multiple pages. Leave pages we don't read + unlock in page_list;
399 * the caller (VM) cleans them up.
401 static int ceph_readpages(struct file
*file
, struct address_space
*mapping
,
402 struct list_head
*page_list
, unsigned nr_pages
)
404 struct inode
*inode
= file_inode(file
);
405 struct ceph_fs_client
*fsc
= ceph_inode_to_client(inode
);
409 if (ceph_inode(inode
)->i_inline_version
!= CEPH_INLINE_NONE
)
412 rc
= ceph_readpages_from_fscache(mapping
->host
, mapping
, page_list
,
418 if (fsc
->mount_options
->rsize
>= PAGE_CACHE_SIZE
)
419 max
= (fsc
->mount_options
->rsize
+ PAGE_CACHE_SIZE
- 1)
422 dout("readpages %p file %p nr_pages %d max %d\n", inode
,
425 while (!list_empty(page_list
)) {
426 rc
= start_read(inode
, page_list
, max
);
432 ceph_fscache_readpages_cancel(inode
, page_list
);
434 dout("readpages %p file %p ret %d\n", inode
, file
, rc
);
439 * Get ref for the oldest snapc for an inode with dirty data... that is, the
440 * only snap context we are allowed to write back.
442 static struct ceph_snap_context
*get_oldest_context(struct inode
*inode
,
445 struct ceph_inode_info
*ci
= ceph_inode(inode
);
446 struct ceph_snap_context
*snapc
= NULL
;
447 struct ceph_cap_snap
*capsnap
= NULL
;
449 spin_lock(&ci
->i_ceph_lock
);
450 list_for_each_entry(capsnap
, &ci
->i_cap_snaps
, ci_item
) {
451 dout(" cap_snap %p snapc %p has %d dirty pages\n", capsnap
,
452 capsnap
->context
, capsnap
->dirty_pages
);
453 if (capsnap
->dirty_pages
) {
454 snapc
= ceph_get_snap_context(capsnap
->context
);
456 *snap_size
= capsnap
->size
;
460 if (!snapc
&& ci
->i_wrbuffer_ref_head
) {
461 snapc
= ceph_get_snap_context(ci
->i_head_snapc
);
462 dout(" head snapc %p has %d dirty pages\n",
463 snapc
, ci
->i_wrbuffer_ref_head
);
465 spin_unlock(&ci
->i_ceph_lock
);
470 * Write a single page, but leave the page locked.
472 * If we get a write error, set the page error bit, but still adjust the
473 * dirty page accounting (i.e., page is no longer dirty).
475 static int writepage_nounlock(struct page
*page
, struct writeback_control
*wbc
)
478 struct ceph_inode_info
*ci
;
479 struct ceph_fs_client
*fsc
;
480 struct ceph_osd_client
*osdc
;
481 struct ceph_snap_context
*snapc
, *oldest
;
482 loff_t page_off
= page_offset(page
);
483 loff_t snap_size
= -1;
487 int err
= 0, len
= PAGE_CACHE_SIZE
;
489 dout("writepage %p idx %lu\n", page
, page
->index
);
491 if (!page
->mapping
|| !page
->mapping
->host
) {
492 dout("writepage %p - no mapping\n", page
);
495 inode
= page
->mapping
->host
;
496 ci
= ceph_inode(inode
);
497 fsc
= ceph_inode_to_client(inode
);
498 osdc
= &fsc
->client
->osdc
;
500 /* verify this is a writeable snap context */
501 snapc
= page_snap_context(page
);
503 dout("writepage %p page %p not dirty?\n", inode
, page
);
506 oldest
= get_oldest_context(inode
, &snap_size
);
507 if (snapc
->seq
> oldest
->seq
) {
508 dout("writepage %p page %p snapc %p not writeable - noop\n",
510 /* we should only noop if called by kswapd */
511 WARN_ON((current
->flags
& PF_MEMALLOC
) == 0);
512 ceph_put_snap_context(oldest
);
515 ceph_put_snap_context(oldest
);
517 spin_lock(&ci
->i_ceph_lock
);
518 truncate_seq
= ci
->i_truncate_seq
;
519 truncate_size
= ci
->i_truncate_size
;
521 snap_size
= i_size_read(inode
);
522 spin_unlock(&ci
->i_ceph_lock
);
524 /* is this a partial page at end of file? */
525 if (page_off
>= snap_size
) {
526 dout("%p page eof %llu\n", page
, snap_size
);
529 if (snap_size
< page_off
+ len
)
530 len
= snap_size
- page_off
;
532 dout("writepage %p page %p index %lu on %llu~%u snapc %p\n",
533 inode
, page
, page
->index
, page_off
, len
, snapc
);
535 writeback_stat
= atomic_long_inc_return(&fsc
->writeback_count
);
537 CONGESTION_ON_THRESH(fsc
->mount_options
->congestion_kb
))
538 set_bdi_congested(&fsc
->backing_dev_info
, BLK_RW_ASYNC
);
540 ceph_readpage_to_fscache(inode
, page
);
542 set_page_writeback(page
);
543 err
= ceph_osdc_writepages(osdc
, ceph_vino(inode
),
544 &ci
->i_layout
, snapc
,
546 truncate_seq
, truncate_size
,
547 &inode
->i_mtime
, &page
, 1);
549 dout("writepage setting page/mapping error %d %p\n", err
, page
);
551 mapping_set_error(&inode
->i_data
, err
);
553 wbc
->pages_skipped
++;
555 dout("writepage cleaned page %p\n", page
);
556 err
= 0; /* vfs expects us to return 0 */
559 ClearPagePrivate(page
);
560 end_page_writeback(page
);
561 ceph_put_wrbuffer_cap_refs(ci
, 1, snapc
);
562 ceph_put_snap_context(snapc
); /* page's reference */
567 static int ceph_writepage(struct page
*page
, struct writeback_control
*wbc
)
570 struct inode
*inode
= page
->mapping
->host
;
573 err
= writepage_nounlock(page
, wbc
);
581 * lame release_pages helper. release_pages() isn't exported to
584 static void ceph_release_pages(struct page
**pages
, int num
)
589 pagevec_init(&pvec
, 0);
590 for (i
= 0; i
< num
; i
++) {
591 if (pagevec_add(&pvec
, pages
[i
]) == 0)
592 pagevec_release(&pvec
);
594 pagevec_release(&pvec
);
598 * async writeback completion handler.
600 * If we get an error, set the mapping error bit, but not the individual
603 static void writepages_finish(struct ceph_osd_request
*req
,
604 struct ceph_msg
*msg
)
606 struct inode
*inode
= req
->r_inode
;
607 struct ceph_inode_info
*ci
= ceph_inode(inode
);
608 struct ceph_osd_data
*osd_data
;
613 struct ceph_snap_context
*snapc
= req
->r_snapc
;
614 struct address_space
*mapping
= inode
->i_mapping
;
615 int rc
= req
->r_result
;
616 u64 bytes
= req
->r_ops
[0].extent
.length
;
617 struct ceph_fs_client
*fsc
= ceph_inode_to_client(inode
);
619 unsigned issued
= ceph_caps_issued(ci
);
621 osd_data
= osd_req_op_extent_osd_data(req
, 0);
622 BUG_ON(osd_data
->type
!= CEPH_OSD_DATA_TYPE_PAGES
);
623 num_pages
= calc_pages_for((u64
)osd_data
->alignment
,
624 (u64
)osd_data
->length
);
627 * Assume we wrote the pages we originally sent. The
628 * osd might reply with fewer pages if our writeback
629 * raced with a truncation and was adjusted at the osd,
630 * so don't believe the reply.
635 mapping_set_error(mapping
, rc
);
637 dout("writepages_finish %p rc %d bytes %llu wrote %d (pages)\n",
638 inode
, rc
, bytes
, wrote
);
640 /* clean all pages */
641 for (i
= 0; i
< num_pages
; i
++) {
642 page
= osd_data
->pages
[i
];
644 WARN_ON(!PageUptodate(page
));
647 atomic_long_dec_return(&fsc
->writeback_count
);
649 CONGESTION_OFF_THRESH(fsc
->mount_options
->congestion_kb
))
650 clear_bdi_congested(&fsc
->backing_dev_info
,
653 ceph_put_snap_context(page_snap_context(page
));
655 ClearPagePrivate(page
);
656 dout("unlocking %d %p\n", i
, page
);
657 end_page_writeback(page
);
660 * We lost the cache cap, need to truncate the page before
661 * it is unlocked, otherwise we'd truncate it later in the
662 * page truncation thread, possibly losing some data that
665 if ((issued
& (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_LAZYIO
)) == 0)
666 generic_error_remove_page(inode
->i_mapping
, page
);
670 dout("%p wrote+cleaned %d pages\n", inode
, wrote
);
671 ceph_put_wrbuffer_cap_refs(ci
, num_pages
, snapc
);
673 ceph_release_pages(osd_data
->pages
, num_pages
);
674 if (osd_data
->pages_from_pool
)
675 mempool_free(osd_data
->pages
,
676 ceph_sb_to_client(inode
->i_sb
)->wb_pagevec_pool
);
678 kfree(osd_data
->pages
);
679 ceph_osdc_put_request(req
);
683 * initiate async writeback
685 static int ceph_writepages_start(struct address_space
*mapping
,
686 struct writeback_control
*wbc
)
688 struct inode
*inode
= mapping
->host
;
689 struct ceph_inode_info
*ci
= ceph_inode(inode
);
690 struct ceph_fs_client
*fsc
= ceph_inode_to_client(inode
);
691 struct ceph_vino vino
= ceph_vino(inode
);
692 pgoff_t index
, start
, end
;
695 pgoff_t max_pages
= 0, max_pages_ever
= 0;
696 struct ceph_snap_context
*snapc
= NULL
, *last_snapc
= NULL
, *pgsnapc
;
700 unsigned wsize
= 1 << inode
->i_blkbits
;
701 struct ceph_osd_request
*req
= NULL
;
703 loff_t snap_size
, i_size
;
708 * Include a 'sync' in the OSD request if this is a data
709 * integrity write (e.g., O_SYNC write or fsync()), or if our
710 * cap is being revoked.
712 if ((wbc
->sync_mode
== WB_SYNC_ALL
) ||
713 ceph_caps_revoking(ci
, CEPH_CAP_FILE_BUFFER
))
715 dout("writepages_start %p dosync=%d (mode=%s)\n",
717 wbc
->sync_mode
== WB_SYNC_NONE
? "NONE" :
718 (wbc
->sync_mode
== WB_SYNC_ALL
? "ALL" : "HOLD"));
720 if (fsc
->mount_state
== CEPH_MOUNT_SHUTDOWN
) {
721 pr_warn("writepage_start %p on forced umount\n", inode
);
722 return -EIO
; /* we're in a forced umount, don't write! */
724 if (fsc
->mount_options
->wsize
&& fsc
->mount_options
->wsize
< wsize
)
725 wsize
= fsc
->mount_options
->wsize
;
726 if (wsize
< PAGE_CACHE_SIZE
)
727 wsize
= PAGE_CACHE_SIZE
;
728 max_pages_ever
= wsize
>> PAGE_CACHE_SHIFT
;
730 pagevec_init(&pvec
, 0);
732 /* where to start/end? */
733 if (wbc
->range_cyclic
) {
734 start
= mapping
->writeback_index
; /* Start from prev offset */
736 dout(" cyclic, start at %lu\n", start
);
738 start
= wbc
->range_start
>> PAGE_CACHE_SHIFT
;
739 end
= wbc
->range_end
>> PAGE_CACHE_SHIFT
;
740 if (wbc
->range_start
== 0 && wbc
->range_end
== LLONG_MAX
)
743 dout(" not cyclic, %lu to %lu\n", start
, end
);
748 /* find oldest snap context with dirty data */
749 ceph_put_snap_context(snapc
);
751 snapc
= get_oldest_context(inode
, &snap_size
);
753 /* hmm, why does writepages get called when there
755 dout(" no snap context with dirty data?\n");
758 dout(" oldest snapc is %p seq %lld (%d snaps)\n",
759 snapc
, snapc
->seq
, snapc
->num_snaps
);
761 spin_lock(&ci
->i_ceph_lock
);
762 truncate_seq
= ci
->i_truncate_seq
;
763 truncate_size
= ci
->i_truncate_size
;
764 i_size
= i_size_read(inode
);
765 spin_unlock(&ci
->i_ceph_lock
);
767 if (last_snapc
&& snapc
!= last_snapc
) {
768 /* if we switched to a newer snapc, restart our scan at the
769 * start of the original file range. */
770 dout(" snapc differs from last pass, restarting at %lu\n",
776 while (!done
&& index
<= end
) {
780 int pvec_pages
, locked_pages
;
781 struct page
**pages
= NULL
;
782 mempool_t
*pool
= NULL
; /* Becomes non-null if mempool used */
790 max_pages
= max_pages_ever
;
794 want
= min(end
- index
,
795 min((pgoff_t
)PAGEVEC_SIZE
,
796 max_pages
- (pgoff_t
)locked_pages
) - 1)
798 pvec_pages
= pagevec_lookup_tag(&pvec
, mapping
, &index
,
801 dout("pagevec_lookup_tag got %d\n", pvec_pages
);
802 if (!pvec_pages
&& !locked_pages
)
804 for (i
= 0; i
< pvec_pages
&& locked_pages
< max_pages
; i
++) {
805 page
= pvec
.pages
[i
];
806 dout("? %p idx %lu\n", page
, page
->index
);
807 if (locked_pages
== 0)
808 lock_page(page
); /* first page */
809 else if (!trylock_page(page
))
812 /* only dirty pages, or our accounting breaks */
813 if (unlikely(!PageDirty(page
)) ||
814 unlikely(page
->mapping
!= mapping
)) {
815 dout("!dirty or !mapping %p\n", page
);
819 if (!wbc
->range_cyclic
&& page
->index
> end
) {
820 dout("end of range %p\n", page
);
825 if (next
&& (page
->index
!= next
)) {
826 dout("not consecutive %p\n", page
);
830 if (wbc
->sync_mode
!= WB_SYNC_NONE
) {
831 dout("waiting on writeback %p\n", page
);
832 wait_on_page_writeback(page
);
834 if (page_offset(page
) >=
835 (snap_size
== -1 ? i_size
: snap_size
)) {
836 dout("%p page eof %llu\n", page
,
837 (snap_size
== -1 ? i_size
: snap_size
));
842 if (PageWriteback(page
)) {
843 dout("%p under writeback\n", page
);
848 /* only if matching snap context */
849 pgsnapc
= page_snap_context(page
);
850 if (pgsnapc
->seq
> snapc
->seq
) {
851 dout("page snapc %p %lld > oldest %p %lld\n",
852 pgsnapc
, pgsnapc
->seq
, snapc
, snapc
->seq
);
855 continue; /* keep looking for snap */
859 if (!clear_page_dirty_for_io(page
)) {
860 dout("%p !clear_page_dirty_for_io\n", page
);
866 * We have something to write. If this is
867 * the first locked page this time through,
868 * allocate an osd request and a page array
871 if (locked_pages
== 0) {
873 /* prepare async write request */
874 offset
= (u64
)page_offset(page
);
876 req
= ceph_osdc_new_request(&fsc
->client
->osdc
,
881 CEPH_OSD_FLAG_WRITE
|
882 CEPH_OSD_FLAG_ONDISK
,
884 truncate_size
, true);
892 osd_req_op_init(req
, 1,
893 CEPH_OSD_OP_STARTSYNC
, 0);
895 req
->r_callback
= writepages_finish
;
896 req
->r_inode
= inode
;
898 max_pages
= calc_pages_for(0, (u64
)len
);
899 pages
= kmalloc(max_pages
* sizeof (*pages
),
902 pool
= fsc
->wb_pagevec_pool
;
903 pages
= mempool_alloc(pool
, GFP_NOFS
);
908 /* note position of first page in pvec */
911 dout("%p will write page %p idx %lu\n",
912 inode
, page
, page
->index
);
915 atomic_long_inc_return(&fsc
->writeback_count
);
916 if (writeback_stat
> CONGESTION_ON_THRESH(
917 fsc
->mount_options
->congestion_kb
)) {
918 set_bdi_congested(&fsc
->backing_dev_info
,
922 set_page_writeback(page
);
923 pages
[locked_pages
] = page
;
925 next
= page
->index
+ 1;
928 /* did we get anything? */
930 goto release_pvec_pages
;
933 BUG_ON(!locked_pages
|| first
< 0);
935 if (pvec_pages
&& i
== pvec_pages
&&
936 locked_pages
< max_pages
) {
937 dout("reached end pvec, trying for more\n");
938 pagevec_reinit(&pvec
);
942 /* shift unused pages over in the pvec... we
943 * will need to release them below. */
944 for (j
= i
; j
< pvec_pages
; j
++) {
945 dout(" pvec leftover page %p\n",
947 pvec
.pages
[j
-i
+first
] = pvec
.pages
[j
];
952 /* Format the osd request message and submit the write */
953 offset
= page_offset(pages
[0]);
954 len
= (u64
)locked_pages
<< PAGE_CACHE_SHIFT
;
955 if (snap_size
== -1) {
956 len
= min(len
, (u64
)i_size_read(inode
) - offset
);
957 /* writepages_finish() clears writeback pages
958 * according to the data length, so make sure
959 * data length covers all locked pages */
961 ((u64
)(locked_pages
- 1) << PAGE_CACHE_SHIFT
));
963 len
= min(len
, snap_size
- offset
);
965 dout("writepages got %d pages at %llu~%llu\n",
966 locked_pages
, offset
, len
);
968 osd_req_op_extent_osd_data_pages(req
, 0, pages
, len
, 0,
971 pages
= NULL
; /* request message now owns the pages array */
974 /* Update the write op length in case we changed it */
976 osd_req_op_extent_update(req
, 0, len
);
978 vino
= ceph_vino(inode
);
979 ceph_osdc_build_request(req
, offset
, snapc
, vino
.snap
,
982 rc
= ceph_osdc_start_request(&fsc
->client
->osdc
, req
, true);
988 wbc
->nr_to_write
-= locked_pages
;
989 if (wbc
->nr_to_write
<= 0)
993 dout("pagevec_release on %d pages (%p)\n", (int)pvec
.nr
,
994 pvec
.nr
? pvec
.pages
[0] : NULL
);
995 pagevec_release(&pvec
);
997 if (locked_pages
&& !done
)
1001 if (should_loop
&& !done
) {
1002 /* more to do; loop back to beginning of file */
1003 dout("writepages looping back to beginning of file\n");
1009 if (wbc
->range_cyclic
|| (range_whole
&& wbc
->nr_to_write
> 0))
1010 mapping
->writeback_index
= index
;
1014 ceph_osdc_put_request(req
);
1015 ceph_put_snap_context(snapc
);
1016 dout("writepages done, rc = %d\n", rc
);
1023 * See if a given @snapc is either writeable, or already written.
1025 static int context_is_writeable_or_written(struct inode
*inode
,
1026 struct ceph_snap_context
*snapc
)
1028 struct ceph_snap_context
*oldest
= get_oldest_context(inode
, NULL
);
1029 int ret
= !oldest
|| snapc
->seq
<= oldest
->seq
;
1031 ceph_put_snap_context(oldest
);
1036 * We are only allowed to write into/dirty the page if the page is
1037 * clean, or already dirty within the same snap context.
1039 * called with page locked.
1040 * return success with page locked,
1041 * or any failure (incl -EAGAIN) with page unlocked.
1043 static int ceph_update_writeable_page(struct file
*file
,
1044 loff_t pos
, unsigned len
,
1047 struct inode
*inode
= file_inode(file
);
1048 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1049 loff_t page_off
= pos
& PAGE_CACHE_MASK
;
1050 int pos_in_page
= pos
& ~PAGE_CACHE_MASK
;
1051 int end_in_page
= pos_in_page
+ len
;
1054 struct ceph_snap_context
*snapc
, *oldest
;
1057 /* writepages currently holds page lock, but if we change that later, */
1058 wait_on_page_writeback(page
);
1060 snapc
= page_snap_context(page
);
1061 if (snapc
&& snapc
!= ci
->i_head_snapc
) {
1063 * this page is already dirty in another (older) snap
1064 * context! is it writeable now?
1066 oldest
= get_oldest_context(inode
, NULL
);
1068 if (snapc
->seq
> oldest
->seq
) {
1069 ceph_put_snap_context(oldest
);
1070 dout(" page %p snapc %p not current or oldest\n",
1073 * queue for writeback, and wait for snapc to
1074 * be writeable or written
1076 snapc
= ceph_get_snap_context(snapc
);
1078 ceph_queue_writeback(inode
);
1079 r
= wait_event_interruptible(ci
->i_cap_wq
,
1080 context_is_writeable_or_written(inode
, snapc
));
1081 ceph_put_snap_context(snapc
);
1082 if (r
== -ERESTARTSYS
)
1086 ceph_put_snap_context(oldest
);
1088 /* yay, writeable, do it now (without dropping page lock) */
1089 dout(" page %p snapc %p not current, but oldest\n",
1091 if (!clear_page_dirty_for_io(page
))
1093 r
= writepage_nounlock(page
, NULL
);
1099 if (PageUptodate(page
)) {
1100 dout(" page %p already uptodate\n", page
);
1105 if (pos_in_page
== 0 && len
== PAGE_CACHE_SIZE
)
1108 /* past end of file? */
1109 i_size
= inode
->i_size
; /* caller holds i_mutex */
1111 if (page_off
>= i_size
||
1112 (pos_in_page
== 0 && (pos
+len
) >= i_size
&&
1113 end_in_page
- pos_in_page
!= PAGE_CACHE_SIZE
)) {
1114 dout(" zeroing %p 0 - %d and %d - %d\n",
1115 page
, pos_in_page
, end_in_page
, (int)PAGE_CACHE_SIZE
);
1116 zero_user_segments(page
,
1118 end_in_page
, PAGE_CACHE_SIZE
);
1122 /* we need to read it. */
1123 r
= readpage_nounlock(file
, page
);
1133 * We are only allowed to write into/dirty the page if the page is
1134 * clean, or already dirty within the same snap context.
1136 static int ceph_write_begin(struct file
*file
, struct address_space
*mapping
,
1137 loff_t pos
, unsigned len
, unsigned flags
,
1138 struct page
**pagep
, void **fsdata
)
1140 struct inode
*inode
= file_inode(file
);
1142 pgoff_t index
= pos
>> PAGE_CACHE_SHIFT
;
1147 page
= grab_cache_page_write_begin(mapping
, index
, 0);
1152 dout("write_begin file %p inode %p page %p %d~%d\n", file
,
1153 inode
, page
, (int)pos
, (int)len
);
1155 r
= ceph_update_writeable_page(file
, pos
, len
, page
);
1157 page_cache_release(page
);
1160 } while (r
== -EAGAIN
);
1166 * we don't do anything in here that simple_write_end doesn't do
1167 * except adjust dirty page accounting
1169 static int ceph_write_end(struct file
*file
, struct address_space
*mapping
,
1170 loff_t pos
, unsigned len
, unsigned copied
,
1171 struct page
*page
, void *fsdata
)
1173 struct inode
*inode
= file_inode(file
);
1174 unsigned from
= pos
& (PAGE_CACHE_SIZE
- 1);
1177 dout("write_end file %p inode %p page %p %d~%d (%d)\n", file
,
1178 inode
, page
, (int)pos
, (int)copied
, (int)len
);
1180 /* zero the stale part of the page if we did a short copy */
1182 zero_user_segment(page
, from
+copied
, len
);
1184 /* did file size increase? */
1185 /* (no need for i_size_read(); we caller holds i_mutex */
1186 if (pos
+copied
> inode
->i_size
)
1187 check_cap
= ceph_inode_set_size(inode
, pos
+copied
);
1189 if (!PageUptodate(page
))
1190 SetPageUptodate(page
);
1192 set_page_dirty(page
);
1195 page_cache_release(page
);
1198 ceph_check_caps(ceph_inode(inode
), CHECK_CAPS_AUTHONLY
, NULL
);
1204 * we set .direct_IO to indicate direct io is supported, but since we
1205 * intercept O_DIRECT reads and writes early, this function should
1208 static ssize_t
ceph_direct_io(struct kiocb
*iocb
, struct iov_iter
*iter
,
1215 const struct address_space_operations ceph_aops
= {
1216 .readpage
= ceph_readpage
,
1217 .readpages
= ceph_readpages
,
1218 .writepage
= ceph_writepage
,
1219 .writepages
= ceph_writepages_start
,
1220 .write_begin
= ceph_write_begin
,
1221 .write_end
= ceph_write_end
,
1222 .set_page_dirty
= ceph_set_page_dirty
,
1223 .invalidatepage
= ceph_invalidatepage
,
1224 .releasepage
= ceph_releasepage
,
1225 .direct_IO
= ceph_direct_io
,
1232 static int ceph_filemap_fault(struct vm_area_struct
*vma
, struct vm_fault
*vmf
)
1234 struct inode
*inode
= file_inode(vma
->vm_file
);
1235 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1236 struct ceph_file_info
*fi
= vma
->vm_file
->private_data
;
1237 struct page
*pinned_page
= NULL
;
1238 loff_t off
= vmf
->pgoff
<< PAGE_CACHE_SHIFT
;
1241 dout("filemap_fault %p %llx.%llx %llu~%zd trying to get caps\n",
1242 inode
, ceph_vinop(inode
), off
, (size_t)PAGE_CACHE_SIZE
);
1243 if (fi
->fmode
& CEPH_FILE_MODE_LAZY
)
1244 want
= CEPH_CAP_FILE_CACHE
| CEPH_CAP_FILE_LAZYIO
;
1246 want
= CEPH_CAP_FILE_CACHE
;
1249 ret
= ceph_get_caps(ci
, CEPH_CAP_FILE_RD
, want
,
1250 -1, &got
, &pinned_page
);
1253 if (ret
!= -ERESTARTSYS
) {
1255 return VM_FAULT_SIGBUS
;
1258 dout("filemap_fault %p %llu~%zd got cap refs on %s\n",
1259 inode
, off
, (size_t)PAGE_CACHE_SIZE
, ceph_cap_string(got
));
1261 if ((got
& (CEPH_CAP_FILE_CACHE
| CEPH_CAP_FILE_LAZYIO
)) ||
1262 ci
->i_inline_version
== CEPH_INLINE_NONE
)
1263 ret
= filemap_fault(vma
, vmf
);
1267 dout("filemap_fault %p %llu~%zd dropping cap refs on %s ret %d\n",
1268 inode
, off
, (size_t)PAGE_CACHE_SIZE
, ceph_cap_string(got
), ret
);
1270 page_cache_release(pinned_page
);
1271 ceph_put_cap_refs(ci
, got
);
1276 /* read inline data */
1277 if (off
>= PAGE_CACHE_SIZE
) {
1278 /* does not support inline data > PAGE_SIZE */
1279 ret
= VM_FAULT_SIGBUS
;
1282 struct address_space
*mapping
= inode
->i_mapping
;
1283 struct page
*page
= find_or_create_page(mapping
, 0,
1284 mapping_gfp_mask(mapping
) &
1290 ret1
= __ceph_do_getattr(inode
, page
,
1291 CEPH_STAT_CAP_INLINE_DATA
, true);
1292 if (ret1
< 0 || off
>= i_size_read(inode
)) {
1294 page_cache_release(page
);
1295 ret
= VM_FAULT_SIGBUS
;
1298 if (ret1
< PAGE_CACHE_SIZE
)
1299 zero_user_segment(page
, ret1
, PAGE_CACHE_SIZE
);
1301 flush_dcache_page(page
);
1302 SetPageUptodate(page
);
1304 ret
= VM_FAULT_MAJOR
| VM_FAULT_LOCKED
;
1307 dout("filemap_fault %p %llu~%zd read inline data ret %d\n",
1308 inode
, off
, (size_t)PAGE_CACHE_SIZE
, ret
);
1313 * Reuse write_begin here for simplicity.
1315 static int ceph_page_mkwrite(struct vm_area_struct
*vma
, struct vm_fault
*vmf
)
1317 struct inode
*inode
= file_inode(vma
->vm_file
);
1318 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1319 struct ceph_file_info
*fi
= vma
->vm_file
->private_data
;
1320 struct ceph_cap_flush
*prealloc_cf
;
1321 struct page
*page
= vmf
->page
;
1322 loff_t off
= page_offset(page
);
1323 loff_t size
= i_size_read(inode
);
1327 prealloc_cf
= ceph_alloc_cap_flush();
1329 return VM_FAULT_SIGBUS
;
1331 if (ci
->i_inline_version
!= CEPH_INLINE_NONE
) {
1332 struct page
*locked_page
= NULL
;
1337 ret
= ceph_uninline_data(vma
->vm_file
, locked_page
);
1339 unlock_page(locked_page
);
1341 ret
= VM_FAULT_SIGBUS
;
1346 if (off
+ PAGE_CACHE_SIZE
<= size
)
1347 len
= PAGE_CACHE_SIZE
;
1349 len
= size
& ~PAGE_CACHE_MASK
;
1351 dout("page_mkwrite %p %llx.%llx %llu~%zd getting caps i_size %llu\n",
1352 inode
, ceph_vinop(inode
), off
, len
, size
);
1353 if (fi
->fmode
& CEPH_FILE_MODE_LAZY
)
1354 want
= CEPH_CAP_FILE_BUFFER
| CEPH_CAP_FILE_LAZYIO
;
1356 want
= CEPH_CAP_FILE_BUFFER
;
1359 ret
= ceph_get_caps(ci
, CEPH_CAP_FILE_WR
, want
, off
+ len
,
1363 if (ret
!= -ERESTARTSYS
) {
1365 ret
= VM_FAULT_SIGBUS
;
1369 dout("page_mkwrite %p %llu~%zd got cap refs on %s\n",
1370 inode
, off
, len
, ceph_cap_string(got
));
1372 /* Update time before taking page lock */
1373 file_update_time(vma
->vm_file
);
1377 ret
= VM_FAULT_NOPAGE
;
1379 (page
->mapping
!= inode
->i_mapping
))
1382 ret
= ceph_update_writeable_page(vma
->vm_file
, off
, len
, page
);
1384 /* success. we'll keep the page locked. */
1385 set_page_dirty(page
);
1386 ret
= VM_FAULT_LOCKED
;
1391 ret
= VM_FAULT_SIGBUS
;
1394 if (ret
!= VM_FAULT_LOCKED
)
1396 if (ret
== VM_FAULT_LOCKED
||
1397 ci
->i_inline_version
!= CEPH_INLINE_NONE
) {
1399 spin_lock(&ci
->i_ceph_lock
);
1400 ci
->i_inline_version
= CEPH_INLINE_NONE
;
1401 dirty
= __ceph_mark_dirty_caps(ci
, CEPH_CAP_FILE_WR
,
1403 spin_unlock(&ci
->i_ceph_lock
);
1405 __mark_inode_dirty(inode
, dirty
);
1408 dout("page_mkwrite %p %llu~%zd dropping cap refs on %s ret %d\n",
1409 inode
, off
, len
, ceph_cap_string(got
), ret
);
1410 ceph_put_cap_refs(ci
, got
);
1412 ceph_free_cap_flush(prealloc_cf
);
1417 void ceph_fill_inline_data(struct inode
*inode
, struct page
*locked_page
,
1418 char *data
, size_t len
)
1420 struct address_space
*mapping
= inode
->i_mapping
;
1426 if (i_size_read(inode
) == 0)
1428 page
= find_or_create_page(mapping
, 0,
1429 mapping_gfp_mask(mapping
) & ~__GFP_FS
);
1432 if (PageUptodate(page
)) {
1434 page_cache_release(page
);
1439 dout("fill_inline_data %p %llx.%llx len %zu locked_page %p\n",
1440 inode
, ceph_vinop(inode
), len
, locked_page
);
1443 void *kaddr
= kmap_atomic(page
);
1444 memcpy(kaddr
, data
, len
);
1445 kunmap_atomic(kaddr
);
1448 if (page
!= locked_page
) {
1449 if (len
< PAGE_CACHE_SIZE
)
1450 zero_user_segment(page
, len
, PAGE_CACHE_SIZE
);
1452 flush_dcache_page(page
);
1454 SetPageUptodate(page
);
1456 page_cache_release(page
);
1460 int ceph_uninline_data(struct file
*filp
, struct page
*locked_page
)
1462 struct inode
*inode
= file_inode(filp
);
1463 struct ceph_inode_info
*ci
= ceph_inode(inode
);
1464 struct ceph_fs_client
*fsc
= ceph_inode_to_client(inode
);
1465 struct ceph_osd_request
*req
;
1466 struct page
*page
= NULL
;
1467 u64 len
, inline_version
;
1469 bool from_pagecache
= false;
1471 spin_lock(&ci
->i_ceph_lock
);
1472 inline_version
= ci
->i_inline_version
;
1473 spin_unlock(&ci
->i_ceph_lock
);
1475 dout("uninline_data %p %llx.%llx inline_version %llu\n",
1476 inode
, ceph_vinop(inode
), inline_version
);
1478 if (inline_version
== 1 || /* initial version, no data */
1479 inline_version
== CEPH_INLINE_NONE
)
1484 WARN_ON(!PageUptodate(page
));
1485 } else if (ceph_caps_issued(ci
) &
1486 (CEPH_CAP_FILE_CACHE
|CEPH_CAP_FILE_LAZYIO
)) {
1487 page
= find_get_page(inode
->i_mapping
, 0);
1489 if (PageUptodate(page
)) {
1490 from_pagecache
= true;
1493 page_cache_release(page
);
1500 len
= i_size_read(inode
);
1501 if (len
> PAGE_CACHE_SIZE
)
1502 len
= PAGE_CACHE_SIZE
;
1504 page
= __page_cache_alloc(GFP_NOFS
);
1509 err
= __ceph_do_getattr(inode
, page
,
1510 CEPH_STAT_CAP_INLINE_DATA
, true);
1512 /* no inline data */
1513 if (err
== -ENODATA
)
1520 req
= ceph_osdc_new_request(&fsc
->client
->osdc
, &ci
->i_layout
,
1521 ceph_vino(inode
), 0, &len
, 0, 1,
1523 CEPH_OSD_FLAG_ONDISK
| CEPH_OSD_FLAG_WRITE
,
1524 ceph_empty_snapc
, 0, 0, false);
1530 ceph_osdc_build_request(req
, 0, NULL
, CEPH_NOSNAP
, &inode
->i_mtime
);
1531 err
= ceph_osdc_start_request(&fsc
->client
->osdc
, req
, false);
1533 err
= ceph_osdc_wait_request(&fsc
->client
->osdc
, req
);
1534 ceph_osdc_put_request(req
);
1538 req
= ceph_osdc_new_request(&fsc
->client
->osdc
, &ci
->i_layout
,
1539 ceph_vino(inode
), 0, &len
, 1, 3,
1541 CEPH_OSD_FLAG_ONDISK
| CEPH_OSD_FLAG_WRITE
,
1543 ci
->i_truncate_seq
, ci
->i_truncate_size
,
1550 osd_req_op_extent_osd_data_pages(req
, 1, &page
, len
, 0, false, false);
1553 __le64 xattr_buf
= cpu_to_le64(inline_version
);
1554 err
= osd_req_op_xattr_init(req
, 0, CEPH_OSD_OP_CMPXATTR
,
1555 "inline_version", &xattr_buf
,
1557 CEPH_OSD_CMPXATTR_OP_GT
,
1558 CEPH_OSD_CMPXATTR_MODE_U64
);
1565 int xattr_len
= snprintf(xattr_buf
, sizeof(xattr_buf
),
1566 "%llu", inline_version
);
1567 err
= osd_req_op_xattr_init(req
, 2, CEPH_OSD_OP_SETXATTR
,
1569 xattr_buf
, xattr_len
, 0, 0);
1574 ceph_osdc_build_request(req
, 0, NULL
, CEPH_NOSNAP
, &inode
->i_mtime
);
1575 err
= ceph_osdc_start_request(&fsc
->client
->osdc
, req
, false);
1577 err
= ceph_osdc_wait_request(&fsc
->client
->osdc
, req
);
1579 ceph_osdc_put_request(req
);
1580 if (err
== -ECANCELED
)
1583 if (page
&& page
!= locked_page
) {
1584 if (from_pagecache
) {
1586 page_cache_release(page
);
1588 __free_pages(page
, 0);
1591 dout("uninline_data %p %llx.%llx inline_version %llu = %d\n",
1592 inode
, ceph_vinop(inode
), inline_version
, err
);
1596 static struct vm_operations_struct ceph_vmops
= {
1597 .fault
= ceph_filemap_fault
,
1598 .page_mkwrite
= ceph_page_mkwrite
,
1601 int ceph_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1603 struct address_space
*mapping
= file
->f_mapping
;
1605 if (!mapping
->a_ops
->readpage
)
1607 file_accessed(file
);
1608 vma
->vm_ops
= &ceph_vmops
;
1617 static int __ceph_pool_perm_get(struct ceph_inode_info
*ci
, u32 pool
)
1619 struct ceph_fs_client
*fsc
= ceph_inode_to_client(&ci
->vfs_inode
);
1620 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
1621 struct ceph_osd_request
*rd_req
= NULL
, *wr_req
= NULL
;
1622 struct rb_node
**p
, *parent
;
1623 struct ceph_pool_perm
*perm
;
1624 struct page
**pages
;
1625 int err
= 0, err2
= 0, have
= 0;
1627 down_read(&mdsc
->pool_perm_rwsem
);
1628 p
= &mdsc
->pool_perm_tree
.rb_node
;
1630 perm
= rb_entry(*p
, struct ceph_pool_perm
, node
);
1631 if (pool
< perm
->pool
)
1633 else if (pool
> perm
->pool
)
1634 p
= &(*p
)->rb_right
;
1640 up_read(&mdsc
->pool_perm_rwsem
);
1644 dout("__ceph_pool_perm_get pool %u no perm cached\n", pool
);
1646 down_write(&mdsc
->pool_perm_rwsem
);
1650 perm
= rb_entry(parent
, struct ceph_pool_perm
, node
);
1651 if (pool
< perm
->pool
)
1653 else if (pool
> perm
->pool
)
1654 p
= &(*p
)->rb_right
;
1661 up_write(&mdsc
->pool_perm_rwsem
);
1665 rd_req
= ceph_osdc_alloc_request(&fsc
->client
->osdc
,
1667 1, false, GFP_NOFS
);
1673 rd_req
->r_flags
= CEPH_OSD_FLAG_READ
;
1674 osd_req_op_init(rd_req
, 0, CEPH_OSD_OP_STAT
, 0);
1675 rd_req
->r_base_oloc
.pool
= pool
;
1676 snprintf(rd_req
->r_base_oid
.name
, sizeof(rd_req
->r_base_oid
.name
),
1677 "%llx.00000000", ci
->i_vino
.ino
);
1678 rd_req
->r_base_oid
.name_len
= strlen(rd_req
->r_base_oid
.name
);
1680 wr_req
= ceph_osdc_alloc_request(&fsc
->client
->osdc
,
1682 1, false, GFP_NOFS
);
1688 wr_req
->r_flags
= CEPH_OSD_FLAG_WRITE
|
1689 CEPH_OSD_FLAG_ACK
| CEPH_OSD_FLAG_ONDISK
;
1690 osd_req_op_init(wr_req
, 0, CEPH_OSD_OP_CREATE
, CEPH_OSD_OP_FLAG_EXCL
);
1691 wr_req
->r_base_oloc
.pool
= pool
;
1692 wr_req
->r_base_oid
= rd_req
->r_base_oid
;
1694 /* one page should be large enough for STAT data */
1695 pages
= ceph_alloc_page_vector(1, GFP_KERNEL
);
1696 if (IS_ERR(pages
)) {
1697 err
= PTR_ERR(pages
);
1701 osd_req_op_raw_data_in_pages(rd_req
, 0, pages
, PAGE_SIZE
,
1703 ceph_osdc_build_request(rd_req
, 0, NULL
, CEPH_NOSNAP
,
1704 &ci
->vfs_inode
.i_mtime
);
1705 err
= ceph_osdc_start_request(&fsc
->client
->osdc
, rd_req
, false);
1707 ceph_osdc_build_request(wr_req
, 0, NULL
, CEPH_NOSNAP
,
1708 &ci
->vfs_inode
.i_mtime
);
1709 err2
= ceph_osdc_start_request(&fsc
->client
->osdc
, wr_req
, false);
1712 err
= ceph_osdc_wait_request(&fsc
->client
->osdc
, rd_req
);
1714 err2
= ceph_osdc_wait_request(&fsc
->client
->osdc
, wr_req
);
1716 if (err
>= 0 || err
== -ENOENT
)
1718 else if (err
!= -EPERM
)
1721 if (err2
== 0 || err2
== -EEXIST
)
1723 else if (err2
!= -EPERM
) {
1728 perm
= kmalloc(sizeof(*perm
), GFP_NOFS
);
1736 rb_link_node(&perm
->node
, parent
, p
);
1737 rb_insert_color(&perm
->node
, &mdsc
->pool_perm_tree
);
1740 up_write(&mdsc
->pool_perm_rwsem
);
1743 ceph_osdc_put_request(rd_req
);
1745 ceph_osdc_put_request(wr_req
);
1749 dout("__ceph_pool_perm_get pool %u result = %d\n", pool
, err
);
1753 int ceph_pool_perm_check(struct ceph_inode_info
*ci
, int need
)
1758 if (ceph_test_mount_opt(ceph_inode_to_client(&ci
->vfs_inode
),
1762 spin_lock(&ci
->i_ceph_lock
);
1763 flags
= ci
->i_ceph_flags
;
1764 pool
= ceph_file_layout_pg_pool(ci
->i_layout
);
1765 spin_unlock(&ci
->i_ceph_lock
);
1767 if (flags
& CEPH_I_POOL_PERM
) {
1768 if ((need
& CEPH_CAP_FILE_RD
) && !(flags
& CEPH_I_POOL_RD
)) {
1769 dout("ceph_pool_perm_check pool %u no read perm\n",
1773 if ((need
& CEPH_CAP_FILE_WR
) && !(flags
& CEPH_I_POOL_WR
)) {
1774 dout("ceph_pool_perm_check pool %u no write perm\n",
1781 ret
= __ceph_pool_perm_get(ci
, pool
);
1785 flags
= CEPH_I_POOL_PERM
;
1786 if (ret
& POOL_READ
)
1787 flags
|= CEPH_I_POOL_RD
;
1788 if (ret
& POOL_WRITE
)
1789 flags
|= CEPH_I_POOL_WR
;
1791 spin_lock(&ci
->i_ceph_lock
);
1792 if (pool
== ceph_file_layout_pg_pool(ci
->i_layout
)) {
1793 ci
->i_ceph_flags
= flags
;
1795 pool
= ceph_file_layout_pg_pool(ci
->i_layout
);
1796 flags
= ci
->i_ceph_flags
;
1798 spin_unlock(&ci
->i_ceph_lock
);
1802 void ceph_pool_perm_destroy(struct ceph_mds_client
*mdsc
)
1804 struct ceph_pool_perm
*perm
;
1807 while (!RB_EMPTY_ROOT(&mdsc
->pool_perm_tree
)) {
1808 n
= rb_first(&mdsc
->pool_perm_tree
);
1809 perm
= rb_entry(n
, struct ceph_pool_perm
, node
);
1810 rb_erase(n
, &mdsc
->pool_perm_tree
);