blob: 997002218228424a39c6c415225368e41c076aea [file] [log] [blame]
Theodore Ts'obd2d0212010-10-27 21:30:10 -04001/*
2 * linux/fs/ext4/page-io.c
3 *
4 * This contains the new page_io functions for ext4
5 *
6 * Written by Theodore Ts'o, 2010.
7 */
8
Theodore Ts'obd2d0212010-10-27 21:30:10 -04009#include <linux/fs.h>
10#include <linux/time.h>
11#include <linux/jbd2.h>
12#include <linux/highuid.h>
13#include <linux/pagemap.h>
14#include <linux/quotaops.h>
15#include <linux/string.h>
16#include <linux/buffer_head.h>
17#include <linux/writeback.h>
18#include <linux/pagevec.h>
19#include <linux/mpage.h>
20#include <linux/namei.h>
21#include <linux/uio.h>
22#include <linux/bio.h>
23#include <linux/workqueue.h>
24#include <linux/kernel.h>
25#include <linux/slab.h>
26
27#include "ext4_jbd2.h"
28#include "xattr.h"
29#include "acl.h"
30#include "ext4_extents.h"
31
32static struct kmem_cache *io_page_cachep, *io_end_cachep;
33
Theodore Ts'o5dabfc72010-10-27 21:30:14 -040034int __init ext4_init_pageio(void)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040035{
36 io_page_cachep = KMEM_CACHE(ext4_io_page, SLAB_RECLAIM_ACCOUNT);
37 if (io_page_cachep == NULL)
38 return -ENOMEM;
39 io_end_cachep = KMEM_CACHE(ext4_io_end, SLAB_RECLAIM_ACCOUNT);
Dan Carpenter13195182011-01-10 12:10:44 -050040 if (io_end_cachep == NULL) {
Theodore Ts'obd2d0212010-10-27 21:30:10 -040041 kmem_cache_destroy(io_page_cachep);
42 return -ENOMEM;
43 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -040044 return 0;
45}
46
Theodore Ts'o5dabfc72010-10-27 21:30:14 -040047void ext4_exit_pageio(void)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040048{
49 kmem_cache_destroy(io_end_cachep);
50 kmem_cache_destroy(io_page_cachep);
51}
52
Theodore Ts'of7ad6d22010-11-08 13:43:33 -050053void ext4_ioend_wait(struct inode *inode)
54{
Eric Sandeene9e3bce2011-02-12 08:17:34 -050055 wait_queue_head_t *wq = ext4_ioend_wq(inode);
Theodore Ts'of7ad6d22010-11-08 13:43:33 -050056
57 wait_event(*wq, (atomic_read(&EXT4_I(inode)->i_ioend_count) == 0));
58}
59
Theodore Ts'o83668e72010-11-08 13:45:33 -050060static void put_io_page(struct ext4_io_page *io_page)
61{
62 if (atomic_dec_and_test(&io_page->p_count)) {
Linus Torvalds6268b322012-03-29 17:00:56 -070063 end_page_writeback(io_page->p_page);
Theodore Ts'o83668e72010-11-08 13:45:33 -050064 put_page(io_page->p_page);
65 kmem_cache_free(io_page_cachep, io_page);
66 }
67}
68
Theodore Ts'obd2d0212010-10-27 21:30:10 -040069void ext4_free_io_end(ext4_io_end_t *io)
70{
71 int i;
72
73 BUG_ON(!io);
Dmitry Monakhov82e54222012-09-28 23:36:25 -040074 BUG_ON(io->flag & EXT4_IO_END_UNWRITTEN);
75
Theodore Ts'obd2d0212010-10-27 21:30:10 -040076 if (io->page)
77 put_page(io->page);
Theodore Ts'o83668e72010-11-08 13:45:33 -050078 for (i = 0; i < io->num_io_pages; i++)
79 put_io_page(io->pages[i]);
Theodore Ts'obd2d0212010-10-27 21:30:10 -040080 io->num_io_pages = 0;
Theodore Ts'o4e298022011-10-30 18:41:19 -040081 if (atomic_dec_and_test(&EXT4_I(io->inode)->i_ioend_count))
82 wake_up_all(ext4_ioend_wq(io->inode));
Theodore Ts'obd2d0212010-10-27 21:30:10 -040083 kmem_cache_free(io_end_cachep, io);
84}
85
86/*
87 * check a range of space and convert unwritten extents to written.
Tao Mad73d5042011-10-30 18:26:08 -040088 *
89 * Called with inode->i_mutex; we depend on this when we manipulate
90 * io->flag, since we could otherwise race with ext4_flush_completed_IO()
Theodore Ts'obd2d0212010-10-27 21:30:10 -040091 */
92int ext4_end_io_nolock(ext4_io_end_t *io)
93{
94 struct inode *inode = io->inode;
95 loff_t offset = io->offset;
96 ssize_t size = io->size;
97 int ret = 0;
98
Dmitry Monakhov82e54222012-09-28 23:36:25 -040099 BUG_ON(!(io->flag & EXT4_IO_END_UNWRITTEN));
100
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400101 ext4_debug("ext4_end_io_nolock: io 0x%p from inode %lu,list->next 0x%p,"
102 "list->prev 0x%p\n",
103 io, inode->i_ino, io->list.next, io->list.prev);
104
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400105 ret = ext4_convert_unwritten_extents(inode, offset, size);
106 if (ret < 0) {
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400107 ext4_msg(inode->i_sb, KERN_EMERG,
108 "failed to convert unwritten extents to written "
109 "extents -- potential data loss! "
110 "(inode %lu, offset %llu, size %zd, error %d)",
111 inode->i_ino, offset, size, ret);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400112 }
Dmitry Monakhov82e54222012-09-28 23:36:25 -0400113 io->flag &= ~EXT4_IO_END_UNWRITTEN;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400114 if (io->iocb)
115 aio_complete(io->iocb, io->result, 0);
Eric Sandeene9e3bce2011-02-12 08:17:34 -0500116
Jeff Moyer266991b2012-02-20 17:59:24 -0500117 if (io->flag & EXT4_IO_END_DIRECT)
118 inode_dio_done(inode);
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400119 /* Wake up anyone waiting on unwritten extent conversion */
Dmitry Monakhove27f41e2012-09-28 23:24:52 -0400120 if (atomic_dec_and_test(&EXT4_I(inode)->i_unwritten))
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400121 wake_up_all(ext4_ioend_wq(io->inode));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400122 return ret;
123}
124
125/*
126 * work on completed aio dio IO, to convert unwritten extents to extents
127 */
128static void ext4_end_io_work(struct work_struct *work)
129{
130 ext4_io_end_t *io = container_of(work, ext4_io_end_t, work);
131 struct inode *inode = io->inode;
132 struct ext4_inode_info *ei = EXT4_I(inode);
133 unsigned long flags;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400134
Tao Mad73d5042011-10-30 18:26:08 -0400135 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
Jeff Moyer491caa42012-03-05 10:29:52 -0500136 if (io->flag & EXT4_IO_END_IN_FSYNC)
137 goto requeue;
Tao Mad73d5042011-10-30 18:26:08 -0400138 if (list_empty(&io->list)) {
139 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
140 goto free;
141 }
Tao Mad73d5042011-10-30 18:26:08 -0400142
Jiaying Zhang8c0bec22011-08-31 11:50:51 -0400143 if (!mutex_trylock(&inode->i_mutex)) {
Jeff Moyer491caa42012-03-05 10:29:52 -0500144 bool was_queued;
145requeue:
146 was_queued = !!(io->flag & EXT4_IO_END_QUEUED);
147 io->flag |= EXT4_IO_END_QUEUED;
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400148 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
Jiaying Zhang8c0bec22011-08-31 11:50:51 -0400149 /*
150 * Requeue the work instead of waiting so that the work
151 * items queued after this can be processed.
152 */
153 queue_work(EXT4_SB(inode->i_sb)->dio_unwritten_wq, &io->work);
154 /*
155 * To prevent the ext4-dio-unwritten thread from keeping
156 * requeueing end_io requests and occupying cpu for too long,
157 * yield the cpu if it sees an end_io request that has already
158 * been requeued.
159 */
Jeff Moyer491caa42012-03-05 10:29:52 -0500160 if (was_queued)
Jiaying Zhang8c0bec22011-08-31 11:50:51 -0400161 yield();
Jiaying Zhang8c0bec22011-08-31 11:50:51 -0400162 return;
163 }
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400164 list_del_init(&io->list);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400165 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400166 (void) ext4_end_io_nolock(io);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400167 mutex_unlock(&inode->i_mutex);
Tao Mad73d5042011-10-30 18:26:08 -0400168free:
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400169 ext4_free_io_end(io);
170}
171
172ext4_io_end_t *ext4_init_io_end(struct inode *inode, gfp_t flags)
173{
Jesper Juhlb17b35e2010-12-19 21:41:55 -0500174 ext4_io_end_t *io = kmem_cache_zalloc(io_end_cachep, flags);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400175 if (io) {
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500176 atomic_inc(&EXT4_I(inode)->i_ioend_count);
177 io->inode = inode;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400178 INIT_WORK(&io->work, ext4_end_io_work);
179 INIT_LIST_HEAD(&io->list);
180 }
181 return io;
182}
183
184/*
185 * Print an buffer I/O error compatible with the fs/buffer.c. This
186 * provides compatibility with dmesg scrapers that look for a specific
187 * buffer I/O error message. We really need a unified error reporting
188 * structure to userspace ala Digital Unix's uerf system, but it's
189 * probably not going to happen in my lifetime, due to LKML politics...
190 */
191static void buffer_io_error(struct buffer_head *bh)
192{
193 char b[BDEVNAME_SIZE];
194 printk(KERN_ERR "Buffer I/O error on device %s, logical block %llu\n",
195 bdevname(bh->b_bdev, b),
196 (unsigned long long)bh->b_blocknr);
197}
198
199static void ext4_end_bio(struct bio *bio, int error)
200{
201 ext4_io_end_t *io_end = bio->bi_private;
202 struct workqueue_struct *wq;
203 struct inode *inode;
204 unsigned long flags;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400205 int i;
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500206 sector_t bi_sector = bio->bi_sector;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400207
208 BUG_ON(!io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400209 bio->bi_private = NULL;
210 bio->bi_end_io = NULL;
211 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
212 error = 0;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400213 bio_put(bio);
214
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400215 for (i = 0; i < io_end->num_io_pages; i++) {
216 struct page *page = io_end->pages[i]->p_page;
217 struct buffer_head *bh, *head;
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400218 loff_t offset;
219 loff_t io_end_offset;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400220
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400221 if (error) {
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400222 SetPageError(page);
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400223 set_bit(AS_EIO, &page->mapping->flags);
224 head = page_buffers(page);
225 BUG_ON(!head);
226
227 io_end_offset = io_end->offset + io_end->size;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400228
229 offset = (sector_t) page->index << PAGE_CACHE_SHIFT;
230 bh = head;
231 do {
232 if ((offset >= io_end->offset) &&
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400233 (offset+bh->b_size <= io_end_offset))
234 buffer_io_error(bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400235
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400236 offset += bh->b_size;
237 bh = bh->b_this_page;
238 } while (bh != head);
239 }
240
Linus Torvalds6268b322012-03-29 17:00:56 -0700241 put_io_page(io_end->pages[i]);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400242 }
Linus Torvalds6268b322012-03-29 17:00:56 -0700243 io_end->num_io_pages = 0;
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500244 inode = io_end->inode;
245
246 if (error) {
247 io_end->flag |= EXT4_IO_END_ERROR;
248 ext4_warning(inode->i_sb, "I/O error writing to inode %lu "
249 "(offset %llu size %ld starting block %llu)",
250 inode->i_ino,
251 (unsigned long long) io_end->offset,
252 (long) io_end->size,
253 (unsigned long long)
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500254 bi_sector >> (inode->i_blkbits - 9));
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500255 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400256
Theodore Ts'ob6168442011-02-28 13:12:38 -0500257 if (!(io_end->flag & EXT4_IO_END_UNWRITTEN)) {
258 ext4_free_io_end(io_end);
259 return;
260 }
261
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400262 /* Add the io_end to per-inode completed io list*/
263 spin_lock_irqsave(&EXT4_I(inode)->i_completed_io_lock, flags);
264 list_add_tail(&io_end->list, &EXT4_I(inode)->i_completed_io_list);
265 spin_unlock_irqrestore(&EXT4_I(inode)->i_completed_io_lock, flags);
266
267 wq = EXT4_SB(inode->i_sb)->dio_unwritten_wq;
268 /* queue the work to convert unwritten extents to written */
269 queue_work(wq, &io_end->work);
270}
271
272void ext4_io_submit(struct ext4_io_submit *io)
273{
274 struct bio *bio = io->io_bio;
275
276 if (bio) {
277 bio_get(io->io_bio);
278 submit_bio(io->io_op, io->io_bio);
279 BUG_ON(bio_flagged(io->io_bio, BIO_EOPNOTSUPP));
280 bio_put(io->io_bio);
281 }
Peter Huewe7dc57612011-02-21 21:01:42 -0500282 io->io_bio = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400283 io->io_op = 0;
Peter Huewe7dc57612011-02-21 21:01:42 -0500284 io->io_end = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400285}
286
287static int io_submit_init(struct ext4_io_submit *io,
288 struct inode *inode,
289 struct writeback_control *wbc,
290 struct buffer_head *bh)
291{
292 ext4_io_end_t *io_end;
293 struct page *page = bh->b_page;
294 int nvecs = bio_get_nr_vecs(bh->b_bdev);
295 struct bio *bio;
296
297 io_end = ext4_init_io_end(inode, GFP_NOFS);
298 if (!io_end)
299 return -ENOMEM;
Theodore Ts'o275d3ba2011-06-29 21:44:45 -0400300 bio = bio_alloc(GFP_NOIO, min(nvecs, BIO_MAX_PAGES));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400301 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
302 bio->bi_bdev = bh->b_bdev;
303 bio->bi_private = io->io_end = io_end;
304 bio->bi_end_io = ext4_end_bio;
305
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400306 io_end->offset = (page->index << PAGE_CACHE_SHIFT) + bh_offset(bh);
307
308 io->io_bio = bio;
Jens Axboe721a9602011-03-09 11:56:30 +0100309 io->io_op = (wbc->sync_mode == WB_SYNC_ALL ? WRITE_SYNC : WRITE);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400310 io->io_next_block = bh->b_blocknr;
311 return 0;
312}
313
314static int io_submit_add_bh(struct ext4_io_submit *io,
315 struct ext4_io_page *io_page,
316 struct inode *inode,
317 struct writeback_control *wbc,
318 struct buffer_head *bh)
319{
320 ext4_io_end_t *io_end;
321 int ret;
322
323 if (buffer_new(bh)) {
324 clear_buffer_new(bh);
325 unmap_underlying_metadata(bh->b_bdev, bh->b_blocknr);
326 }
327
328 if (!buffer_mapped(bh) || buffer_delay(bh)) {
329 if (!buffer_mapped(bh))
330 clear_buffer_dirty(bh);
331 if (io->io_bio)
332 ext4_io_submit(io);
333 return 0;
334 }
335
336 if (io->io_bio && bh->b_blocknr != io->io_next_block) {
337submit_and_retry:
338 ext4_io_submit(io);
339 }
340 if (io->io_bio == NULL) {
341 ret = io_submit_init(io, inode, wbc, bh);
342 if (ret)
343 return ret;
344 }
345 io_end = io->io_end;
346 if ((io_end->num_io_pages >= MAX_IO_PAGES) &&
347 (io_end->pages[io_end->num_io_pages-1] != io_page))
348 goto submit_and_retry;
Tao Ma0edeb712011-10-31 17:30:44 -0400349 if (buffer_uninit(bh))
350 ext4_set_io_unwritten_flag(inode, io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400351 io->io_end->size += bh->b_size;
352 io->io_next_block++;
353 ret = bio_add_page(io->io_bio, bh->b_page, bh->b_size, bh_offset(bh));
354 if (ret != bh->b_size)
355 goto submit_and_retry;
356 if ((io_end->num_io_pages == 0) ||
357 (io_end->pages[io_end->num_io_pages-1] != io_page)) {
358 io_end->pages[io_end->num_io_pages++] = io_page;
Theodore Ts'o83668e72010-11-08 13:45:33 -0500359 atomic_inc(&io_page->p_count);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400360 }
361 return 0;
362}
363
364int ext4_bio_write_page(struct ext4_io_submit *io,
365 struct page *page,
366 int len,
367 struct writeback_control *wbc)
368{
369 struct inode *inode = page->mapping->host;
370 unsigned block_start, block_end, blocksize;
371 struct ext4_io_page *io_page;
372 struct buffer_head *bh, *head;
373 int ret = 0;
374
375 blocksize = 1 << inode->i_blkbits;
376
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500377 BUG_ON(!PageLocked(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400378 BUG_ON(PageWriteback(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400379
380 io_page = kmem_cache_alloc(io_page_cachep, GFP_NOFS);
381 if (!io_page) {
382 set_page_dirty(page);
383 unlock_page(page);
384 return -ENOMEM;
385 }
386 io_page->p_page = page;
Theodore Ts'o83668e72010-11-08 13:45:33 -0500387 atomic_set(&io_page->p_count, 1);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400388 get_page(page);
Theodore Ts'oa54aa762011-02-27 16:43:24 -0500389 set_page_writeback(page);
390 ClearPageError(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400391
392 for (bh = head = page_buffers(page), block_start = 0;
393 bh != head || !block_start;
394 block_start = block_end, bh = bh->b_this_page) {
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500395
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400396 block_end = block_start + blocksize;
397 if (block_start >= len) {
Yongqiang Yang5a0dc732011-12-13 22:29:12 -0500398 /*
399 * Comments copied from block_write_full_page_endio:
400 *
401 * The page straddles i_size. It must be zeroed out on
402 * each and every writepage invocation because it may
403 * be mmapped. "A file is mapped in multiples of the
404 * page size. For a file that is not a multiple of
405 * the page size, the remaining memory is zeroed when
406 * mapped, and writes to that region are not written
407 * out to the file."
408 */
409 zero_user_segment(page, block_start, block_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400410 clear_buffer_dirty(bh);
411 set_buffer_uptodate(bh);
412 continue;
413 }
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500414 clear_buffer_dirty(bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400415 ret = io_submit_add_bh(io, io_page, inode, wbc, bh);
416 if (ret) {
417 /*
418 * We only get here on ENOMEM. Not much else
419 * we can do but mark the page as dirty, and
420 * better luck next time.
421 */
422 set_page_dirty(page);
423 break;
424 }
425 }
426 unlock_page(page);
427 /*
428 * If the page was truncated before we could do the writeback,
429 * or we had a memory allocation error while trying to write
430 * the first buffer head, we won't have submitted any pages for
431 * I/O. In that case we need to make sure we've cleared the
432 * PageWriteback bit from the page to prevent the system from
433 * wedging later on.
434 */
Theodore Ts'o83668e72010-11-08 13:45:33 -0500435 put_io_page(io_page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400436 return ret;
437}