xref: /openbmc/linux/fs/ceph/addr.c (revision 25d71cb9)
1 #include <linux/ceph/ceph_debug.h>
2 
3 #include <linux/backing-dev.h>
4 #include <linux/fs.h>
5 #include <linux/mm.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>
11 
12 #include "super.h"
13 #include "mds_client.h"
14 #include <linux/ceph/osd_client.h>
15 
16 /*
17  * Ceph address space ops.
18  *
19  * There are a few funny things going on here.
20  *
21  * The page->private field is used to reference a struct
22  * ceph_snap_context for _every_ dirty page.  This indicates which
23  * snapshot the page was logically dirtied in, and thus which snap
24  * context needs to be associated with the osd write during writeback.
25  *
26  * Similarly, struct ceph_inode_info maintains a set of counters to
27  * count dirty pages on the inode.  In the absence of snapshots,
28  * i_wrbuffer_ref == i_wrbuffer_ref_head == the dirty page count.
29  *
30  * When a snapshot is taken (that is, when the client receives
31  * notification that a snapshot was taken), each inode with caps and
32  * with dirty pages (dirty pages implies there is a cap) gets a new
33  * ceph_cap_snap in the i_cap_snaps list (which is sorted in ascending
34  * order, new snaps go to the tail).  The i_wrbuffer_ref_head count is
35  * moved to capsnap->dirty. (Unless a sync write is currently in
36  * progress.  In that case, the capsnap is said to be "pending", new
37  * writes cannot start, and the capsnap isn't "finalized" until the
38  * write completes (or fails) and a final size/mtime for the inode for
39  * that snap can be settled upon.)  i_wrbuffer_ref_head is reset to 0.
40  *
41  * On writeback, we must submit writes to the osd IN SNAP ORDER.  So,
42  * we look for the first capsnap in i_cap_snaps and write out pages in
43  * that snap context _only_.  Then we move on to the next capsnap,
44  * eventually reaching the "live" or "head" context (i.e., pages that
45  * are not yet snapped) and are writing the most recently dirtied
46  * pages.
47  *
48  * Invalidate and so forth must take care to ensure the dirty page
49  * accounting is preserved.
50  */
51 
52 #define CONGESTION_ON_THRESH(congestion_kb) (congestion_kb >> (PAGE_SHIFT-10))
53 #define CONGESTION_OFF_THRESH(congestion_kb)				\
54 	(CONGESTION_ON_THRESH(congestion_kb) -				\
55 	 (CONGESTION_ON_THRESH(congestion_kb) >> 2))
56 
57 static inline struct ceph_snap_context *page_snap_context(struct page *page)
58 {
59 	if (PagePrivate(page))
60 		return (void *)page->private;
61 	return NULL;
62 }
63 
64 /*
65  * Dirty a page.  Optimistically adjust accounting, on the assumption
66  * that we won't race with invalidate.  If we do, readjust.
67  */
68 static int ceph_set_page_dirty(struct page *page)
69 {
70 	struct address_space *mapping = page->mapping;
71 	struct inode *inode;
72 	struct ceph_inode_info *ci;
73 	int undo = 0;
74 	struct ceph_snap_context *snapc;
75 
76 	if (unlikely(!mapping))
77 		return !TestSetPageDirty(page);
78 
79 	if (TestSetPageDirty(page)) {
80 		dout("%p set_page_dirty %p idx %lu -- already dirty\n",
81 		     mapping->host, page, page->index);
82 		return 0;
83 	}
84 
85 	inode = mapping->host;
86 	ci = ceph_inode(inode);
87 
88 	/*
89 	 * Note that we're grabbing a snapc ref here without holding
90 	 * any locks!
91 	 */
92 	snapc = ceph_get_snap_context(ci->i_snap_realm->cached_context);
93 
94 	/* dirty the head */
95 	spin_lock(&ci->i_ceph_lock);
96 	if (ci->i_head_snapc == NULL)
97 		ci->i_head_snapc = ceph_get_snap_context(snapc);
98 	++ci->i_wrbuffer_ref_head;
99 	if (ci->i_wrbuffer_ref == 0)
100 		ihold(inode);
101 	++ci->i_wrbuffer_ref;
102 	dout("%p set_page_dirty %p idx %lu head %d/%d -> %d/%d "
103 	     "snapc %p seq %lld (%d snaps)\n",
104 	     mapping->host, page, page->index,
105 	     ci->i_wrbuffer_ref-1, ci->i_wrbuffer_ref_head-1,
106 	     ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
107 	     snapc, snapc->seq, snapc->num_snaps);
108 	spin_unlock(&ci->i_ceph_lock);
109 
110 	/* now adjust page */
111 	spin_lock_irq(&mapping->tree_lock);
112 	if (page->mapping) {	/* Race with truncate? */
113 		WARN_ON_ONCE(!PageUptodate(page));
114 		account_page_dirtied(page, page->mapping);
115 		radix_tree_tag_set(&mapping->page_tree,
116 				page_index(page), PAGECACHE_TAG_DIRTY);
117 
118 		/*
119 		 * Reference snap context in page->private.  Also set
120 		 * PagePrivate so that we get invalidatepage callback.
121 		 */
122 		page->private = (unsigned long)snapc;
123 		SetPagePrivate(page);
124 	} else {
125 		dout("ANON set_page_dirty %p (raced truncate?)\n", page);
126 		undo = 1;
127 	}
128 
129 	spin_unlock_irq(&mapping->tree_lock);
130 
131 	if (undo)
132 		/* whoops, we failed to dirty the page */
133 		ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
134 
135 	__mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
136 
137 	BUG_ON(!PageDirty(page));
138 	return 1;
139 }
140 
141 /*
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
144  * data on the page.
145  */
146 static void ceph_invalidatepage(struct page *page, unsigned long offset)
147 {
148 	struct inode *inode;
149 	struct ceph_inode_info *ci;
150 	struct ceph_snap_context *snapc = page_snap_context(page);
151 
152 	BUG_ON(!PageLocked(page));
153 	BUG_ON(!PagePrivate(page));
154 	BUG_ON(!page->mapping);
155 
156 	inode = page->mapping->host;
157 
158 	/*
159 	 * We can get non-dirty pages here due to races between
160 	 * set_page_dirty and truncate_complete_page; just spit out a
161 	 * warning, in case we end up with accounting problems later.
162 	 */
163 	if (!PageDirty(page))
164 		pr_err("%p invalidatepage %p page not dirty\n", inode, page);
165 
166 	if (offset == 0)
167 		ClearPageChecked(page);
168 
169 	ci = ceph_inode(inode);
170 	if (offset == 0) {
171 		dout("%p invalidatepage %p idx %lu full dirty page %lu\n",
172 		     inode, page, page->index, offset);
173 		ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
174 		ceph_put_snap_context(snapc);
175 		page->private = 0;
176 		ClearPagePrivate(page);
177 	} else {
178 		dout("%p invalidatepage %p idx %lu partial dirty page\n",
179 		     inode, page, page->index);
180 	}
181 }
182 
183 /* just a sanity check */
184 static int ceph_releasepage(struct page *page, gfp_t g)
185 {
186 	struct inode *inode = page->mapping ? page->mapping->host : NULL;
187 	dout("%p releasepage %p idx %lu\n", inode, page, page->index);
188 	WARN_ON(PageDirty(page));
189 	WARN_ON(PagePrivate(page));
190 	return 0;
191 }
192 
193 /*
194  * read a single page, without unlocking it.
195  */
196 static int readpage_nounlock(struct file *filp, struct page *page)
197 {
198 	struct inode *inode = file_inode(filp);
199 	struct ceph_inode_info *ci = ceph_inode(inode);
200 	struct ceph_osd_client *osdc =
201 		&ceph_inode_to_client(inode)->client->osdc;
202 	int err = 0;
203 	u64 len = PAGE_CACHE_SIZE;
204 
205 	dout("readpage inode %p file %p page %p index %lu\n",
206 	     inode, filp, page, page->index);
207 	err = ceph_osdc_readpages(osdc, ceph_vino(inode), &ci->i_layout,
208 				  (u64) page_offset(page), &len,
209 				  ci->i_truncate_seq, ci->i_truncate_size,
210 				  &page, 1, 0);
211 	if (err == -ENOENT)
212 		err = 0;
213 	if (err < 0) {
214 		SetPageError(page);
215 		goto out;
216 	} else if (err < PAGE_CACHE_SIZE) {
217 		/* zero fill remainder of page */
218 		zero_user_segment(page, err, PAGE_CACHE_SIZE);
219 	}
220 	SetPageUptodate(page);
221 
222 out:
223 	return err < 0 ? err : 0;
224 }
225 
226 static int ceph_readpage(struct file *filp, struct page *page)
227 {
228 	int r = readpage_nounlock(filp, page);
229 	unlock_page(page);
230 	return r;
231 }
232 
233 /*
234  * Finish an async read(ahead) op.
235  */
236 static void finish_read(struct ceph_osd_request *req, struct ceph_msg *msg)
237 {
238 	struct inode *inode = req->r_inode;
239 	int rc = req->r_result;
240 	int bytes = le32_to_cpu(msg->hdr.data_len);
241 	int num_pages;
242 	int i;
243 
244 	dout("finish_read %p req %p rc %d bytes %d\n", inode, req, rc, bytes);
245 
246 	/* unlock all pages, zeroing any data we didn't read */
247 	BUG_ON(req->r_data_in.type != CEPH_OSD_DATA_TYPE_PAGES);
248 	num_pages = calc_pages_for((u64)req->r_data_in.alignment,
249 					(u64)req->r_data_in.length);
250 	for (i = 0; i < num_pages; i++) {
251 		struct page *page = req->r_data_in.pages[i];
252 
253 		if (bytes < (int)PAGE_CACHE_SIZE) {
254 			/* zero (remainder of) page */
255 			int s = bytes < 0 ? 0 : bytes;
256 			zero_user_segment(page, s, PAGE_CACHE_SIZE);
257 		}
258  		dout("finish_read %p uptodate %p idx %lu\n", inode, page,
259 		     page->index);
260 		flush_dcache_page(page);
261 		SetPageUptodate(page);
262 		unlock_page(page);
263 		page_cache_release(page);
264 		bytes -= PAGE_CACHE_SIZE;
265 	}
266 	kfree(req->r_data_in.pages);
267 }
268 
269 static void ceph_unlock_page_vector(struct page **pages, int num_pages)
270 {
271 	int i;
272 
273 	for (i = 0; i < num_pages; i++)
274 		unlock_page(pages[i]);
275 }
276 
277 /*
278  * start an async read(ahead) operation.  return nr_pages we submitted
279  * a read for on success, or negative error code.
280  */
281 static int start_read(struct inode *inode, struct list_head *page_list, int max)
282 {
283 	struct ceph_osd_client *osdc =
284 		&ceph_inode_to_client(inode)->client->osdc;
285 	struct ceph_inode_info *ci = ceph_inode(inode);
286 	struct page *page = list_entry(page_list->prev, struct page, lru);
287 	struct ceph_osd_request *req;
288 	u64 off;
289 	u64 len;
290 	int i;
291 	struct page **pages;
292 	pgoff_t next_index;
293 	int nr_pages = 0;
294 	int ret;
295 
296 	off = (u64) page_offset(page);
297 
298 	/* count pages */
299 	next_index = page->index;
300 	list_for_each_entry_reverse(page, page_list, lru) {
301 		if (page->index != next_index)
302 			break;
303 		nr_pages++;
304 		next_index++;
305 		if (max && nr_pages == max)
306 			break;
307 	}
308 	len = nr_pages << PAGE_CACHE_SHIFT;
309 	dout("start_read %p nr_pages %d is %lld~%lld\n", inode, nr_pages,
310 	     off, len);
311 
312 	req = ceph_osdc_new_request(osdc, &ci->i_layout, ceph_vino(inode),
313 				    off, &len,
314 				    CEPH_OSD_OP_READ, CEPH_OSD_FLAG_READ,
315 				    NULL, 0,
316 				    ci->i_truncate_seq, ci->i_truncate_size,
317 				    NULL, false);
318 	if (IS_ERR(req))
319 		return PTR_ERR(req);
320 
321 	/* build page vector */
322 	nr_pages = calc_pages_for(0, len);
323 	pages = kmalloc(sizeof(*pages) * nr_pages, GFP_NOFS);
324 	ret = -ENOMEM;
325 	if (!pages)
326 		goto out;
327 	for (i = 0; i < nr_pages; ++i) {
328 		page = list_entry(page_list->prev, struct page, lru);
329 		BUG_ON(PageLocked(page));
330 		list_del(&page->lru);
331 
332  		dout("start_read %p adding %p idx %lu\n", inode, page,
333 		     page->index);
334 		if (add_to_page_cache_lru(page, &inode->i_data, page->index,
335 					  GFP_NOFS)) {
336 			page_cache_release(page);
337 			dout("start_read %p add_to_page_cache failed %p\n",
338 			     inode, page);
339 			nr_pages = i;
340 			goto out_pages;
341 		}
342 		pages[i] = page;
343 	}
344 	req->r_data_in.type = CEPH_OSD_DATA_TYPE_PAGES;
345 	req->r_data_in.pages = pages;
346 	req->r_data_in.length = len;
347 	req->r_data_in.alignment = 0;
348 	req->r_callback = finish_read;
349 	req->r_inode = inode;
350 
351 	dout("start_read %p starting %p %lld~%lld\n", inode, req, off, len);
352 	ret = ceph_osdc_start_request(osdc, req, false);
353 	if (ret < 0)
354 		goto out_pages;
355 	ceph_osdc_put_request(req);
356 	return nr_pages;
357 
358 out_pages:
359 	ceph_unlock_page_vector(pages, nr_pages);
360 	ceph_release_page_vector(pages, nr_pages);
361 out:
362 	ceph_osdc_put_request(req);
363 	return ret;
364 }
365 
366 
367 /*
368  * Read multiple pages.  Leave pages we don't read + unlock in page_list;
369  * the caller (VM) cleans them up.
370  */
371 static int ceph_readpages(struct file *file, struct address_space *mapping,
372 			  struct list_head *page_list, unsigned nr_pages)
373 {
374 	struct inode *inode = file_inode(file);
375 	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
376 	int rc = 0;
377 	int max = 0;
378 
379 	if (fsc->mount_options->rsize >= PAGE_CACHE_SIZE)
380 		max = (fsc->mount_options->rsize + PAGE_CACHE_SIZE - 1)
381 			>> PAGE_SHIFT;
382 
383 	dout("readpages %p file %p nr_pages %d max %d\n", inode,
384 		file, nr_pages,
385 	     max);
386 	while (!list_empty(page_list)) {
387 		rc = start_read(inode, page_list, max);
388 		if (rc < 0)
389 			goto out;
390 		BUG_ON(rc == 0);
391 	}
392 out:
393 	dout("readpages %p file %p ret %d\n", inode, file, rc);
394 	return rc;
395 }
396 
397 /*
398  * Get ref for the oldest snapc for an inode with dirty data... that is, the
399  * only snap context we are allowed to write back.
400  */
401 static struct ceph_snap_context *get_oldest_context(struct inode *inode,
402 						    u64 *snap_size)
403 {
404 	struct ceph_inode_info *ci = ceph_inode(inode);
405 	struct ceph_snap_context *snapc = NULL;
406 	struct ceph_cap_snap *capsnap = NULL;
407 
408 	spin_lock(&ci->i_ceph_lock);
409 	list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
410 		dout(" cap_snap %p snapc %p has %d dirty pages\n", capsnap,
411 		     capsnap->context, capsnap->dirty_pages);
412 		if (capsnap->dirty_pages) {
413 			snapc = ceph_get_snap_context(capsnap->context);
414 			if (snap_size)
415 				*snap_size = capsnap->size;
416 			break;
417 		}
418 	}
419 	if (!snapc && ci->i_wrbuffer_ref_head) {
420 		snapc = ceph_get_snap_context(ci->i_head_snapc);
421 		dout(" head snapc %p has %d dirty pages\n",
422 		     snapc, ci->i_wrbuffer_ref_head);
423 	}
424 	spin_unlock(&ci->i_ceph_lock);
425 	return snapc;
426 }
427 
428 /*
429  * Write a single page, but leave the page locked.
430  *
431  * If we get a write error, set the page error bit, but still adjust the
432  * dirty page accounting (i.e., page is no longer dirty).
433  */
434 static int writepage_nounlock(struct page *page, struct writeback_control *wbc)
435 {
436 	struct inode *inode;
437 	struct ceph_inode_info *ci;
438 	struct ceph_fs_client *fsc;
439 	struct ceph_osd_client *osdc;
440 	loff_t page_off = page_offset(page);
441 	int len = PAGE_CACHE_SIZE;
442 	loff_t i_size;
443 	int err = 0;
444 	struct ceph_snap_context *snapc, *oldest;
445 	u64 snap_size = 0;
446 	long writeback_stat;
447 
448 	dout("writepage %p idx %lu\n", page, page->index);
449 
450 	if (!page->mapping || !page->mapping->host) {
451 		dout("writepage %p - no mapping\n", page);
452 		return -EFAULT;
453 	}
454 	inode = page->mapping->host;
455 	ci = ceph_inode(inode);
456 	fsc = ceph_inode_to_client(inode);
457 	osdc = &fsc->client->osdc;
458 
459 	/* verify this is a writeable snap context */
460 	snapc = page_snap_context(page);
461 	if (snapc == NULL) {
462 		dout("writepage %p page %p not dirty?\n", inode, page);
463 		goto out;
464 	}
465 	oldest = get_oldest_context(inode, &snap_size);
466 	if (snapc->seq > oldest->seq) {
467 		dout("writepage %p page %p snapc %p not writeable - noop\n",
468 		     inode, page, snapc);
469 		/* we should only noop if called by kswapd */
470 		WARN_ON((current->flags & PF_MEMALLOC) == 0);
471 		ceph_put_snap_context(oldest);
472 		goto out;
473 	}
474 	ceph_put_snap_context(oldest);
475 
476 	/* is this a partial page at end of file? */
477 	if (snap_size)
478 		i_size = snap_size;
479 	else
480 		i_size = i_size_read(inode);
481 	if (i_size < page_off + len)
482 		len = i_size - page_off;
483 
484 	dout("writepage %p page %p index %lu on %llu~%u snapc %p\n",
485 	     inode, page, page->index, page_off, len, snapc);
486 
487 	writeback_stat = atomic_long_inc_return(&fsc->writeback_count);
488 	if (writeback_stat >
489 	    CONGESTION_ON_THRESH(fsc->mount_options->congestion_kb))
490 		set_bdi_congested(&fsc->backing_dev_info, BLK_RW_ASYNC);
491 
492 	set_page_writeback(page);
493 	err = ceph_osdc_writepages(osdc, ceph_vino(inode),
494 				   &ci->i_layout, snapc,
495 				   page_off, len,
496 				   ci->i_truncate_seq, ci->i_truncate_size,
497 				   &inode->i_mtime, &page, 1);
498 	if (err < 0) {
499 		dout("writepage setting page/mapping error %d %p\n", err, page);
500 		SetPageError(page);
501 		mapping_set_error(&inode->i_data, err);
502 		if (wbc)
503 			wbc->pages_skipped++;
504 	} else {
505 		dout("writepage cleaned page %p\n", page);
506 		err = 0;  /* vfs expects us to return 0 */
507 	}
508 	page->private = 0;
509 	ClearPagePrivate(page);
510 	end_page_writeback(page);
511 	ceph_put_wrbuffer_cap_refs(ci, 1, snapc);
512 	ceph_put_snap_context(snapc);  /* page's reference */
513 out:
514 	return err;
515 }
516 
517 static int ceph_writepage(struct page *page, struct writeback_control *wbc)
518 {
519 	int err;
520 	struct inode *inode = page->mapping->host;
521 	BUG_ON(!inode);
522 	ihold(inode);
523 	err = writepage_nounlock(page, wbc);
524 	unlock_page(page);
525 	iput(inode);
526 	return err;
527 }
528 
529 
530 /*
531  * lame release_pages helper.  release_pages() isn't exported to
532  * modules.
533  */
534 static void ceph_release_pages(struct page **pages, int num)
535 {
536 	struct pagevec pvec;
537 	int i;
538 
539 	pagevec_init(&pvec, 0);
540 	for (i = 0; i < num; i++) {
541 		if (pagevec_add(&pvec, pages[i]) == 0)
542 			pagevec_release(&pvec);
543 	}
544 	pagevec_release(&pvec);
545 }
546 
547 
548 /*
549  * async writeback completion handler.
550  *
551  * If we get an error, set the mapping error bit, but not the individual
552  * page error bits.
553  */
554 static void writepages_finish(struct ceph_osd_request *req,
555 			      struct ceph_msg *msg)
556 {
557 	struct inode *inode = req->r_inode;
558 	struct ceph_inode_info *ci = ceph_inode(inode);
559 	unsigned wrote;
560 	struct page *page;
561 	int num_pages;
562 	int i;
563 	struct ceph_snap_context *snapc = req->r_snapc;
564 	struct address_space *mapping = inode->i_mapping;
565 	int rc = req->r_result;
566 	u64 bytes = le64_to_cpu(req->r_request_ops[0].extent.length);
567 	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
568 	long writeback_stat;
569 	unsigned issued = ceph_caps_issued(ci);
570 
571 	BUG_ON(req->r_data_out.type != CEPH_OSD_DATA_TYPE_PAGES);
572 	num_pages = calc_pages_for((u64)req->r_data_out.alignment,
573 					(u64)req->r_data_out.length);
574 	if (rc >= 0) {
575 		/*
576 		 * Assume we wrote the pages we originally sent.  The
577 		 * osd might reply with fewer pages if our writeback
578 		 * raced with a truncation and was adjusted at the osd,
579 		 * so don't believe the reply.
580 		 */
581 		wrote = num_pages;
582 	} else {
583 		wrote = 0;
584 		mapping_set_error(mapping, rc);
585 	}
586 	dout("writepages_finish %p rc %d bytes %llu wrote %d (pages)\n",
587 	     inode, rc, bytes, wrote);
588 
589 	/* clean all pages */
590 	for (i = 0; i < num_pages; i++) {
591 		page = req->r_data_out.pages[i];
592 		BUG_ON(!page);
593 		WARN_ON(!PageUptodate(page));
594 
595 		writeback_stat =
596 			atomic_long_dec_return(&fsc->writeback_count);
597 		if (writeback_stat <
598 		    CONGESTION_OFF_THRESH(fsc->mount_options->congestion_kb))
599 			clear_bdi_congested(&fsc->backing_dev_info,
600 					    BLK_RW_ASYNC);
601 
602 		ceph_put_snap_context(page_snap_context(page));
603 		page->private = 0;
604 		ClearPagePrivate(page);
605 		dout("unlocking %d %p\n", i, page);
606 		end_page_writeback(page);
607 
608 		/*
609 		 * We lost the cache cap, need to truncate the page before
610 		 * it is unlocked, otherwise we'd truncate it later in the
611 		 * page truncation thread, possibly losing some data that
612 		 * raced its way in
613 		 */
614 		if ((issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0)
615 			generic_error_remove_page(inode->i_mapping, page);
616 
617 		unlock_page(page);
618 	}
619 	dout("%p wrote+cleaned %d pages\n", inode, wrote);
620 	ceph_put_wrbuffer_cap_refs(ci, num_pages, snapc);
621 
622 	ceph_release_pages(req->r_data_out.pages, num_pages);
623 	if (req->r_data_out.pages_from_pool)
624 		mempool_free(req->r_data_out.pages,
625 			     ceph_sb_to_client(inode->i_sb)->wb_pagevec_pool);
626 	else
627 		kfree(req->r_data_out.pages);
628 	ceph_osdc_put_request(req);
629 }
630 
631 /*
632  * allocate a page vec, either directly, or if necessary, via a the
633  * mempool.  we avoid the mempool if we can because req->r_data_out.length
634  * may be less than the maximum write size.
635  */
636 static void alloc_page_vec(struct ceph_fs_client *fsc,
637 			   struct ceph_osd_request *req)
638 {
639 	size_t size;
640 	int num_pages;
641 
642 	num_pages = calc_pages_for((u64)req->r_data_out.alignment,
643 					(u64)req->r_data_out.length);
644 	size = sizeof (struct page *) * num_pages;
645 	req->r_data_out.pages = kmalloc(size, GFP_NOFS);
646 	if (!req->r_data_out.pages) {
647 		req->r_data_out.pages = mempool_alloc(fsc->wb_pagevec_pool,
648 							GFP_NOFS);
649 		req->r_data_out.pages_from_pool = 1;
650 		WARN_ON(!req->r_data_out.pages);
651 	}
652 }
653 
654 /*
655  * initiate async writeback
656  */
657 static int ceph_writepages_start(struct address_space *mapping,
658 				 struct writeback_control *wbc)
659 {
660 	struct inode *inode = mapping->host;
661 	struct ceph_inode_info *ci = ceph_inode(inode);
662 	struct ceph_fs_client *fsc;
663 	pgoff_t index, start, end;
664 	int range_whole = 0;
665 	int should_loop = 1;
666 	pgoff_t max_pages = 0, max_pages_ever = 0;
667 	struct ceph_snap_context *snapc = NULL, *last_snapc = NULL, *pgsnapc;
668 	struct pagevec pvec;
669 	int done = 0;
670 	int rc = 0;
671 	unsigned wsize = 1 << inode->i_blkbits;
672 	struct ceph_osd_request *req = NULL;
673 	int do_sync;
674 	u64 snap_size = 0;
675 
676 	/*
677 	 * Include a 'sync' in the OSD request if this is a data
678 	 * integrity write (e.g., O_SYNC write or fsync()), or if our
679 	 * cap is being revoked.
680 	 */
681 	do_sync = wbc->sync_mode == WB_SYNC_ALL;
682 	if (ceph_caps_revoking(ci, CEPH_CAP_FILE_BUFFER))
683 		do_sync = 1;
684 	dout("writepages_start %p dosync=%d (mode=%s)\n",
685 	     inode, do_sync,
686 	     wbc->sync_mode == WB_SYNC_NONE ? "NONE" :
687 	     (wbc->sync_mode == WB_SYNC_ALL ? "ALL" : "HOLD"));
688 
689 	fsc = ceph_inode_to_client(inode);
690 	if (fsc->mount_state == CEPH_MOUNT_SHUTDOWN) {
691 		pr_warning("writepage_start %p on forced umount\n", inode);
692 		return -EIO; /* we're in a forced umount, don't write! */
693 	}
694 	if (fsc->mount_options->wsize && fsc->mount_options->wsize < wsize)
695 		wsize = fsc->mount_options->wsize;
696 	if (wsize < PAGE_CACHE_SIZE)
697 		wsize = PAGE_CACHE_SIZE;
698 	max_pages_ever = wsize >> PAGE_CACHE_SHIFT;
699 
700 	pagevec_init(&pvec, 0);
701 
702 	/* where to start/end? */
703 	if (wbc->range_cyclic) {
704 		start = mapping->writeback_index; /* Start from prev offset */
705 		end = -1;
706 		dout(" cyclic, start at %lu\n", start);
707 	} else {
708 		start = wbc->range_start >> PAGE_CACHE_SHIFT;
709 		end = wbc->range_end >> PAGE_CACHE_SHIFT;
710 		if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
711 			range_whole = 1;
712 		should_loop = 0;
713 		dout(" not cyclic, %lu to %lu\n", start, end);
714 	}
715 	index = start;
716 
717 retry:
718 	/* find oldest snap context with dirty data */
719 	ceph_put_snap_context(snapc);
720 	snapc = get_oldest_context(inode, &snap_size);
721 	if (!snapc) {
722 		/* hmm, why does writepages get called when there
723 		   is no dirty data? */
724 		dout(" no snap context with dirty data?\n");
725 		goto out;
726 	}
727 	dout(" oldest snapc is %p seq %lld (%d snaps)\n",
728 	     snapc, snapc->seq, snapc->num_snaps);
729 	if (last_snapc && snapc != last_snapc) {
730 		/* if we switched to a newer snapc, restart our scan at the
731 		 * start of the original file range. */
732 		dout("  snapc differs from last pass, restarting at %lu\n",
733 		     index);
734 		index = start;
735 	}
736 	last_snapc = snapc;
737 
738 	while (!done && index <= end) {
739 		unsigned i;
740 		int first;
741 		pgoff_t next;
742 		int pvec_pages, locked_pages;
743 		struct page *page;
744 		int want;
745 		u64 offset, len;
746 		long writeback_stat;
747 
748 		next = 0;
749 		locked_pages = 0;
750 		max_pages = max_pages_ever;
751 
752 get_more_pages:
753 		first = -1;
754 		want = min(end - index,
755 			   min((pgoff_t)PAGEVEC_SIZE,
756 			       max_pages - (pgoff_t)locked_pages) - 1)
757 			+ 1;
758 		pvec_pages = pagevec_lookup_tag(&pvec, mapping, &index,
759 						PAGECACHE_TAG_DIRTY,
760 						want);
761 		dout("pagevec_lookup_tag got %d\n", pvec_pages);
762 		if (!pvec_pages && !locked_pages)
763 			break;
764 		for (i = 0; i < pvec_pages && locked_pages < max_pages; i++) {
765 			page = pvec.pages[i];
766 			dout("? %p idx %lu\n", page, page->index);
767 			if (locked_pages == 0)
768 				lock_page(page);  /* first page */
769 			else if (!trylock_page(page))
770 				break;
771 
772 			/* only dirty pages, or our accounting breaks */
773 			if (unlikely(!PageDirty(page)) ||
774 			    unlikely(page->mapping != mapping)) {
775 				dout("!dirty or !mapping %p\n", page);
776 				unlock_page(page);
777 				break;
778 			}
779 			if (!wbc->range_cyclic && page->index > end) {
780 				dout("end of range %p\n", page);
781 				done = 1;
782 				unlock_page(page);
783 				break;
784 			}
785 			if (next && (page->index != next)) {
786 				dout("not consecutive %p\n", page);
787 				unlock_page(page);
788 				break;
789 			}
790 			if (wbc->sync_mode != WB_SYNC_NONE) {
791 				dout("waiting on writeback %p\n", page);
792 				wait_on_page_writeback(page);
793 			}
794 			if ((snap_size && page_offset(page) > snap_size) ||
795 			    (!snap_size &&
796 			     page_offset(page) > i_size_read(inode))) {
797 				dout("%p page eof %llu\n", page, snap_size ?
798 				     snap_size : i_size_read(inode));
799 				done = 1;
800 				unlock_page(page);
801 				break;
802 			}
803 			if (PageWriteback(page)) {
804 				dout("%p under writeback\n", page);
805 				unlock_page(page);
806 				break;
807 			}
808 
809 			/* only if matching snap context */
810 			pgsnapc = page_snap_context(page);
811 			if (pgsnapc->seq > snapc->seq) {
812 				dout("page snapc %p %lld > oldest %p %lld\n",
813 				     pgsnapc, pgsnapc->seq, snapc, snapc->seq);
814 				unlock_page(page);
815 				if (!locked_pages)
816 					continue; /* keep looking for snap */
817 				break;
818 			}
819 
820 			if (!clear_page_dirty_for_io(page)) {
821 				dout("%p !clear_page_dirty_for_io\n", page);
822 				unlock_page(page);
823 				break;
824 			}
825 
826 			/* ok */
827 			if (locked_pages == 0) {
828 				/* prepare async write request */
829 				offset = (u64) page_offset(page);
830 				len = wsize;
831 				req = ceph_osdc_new_request(&fsc->client->osdc,
832 					    &ci->i_layout,
833 					    ceph_vino(inode),
834 					    offset, &len,
835 					    CEPH_OSD_OP_WRITE,
836 					    CEPH_OSD_FLAG_WRITE |
837 						    CEPH_OSD_FLAG_ONDISK,
838 					    snapc, do_sync,
839 					    ci->i_truncate_seq,
840 					    ci->i_truncate_size,
841 					    &inode->i_mtime, true);
842 
843 				if (IS_ERR(req)) {
844 					rc = PTR_ERR(req);
845 					unlock_page(page);
846 					break;
847 				}
848 
849 				req->r_data_out.type = CEPH_OSD_DATA_TYPE_PAGES;
850 				req->r_data_out.length = len;
851 				req->r_data_out.alignment = 0;
852 				max_pages = calc_pages_for(0, (u64)len);
853 				alloc_page_vec(fsc, req);
854 				req->r_callback = writepages_finish;
855 				req->r_inode = inode;
856 			}
857 
858 			/* note position of first page in pvec */
859 			if (first < 0)
860 				first = i;
861 			dout("%p will write page %p idx %lu\n",
862 			     inode, page, page->index);
863 
864 			writeback_stat =
865 			       atomic_long_inc_return(&fsc->writeback_count);
866 			if (writeback_stat > CONGESTION_ON_THRESH(
867 				    fsc->mount_options->congestion_kb)) {
868 				set_bdi_congested(&fsc->backing_dev_info,
869 						  BLK_RW_ASYNC);
870 			}
871 
872 			set_page_writeback(page);
873 			req->r_data_out.pages[locked_pages] = page;
874 			locked_pages++;
875 			next = page->index + 1;
876 		}
877 
878 		/* did we get anything? */
879 		if (!locked_pages)
880 			goto release_pvec_pages;
881 		if (i) {
882 			int j;
883 			BUG_ON(!locked_pages || first < 0);
884 
885 			if (pvec_pages && i == pvec_pages &&
886 			    locked_pages < max_pages) {
887 				dout("reached end pvec, trying for more\n");
888 				pagevec_reinit(&pvec);
889 				goto get_more_pages;
890 			}
891 
892 			/* shift unused pages over in the pvec...  we
893 			 * will need to release them below. */
894 			for (j = i; j < pvec_pages; j++) {
895 				dout(" pvec leftover page %p\n",
896 				     pvec.pages[j]);
897 				pvec.pages[j-i+first] = pvec.pages[j];
898 			}
899 			pvec.nr -= i-first;
900 		}
901 
902 		/* submit the write */
903 		offset = page_offset(req->r_data_out.pages[0]);
904 		len = min((snap_size ? snap_size : i_size_read(inode)) - offset,
905 			  (u64)locked_pages << PAGE_CACHE_SHIFT);
906 		dout("writepages got %d pages at %llu~%llu\n",
907 		     locked_pages, offset, len);
908 
909 		/* revise final length, page count */
910 		req->r_data_out.length = len;
911 		req->r_request_ops[0].extent.length = cpu_to_le64(len);
912 		req->r_request_ops[0].payload_len = cpu_to_le32(len);
913 		req->r_request->hdr.data_len = cpu_to_le32(len);
914 
915 		rc = ceph_osdc_start_request(&fsc->client->osdc, req, true);
916 		BUG_ON(rc);
917 		req = NULL;
918 
919 		/* continue? */
920 		index = next;
921 		wbc->nr_to_write -= locked_pages;
922 		if (wbc->nr_to_write <= 0)
923 			done = 1;
924 
925 release_pvec_pages:
926 		dout("pagevec_release on %d pages (%p)\n", (int)pvec.nr,
927 		     pvec.nr ? pvec.pages[0] : NULL);
928 		pagevec_release(&pvec);
929 
930 		if (locked_pages && !done)
931 			goto retry;
932 	}
933 
934 	if (should_loop && !done) {
935 		/* more to do; loop back to beginning of file */
936 		dout("writepages looping back to beginning of file\n");
937 		should_loop = 0;
938 		index = 0;
939 		goto retry;
940 	}
941 
942 	if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
943 		mapping->writeback_index = index;
944 
945 out:
946 	if (req)
947 		ceph_osdc_put_request(req);
948 	ceph_put_snap_context(snapc);
949 	dout("writepages done, rc = %d\n", rc);
950 	return rc;
951 }
952 
953 
954 
955 /*
956  * See if a given @snapc is either writeable, or already written.
957  */
958 static int context_is_writeable_or_written(struct inode *inode,
959 					   struct ceph_snap_context *snapc)
960 {
961 	struct ceph_snap_context *oldest = get_oldest_context(inode, NULL);
962 	int ret = !oldest || snapc->seq <= oldest->seq;
963 
964 	ceph_put_snap_context(oldest);
965 	return ret;
966 }
967 
968 /*
969  * We are only allowed to write into/dirty the page if the page is
970  * clean, or already dirty within the same snap context.
971  *
972  * called with page locked.
973  * return success with page locked,
974  * or any failure (incl -EAGAIN) with page unlocked.
975  */
976 static int ceph_update_writeable_page(struct file *file,
977 			    loff_t pos, unsigned len,
978 			    struct page *page)
979 {
980 	struct inode *inode = file_inode(file);
981 	struct ceph_inode_info *ci = ceph_inode(inode);
982 	struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
983 	loff_t page_off = pos & PAGE_CACHE_MASK;
984 	int pos_in_page = pos & ~PAGE_CACHE_MASK;
985 	int end_in_page = pos_in_page + len;
986 	loff_t i_size;
987 	int r;
988 	struct ceph_snap_context *snapc, *oldest;
989 
990 retry_locked:
991 	/* writepages currently holds page lock, but if we change that later, */
992 	wait_on_page_writeback(page);
993 
994 	/* check snap context */
995 	BUG_ON(!ci->i_snap_realm);
996 	down_read(&mdsc->snap_rwsem);
997 	BUG_ON(!ci->i_snap_realm->cached_context);
998 	snapc = page_snap_context(page);
999 	if (snapc && snapc != ci->i_head_snapc) {
1000 		/*
1001 		 * this page is already dirty in another (older) snap
1002 		 * context!  is it writeable now?
1003 		 */
1004 		oldest = get_oldest_context(inode, NULL);
1005 		up_read(&mdsc->snap_rwsem);
1006 
1007 		if (snapc->seq > oldest->seq) {
1008 			ceph_put_snap_context(oldest);
1009 			dout(" page %p snapc %p not current or oldest\n",
1010 			     page, snapc);
1011 			/*
1012 			 * queue for writeback, and wait for snapc to
1013 			 * be writeable or written
1014 			 */
1015 			snapc = ceph_get_snap_context(snapc);
1016 			unlock_page(page);
1017 			ceph_queue_writeback(inode);
1018 			r = wait_event_interruptible(ci->i_cap_wq,
1019 			       context_is_writeable_or_written(inode, snapc));
1020 			ceph_put_snap_context(snapc);
1021 			if (r == -ERESTARTSYS)
1022 				return r;
1023 			return -EAGAIN;
1024 		}
1025 		ceph_put_snap_context(oldest);
1026 
1027 		/* yay, writeable, do it now (without dropping page lock) */
1028 		dout(" page %p snapc %p not current, but oldest\n",
1029 		     page, snapc);
1030 		if (!clear_page_dirty_for_io(page))
1031 			goto retry_locked;
1032 		r = writepage_nounlock(page, NULL);
1033 		if (r < 0)
1034 			goto fail_nosnap;
1035 		goto retry_locked;
1036 	}
1037 
1038 	if (PageUptodate(page)) {
1039 		dout(" page %p already uptodate\n", page);
1040 		return 0;
1041 	}
1042 
1043 	/* full page? */
1044 	if (pos_in_page == 0 && len == PAGE_CACHE_SIZE)
1045 		return 0;
1046 
1047 	/* past end of file? */
1048 	i_size = inode->i_size;   /* caller holds i_mutex */
1049 
1050 	if (i_size + len > inode->i_sb->s_maxbytes) {
1051 		/* file is too big */
1052 		r = -EINVAL;
1053 		goto fail;
1054 	}
1055 
1056 	if (page_off >= i_size ||
1057 	    (pos_in_page == 0 && (pos+len) >= i_size &&
1058 	     end_in_page - pos_in_page != PAGE_CACHE_SIZE)) {
1059 		dout(" zeroing %p 0 - %d and %d - %d\n",
1060 		     page, pos_in_page, end_in_page, (int)PAGE_CACHE_SIZE);
1061 		zero_user_segments(page,
1062 				   0, pos_in_page,
1063 				   end_in_page, PAGE_CACHE_SIZE);
1064 		return 0;
1065 	}
1066 
1067 	/* we need to read it. */
1068 	up_read(&mdsc->snap_rwsem);
1069 	r = readpage_nounlock(file, page);
1070 	if (r < 0)
1071 		goto fail_nosnap;
1072 	goto retry_locked;
1073 
1074 fail:
1075 	up_read(&mdsc->snap_rwsem);
1076 fail_nosnap:
1077 	unlock_page(page);
1078 	return r;
1079 }
1080 
1081 /*
1082  * We are only allowed to write into/dirty the page if the page is
1083  * clean, or already dirty within the same snap context.
1084  */
1085 static int ceph_write_begin(struct file *file, struct address_space *mapping,
1086 			    loff_t pos, unsigned len, unsigned flags,
1087 			    struct page **pagep, void **fsdata)
1088 {
1089 	struct inode *inode = file_inode(file);
1090 	struct page *page;
1091 	pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1092 	int r;
1093 
1094 	do {
1095 		/* get a page */
1096 		page = grab_cache_page_write_begin(mapping, index, 0);
1097 		if (!page)
1098 			return -ENOMEM;
1099 		*pagep = page;
1100 
1101 		dout("write_begin file %p inode %p page %p %d~%d\n", file,
1102 		     inode, page, (int)pos, (int)len);
1103 
1104 		r = ceph_update_writeable_page(file, pos, len, page);
1105 	} while (r == -EAGAIN);
1106 
1107 	return r;
1108 }
1109 
1110 /*
1111  * we don't do anything in here that simple_write_end doesn't do
1112  * except adjust dirty page accounting and drop read lock on
1113  * mdsc->snap_rwsem.
1114  */
1115 static int ceph_write_end(struct file *file, struct address_space *mapping,
1116 			  loff_t pos, unsigned len, unsigned copied,
1117 			  struct page *page, void *fsdata)
1118 {
1119 	struct inode *inode = file_inode(file);
1120 	struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1121 	struct ceph_mds_client *mdsc = fsc->mdsc;
1122 	unsigned from = pos & (PAGE_CACHE_SIZE - 1);
1123 	int check_cap = 0;
1124 
1125 	dout("write_end file %p inode %p page %p %d~%d (%d)\n", file,
1126 	     inode, page, (int)pos, (int)copied, (int)len);
1127 
1128 	/* zero the stale part of the page if we did a short copy */
1129 	if (copied < len)
1130 		zero_user_segment(page, from+copied, len);
1131 
1132 	/* did file size increase? */
1133 	/* (no need for i_size_read(); we caller holds i_mutex */
1134 	if (pos+copied > inode->i_size)
1135 		check_cap = ceph_inode_set_size(inode, pos+copied);
1136 
1137 	if (!PageUptodate(page))
1138 		SetPageUptodate(page);
1139 
1140 	set_page_dirty(page);
1141 
1142 	unlock_page(page);
1143 	up_read(&mdsc->snap_rwsem);
1144 	page_cache_release(page);
1145 
1146 	if (check_cap)
1147 		ceph_check_caps(ceph_inode(inode), CHECK_CAPS_AUTHONLY, NULL);
1148 
1149 	return copied;
1150 }
1151 
1152 /*
1153  * we set .direct_IO to indicate direct io is supported, but since we
1154  * intercept O_DIRECT reads and writes early, this function should
1155  * never get called.
1156  */
1157 static ssize_t ceph_direct_io(int rw, struct kiocb *iocb,
1158 			      const struct iovec *iov,
1159 			      loff_t pos, unsigned long nr_segs)
1160 {
1161 	WARN_ON(1);
1162 	return -EINVAL;
1163 }
1164 
1165 const struct address_space_operations ceph_aops = {
1166 	.readpage = ceph_readpage,
1167 	.readpages = ceph_readpages,
1168 	.writepage = ceph_writepage,
1169 	.writepages = ceph_writepages_start,
1170 	.write_begin = ceph_write_begin,
1171 	.write_end = ceph_write_end,
1172 	.set_page_dirty = ceph_set_page_dirty,
1173 	.invalidatepage = ceph_invalidatepage,
1174 	.releasepage = ceph_releasepage,
1175 	.direct_IO = ceph_direct_io,
1176 };
1177 
1178 
1179 /*
1180  * vm ops
1181  */
1182 
1183 /*
1184  * Reuse write_begin here for simplicity.
1185  */
1186 static int ceph_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
1187 {
1188 	struct inode *inode = file_inode(vma->vm_file);
1189 	struct page *page = vmf->page;
1190 	struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
1191 	loff_t off = page_offset(page);
1192 	loff_t size, len;
1193 	int ret;
1194 
1195 	/* Update time before taking page lock */
1196 	file_update_time(vma->vm_file);
1197 
1198 	size = i_size_read(inode);
1199 	if (off + PAGE_CACHE_SIZE <= size)
1200 		len = PAGE_CACHE_SIZE;
1201 	else
1202 		len = size & ~PAGE_CACHE_MASK;
1203 
1204 	dout("page_mkwrite %p %llu~%llu page %p idx %lu\n", inode,
1205 	     off, len, page, page->index);
1206 
1207 	lock_page(page);
1208 
1209 	ret = VM_FAULT_NOPAGE;
1210 	if ((off > size) ||
1211 	    (page->mapping != inode->i_mapping))
1212 		goto out;
1213 
1214 	ret = ceph_update_writeable_page(vma->vm_file, off, len, page);
1215 	if (ret == 0) {
1216 		/* success.  we'll keep the page locked. */
1217 		set_page_dirty(page);
1218 		up_read(&mdsc->snap_rwsem);
1219 		ret = VM_FAULT_LOCKED;
1220 	} else {
1221 		if (ret == -ENOMEM)
1222 			ret = VM_FAULT_OOM;
1223 		else
1224 			ret = VM_FAULT_SIGBUS;
1225 	}
1226 out:
1227 	dout("page_mkwrite %p %llu~%llu = %d\n", inode, off, len, ret);
1228 	if (ret != VM_FAULT_LOCKED)
1229 		unlock_page(page);
1230 	return ret;
1231 }
1232 
1233 static struct vm_operations_struct ceph_vmops = {
1234 	.fault		= filemap_fault,
1235 	.page_mkwrite	= ceph_page_mkwrite,
1236 	.remap_pages	= generic_file_remap_pages,
1237 };
1238 
1239 int ceph_mmap(struct file *file, struct vm_area_struct *vma)
1240 {
1241 	struct address_space *mapping = file->f_mapping;
1242 
1243 	if (!mapping->a_ops->readpage)
1244 		return -ENOEXEC;
1245 	file_accessed(file);
1246 	vma->vm_ops = &ceph_vmops;
1247 	return 0;
1248 }
1249