blob: 5b24c407701b3c12895e1b3be56959199e0b0ca0 [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 Monakhov28a535f2012-09-29 00:14:55 -040074 BUG_ON(!list_empty(&io->list));
Dmitry Monakhov82e54222012-09-28 23:36:25 -040075 BUG_ON(io->flag & EXT4_IO_END_UNWRITTEN);
76
Theodore Ts'obd2d0212010-10-27 21:30:10 -040077 if (io->page)
78 put_page(io->page);
Theodore Ts'o83668e72010-11-08 13:45:33 -050079 for (i = 0; i < io->num_io_pages; i++)
80 put_io_page(io->pages[i]);
Theodore Ts'obd2d0212010-10-27 21:30:10 -040081 io->num_io_pages = 0;
Theodore Ts'o4e298022011-10-30 18:41:19 -040082 if (atomic_dec_and_test(&EXT4_I(io->inode)->i_ioend_count))
83 wake_up_all(ext4_ioend_wq(io->inode));
Theodore Ts'obd2d0212010-10-27 21:30:10 -040084 kmem_cache_free(io_end_cachep, io);
85}
86
Dmitry Monakhov28a535f2012-09-29 00:14:55 -040087/* check a range of space and convert unwritten extents to written. */
88static int ext4_end_io(ext4_io_end_t *io)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040089{
90 struct inode *inode = io->inode;
91 loff_t offset = io->offset;
92 ssize_t size = io->size;
93 int ret = 0;
94
95 ext4_debug("ext4_end_io_nolock: io 0x%p from inode %lu,list->next 0x%p,"
96 "list->prev 0x%p\n",
97 io, inode->i_ino, io->list.next, io->list.prev);
98
Theodore Ts'obd2d0212010-10-27 21:30:10 -040099 ret = ext4_convert_unwritten_extents(inode, offset, size);
100 if (ret < 0) {
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400101 ext4_msg(inode->i_sb, KERN_EMERG,
102 "failed to convert unwritten extents to written "
103 "extents -- potential data loss! "
104 "(inode %lu, offset %llu, size %zd, error %d)",
105 inode->i_ino, offset, size, ret);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400106 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400107 if (io->iocb)
108 aio_complete(io->iocb, io->result, 0);
Eric Sandeene9e3bce2011-02-12 08:17:34 -0500109
Jeff Moyer266991b2012-02-20 17:59:24 -0500110 if (io->flag & EXT4_IO_END_DIRECT)
111 inode_dio_done(inode);
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400112 /* Wake up anyone waiting on unwritten extent conversion */
Dmitry Monakhove27f41e2012-09-28 23:24:52 -0400113 if (atomic_dec_and_test(&EXT4_I(inode)->i_unwritten))
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400114 wake_up_all(ext4_ioend_wq(io->inode));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400115 return ret;
116}
117
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400118static void dump_completed_IO(struct inode *inode)
119{
120#ifdef EXT4FS_DEBUG
121 struct list_head *cur, *before, *after;
122 ext4_io_end_t *io, *io0, *io1;
123 unsigned long flags;
124
125 if (list_empty(&EXT4_I(inode)->i_completed_io_list)) {
126 ext4_debug("inode %lu completed_io list is empty\n",
127 inode->i_ino);
128 return;
129 }
130
131 ext4_debug("Dump inode %lu completed_io list\n", inode->i_ino);
132 list_for_each_entry(io, &EXT4_I(inode)->i_completed_io_list, list) {
133 cur = &io->list;
134 before = cur->prev;
135 io0 = container_of(before, ext4_io_end_t, list);
136 after = cur->next;
137 io1 = container_of(after, ext4_io_end_t, list);
138
139 ext4_debug("io 0x%p from inode %lu,prev 0x%p,next 0x%p\n",
140 io, inode->i_ino, io0, io1);
141 }
142#endif
143}
144
145/* Add the io_end to per-inode completed end_io list. */
146void ext4_add_complete_io(ext4_io_end_t *io_end)
147{
148 struct ext4_inode_info *ei = EXT4_I(io_end->inode);
149 struct workqueue_struct *wq;
150 unsigned long flags;
151
152 BUG_ON(!(io_end->flag & EXT4_IO_END_UNWRITTEN));
153 wq = EXT4_SB(io_end->inode->i_sb)->dio_unwritten_wq;
154
155 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
156 if (list_empty(&ei->i_completed_io_list)) {
157 io_end->flag |= EXT4_IO_END_QUEUED;
158 queue_work(wq, &io_end->work);
159 }
160 list_add_tail(&io_end->list, &ei->i_completed_io_list);
161 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
162}
163
164static int ext4_do_flush_completed_IO(struct inode *inode,
165 ext4_io_end_t *work_io)
166{
167 ext4_io_end_t *io;
168 struct list_head unwritten, complete, to_free;
169 unsigned long flags;
170 struct ext4_inode_info *ei = EXT4_I(inode);
171 int err, ret = 0;
172
173 INIT_LIST_HEAD(&complete);
174 INIT_LIST_HEAD(&to_free);
175
176 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
177 dump_completed_IO(inode);
178 list_replace_init(&ei->i_completed_io_list, &unwritten);
179 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
180
181 while (!list_empty(&unwritten)) {
182 io = list_entry(unwritten.next, ext4_io_end_t, list);
183 BUG_ON(!(io->flag & EXT4_IO_END_UNWRITTEN));
184 list_del_init(&io->list);
185
186 err = ext4_end_io(io);
187 if (unlikely(!ret && err))
188 ret = err;
189
190 list_add_tail(&io->list, &complete);
191 }
192 /* It is important to update all flags for all end_io in one shot w/o
193 * dropping the lock.*/
194 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
195 while (!list_empty(&complete)) {
196 io = list_entry(complete.next, ext4_io_end_t, list);
197 io->flag &= ~EXT4_IO_END_UNWRITTEN;
198 /* end_io context can not be destroyed now because it still
199 * used by queued worker. Worker thread will destroy it later */
200 if (io->flag & EXT4_IO_END_QUEUED)
201 list_del_init(&io->list);
202 else
203 list_move(&io->list, &to_free);
204 }
205 /* If we are called from worker context, it is time to clear queued
206 * flag, and destroy it's end_io if it was converted already */
207 if (work_io) {
208 work_io->flag &= ~EXT4_IO_END_QUEUED;
209 if (!(work_io->flag & EXT4_IO_END_UNWRITTEN))
210 list_add_tail(&work_io->list, &to_free);
211 }
212 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
213
214 while (!list_empty(&to_free)) {
215 io = list_entry(to_free.next, ext4_io_end_t, list);
216 list_del_init(&io->list);
217 ext4_free_io_end(io);
218 }
219 return ret;
220}
221
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400222/*
223 * work on completed aio dio IO, to convert unwritten extents to extents
224 */
225static void ext4_end_io_work(struct work_struct *work)
226{
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400227 ext4_io_end_t *io = container_of(work, ext4_io_end_t, work);
228 ext4_do_flush_completed_IO(io->inode, io);
229}
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400230
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400231int ext4_flush_completed_IO(struct inode *inode)
232{
233 return ext4_do_flush_completed_IO(inode, NULL);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400234}
235
236ext4_io_end_t *ext4_init_io_end(struct inode *inode, gfp_t flags)
237{
Jesper Juhlb17b35e2010-12-19 21:41:55 -0500238 ext4_io_end_t *io = kmem_cache_zalloc(io_end_cachep, flags);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400239 if (io) {
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500240 atomic_inc(&EXT4_I(inode)->i_ioend_count);
241 io->inode = inode;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400242 INIT_WORK(&io->work, ext4_end_io_work);
243 INIT_LIST_HEAD(&io->list);
244 }
245 return io;
246}
247
248/*
249 * Print an buffer I/O error compatible with the fs/buffer.c. This
250 * provides compatibility with dmesg scrapers that look for a specific
251 * buffer I/O error message. We really need a unified error reporting
252 * structure to userspace ala Digital Unix's uerf system, but it's
253 * probably not going to happen in my lifetime, due to LKML politics...
254 */
255static void buffer_io_error(struct buffer_head *bh)
256{
257 char b[BDEVNAME_SIZE];
258 printk(KERN_ERR "Buffer I/O error on device %s, logical block %llu\n",
259 bdevname(bh->b_bdev, b),
260 (unsigned long long)bh->b_blocknr);
261}
262
263static void ext4_end_bio(struct bio *bio, int error)
264{
265 ext4_io_end_t *io_end = bio->bi_private;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400266 struct inode *inode;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400267 int i;
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500268 sector_t bi_sector = bio->bi_sector;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400269
270 BUG_ON(!io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400271 bio->bi_private = NULL;
272 bio->bi_end_io = NULL;
273 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
274 error = 0;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400275 bio_put(bio);
276
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400277 for (i = 0; i < io_end->num_io_pages; i++) {
278 struct page *page = io_end->pages[i]->p_page;
279 struct buffer_head *bh, *head;
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400280 loff_t offset;
281 loff_t io_end_offset;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400282
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400283 if (error) {
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400284 SetPageError(page);
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400285 set_bit(AS_EIO, &page->mapping->flags);
286 head = page_buffers(page);
287 BUG_ON(!head);
288
289 io_end_offset = io_end->offset + io_end->size;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400290
291 offset = (sector_t) page->index << PAGE_CACHE_SHIFT;
292 bh = head;
293 do {
294 if ((offset >= io_end->offset) &&
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400295 (offset+bh->b_size <= io_end_offset))
296 buffer_io_error(bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400297
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400298 offset += bh->b_size;
299 bh = bh->b_this_page;
300 } while (bh != head);
301 }
302
Linus Torvalds6268b322012-03-29 17:00:56 -0700303 put_io_page(io_end->pages[i]);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400304 }
Linus Torvalds6268b322012-03-29 17:00:56 -0700305 io_end->num_io_pages = 0;
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500306 inode = io_end->inode;
307
308 if (error) {
309 io_end->flag |= EXT4_IO_END_ERROR;
310 ext4_warning(inode->i_sb, "I/O error writing to inode %lu "
311 "(offset %llu size %ld starting block %llu)",
312 inode->i_ino,
313 (unsigned long long) io_end->offset,
314 (long) io_end->size,
315 (unsigned long long)
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500316 bi_sector >> (inode->i_blkbits - 9));
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500317 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400318
Theodore Ts'ob6168442011-02-28 13:12:38 -0500319 if (!(io_end->flag & EXT4_IO_END_UNWRITTEN)) {
320 ext4_free_io_end(io_end);
321 return;
322 }
323
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400324 ext4_add_complete_io(io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400325}
326
327void ext4_io_submit(struct ext4_io_submit *io)
328{
329 struct bio *bio = io->io_bio;
330
331 if (bio) {
332 bio_get(io->io_bio);
333 submit_bio(io->io_op, io->io_bio);
334 BUG_ON(bio_flagged(io->io_bio, BIO_EOPNOTSUPP));
335 bio_put(io->io_bio);
336 }
Peter Huewe7dc57612011-02-21 21:01:42 -0500337 io->io_bio = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400338 io->io_op = 0;
Peter Huewe7dc57612011-02-21 21:01:42 -0500339 io->io_end = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400340}
341
342static int io_submit_init(struct ext4_io_submit *io,
343 struct inode *inode,
344 struct writeback_control *wbc,
345 struct buffer_head *bh)
346{
347 ext4_io_end_t *io_end;
348 struct page *page = bh->b_page;
349 int nvecs = bio_get_nr_vecs(bh->b_bdev);
350 struct bio *bio;
351
352 io_end = ext4_init_io_end(inode, GFP_NOFS);
353 if (!io_end)
354 return -ENOMEM;
Theodore Ts'o275d3ba2011-06-29 21:44:45 -0400355 bio = bio_alloc(GFP_NOIO, min(nvecs, BIO_MAX_PAGES));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400356 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
357 bio->bi_bdev = bh->b_bdev;
358 bio->bi_private = io->io_end = io_end;
359 bio->bi_end_io = ext4_end_bio;
360
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400361 io_end->offset = (page->index << PAGE_CACHE_SHIFT) + bh_offset(bh);
362
363 io->io_bio = bio;
Jens Axboe721a9602011-03-09 11:56:30 +0100364 io->io_op = (wbc->sync_mode == WB_SYNC_ALL ? WRITE_SYNC : WRITE);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400365 io->io_next_block = bh->b_blocknr;
366 return 0;
367}
368
369static int io_submit_add_bh(struct ext4_io_submit *io,
370 struct ext4_io_page *io_page,
371 struct inode *inode,
372 struct writeback_control *wbc,
373 struct buffer_head *bh)
374{
375 ext4_io_end_t *io_end;
376 int ret;
377
378 if (buffer_new(bh)) {
379 clear_buffer_new(bh);
380 unmap_underlying_metadata(bh->b_bdev, bh->b_blocknr);
381 }
382
383 if (!buffer_mapped(bh) || buffer_delay(bh)) {
384 if (!buffer_mapped(bh))
385 clear_buffer_dirty(bh);
386 if (io->io_bio)
387 ext4_io_submit(io);
388 return 0;
389 }
390
391 if (io->io_bio && bh->b_blocknr != io->io_next_block) {
392submit_and_retry:
393 ext4_io_submit(io);
394 }
395 if (io->io_bio == NULL) {
396 ret = io_submit_init(io, inode, wbc, bh);
397 if (ret)
398 return ret;
399 }
400 io_end = io->io_end;
401 if ((io_end->num_io_pages >= MAX_IO_PAGES) &&
402 (io_end->pages[io_end->num_io_pages-1] != io_page))
403 goto submit_and_retry;
Tao Ma0edeb712011-10-31 17:30:44 -0400404 if (buffer_uninit(bh))
405 ext4_set_io_unwritten_flag(inode, io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400406 io->io_end->size += bh->b_size;
407 io->io_next_block++;
408 ret = bio_add_page(io->io_bio, bh->b_page, bh->b_size, bh_offset(bh));
409 if (ret != bh->b_size)
410 goto submit_and_retry;
411 if ((io_end->num_io_pages == 0) ||
412 (io_end->pages[io_end->num_io_pages-1] != io_page)) {
413 io_end->pages[io_end->num_io_pages++] = io_page;
Theodore Ts'o83668e72010-11-08 13:45:33 -0500414 atomic_inc(&io_page->p_count);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400415 }
416 return 0;
417}
418
419int ext4_bio_write_page(struct ext4_io_submit *io,
420 struct page *page,
421 int len,
422 struct writeback_control *wbc)
423{
424 struct inode *inode = page->mapping->host;
425 unsigned block_start, block_end, blocksize;
426 struct ext4_io_page *io_page;
427 struct buffer_head *bh, *head;
428 int ret = 0;
429
430 blocksize = 1 << inode->i_blkbits;
431
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500432 BUG_ON(!PageLocked(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400433 BUG_ON(PageWriteback(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400434
435 io_page = kmem_cache_alloc(io_page_cachep, GFP_NOFS);
436 if (!io_page) {
437 set_page_dirty(page);
438 unlock_page(page);
439 return -ENOMEM;
440 }
441 io_page->p_page = page;
Theodore Ts'o83668e72010-11-08 13:45:33 -0500442 atomic_set(&io_page->p_count, 1);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400443 get_page(page);
Theodore Ts'oa54aa762011-02-27 16:43:24 -0500444 set_page_writeback(page);
445 ClearPageError(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400446
447 for (bh = head = page_buffers(page), block_start = 0;
448 bh != head || !block_start;
449 block_start = block_end, bh = bh->b_this_page) {
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500450
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400451 block_end = block_start + blocksize;
452 if (block_start >= len) {
Yongqiang Yang5a0dc732011-12-13 22:29:12 -0500453 /*
454 * Comments copied from block_write_full_page_endio:
455 *
456 * The page straddles i_size. It must be zeroed out on
457 * each and every writepage invocation because it may
458 * be mmapped. "A file is mapped in multiples of the
459 * page size. For a file that is not a multiple of
460 * the page size, the remaining memory is zeroed when
461 * mapped, and writes to that region are not written
462 * out to the file."
463 */
464 zero_user_segment(page, block_start, block_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400465 clear_buffer_dirty(bh);
466 set_buffer_uptodate(bh);
467 continue;
468 }
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500469 clear_buffer_dirty(bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400470 ret = io_submit_add_bh(io, io_page, inode, wbc, bh);
471 if (ret) {
472 /*
473 * We only get here on ENOMEM. Not much else
474 * we can do but mark the page as dirty, and
475 * better luck next time.
476 */
477 set_page_dirty(page);
478 break;
479 }
480 }
481 unlock_page(page);
482 /*
483 * If the page was truncated before we could do the writeback,
484 * or we had a memory allocation error while trying to write
485 * the first buffer head, we won't have submitted any pages for
486 * I/O. In that case we need to make sure we've cleared the
487 * PageWriteback bit from the page to prevent the system from
488 * wedging later on.
489 */
Theodore Ts'o83668e72010-11-08 13:45:33 -0500490 put_io_page(io_page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400491 return ret;
492}