blob: 9278e9aba9ba7c3bf5946c7efdd3abfedf166798 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 *
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
22 *
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
25 *
26 * http://www.sgi.com
27 *
28 * For further information regarding this notice, see:
29 *
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
31 */
32
33#include "xfs.h"
34#include "xfs_inum.h"
35#include "xfs_log.h"
36#include "xfs_sb.h"
37#include "xfs_dir.h"
38#include "xfs_dir2.h"
39#include "xfs_trans.h"
40#include "xfs_dmapi.h"
41#include "xfs_mount.h"
42#include "xfs_bmap_btree.h"
43#include "xfs_alloc_btree.h"
44#include "xfs_ialloc_btree.h"
45#include "xfs_alloc.h"
46#include "xfs_btree.h"
47#include "xfs_attr_sf.h"
48#include "xfs_dir_sf.h"
49#include "xfs_dir2_sf.h"
50#include "xfs_dinode.h"
51#include "xfs_inode.h"
52#include "xfs_error.h"
53#include "xfs_rw.h"
54#include "xfs_iomap.h"
55#include <linux/mpage.h>
56#include <linux/writeback.h>
57
58STATIC void xfs_count_page_state(struct page *, int *, int *, int *);
59STATIC void xfs_convert_page(struct inode *, struct page *, xfs_iomap_t *,
60 struct writeback_control *wbc, void *, int, int);
61
62#if defined(XFS_RW_TRACE)
63void
64xfs_page_trace(
65 int tag,
66 struct inode *inode,
67 struct page *page,
68 int mask)
69{
70 xfs_inode_t *ip;
71 bhv_desc_t *bdp;
72 vnode_t *vp = LINVFS_GET_VP(inode);
73 loff_t isize = i_size_read(inode);
74 loff_t offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
75 int delalloc = -1, unmapped = -1, unwritten = -1;
76
77 if (page_has_buffers(page))
78 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
79
80 bdp = vn_bhv_lookup(VN_BHV_HEAD(vp), &xfs_vnodeops);
81 ip = XFS_BHVTOI(bdp);
82 if (!ip->i_rwtrace)
83 return;
84
85 ktrace_enter(ip->i_rwtrace,
86 (void *)((unsigned long)tag),
87 (void *)ip,
88 (void *)inode,
89 (void *)page,
90 (void *)((unsigned long)mask),
91 (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)),
92 (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)),
93 (void *)((unsigned long)((isize >> 32) & 0xffffffff)),
94 (void *)((unsigned long)(isize & 0xffffffff)),
95 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
96 (void *)((unsigned long)(offset & 0xffffffff)),
97 (void *)((unsigned long)delalloc),
98 (void *)((unsigned long)unmapped),
99 (void *)((unsigned long)unwritten),
100 (void *)NULL,
101 (void *)NULL);
102}
103#else
104#define xfs_page_trace(tag, inode, page, mask)
105#endif
106
107void
108linvfs_unwritten_done(
109 struct buffer_head *bh,
110 int uptodate)
111{
112 xfs_buf_t *pb = (xfs_buf_t *)bh->b_private;
113
114 ASSERT(buffer_unwritten(bh));
115 bh->b_end_io = NULL;
116 clear_buffer_unwritten(bh);
117 if (!uptodate)
118 pagebuf_ioerror(pb, EIO);
119 if (atomic_dec_and_test(&pb->pb_io_remaining) == 1) {
120 pagebuf_iodone(pb, 1, 1);
121 }
122 end_buffer_async_write(bh, uptodate);
123}
124
125/*
126 * Issue transactions to convert a buffer range from unwritten
127 * to written extents (buffered IO).
128 */
129STATIC void
130linvfs_unwritten_convert(
131 xfs_buf_t *bp)
132{
133 vnode_t *vp = XFS_BUF_FSPRIVATE(bp, vnode_t *);
134 int error;
135
136 BUG_ON(atomic_read(&bp->pb_hold) < 1);
137 VOP_BMAP(vp, XFS_BUF_OFFSET(bp), XFS_BUF_SIZE(bp),
138 BMAPI_UNWRITTEN, NULL, NULL, error);
139 XFS_BUF_SET_FSPRIVATE(bp, NULL);
140 XFS_BUF_CLR_IODONE_FUNC(bp);
141 XFS_BUF_UNDATAIO(bp);
142 iput(LINVFS_GET_IP(vp));
143 pagebuf_iodone(bp, 0, 0);
144}
145
146/*
147 * Issue transactions to convert a buffer range from unwritten
148 * to written extents (direct IO).
149 */
150STATIC void
151linvfs_unwritten_convert_direct(
152 struct inode *inode,
153 loff_t offset,
154 ssize_t size,
155 void *private)
156{
157 ASSERT(!private || inode == (struct inode *)private);
158
159 /* private indicates an unwritten extent lay beneath this IO */
160 if (private && size > 0) {
161 vnode_t *vp = LINVFS_GET_VP(inode);
162 int error;
163
164 VOP_BMAP(vp, offset, size, BMAPI_UNWRITTEN, NULL, NULL, error);
165 }
166}
167
168STATIC int
169xfs_map_blocks(
170 struct inode *inode,
171 loff_t offset,
172 ssize_t count,
173 xfs_iomap_t *mapp,
174 int flags)
175{
176 vnode_t *vp = LINVFS_GET_VP(inode);
177 int error, nmaps = 1;
178
179 VOP_BMAP(vp, offset, count, flags, mapp, &nmaps, error);
180 if (!error && (flags & (BMAPI_WRITE|BMAPI_ALLOCATE)))
181 VMODIFY(vp);
182 return -error;
183}
184
185/*
186 * Finds the corresponding mapping in block @map array of the
187 * given @offset within a @page.
188 */
189STATIC xfs_iomap_t *
190xfs_offset_to_map(
191 struct page *page,
192 xfs_iomap_t *iomapp,
193 unsigned long offset)
194{
195 loff_t full_offset; /* offset from start of file */
196
197 ASSERT(offset < PAGE_CACHE_SIZE);
198
199 full_offset = page->index; /* NB: using 64bit number */
200 full_offset <<= PAGE_CACHE_SHIFT; /* offset from file start */
201 full_offset += offset; /* offset from page start */
202
203 if (full_offset < iomapp->iomap_offset)
204 return NULL;
205 if (iomapp->iomap_offset + (iomapp->iomap_bsize -1) >= full_offset)
206 return iomapp;
207 return NULL;
208}
209
210STATIC void
211xfs_map_at_offset(
212 struct page *page,
213 struct buffer_head *bh,
214 unsigned long offset,
215 int block_bits,
216 xfs_iomap_t *iomapp)
217{
218 xfs_daddr_t bn;
219 loff_t delta;
220 int sector_shift;
221
222 ASSERT(!(iomapp->iomap_flags & IOMAP_HOLE));
223 ASSERT(!(iomapp->iomap_flags & IOMAP_DELAY));
224 ASSERT(iomapp->iomap_bn != IOMAP_DADDR_NULL);
225
226 delta = page->index;
227 delta <<= PAGE_CACHE_SHIFT;
228 delta += offset;
229 delta -= iomapp->iomap_offset;
230 delta >>= block_bits;
231
232 sector_shift = block_bits - BBSHIFT;
233 bn = iomapp->iomap_bn >> sector_shift;
234 bn += delta;
235 BUG_ON(!bn && !(iomapp->iomap_flags & IOMAP_REALTIME));
236 ASSERT((bn << sector_shift) >= iomapp->iomap_bn);
237
238 lock_buffer(bh);
239 bh->b_blocknr = bn;
240 bh->b_bdev = iomapp->iomap_target->pbr_bdev;
241 set_buffer_mapped(bh);
242 clear_buffer_delay(bh);
243}
244
245/*
246 * Look for a page at index which is unlocked and contains our
247 * unwritten extent flagged buffers at its head. Returns page
248 * locked and with an extra reference count, and length of the
249 * unwritten extent component on this page that we can write,
250 * in units of filesystem blocks.
251 */
252STATIC struct page *
253xfs_probe_unwritten_page(
254 struct address_space *mapping,
255 pgoff_t index,
256 xfs_iomap_t *iomapp,
257 xfs_buf_t *pb,
258 unsigned long max_offset,
259 unsigned long *fsbs,
260 unsigned int bbits)
261{
262 struct page *page;
263
264 page = find_trylock_page(mapping, index);
265 if (!page)
266 return NULL;
267 if (PageWriteback(page))
268 goto out;
269
270 if (page->mapping && page_has_buffers(page)) {
271 struct buffer_head *bh, *head;
272 unsigned long p_offset = 0;
273
274 *fsbs = 0;
275 bh = head = page_buffers(page);
276 do {
277 if (!buffer_unwritten(bh) || !buffer_uptodate(bh))
278 break;
279 if (!xfs_offset_to_map(page, iomapp, p_offset))
280 break;
281 if (p_offset >= max_offset)
282 break;
283 xfs_map_at_offset(page, bh, p_offset, bbits, iomapp);
284 set_buffer_unwritten_io(bh);
285 bh->b_private = pb;
286 p_offset += bh->b_size;
287 (*fsbs)++;
288 } while ((bh = bh->b_this_page) != head);
289
290 if (p_offset)
291 return page;
292 }
293
294out:
295 unlock_page(page);
296 return NULL;
297}
298
299/*
300 * Look for a page at index which is unlocked and not mapped
301 * yet - clustering for mmap write case.
302 */
303STATIC unsigned int
304xfs_probe_unmapped_page(
305 struct address_space *mapping,
306 pgoff_t index,
307 unsigned int pg_offset)
308{
309 struct page *page;
310 int ret = 0;
311
312 page = find_trylock_page(mapping, index);
313 if (!page)
314 return 0;
315 if (PageWriteback(page))
316 goto out;
317
318 if (page->mapping && PageDirty(page)) {
319 if (page_has_buffers(page)) {
320 struct buffer_head *bh, *head;
321
322 bh = head = page_buffers(page);
323 do {
324 if (buffer_mapped(bh) || !buffer_uptodate(bh))
325 break;
326 ret += bh->b_size;
327 if (ret >= pg_offset)
328 break;
329 } while ((bh = bh->b_this_page) != head);
330 } else
331 ret = PAGE_CACHE_SIZE;
332 }
333
334out:
335 unlock_page(page);
336 return ret;
337}
338
339STATIC unsigned int
340xfs_probe_unmapped_cluster(
341 struct inode *inode,
342 struct page *startpage,
343 struct buffer_head *bh,
344 struct buffer_head *head)
345{
346 pgoff_t tindex, tlast, tloff;
347 unsigned int pg_offset, len, total = 0;
348 struct address_space *mapping = inode->i_mapping;
349
350 /* First sum forwards in this page */
351 do {
352 if (buffer_mapped(bh))
353 break;
354 total += bh->b_size;
355 } while ((bh = bh->b_this_page) != head);
356
357 /* If we reached the end of the page, sum forwards in
358 * following pages.
359 */
360 if (bh == head) {
361 tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT;
362 /* Prune this back to avoid pathological behavior */
363 tloff = min(tlast, startpage->index + 64);
364 for (tindex = startpage->index + 1; tindex < tloff; tindex++) {
365 len = xfs_probe_unmapped_page(mapping, tindex,
366 PAGE_CACHE_SIZE);
367 if (!len)
368 return total;
369 total += len;
370 }
371 if (tindex == tlast &&
372 (pg_offset = i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
373 total += xfs_probe_unmapped_page(mapping,
374 tindex, pg_offset);
375 }
376 }
377 return total;
378}
379
380/*
381 * Probe for a given page (index) in the inode and test if it is delayed
382 * and without unwritten buffers. Returns page locked and with an extra
383 * reference count.
384 */
385STATIC struct page *
386xfs_probe_delalloc_page(
387 struct inode *inode,
388 pgoff_t index)
389{
390 struct page *page;
391
392 page = find_trylock_page(inode->i_mapping, index);
393 if (!page)
394 return NULL;
395 if (PageWriteback(page))
396 goto out;
397
398 if (page->mapping && page_has_buffers(page)) {
399 struct buffer_head *bh, *head;
400 int acceptable = 0;
401
402 bh = head = page_buffers(page);
403 do {
404 if (buffer_unwritten(bh)) {
405 acceptable = 0;
406 break;
407 } else if (buffer_delay(bh)) {
408 acceptable = 1;
409 }
410 } while ((bh = bh->b_this_page) != head);
411
412 if (acceptable)
413 return page;
414 }
415
416out:
417 unlock_page(page);
418 return NULL;
419}
420
421STATIC int
422xfs_map_unwritten(
423 struct inode *inode,
424 struct page *start_page,
425 struct buffer_head *head,
426 struct buffer_head *curr,
427 unsigned long p_offset,
428 int block_bits,
429 xfs_iomap_t *iomapp,
430 struct writeback_control *wbc,
431 int startio,
432 int all_bh)
433{
434 struct buffer_head *bh = curr;
435 xfs_iomap_t *tmp;
436 xfs_buf_t *pb;
437 loff_t offset, size;
438 unsigned long nblocks = 0;
439
440 offset = start_page->index;
441 offset <<= PAGE_CACHE_SHIFT;
442 offset += p_offset;
443
444 /* get an "empty" pagebuf to manage IO completion
445 * Proper values will be set before returning */
446 pb = pagebuf_lookup(iomapp->iomap_target, 0, 0, 0);
447 if (!pb)
448 return -EAGAIN;
449
450 /* Take a reference to the inode to prevent it from
451 * being reclaimed while we have outstanding unwritten
452 * extent IO on it.
453 */
454 if ((igrab(inode)) != inode) {
455 pagebuf_free(pb);
456 return -EAGAIN;
457 }
458
459 /* Set the count to 1 initially, this will stop an I/O
460 * completion callout which happens before we have started
461 * all the I/O from calling pagebuf_iodone too early.
462 */
463 atomic_set(&pb->pb_io_remaining, 1);
464
465 /* First map forwards in the page consecutive buffers
466 * covering this unwritten extent
467 */
468 do {
469 if (!buffer_unwritten(bh))
470 break;
471 tmp = xfs_offset_to_map(start_page, iomapp, p_offset);
472 if (!tmp)
473 break;
474 xfs_map_at_offset(start_page, bh, p_offset, block_bits, iomapp);
475 set_buffer_unwritten_io(bh);
476 bh->b_private = pb;
477 p_offset += bh->b_size;
478 nblocks++;
479 } while ((bh = bh->b_this_page) != head);
480
481 atomic_add(nblocks, &pb->pb_io_remaining);
482
483 /* If we reached the end of the page, map forwards in any
484 * following pages which are also covered by this extent.
485 */
486 if (bh == head) {
487 struct address_space *mapping = inode->i_mapping;
488 pgoff_t tindex, tloff, tlast;
489 unsigned long bs;
490 unsigned int pg_offset, bbits = inode->i_blkbits;
491 struct page *page;
492
493 tlast = i_size_read(inode) >> PAGE_CACHE_SHIFT;
494 tloff = (iomapp->iomap_offset + iomapp->iomap_bsize) >> PAGE_CACHE_SHIFT;
495 tloff = min(tlast, tloff);
496 for (tindex = start_page->index + 1; tindex < tloff; tindex++) {
497 page = xfs_probe_unwritten_page(mapping,
498 tindex, iomapp, pb,
499 PAGE_CACHE_SIZE, &bs, bbits);
500 if (!page)
501 break;
502 nblocks += bs;
503 atomic_add(bs, &pb->pb_io_remaining);
504 xfs_convert_page(inode, page, iomapp, wbc, pb,
505 startio, all_bh);
506 /* stop if converting the next page might add
507 * enough blocks that the corresponding byte
508 * count won't fit in our ulong page buf length */
509 if (nblocks >= ((ULONG_MAX - PAGE_SIZE) >> block_bits))
510 goto enough;
511 }
512
513 if (tindex == tlast &&
514 (pg_offset = (i_size_read(inode) & (PAGE_CACHE_SIZE - 1)))) {
515 page = xfs_probe_unwritten_page(mapping,
516 tindex, iomapp, pb,
517 pg_offset, &bs, bbits);
518 if (page) {
519 nblocks += bs;
520 atomic_add(bs, &pb->pb_io_remaining);
521 xfs_convert_page(inode, page, iomapp, wbc, pb,
522 startio, all_bh);
523 if (nblocks >= ((ULONG_MAX - PAGE_SIZE) >> block_bits))
524 goto enough;
525 }
526 }
527 }
528
529enough:
530 size = nblocks; /* NB: using 64bit number here */
531 size <<= block_bits; /* convert fsb's to byte range */
532
533 XFS_BUF_DATAIO(pb);
534 XFS_BUF_ASYNC(pb);
535 XFS_BUF_SET_SIZE(pb, size);
536 XFS_BUF_SET_COUNT(pb, size);
537 XFS_BUF_SET_OFFSET(pb, offset);
538 XFS_BUF_SET_FSPRIVATE(pb, LINVFS_GET_VP(inode));
539 XFS_BUF_SET_IODONE_FUNC(pb, linvfs_unwritten_convert);
540
541 if (atomic_dec_and_test(&pb->pb_io_remaining) == 1) {
542 pagebuf_iodone(pb, 1, 1);
543 }
544
545 return 0;
546}
547
548STATIC void
549xfs_submit_page(
550 struct page *page,
551 struct writeback_control *wbc,
552 struct buffer_head *bh_arr[],
553 int bh_count,
554 int probed_page,
555 int clear_dirty)
556{
557 struct buffer_head *bh;
558 int i;
559
560 BUG_ON(PageWriteback(page));
Nathan Scott24e17b52005-05-05 13:33:20 -0700561 if (bh_count)
562 set_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (clear_dirty)
564 clear_page_dirty(page);
565 unlock_page(page);
566
567 if (bh_count) {
568 for (i = 0; i < bh_count; i++) {
569 bh = bh_arr[i];
570 mark_buffer_async_write(bh);
571 if (buffer_unwritten(bh))
572 set_buffer_unwritten_io(bh);
573 set_buffer_uptodate(bh);
574 clear_buffer_dirty(bh);
575 }
576
577 for (i = 0; i < bh_count; i++)
578 submit_bh(WRITE, bh_arr[i]);
579
580 if (probed_page && clear_dirty)
581 wbc->nr_to_write--; /* Wrote an "extra" page */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583}
584
585/*
586 * Allocate & map buffers for page given the extent map. Write it out.
587 * except for the original page of a writepage, this is called on
588 * delalloc/unwritten pages only, for the original page it is possible
589 * that the page has no mapping at all.
590 */
591STATIC void
592xfs_convert_page(
593 struct inode *inode,
594 struct page *page,
595 xfs_iomap_t *iomapp,
596 struct writeback_control *wbc,
597 void *private,
598 int startio,
599 int all_bh)
600{
601 struct buffer_head *bh_arr[MAX_BUF_PER_PAGE], *bh, *head;
602 xfs_iomap_t *mp = iomapp, *tmp;
Nathan Scott24e17b52005-05-05 13:33:20 -0700603 unsigned long offset, end_offset;
604 int index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 int bbits = inode->i_blkbits;
Nathan Scott24e17b52005-05-05 13:33:20 -0700606 int len, page_dirty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Nathan Scott24e17b52005-05-05 13:33:20 -0700608 end_offset = (i_size_read(inode) & (PAGE_CACHE_SIZE - 1));
609
610 /*
611 * page_dirty is initially a count of buffers on the page before
612 * EOF and is decrememted as we move each into a cleanable state.
613 */
614 len = 1 << inode->i_blkbits;
615 end_offset = max(end_offset, PAGE_CACHE_SIZE);
616 end_offset = roundup(end_offset, len);
617 page_dirty = end_offset / len;
618
619 offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 bh = head = page_buffers(page);
621 do {
Nathan Scott24e17b52005-05-05 13:33:20 -0700622 if (offset >= end_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 break;
624 if (!(PageUptodate(page) || buffer_uptodate(bh)))
625 continue;
626 if (buffer_mapped(bh) && all_bh &&
627 !(buffer_unwritten(bh) || buffer_delay(bh))) {
628 if (startio) {
629 lock_buffer(bh);
630 bh_arr[index++] = bh;
Nathan Scott24e17b52005-05-05 13:33:20 -0700631 page_dirty--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 }
633 continue;
634 }
635 tmp = xfs_offset_to_map(page, mp, offset);
636 if (!tmp)
637 continue;
638 ASSERT(!(tmp->iomap_flags & IOMAP_HOLE));
639 ASSERT(!(tmp->iomap_flags & IOMAP_DELAY));
640
641 /* If this is a new unwritten extent buffer (i.e. one
642 * that we haven't passed in private data for, we must
643 * now map this buffer too.
644 */
645 if (buffer_unwritten(bh) && !bh->b_end_io) {
646 ASSERT(tmp->iomap_flags & IOMAP_UNWRITTEN);
647 xfs_map_unwritten(inode, page, head, bh, offset,
648 bbits, tmp, wbc, startio, all_bh);
649 } else if (! (buffer_unwritten(bh) && buffer_locked(bh))) {
650 xfs_map_at_offset(page, bh, offset, bbits, tmp);
651 if (buffer_unwritten(bh)) {
652 set_buffer_unwritten_io(bh);
653 bh->b_private = private;
654 ASSERT(private);
655 }
656 }
657 if (startio) {
658 bh_arr[index++] = bh;
659 } else {
660 set_buffer_dirty(bh);
661 unlock_buffer(bh);
662 mark_buffer_dirty(bh);
663 }
Nathan Scott24e17b52005-05-05 13:33:20 -0700664 page_dirty--;
665 } while (offset += len, (bh = bh->b_this_page) != head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Nathan Scott24e17b52005-05-05 13:33:20 -0700667 if (startio && index) {
668 xfs_submit_page(page, wbc, bh_arr, index, 1, !page_dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 } else {
670 unlock_page(page);
671 }
672}
673
674/*
675 * Convert & write out a cluster of pages in the same extent as defined
676 * by mp and following the start page.
677 */
678STATIC void
679xfs_cluster_write(
680 struct inode *inode,
681 pgoff_t tindex,
682 xfs_iomap_t *iomapp,
683 struct writeback_control *wbc,
684 int startio,
685 int all_bh,
686 pgoff_t tlast)
687{
688 struct page *page;
689
690 for (; tindex <= tlast; tindex++) {
691 page = xfs_probe_delalloc_page(inode, tindex);
692 if (!page)
693 break;
694 xfs_convert_page(inode, page, iomapp, wbc, NULL,
695 startio, all_bh);
696 }
697}
698
699/*
700 * Calling this without startio set means we are being asked to make a dirty
701 * page ready for freeing it's buffers. When called with startio set then
702 * we are coming from writepage.
703 *
704 * When called with startio set it is important that we write the WHOLE
705 * page if possible.
706 * The bh->b_state's cannot know if any of the blocks or which block for
707 * that matter are dirty due to mmap writes, and therefore bh uptodate is
708 * only vaild if the page itself isn't completely uptodate. Some layers
709 * may clear the page dirty flag prior to calling write page, under the
710 * assumption the entire page will be written out; by not writing out the
711 * whole page the page can be reused before all valid dirty data is
712 * written out. Note: in the case of a page that has been dirty'd by
713 * mapwrite and but partially setup by block_prepare_write the
714 * bh->b_states's will not agree and only ones setup by BPW/BCW will have
715 * valid state, thus the whole page must be written out thing.
716 */
717
718STATIC int
719xfs_page_state_convert(
720 struct inode *inode,
721 struct page *page,
722 struct writeback_control *wbc,
723 int startio,
724 int unmapped) /* also implies page uptodate */
725{
726 struct buffer_head *bh_arr[MAX_BUF_PER_PAGE], *bh, *head;
727 xfs_iomap_t *iomp, iomap;
728 loff_t offset;
729 unsigned long p_offset = 0;
730 __uint64_t end_offset;
731 pgoff_t end_index, last_index, tlast;
732 int len, err, i, cnt = 0, uptodate = 1;
Daniel Moore3ba08152005-05-05 13:31:34 -0700733 int flags;
Nathan Scott775bf6c2005-05-05 13:33:01 -0700734 int page_dirty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Daniel Moore3ba08152005-05-05 13:31:34 -0700736 /* wait for other IO threads? */
737 flags = (startio && wbc->sync_mode != WB_SYNC_NONE) ? 0 : BMAPI_TRYLOCK;
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 /* Is this page beyond the end of the file? */
740 offset = i_size_read(inode);
741 end_index = offset >> PAGE_CACHE_SHIFT;
742 last_index = (offset - 1) >> PAGE_CACHE_SHIFT;
743 if (page->index >= end_index) {
744 if ((page->index >= end_index + 1) ||
745 !(i_size_read(inode) & (PAGE_CACHE_SIZE - 1))) {
746 err = -EIO;
747 goto error;
748 }
749 }
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 end_offset = min_t(unsigned long long,
Nathan Scott24e17b52005-05-05 13:33:20 -0700752 (loff_t)(page->index + 1) << PAGE_CACHE_SHIFT, offset);
753 offset = (loff_t)page->index << PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 /*
Nathan Scott24e17b52005-05-05 13:33:20 -0700756 * page_dirty is initially a count of buffers on the page before
757 * EOF and is decrememted as we move each into a cleanable state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 */
Nathan Scott24e17b52005-05-05 13:33:20 -0700759 len = 1 << inode->i_blkbits;
760 p_offset = max(p_offset, PAGE_CACHE_SIZE);
761 p_offset = roundup(p_offset, len);
762 page_dirty = p_offset / len;
763
764 iomp = NULL;
765 p_offset = 0;
766 bh = head = page_buffers(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 do {
769 if (offset >= end_offset)
770 break;
771 if (!buffer_uptodate(bh))
772 uptodate = 0;
773 if (!(PageUptodate(page) || buffer_uptodate(bh)) && !startio)
774 continue;
775
776 if (iomp) {
777 iomp = xfs_offset_to_map(page, &iomap, p_offset);
778 }
779
780 /*
781 * First case, map an unwritten extent and prepare for
782 * extent state conversion transaction on completion.
783 */
784 if (buffer_unwritten(bh)) {
785 if (!startio)
786 continue;
787 if (!iomp) {
788 err = xfs_map_blocks(inode, offset, len, &iomap,
789 BMAPI_READ|BMAPI_IGNSTATE);
790 if (err) {
791 goto error;
792 }
793 iomp = xfs_offset_to_map(page, &iomap,
794 p_offset);
795 }
796 if (iomp) {
797 if (!bh->b_end_io) {
798 err = xfs_map_unwritten(inode, page,
799 head, bh, p_offset,
800 inode->i_blkbits, iomp,
801 wbc, startio, unmapped);
802 if (err) {
803 goto error;
804 }
805 } else {
806 set_bit(BH_Lock, &bh->b_state);
807 }
808 BUG_ON(!buffer_locked(bh));
809 bh_arr[cnt++] = bh;
810 page_dirty--;
811 }
812 /*
813 * Second case, allocate space for a delalloc buffer.
814 * We can return EAGAIN here in the release page case.
815 */
816 } else if (buffer_delay(bh)) {
817 if (!iomp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 err = xfs_map_blocks(inode, offset, len, &iomap,
819 BMAPI_ALLOCATE | flags);
820 if (err) {
821 goto error;
822 }
823 iomp = xfs_offset_to_map(page, &iomap,
824 p_offset);
825 }
826 if (iomp) {
827 xfs_map_at_offset(page, bh, p_offset,
828 inode->i_blkbits, iomp);
829 if (startio) {
830 bh_arr[cnt++] = bh;
831 } else {
832 set_buffer_dirty(bh);
833 unlock_buffer(bh);
834 mark_buffer_dirty(bh);
835 }
836 page_dirty--;
837 }
838 } else if ((buffer_uptodate(bh) || PageUptodate(page)) &&
839 (unmapped || startio)) {
840
841 if (!buffer_mapped(bh)) {
842 int size;
843
844 /*
845 * Getting here implies an unmapped buffer
846 * was found, and we are in a path where we
847 * need to write the whole page out.
848 */
849 if (!iomp) {
850 size = xfs_probe_unmapped_cluster(
851 inode, page, bh, head);
852 err = xfs_map_blocks(inode, offset,
853 size, &iomap,
854 BMAPI_WRITE|BMAPI_MMAP);
855 if (err) {
856 goto error;
857 }
858 iomp = xfs_offset_to_map(page, &iomap,
859 p_offset);
860 }
861 if (iomp) {
862 xfs_map_at_offset(page,
863 bh, p_offset,
864 inode->i_blkbits, iomp);
865 if (startio) {
866 bh_arr[cnt++] = bh;
867 } else {
868 set_buffer_dirty(bh);
869 unlock_buffer(bh);
870 mark_buffer_dirty(bh);
871 }
872 page_dirty--;
873 }
874 } else if (startio) {
875 if (buffer_uptodate(bh) &&
876 !test_and_set_bit(BH_Lock, &bh->b_state)) {
877 bh_arr[cnt++] = bh;
878 page_dirty--;
879 }
880 }
881 }
882 } while (offset += len, p_offset += len,
883 ((bh = bh->b_this_page) != head));
884
885 if (uptodate && bh == head)
886 SetPageUptodate(page);
887
Nathan Scott24e17b52005-05-05 13:33:20 -0700888 if (startio) {
889 WARN_ON(page_dirty);
890 xfs_submit_page(page, wbc, bh_arr, cnt, 0, !page_dirty);
891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 if (iomp) {
Nathan Scott775bf6c2005-05-05 13:33:01 -0700894 offset = (iomp->iomap_offset + iomp->iomap_bsize - 1) >>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 PAGE_CACHE_SHIFT;
Nathan Scott775bf6c2005-05-05 13:33:01 -0700896 tlast = min_t(pgoff_t, offset, last_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 xfs_cluster_write(inode, page->index + 1, iomp, wbc,
898 startio, unmapped, tlast);
899 }
900
901 return page_dirty;
902
903error:
904 for (i = 0; i < cnt; i++) {
905 unlock_buffer(bh_arr[i]);
906 }
907
908 /*
909 * If it's delalloc and we have nowhere to put it,
910 * throw it away, unless the lower layers told
911 * us to try again.
912 */
913 if (err != -EAGAIN) {
914 if (!unmapped) {
915 block_invalidatepage(page, 0);
916 }
917 ClearPageUptodate(page);
918 }
919 return err;
920}
921
922STATIC int
923__linvfs_get_block(
924 struct inode *inode,
925 sector_t iblock,
926 unsigned long blocks,
927 struct buffer_head *bh_result,
928 int create,
929 int direct,
930 bmapi_flags_t flags)
931{
932 vnode_t *vp = LINVFS_GET_VP(inode);
933 xfs_iomap_t iomap;
934 int retpbbm = 1;
935 int error;
936 ssize_t size;
937 loff_t offset = (loff_t)iblock << inode->i_blkbits;
938
939 if (blocks)
940 size = blocks << inode->i_blkbits;
941 else
942 size = 1 << inode->i_blkbits;
943
944 VOP_BMAP(vp, offset, size,
945 create ? flags : BMAPI_READ, &iomap, &retpbbm, error);
946 if (error)
947 return -error;
948
949 if (retpbbm == 0)
950 return 0;
951
952 if (iomap.iomap_bn != IOMAP_DADDR_NULL) {
953 xfs_daddr_t bn;
954 loff_t delta;
955
956 /* For unwritten extents do not report a disk address on
957 * the read case (treat as if we're reading into a hole).
958 */
959 if (create || !(iomap.iomap_flags & IOMAP_UNWRITTEN)) {
960 delta = offset - iomap.iomap_offset;
961 delta >>= inode->i_blkbits;
962
963 bn = iomap.iomap_bn >> (inode->i_blkbits - BBSHIFT);
964 bn += delta;
965 BUG_ON(!bn && !(iomap.iomap_flags & IOMAP_REALTIME));
966 bh_result->b_blocknr = bn;
967 set_buffer_mapped(bh_result);
968 }
969 if (create && (iomap.iomap_flags & IOMAP_UNWRITTEN)) {
970 if (direct)
971 bh_result->b_private = inode;
972 set_buffer_unwritten(bh_result);
973 set_buffer_delay(bh_result);
974 }
975 }
976
977 /* If this is a realtime file, data might be on a new device */
978 bh_result->b_bdev = iomap.iomap_target->pbr_bdev;
979
980 /* If we previously allocated a block out beyond eof and
981 * we are now coming back to use it then we will need to
982 * flag it as new even if it has a disk address.
983 */
984 if (create &&
985 ((!buffer_mapped(bh_result) && !buffer_uptodate(bh_result)) ||
986 (offset >= i_size_read(inode)) || (iomap.iomap_flags & IOMAP_NEW))) {
987 set_buffer_new(bh_result);
988 }
989
990 if (iomap.iomap_flags & IOMAP_DELAY) {
991 BUG_ON(direct);
992 if (create) {
993 set_buffer_uptodate(bh_result);
994 set_buffer_mapped(bh_result);
995 set_buffer_delay(bh_result);
996 }
997 }
998
999 if (blocks) {
1000 bh_result->b_size = (ssize_t)min(
1001 (loff_t)(iomap.iomap_bsize - iomap.iomap_delta),
1002 (loff_t)(blocks << inode->i_blkbits));
1003 }
1004
1005 return 0;
1006}
1007
1008int
1009linvfs_get_block(
1010 struct inode *inode,
1011 sector_t iblock,
1012 struct buffer_head *bh_result,
1013 int create)
1014{
1015 return __linvfs_get_block(inode, iblock, 0, bh_result,
1016 create, 0, BMAPI_WRITE);
1017}
1018
1019STATIC int
1020linvfs_get_blocks_direct(
1021 struct inode *inode,
1022 sector_t iblock,
1023 unsigned long max_blocks,
1024 struct buffer_head *bh_result,
1025 int create)
1026{
1027 return __linvfs_get_block(inode, iblock, max_blocks, bh_result,
1028 create, 1, BMAPI_WRITE|BMAPI_DIRECT);
1029}
1030
1031STATIC ssize_t
1032linvfs_direct_IO(
1033 int rw,
1034 struct kiocb *iocb,
1035 const struct iovec *iov,
1036 loff_t offset,
1037 unsigned long nr_segs)
1038{
1039 struct file *file = iocb->ki_filp;
1040 struct inode *inode = file->f_mapping->host;
1041 vnode_t *vp = LINVFS_GET_VP(inode);
1042 xfs_iomap_t iomap;
1043 int maps = 1;
1044 int error;
1045
1046 VOP_BMAP(vp, offset, 0, BMAPI_DEVICE, &iomap, &maps, error);
1047 if (error)
1048 return -error;
1049
1050 return blockdev_direct_IO_own_locking(rw, iocb, inode,
1051 iomap.iomap_target->pbr_bdev,
1052 iov, offset, nr_segs,
1053 linvfs_get_blocks_direct,
1054 linvfs_unwritten_convert_direct);
1055}
1056
1057
1058STATIC sector_t
1059linvfs_bmap(
1060 struct address_space *mapping,
1061 sector_t block)
1062{
1063 struct inode *inode = (struct inode *)mapping->host;
1064 vnode_t *vp = LINVFS_GET_VP(inode);
1065 int error;
1066
1067 vn_trace_entry(vp, "linvfs_bmap", (inst_t *)__return_address);
1068
1069 VOP_RWLOCK(vp, VRWLOCK_READ);
1070 VOP_FLUSH_PAGES(vp, (xfs_off_t)0, -1, 0, FI_REMAPF, error);
1071 VOP_RWUNLOCK(vp, VRWLOCK_READ);
1072 return generic_block_bmap(mapping, block, linvfs_get_block);
1073}
1074
1075STATIC int
1076linvfs_readpage(
1077 struct file *unused,
1078 struct page *page)
1079{
1080 return mpage_readpage(page, linvfs_get_block);
1081}
1082
1083STATIC int
1084linvfs_readpages(
1085 struct file *unused,
1086 struct address_space *mapping,
1087 struct list_head *pages,
1088 unsigned nr_pages)
1089{
1090 return mpage_readpages(mapping, pages, nr_pages, linvfs_get_block);
1091}
1092
1093STATIC void
1094xfs_count_page_state(
1095 struct page *page,
1096 int *delalloc,
1097 int *unmapped,
1098 int *unwritten)
1099{
1100 struct buffer_head *bh, *head;
1101
1102 *delalloc = *unmapped = *unwritten = 0;
1103
1104 bh = head = page_buffers(page);
1105 do {
1106 if (buffer_uptodate(bh) && !buffer_mapped(bh))
1107 (*unmapped) = 1;
1108 else if (buffer_unwritten(bh) && !buffer_delay(bh))
1109 clear_buffer_unwritten(bh);
1110 else if (buffer_unwritten(bh))
1111 (*unwritten) = 1;
1112 else if (buffer_delay(bh))
1113 (*delalloc) = 1;
1114 } while ((bh = bh->b_this_page) != head);
1115}
1116
1117
1118/*
1119 * writepage: Called from one of two places:
1120 *
1121 * 1. we are flushing a delalloc buffer head.
1122 *
1123 * 2. we are writing out a dirty page. Typically the page dirty
1124 * state is cleared before we get here. In this case is it
1125 * conceivable we have no buffer heads.
1126 *
1127 * For delalloc space on the page we need to allocate space and
1128 * flush it. For unmapped buffer heads on the page we should
1129 * allocate space if the page is uptodate. For any other dirty
1130 * buffer heads on the page we should flush them.
1131 *
1132 * If we detect that a transaction would be required to flush
1133 * the page, we have to check the process flags first, if we
1134 * are already in a transaction or disk I/O during allocations
1135 * is off, we need to fail the writepage and redirty the page.
1136 */
1137
1138STATIC int
1139linvfs_writepage(
1140 struct page *page,
1141 struct writeback_control *wbc)
1142{
1143 int error;
1144 int need_trans;
1145 int delalloc, unmapped, unwritten;
1146 struct inode *inode = page->mapping->host;
1147
1148 xfs_page_trace(XFS_WRITEPAGE_ENTER, inode, page, 0);
1149
1150 /*
1151 * We need a transaction if:
1152 * 1. There are delalloc buffers on the page
1153 * 2. The page is uptodate and we have unmapped buffers
1154 * 3. The page is uptodate and we have no buffers
1155 * 4. There are unwritten buffers on the page
1156 */
1157
1158 if (!page_has_buffers(page)) {
1159 unmapped = 1;
1160 need_trans = 1;
1161 } else {
1162 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1163 if (!PageUptodate(page))
1164 unmapped = 0;
1165 need_trans = delalloc + unmapped + unwritten;
1166 }
1167
1168 /*
1169 * If we need a transaction and the process flags say
1170 * we are already in a transaction, or no IO is allowed
1171 * then mark the page dirty again and leave the page
1172 * as is.
1173 */
1174 if (PFLAGS_TEST_FSTRANS() && need_trans)
1175 goto out_fail;
1176
1177 /*
1178 * Delay hooking up buffer heads until we have
1179 * made our go/no-go decision.
1180 */
1181 if (!page_has_buffers(page))
1182 create_empty_buffers(page, 1 << inode->i_blkbits, 0);
1183
1184 /*
1185 * Convert delayed allocate, unwritten or unmapped space
1186 * to real space and flush out to disk.
1187 */
1188 error = xfs_page_state_convert(inode, page, wbc, 1, unmapped);
1189 if (error == -EAGAIN)
1190 goto out_fail;
1191 if (unlikely(error < 0))
1192 goto out_unlock;
1193
1194 return 0;
1195
1196out_fail:
1197 redirty_page_for_writepage(wbc, page);
1198 unlock_page(page);
1199 return 0;
1200out_unlock:
1201 unlock_page(page);
1202 return error;
1203}
1204
1205/*
1206 * Called to move a page into cleanable state - and from there
1207 * to be released. Possibly the page is already clean. We always
1208 * have buffer heads in this call.
1209 *
1210 * Returns 0 if the page is ok to release, 1 otherwise.
1211 *
1212 * Possible scenarios are:
1213 *
1214 * 1. We are being called to release a page which has been written
1215 * to via regular I/O. buffer heads will be dirty and possibly
1216 * delalloc. If no delalloc buffer heads in this case then we
1217 * can just return zero.
1218 *
1219 * 2. We are called to release a page which has been written via
1220 * mmap, all we need to do is ensure there is no delalloc
1221 * state in the buffer heads, if not we can let the caller
1222 * free them and we should come back later via writepage.
1223 */
1224STATIC int
1225linvfs_release_page(
1226 struct page *page,
1227 int gfp_mask)
1228{
1229 struct inode *inode = page->mapping->host;
1230 int dirty, delalloc, unmapped, unwritten;
1231 struct writeback_control wbc = {
1232 .sync_mode = WB_SYNC_ALL,
1233 .nr_to_write = 1,
1234 };
1235
1236 xfs_page_trace(XFS_RELEASEPAGE_ENTER, inode, page, gfp_mask);
1237
1238 xfs_count_page_state(page, &delalloc, &unmapped, &unwritten);
1239 if (!delalloc && !unwritten)
1240 goto free_buffers;
1241
1242 if (!(gfp_mask & __GFP_FS))
1243 return 0;
1244
1245 /* If we are already inside a transaction or the thread cannot
1246 * do I/O, we cannot release this page.
1247 */
1248 if (PFLAGS_TEST_FSTRANS())
1249 return 0;
1250
1251 /*
1252 * Convert delalloc space to real space, do not flush the
1253 * data out to disk, that will be done by the caller.
1254 * Never need to allocate space here - we will always
1255 * come back to writepage in that case.
1256 */
1257 dirty = xfs_page_state_convert(inode, page, &wbc, 0, 0);
1258 if (dirty == 0 && !unwritten)
1259 goto free_buffers;
1260 return 0;
1261
1262free_buffers:
1263 return try_to_free_buffers(page);
1264}
1265
1266STATIC int
1267linvfs_prepare_write(
1268 struct file *file,
1269 struct page *page,
1270 unsigned int from,
1271 unsigned int to)
1272{
1273 return block_prepare_write(page, from, to, linvfs_get_block);
1274}
1275
1276struct address_space_operations linvfs_aops = {
1277 .readpage = linvfs_readpage,
1278 .readpages = linvfs_readpages,
1279 .writepage = linvfs_writepage,
1280 .sync_page = block_sync_page,
1281 .releasepage = linvfs_release_page,
1282 .prepare_write = linvfs_prepare_write,
1283 .commit_write = generic_commit_write,
1284 .bmap = linvfs_bmap,
1285 .direct_IO = linvfs_direct_IO,
1286};