blob: ed937fa9e4e3d064156c722ba4e593489a247bbf [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 021110-1307, USA.
20 */
21
22#include <linux/fs.h>
23#include <linux/slab.h>
24#include <linux/highmem.h>
25#include <linux/pagemap.h>
26#include <asm/byteorder.h>
Mark Fasheh9517bac2007-02-09 20:24:12 -080027#include <linux/swap.h>
Mark Fasheh6af67d82007-03-06 17:24:46 -080028#include <linux/pipe_fs_i.h>
Mark Fasheh628a24f2007-10-30 12:08:32 -070029#include <linux/mpage.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080030
31#define MLOG_MASK_PREFIX ML_FILE_IO
32#include <cluster/masklog.h>
33
34#include "ocfs2.h"
35
36#include "alloc.h"
37#include "aops.h"
38#include "dlmglue.h"
39#include "extent_map.h"
40#include "file.h"
41#include "inode.h"
42#include "journal.h"
Mark Fasheh9517bac2007-02-09 20:24:12 -080043#include "suballoc.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080044#include "super.h"
45#include "symlink.h"
46
47#include "buffer_head_io.h"
48
49static int ocfs2_symlink_get_block(struct inode *inode, sector_t iblock,
50 struct buffer_head *bh_result, int create)
51{
52 int err = -EIO;
53 int status;
54 struct ocfs2_dinode *fe = NULL;
55 struct buffer_head *bh = NULL;
56 struct buffer_head *buffer_cache_bh = NULL;
57 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
58 void *kaddr;
59
60 mlog_entry("(0x%p, %llu, 0x%p, %d)\n", inode,
61 (unsigned long long)iblock, bh_result, create);
62
63 BUG_ON(ocfs2_inode_is_fast_symlink(inode));
64
65 if ((iblock << inode->i_sb->s_blocksize_bits) > PATH_MAX + 1) {
66 mlog(ML_ERROR, "block offset > PATH_MAX: %llu",
67 (unsigned long long)iblock);
68 goto bail;
69 }
70
71 status = ocfs2_read_block(OCFS2_SB(inode->i_sb),
72 OCFS2_I(inode)->ip_blkno,
73 &bh, OCFS2_BH_CACHED, inode);
74 if (status < 0) {
75 mlog_errno(status);
76 goto bail;
77 }
78 fe = (struct ocfs2_dinode *) bh->b_data;
79
80 if (!OCFS2_IS_VALID_DINODE(fe)) {
Mark Fashehb06970532006-03-03 10:24:33 -080081 mlog(ML_ERROR, "Invalid dinode #%llu: signature = %.*s\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -070082 (unsigned long long)le64_to_cpu(fe->i_blkno), 7,
83 fe->i_signature);
Mark Fashehccd979b2005-12-15 14:31:24 -080084 goto bail;
85 }
86
87 if ((u64)iblock >= ocfs2_clusters_to_blocks(inode->i_sb,
88 le32_to_cpu(fe->i_clusters))) {
89 mlog(ML_ERROR, "block offset is outside the allocated size: "
90 "%llu\n", (unsigned long long)iblock);
91 goto bail;
92 }
93
94 /* We don't use the page cache to create symlink data, so if
95 * need be, copy it over from the buffer cache. */
96 if (!buffer_uptodate(bh_result) && ocfs2_inode_is_new(inode)) {
97 u64 blkno = le64_to_cpu(fe->id2.i_list.l_recs[0].e_blkno) +
98 iblock;
99 buffer_cache_bh = sb_getblk(osb->sb, blkno);
100 if (!buffer_cache_bh) {
101 mlog(ML_ERROR, "couldn't getblock for symlink!\n");
102 goto bail;
103 }
104
105 /* we haven't locked out transactions, so a commit
106 * could've happened. Since we've got a reference on
107 * the bh, even if it commits while we're doing the
108 * copy, the data is still good. */
109 if (buffer_jbd(buffer_cache_bh)
110 && ocfs2_inode_is_new(inode)) {
111 kaddr = kmap_atomic(bh_result->b_page, KM_USER0);
112 if (!kaddr) {
113 mlog(ML_ERROR, "couldn't kmap!\n");
114 goto bail;
115 }
116 memcpy(kaddr + (bh_result->b_size * iblock),
117 buffer_cache_bh->b_data,
118 bh_result->b_size);
119 kunmap_atomic(kaddr, KM_USER0);
120 set_buffer_uptodate(bh_result);
121 }
122 brelse(buffer_cache_bh);
123 }
124
125 map_bh(bh_result, inode->i_sb,
126 le64_to_cpu(fe->id2.i_list.l_recs[0].e_blkno) + iblock);
127
128 err = 0;
129
130bail:
131 if (bh)
132 brelse(bh);
133
134 mlog_exit(err);
135 return err;
136}
137
138static int ocfs2_get_block(struct inode *inode, sector_t iblock,
139 struct buffer_head *bh_result, int create)
140{
141 int err = 0;
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800142 unsigned int ext_flags;
Mark Fasheh628a24f2007-10-30 12:08:32 -0700143 u64 max_blocks = bh_result->b_size >> inode->i_blkbits;
144 u64 p_blkno, count, past_eof;
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800145 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800146
147 mlog_entry("(0x%p, %llu, 0x%p, %d)\n", inode,
148 (unsigned long long)iblock, bh_result, create);
149
150 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE)
151 mlog(ML_NOTICE, "get_block on system inode 0x%p (%lu)\n",
152 inode, inode->i_ino);
153
154 if (S_ISLNK(inode->i_mode)) {
155 /* this always does I/O for some reason. */
156 err = ocfs2_symlink_get_block(inode, iblock, bh_result, create);
157 goto bail;
158 }
159
Mark Fasheh628a24f2007-10-30 12:08:32 -0700160 err = ocfs2_extent_map_get_blocks(inode, iblock, &p_blkno, &count,
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800161 &ext_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800162 if (err) {
163 mlog(ML_ERROR, "Error %d from get_blocks(0x%p, %llu, 1, "
Mark Fashehb06970532006-03-03 10:24:33 -0800164 "%llu, NULL)\n", err, inode, (unsigned long long)iblock,
165 (unsigned long long)p_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800166 goto bail;
167 }
168
Mark Fasheh628a24f2007-10-30 12:08:32 -0700169 if (max_blocks < count)
170 count = max_blocks;
171
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800172 /*
173 * ocfs2 never allocates in this function - the only time we
174 * need to use BH_New is when we're extending i_size on a file
175 * system which doesn't support holes, in which case BH_New
176 * allows block_prepare_write() to zero.
Coly Lic0420ad2008-06-30 18:45:45 +0800177 *
178 * If we see this on a sparse file system, then a truncate has
179 * raced us and removed the cluster. In this case, we clear
180 * the buffers dirty and uptodate bits and let the buffer code
181 * ignore it as a hole.
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800182 */
Coly Lic0420ad2008-06-30 18:45:45 +0800183 if (create && p_blkno == 0 && ocfs2_sparse_alloc(osb)) {
184 clear_buffer_dirty(bh_result);
185 clear_buffer_uptodate(bh_result);
186 goto bail;
187 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800188
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800189 /* Treat the unwritten extent as a hole for zeroing purposes. */
190 if (p_blkno && !(ext_flags & OCFS2_EXT_UNWRITTEN))
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800191 map_bh(bh_result, inode->i_sb, p_blkno);
192
Mark Fasheh628a24f2007-10-30 12:08:32 -0700193 bh_result->b_size = count << inode->i_blkbits;
194
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800195 if (!ocfs2_sparse_alloc(osb)) {
196 if (p_blkno == 0) {
197 err = -EIO;
198 mlog(ML_ERROR,
199 "iblock = %llu p_blkno = %llu blkno=(%llu)\n",
200 (unsigned long long)iblock,
201 (unsigned long long)p_blkno,
202 (unsigned long long)OCFS2_I(inode)->ip_blkno);
203 mlog(ML_ERROR, "Size %llu, clusters %u\n", (unsigned long long)i_size_read(inode), OCFS2_I(inode)->ip_clusters);
204 dump_stack();
205 }
206
207 past_eof = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode));
208 mlog(0, "Inode %lu, past_eof = %llu\n", inode->i_ino,
209 (unsigned long long)past_eof);
210
211 if (create && (iblock >= past_eof))
212 set_buffer_new(bh_result);
Mark Fashehccd979b2005-12-15 14:31:24 -0800213 }
214
Mark Fashehccd979b2005-12-15 14:31:24 -0800215bail:
216 if (err < 0)
217 err = -EIO;
218
219 mlog_exit(err);
220 return err;
221}
222
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700223int ocfs2_read_inline_data(struct inode *inode, struct page *page,
224 struct buffer_head *di_bh)
Mark Fasheh6798d352007-09-07 14:05:51 -0700225{
226 void *kaddr;
Jan Karad2849fb2007-12-19 15:24:09 +0100227 loff_t size;
Mark Fasheh6798d352007-09-07 14:05:51 -0700228 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
229
230 if (!(le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_DATA_FL)) {
231 ocfs2_error(inode->i_sb, "Inode %llu lost inline data flag",
232 (unsigned long long)OCFS2_I(inode)->ip_blkno);
233 return -EROFS;
234 }
235
236 size = i_size_read(inode);
237
238 if (size > PAGE_CACHE_SIZE ||
239 size > ocfs2_max_inline_data(inode->i_sb)) {
240 ocfs2_error(inode->i_sb,
Jan Karad2849fb2007-12-19 15:24:09 +0100241 "Inode %llu has with inline data has bad size: %Lu",
242 (unsigned long long)OCFS2_I(inode)->ip_blkno,
243 (unsigned long long)size);
Mark Fasheh6798d352007-09-07 14:05:51 -0700244 return -EROFS;
245 }
246
247 kaddr = kmap_atomic(page, KM_USER0);
248 if (size)
249 memcpy(kaddr, di->id2.i_data.id_data, size);
250 /* Clear the remaining part of the page */
251 memset(kaddr + size, 0, PAGE_CACHE_SIZE - size);
252 flush_dcache_page(page);
253 kunmap_atomic(kaddr, KM_USER0);
254
255 SetPageUptodate(page);
256
257 return 0;
258}
259
260static int ocfs2_readpage_inline(struct inode *inode, struct page *page)
261{
262 int ret;
263 struct buffer_head *di_bh = NULL;
264 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
265
266 BUG_ON(!PageLocked(page));
Julia Lawall86c838b2008-02-26 21:45:56 +0100267 BUG_ON(!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL));
Mark Fasheh6798d352007-09-07 14:05:51 -0700268
269 ret = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno, &di_bh,
270 OCFS2_BH_CACHED, inode);
271 if (ret) {
272 mlog_errno(ret);
273 goto out;
274 }
275
276 ret = ocfs2_read_inline_data(inode, page, di_bh);
277out:
278 unlock_page(page);
279
280 brelse(di_bh);
281 return ret;
282}
283
Mark Fashehccd979b2005-12-15 14:31:24 -0800284static int ocfs2_readpage(struct file *file, struct page *page)
285{
286 struct inode *inode = page->mapping->host;
Mark Fasheh6798d352007-09-07 14:05:51 -0700287 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800288 loff_t start = (loff_t)page->index << PAGE_CACHE_SHIFT;
289 int ret, unlock = 1;
290
291 mlog_entry("(0x%p, %lu)\n", file, (page ? page->index : 0));
292
Mark Fashehe63aecb62007-10-18 15:30:42 -0700293 ret = ocfs2_inode_lock_with_page(inode, NULL, 0, page);
Mark Fashehccd979b2005-12-15 14:31:24 -0800294 if (ret != 0) {
295 if (ret == AOP_TRUNCATED_PAGE)
296 unlock = 0;
297 mlog_errno(ret);
298 goto out;
299 }
300
Mark Fasheh6798d352007-09-07 14:05:51 -0700301 if (down_read_trylock(&oi->ip_alloc_sem) == 0) {
Mark Fashehe9dfc0b2007-05-14 11:38:51 -0700302 ret = AOP_TRUNCATED_PAGE;
Mark Fashehe63aecb62007-10-18 15:30:42 -0700303 goto out_inode_unlock;
Mark Fashehe9dfc0b2007-05-14 11:38:51 -0700304 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800305
306 /*
307 * i_size might have just been updated as we grabed the meta lock. We
308 * might now be discovering a truncate that hit on another node.
309 * block_read_full_page->get_block freaks out if it is asked to read
310 * beyond the end of a file, so we check here. Callers
Nick Piggin54cb8822007-07-19 01:46:59 -0700311 * (generic_file_read, vm_ops->fault) are clever enough to check i_size
Mark Fashehccd979b2005-12-15 14:31:24 -0800312 * and notice that the page they just read isn't needed.
313 *
314 * XXX sys_readahead() seems to get that wrong?
315 */
316 if (start >= i_size_read(inode)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800317 zero_user(page, 0, PAGE_SIZE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800318 SetPageUptodate(page);
319 ret = 0;
320 goto out_alloc;
321 }
322
Mark Fasheh6798d352007-09-07 14:05:51 -0700323 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
324 ret = ocfs2_readpage_inline(inode, page);
325 else
326 ret = block_read_full_page(page, ocfs2_get_block);
Mark Fashehccd979b2005-12-15 14:31:24 -0800327 unlock = 0;
328
Mark Fashehccd979b2005-12-15 14:31:24 -0800329out_alloc:
330 up_read(&OCFS2_I(inode)->ip_alloc_sem);
Mark Fashehe63aecb62007-10-18 15:30:42 -0700331out_inode_unlock:
332 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800333out:
334 if (unlock)
335 unlock_page(page);
336 mlog_exit(ret);
337 return ret;
338}
339
Mark Fasheh628a24f2007-10-30 12:08:32 -0700340/*
341 * This is used only for read-ahead. Failures or difficult to handle
342 * situations are safe to ignore.
343 *
344 * Right now, we don't bother with BH_Boundary - in-inode extent lists
345 * are quite large (243 extents on 4k blocks), so most inodes don't
346 * grow out to a tree. If need be, detecting boundary extents could
347 * trivially be added in a future version of ocfs2_get_block().
348 */
349static int ocfs2_readpages(struct file *filp, struct address_space *mapping,
350 struct list_head *pages, unsigned nr_pages)
351{
352 int ret, err = -EIO;
353 struct inode *inode = mapping->host;
354 struct ocfs2_inode_info *oi = OCFS2_I(inode);
355 loff_t start;
356 struct page *last;
357
358 /*
359 * Use the nonblocking flag for the dlm code to avoid page
360 * lock inversion, but don't bother with retrying.
361 */
362 ret = ocfs2_inode_lock_full(inode, NULL, 0, OCFS2_LOCK_NONBLOCK);
363 if (ret)
364 return err;
365
366 if (down_read_trylock(&oi->ip_alloc_sem) == 0) {
367 ocfs2_inode_unlock(inode, 0);
368 return err;
369 }
370
371 /*
372 * Don't bother with inline-data. There isn't anything
373 * to read-ahead in that case anyway...
374 */
375 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
376 goto out_unlock;
377
378 /*
379 * Check whether a remote node truncated this file - we just
380 * drop out in that case as it's not worth handling here.
381 */
382 last = list_entry(pages->prev, struct page, lru);
383 start = (loff_t)last->index << PAGE_CACHE_SHIFT;
384 if (start >= i_size_read(inode))
385 goto out_unlock;
386
387 err = mpage_readpages(mapping, pages, nr_pages, ocfs2_get_block);
388
389out_unlock:
390 up_read(&oi->ip_alloc_sem);
391 ocfs2_inode_unlock(inode, 0);
392
393 return err;
394}
395
Mark Fashehccd979b2005-12-15 14:31:24 -0800396/* Note: Because we don't support holes, our allocation has
397 * already happened (allocation writes zeros to the file data)
398 * so we don't have to worry about ordered writes in
399 * ocfs2_writepage.
400 *
401 * ->writepage is called during the process of invalidating the page cache
402 * during blocked lock processing. It can't block on any cluster locks
403 * to during block mapping. It's relying on the fact that the block
404 * mapping can't have disappeared under the dirty pages that it is
405 * being asked to write back.
406 */
407static int ocfs2_writepage(struct page *page, struct writeback_control *wbc)
408{
409 int ret;
410
411 mlog_entry("(0x%p)\n", page);
412
413 ret = block_write_full_page(page, ocfs2_get_block, wbc);
414
415 mlog_exit(ret);
416
417 return ret;
418}
419
Mark Fasheh50691202007-02-09 20:52:53 -0800420/*
421 * This is called from ocfs2_write_zero_page() which has handled it's
422 * own cluster locking and has ensured allocation exists for those
423 * blocks to be written.
424 */
Mark Fasheh53013cb2006-05-05 19:04:03 -0700425int ocfs2_prepare_write_nolock(struct inode *inode, struct page *page,
426 unsigned from, unsigned to)
427{
428 int ret;
429
Mark Fasheh53013cb2006-05-05 19:04:03 -0700430 ret = block_prepare_write(page, from, to, ocfs2_get_block);
431
Mark Fasheh53013cb2006-05-05 19:04:03 -0700432 return ret;
433}
434
Mark Fashehccd979b2005-12-15 14:31:24 -0800435/* Taken from ext3. We don't necessarily need the full blown
436 * functionality yet, but IMHO it's better to cut and paste the whole
437 * thing so we can avoid introducing our own bugs (and easily pick up
438 * their fixes when they happen) --Mark */
Mark Fasheh60b11392007-02-16 11:46:50 -0800439int walk_page_buffers( handle_t *handle,
440 struct buffer_head *head,
441 unsigned from,
442 unsigned to,
443 int *partial,
444 int (*fn)( handle_t *handle,
445 struct buffer_head *bh))
Mark Fashehccd979b2005-12-15 14:31:24 -0800446{
447 struct buffer_head *bh;
448 unsigned block_start, block_end;
449 unsigned blocksize = head->b_size;
450 int err, ret = 0;
451 struct buffer_head *next;
452
453 for ( bh = head, block_start = 0;
454 ret == 0 && (bh != head || !block_start);
455 block_start = block_end, bh = next)
456 {
457 next = bh->b_this_page;
458 block_end = block_start + blocksize;
459 if (block_end <= from || block_start >= to) {
460 if (partial && !buffer_uptodate(bh))
461 *partial = 1;
462 continue;
463 }
464 err = (*fn)(handle, bh);
465 if (!ret)
466 ret = err;
467 }
468 return ret;
469}
470
Mark Fasheh1fabe142006-10-09 18:11:45 -0700471handle_t *ocfs2_start_walk_page_trans(struct inode *inode,
Mark Fashehccd979b2005-12-15 14:31:24 -0800472 struct page *page,
473 unsigned from,
474 unsigned to)
475{
476 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Julia Lawall58dadcd2008-03-28 14:43:10 -0700477 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800478 int ret = 0;
479
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700480 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Julia Lawall58dadcd2008-03-28 14:43:10 -0700481 if (IS_ERR(handle)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800482 ret = -ENOMEM;
483 mlog_errno(ret);
484 goto out;
485 }
486
487 if (ocfs2_should_order_data(inode)) {
Mark Fasheh1fabe142006-10-09 18:11:45 -0700488 ret = walk_page_buffers(handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800489 page_buffers(page),
490 from, to, NULL,
491 ocfs2_journal_dirty_data);
492 if (ret < 0)
493 mlog_errno(ret);
494 }
495out:
496 if (ret) {
Julia Lawall58dadcd2008-03-28 14:43:10 -0700497 if (!IS_ERR(handle))
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700498 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800499 handle = ERR_PTR(ret);
500 }
501 return handle;
502}
503
Mark Fashehccd979b2005-12-15 14:31:24 -0800504static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block)
505{
506 sector_t status;
507 u64 p_blkno = 0;
508 int err = 0;
509 struct inode *inode = mapping->host;
510
511 mlog_entry("(block = %llu)\n", (unsigned long long)block);
512
513 /* We don't need to lock journal system files, since they aren't
514 * accessed concurrently from multiple nodes.
515 */
516 if (!INODE_JOURNAL(inode)) {
Mark Fashehe63aecb62007-10-18 15:30:42 -0700517 err = ocfs2_inode_lock(inode, NULL, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800518 if (err) {
519 if (err != -ENOENT)
520 mlog_errno(err);
521 goto bail;
522 }
523 down_read(&OCFS2_I(inode)->ip_alloc_sem);
524 }
525
Mark Fasheh6798d352007-09-07 14:05:51 -0700526 if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL))
527 err = ocfs2_extent_map_get_blocks(inode, block, &p_blkno, NULL,
528 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -0800529
530 if (!INODE_JOURNAL(inode)) {
531 up_read(&OCFS2_I(inode)->ip_alloc_sem);
Mark Fashehe63aecb62007-10-18 15:30:42 -0700532 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800533 }
534
535 if (err) {
536 mlog(ML_ERROR, "get_blocks() failed, block = %llu\n",
537 (unsigned long long)block);
538 mlog_errno(err);
539 goto bail;
540 }
541
Mark Fashehccd979b2005-12-15 14:31:24 -0800542bail:
543 status = err ? 0 : p_blkno;
544
545 mlog_exit((int)status);
546
547 return status;
548}
549
550/*
551 * TODO: Make this into a generic get_blocks function.
552 *
553 * From do_direct_io in direct-io.c:
554 * "So what we do is to permit the ->get_blocks function to populate
555 * bh.b_size with the size of IO which is permitted at this offset and
556 * this i_blkbits."
557 *
558 * This function is called directly from get_more_blocks in direct-io.c.
559 *
560 * called like this: dio->get_blocks(dio->inode, fs_startblk,
561 * fs_count, map_bh, dio->rw == WRITE);
562 */
563static int ocfs2_direct_IO_get_blocks(struct inode *inode, sector_t iblock,
Mark Fashehccd979b2005-12-15 14:31:24 -0800564 struct buffer_head *bh_result, int create)
565{
566 int ret;
Mark Fasheh4f902c32007-03-09 16:26:50 -0800567 u64 p_blkno, inode_blocks, contig_blocks;
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800568 unsigned int ext_flags;
Florin Malita184d7d22006-06-03 19:30:10 -0400569 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Badari Pulavarty1d8fa7a2006-03-26 01:38:02 -0800570 unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
Mark Fashehccd979b2005-12-15 14:31:24 -0800571
Mark Fashehccd979b2005-12-15 14:31:24 -0800572 /* This function won't even be called if the request isn't all
573 * nicely aligned and of the right size, so there's no need
574 * for us to check any of that. */
575
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800576 inode_blocks = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode));
Mark Fasheh564f8a32006-12-14 13:01:05 -0800577
578 /*
579 * Any write past EOF is not allowed because we'd be extending.
580 */
581 if (create && (iblock + max_blocks) > inode_blocks) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800582 ret = -EIO;
583 goto bail;
584 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800585
586 /* This figures out the size of the next contiguous block, and
587 * our logical offset */
Mark Fasheh363041a2007-01-17 12:31:35 -0800588 ret = ocfs2_extent_map_get_blocks(inode, iblock, &p_blkno,
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800589 &contig_blocks, &ext_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800590 if (ret) {
591 mlog(ML_ERROR, "get_blocks() failed iblock=%llu\n",
592 (unsigned long long)iblock);
593 ret = -EIO;
594 goto bail;
595 }
596
Tao Ma0e116222008-09-03 01:57:14 +0800597 if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)) && !p_blkno && create) {
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800598 ocfs2_error(inode->i_sb,
599 "Inode %llu has a hole at block %llu\n",
600 (unsigned long long)OCFS2_I(inode)->ip_blkno,
601 (unsigned long long)iblock);
602 ret = -EROFS;
603 goto bail;
604 }
605
606 /*
607 * get_more_blocks() expects us to describe a hole by clearing
608 * the mapped bit on bh_result().
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800609 *
610 * Consider an unwritten extent as a hole.
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800611 */
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800612 if (p_blkno && !(ext_flags & OCFS2_EXT_UNWRITTEN))
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800613 map_bh(bh_result, inode->i_sb, p_blkno);
614 else {
615 /*
616 * ocfs2_prepare_inode_for_write() should have caught
617 * the case where we'd be filling a hole and triggered
618 * a buffered write instead.
619 */
620 if (create) {
621 ret = -EIO;
622 mlog_errno(ret);
623 goto bail;
624 }
625
626 clear_buffer_mapped(bh_result);
627 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800628
629 /* make sure we don't map more than max_blocks blocks here as
630 that's all the kernel will handle at this point. */
631 if (max_blocks < contig_blocks)
632 contig_blocks = max_blocks;
633 bh_result->b_size = contig_blocks << blocksize_bits;
634bail:
635 return ret;
636}
637
638/*
639 * ocfs2_dio_end_io is called by the dio core when a dio is finished. We're
640 * particularly interested in the aio/dio case. Like the core uses
641 * i_alloc_sem, we use the rw_lock DLM lock to protect io on one node from
642 * truncation on another.
643 */
644static void ocfs2_dio_end_io(struct kiocb *iocb,
645 loff_t offset,
646 ssize_t bytes,
647 void *private)
648{
Josef Sipekd28c9172006-12-08 02:37:25 -0800649 struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode;
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -0700650 int level;
Mark Fashehccd979b2005-12-15 14:31:24 -0800651
652 /* this io's submitter should not have unlocked this before we could */
653 BUG_ON(!ocfs2_iocb_is_rw_locked(iocb));
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -0700654
Mark Fashehccd979b2005-12-15 14:31:24 -0800655 ocfs2_iocb_clear_rw_locked(iocb);
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -0700656
657 level = ocfs2_iocb_rw_locked_level(iocb);
658 if (!level)
659 up_read(&inode->i_alloc_sem);
660 ocfs2_rw_unlock(inode, level);
Mark Fashehccd979b2005-12-15 14:31:24 -0800661}
662
Joel Becker03f981c2007-01-04 14:54:41 -0800663/*
664 * ocfs2_invalidatepage() and ocfs2_releasepage() are shamelessly stolen
665 * from ext3. PageChecked() bits have been removed as OCFS2 does not
666 * do journalled data.
667 */
668static void ocfs2_invalidatepage(struct page *page, unsigned long offset)
669{
670 journal_t *journal = OCFS2_SB(page->mapping->host->i_sb)->journal->j_journal;
671
672 journal_invalidatepage(journal, page, offset);
673}
674
675static int ocfs2_releasepage(struct page *page, gfp_t wait)
676{
677 journal_t *journal = OCFS2_SB(page->mapping->host->i_sb)->journal->j_journal;
678
679 if (!page_has_buffers(page))
680 return 0;
681 return journal_try_to_free_buffers(journal, page, wait);
682}
683
Mark Fashehccd979b2005-12-15 14:31:24 -0800684static ssize_t ocfs2_direct_IO(int rw,
685 struct kiocb *iocb,
686 const struct iovec *iov,
687 loff_t offset,
688 unsigned long nr_segs)
689{
690 struct file *file = iocb->ki_filp;
Josef Sipekd28c9172006-12-08 02:37:25 -0800691 struct inode *inode = file->f_path.dentry->d_inode->i_mapping->host;
Mark Fashehccd979b2005-12-15 14:31:24 -0800692 int ret;
693
694 mlog_entry_void();
Mark Fasheh53013cb2006-05-05 19:04:03 -0700695
Mark Fasheh6798d352007-09-07 14:05:51 -0700696 /*
697 * Fallback to buffered I/O if we see an inode without
698 * extents.
699 */
700 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
701 return 0;
702
Mark Fashehccd979b2005-12-15 14:31:24 -0800703 ret = blockdev_direct_IO_no_locking(rw, iocb, inode,
704 inode->i_sb->s_bdev, iov, offset,
705 nr_segs,
706 ocfs2_direct_IO_get_blocks,
707 ocfs2_dio_end_io);
Mark Fashehc934a922007-10-18 15:23:46 -0700708
Mark Fashehccd979b2005-12-15 14:31:24 -0800709 mlog_exit(ret);
710 return ret;
711}
712
Mark Fasheh9517bac2007-02-09 20:24:12 -0800713static void ocfs2_figure_cluster_boundaries(struct ocfs2_super *osb,
714 u32 cpos,
715 unsigned int *start,
716 unsigned int *end)
717{
718 unsigned int cluster_start = 0, cluster_end = PAGE_CACHE_SIZE;
719
720 if (unlikely(PAGE_CACHE_SHIFT > osb->s_clustersize_bits)) {
721 unsigned int cpp;
722
723 cpp = 1 << (PAGE_CACHE_SHIFT - osb->s_clustersize_bits);
724
725 cluster_start = cpos % cpp;
726 cluster_start = cluster_start << osb->s_clustersize_bits;
727
728 cluster_end = cluster_start + osb->s_clustersize;
729 }
730
731 BUG_ON(cluster_start > PAGE_SIZE);
732 BUG_ON(cluster_end > PAGE_SIZE);
733
734 if (start)
735 *start = cluster_start;
736 if (end)
737 *end = cluster_end;
738}
739
740/*
741 * 'from' and 'to' are the region in the page to avoid zeroing.
742 *
743 * If pagesize > clustersize, this function will avoid zeroing outside
744 * of the cluster boundary.
745 *
746 * from == to == 0 is code for "zero the entire cluster region"
747 */
748static void ocfs2_clear_page_regions(struct page *page,
749 struct ocfs2_super *osb, u32 cpos,
750 unsigned from, unsigned to)
751{
752 void *kaddr;
753 unsigned int cluster_start, cluster_end;
754
755 ocfs2_figure_cluster_boundaries(osb, cpos, &cluster_start, &cluster_end);
756
757 kaddr = kmap_atomic(page, KM_USER0);
758
759 if (from || to) {
760 if (from > cluster_start)
761 memset(kaddr + cluster_start, 0, from - cluster_start);
762 if (to < cluster_end)
763 memset(kaddr + to, 0, cluster_end - to);
764 } else {
765 memset(kaddr + cluster_start, 0, cluster_end - cluster_start);
766 }
767
768 kunmap_atomic(kaddr, KM_USER0);
769}
770
771/*
Mark Fasheh4e9563f2007-11-01 11:37:48 -0700772 * Nonsparse file systems fully allocate before we get to the write
773 * code. This prevents ocfs2_write() from tagging the write as an
774 * allocating one, which means ocfs2_map_page_blocks() might try to
775 * read-in the blocks at the tail of our file. Avoid reading them by
776 * testing i_size against each block offset.
777 */
778static int ocfs2_should_read_blk(struct inode *inode, struct page *page,
779 unsigned int block_start)
780{
781 u64 offset = page_offset(page) + block_start;
782
783 if (ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
784 return 1;
785
786 if (i_size_read(inode) > offset)
787 return 1;
788
789 return 0;
790}
791
792/*
Mark Fasheh9517bac2007-02-09 20:24:12 -0800793 * Some of this taken from block_prepare_write(). We already have our
794 * mapping by now though, and the entire write will be allocating or
795 * it won't, so not much need to use BH_New.
796 *
797 * This will also skip zeroing, which is handled externally.
798 */
Mark Fasheh60b11392007-02-16 11:46:50 -0800799int ocfs2_map_page_blocks(struct page *page, u64 *p_blkno,
800 struct inode *inode, unsigned int from,
801 unsigned int to, int new)
Mark Fasheh9517bac2007-02-09 20:24:12 -0800802{
803 int ret = 0;
804 struct buffer_head *head, *bh, *wait[2], **wait_bh = wait;
805 unsigned int block_end, block_start;
806 unsigned int bsize = 1 << inode->i_blkbits;
807
808 if (!page_has_buffers(page))
809 create_empty_buffers(page, bsize, 0);
810
811 head = page_buffers(page);
812 for (bh = head, block_start = 0; bh != head || !block_start;
813 bh = bh->b_this_page, block_start += bsize) {
814 block_end = block_start + bsize;
815
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700816 clear_buffer_new(bh);
817
Mark Fasheh9517bac2007-02-09 20:24:12 -0800818 /*
819 * Ignore blocks outside of our i/o range -
820 * they may belong to unallocated clusters.
821 */
Mark Fasheh60b11392007-02-16 11:46:50 -0800822 if (block_start >= to || block_end <= from) {
Mark Fasheh9517bac2007-02-09 20:24:12 -0800823 if (PageUptodate(page))
824 set_buffer_uptodate(bh);
825 continue;
826 }
827
828 /*
829 * For an allocating write with cluster size >= page
830 * size, we always write the entire page.
831 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700832 if (new)
833 set_buffer_new(bh);
Mark Fasheh9517bac2007-02-09 20:24:12 -0800834
835 if (!buffer_mapped(bh)) {
836 map_bh(bh, inode->i_sb, *p_blkno);
837 unmap_underlying_metadata(bh->b_bdev, bh->b_blocknr);
838 }
839
840 if (PageUptodate(page)) {
841 if (!buffer_uptodate(bh))
842 set_buffer_uptodate(bh);
843 } else if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
Mark Fashehbce99762007-06-18 11:12:36 -0700844 !buffer_new(bh) &&
Mark Fasheh4e9563f2007-11-01 11:37:48 -0700845 ocfs2_should_read_blk(inode, page, block_start) &&
Mark Fashehbce99762007-06-18 11:12:36 -0700846 (block_start < from || block_end > to)) {
Mark Fasheh9517bac2007-02-09 20:24:12 -0800847 ll_rw_block(READ, 1, &bh);
848 *wait_bh++=bh;
849 }
850
851 *p_blkno = *p_blkno + 1;
852 }
853
854 /*
855 * If we issued read requests - let them complete.
856 */
857 while(wait_bh > wait) {
858 wait_on_buffer(*--wait_bh);
859 if (!buffer_uptodate(*wait_bh))
860 ret = -EIO;
861 }
862
863 if (ret == 0 || !new)
864 return ret;
865
866 /*
867 * If we get -EIO above, zero out any newly allocated blocks
868 * to avoid exposing stale data.
869 */
870 bh = head;
871 block_start = 0;
872 do {
Mark Fasheh9517bac2007-02-09 20:24:12 -0800873 block_end = block_start + bsize;
874 if (block_end <= from)
875 goto next_bh;
876 if (block_start >= to)
877 break;
878
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800879 zero_user(page, block_start, bh->b_size);
Mark Fasheh9517bac2007-02-09 20:24:12 -0800880 set_buffer_uptodate(bh);
881 mark_buffer_dirty(bh);
882
883next_bh:
884 block_start = block_end;
885 bh = bh->b_this_page;
886 } while (bh != head);
887
888 return ret;
889}
890
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700891#if (PAGE_CACHE_SIZE >= OCFS2_MAX_CLUSTERSIZE)
892#define OCFS2_MAX_CTXT_PAGES 1
893#else
894#define OCFS2_MAX_CTXT_PAGES (OCFS2_MAX_CLUSTERSIZE / PAGE_CACHE_SIZE)
895#endif
Mark Fasheh6af67d82007-03-06 17:24:46 -0800896
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700897#define OCFS2_MAX_CLUSTERS_PER_PAGE (PAGE_CACHE_SIZE / OCFS2_MIN_CLUSTERSIZE)
Mark Fasheh6af67d82007-03-06 17:24:46 -0800898
899/*
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700900 * Describe the state of a single cluster to be written to.
Mark Fasheh9517bac2007-02-09 20:24:12 -0800901 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700902struct ocfs2_write_cluster_desc {
903 u32 c_cpos;
904 u32 c_phys;
Mark Fasheh9517bac2007-02-09 20:24:12 -0800905 /*
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700906 * Give this a unique field because c_phys eventually gets
907 * filled.
Mark Fasheh9517bac2007-02-09 20:24:12 -0800908 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700909 unsigned c_new;
Mark Fashehb27b7cb2007-06-18 11:22:56 -0700910 unsigned c_unwritten;
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700911};
Mark Fasheh9517bac2007-02-09 20:24:12 -0800912
Mark Fashehb27b7cb2007-06-18 11:22:56 -0700913static inline int ocfs2_should_zero_cluster(struct ocfs2_write_cluster_desc *d)
914{
915 return d->c_new || d->c_unwritten;
916}
917
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700918struct ocfs2_write_ctxt {
919 /* Logical cluster position / len of write */
920 u32 w_cpos;
921 u32 w_clen;
Mark Fasheh9517bac2007-02-09 20:24:12 -0800922
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700923 struct ocfs2_write_cluster_desc w_desc[OCFS2_MAX_CLUSTERS_PER_PAGE];
Mark Fasheh9517bac2007-02-09 20:24:12 -0800924
925 /*
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700926 * This is true if page_size > cluster_size.
Mark Fasheh9517bac2007-02-09 20:24:12 -0800927 *
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700928 * It triggers a set of special cases during write which might
929 * have to deal with allocating writes to partial pages.
Mark Fasheh9517bac2007-02-09 20:24:12 -0800930 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700931 unsigned int w_large_pages;
Mark Fasheh9517bac2007-02-09 20:24:12 -0800932
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700933 /*
934 * Pages involved in this write.
935 *
936 * w_target_page is the page being written to by the user.
937 *
938 * w_pages is an array of pages which always contains
939 * w_target_page, and in the case of an allocating write with
940 * page_size < cluster size, it will contain zero'd and mapped
941 * pages adjacent to w_target_page which need to be written
942 * out in so that future reads from that region will get
943 * zero's.
944 */
945 struct page *w_pages[OCFS2_MAX_CTXT_PAGES];
946 unsigned int w_num_pages;
947 struct page *w_target_page;
Mark Fasheh9517bac2007-02-09 20:24:12 -0800948
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700949 /*
950 * ocfs2_write_end() uses this to know what the real range to
951 * write in the target should be.
952 */
953 unsigned int w_target_from;
954 unsigned int w_target_to;
955
956 /*
957 * We could use journal_current_handle() but this is cleaner,
958 * IMHO -Mark
959 */
960 handle_t *w_handle;
961
962 struct buffer_head *w_di_bh;
Mark Fashehb27b7cb2007-06-18 11:22:56 -0700963
964 struct ocfs2_cached_dealloc_ctxt w_dealloc;
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700965};
966
Mark Fasheh1d410a62007-09-07 14:20:45 -0700967void ocfs2_unlock_and_free_pages(struct page **pages, int num_pages)
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700968{
969 int i;
970
Mark Fasheh1d410a62007-09-07 14:20:45 -0700971 for(i = 0; i < num_pages; i++) {
972 if (pages[i]) {
973 unlock_page(pages[i]);
974 mark_page_accessed(pages[i]);
975 page_cache_release(pages[i]);
976 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700977 }
Mark Fasheh1d410a62007-09-07 14:20:45 -0700978}
979
980static void ocfs2_free_write_ctxt(struct ocfs2_write_ctxt *wc)
981{
982 ocfs2_unlock_and_free_pages(wc->w_pages, wc->w_num_pages);
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700983
984 brelse(wc->w_di_bh);
985 kfree(wc);
986}
987
988static int ocfs2_alloc_write_ctxt(struct ocfs2_write_ctxt **wcp,
989 struct ocfs2_super *osb, loff_t pos,
Mark Fasheh607d44a2007-05-09 15:14:45 -0700990 unsigned len, struct buffer_head *di_bh)
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700991{
tao.ma@oracle.com30b85482007-09-06 08:02:25 +0800992 u32 cend;
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700993 struct ocfs2_write_ctxt *wc;
994
995 wc = kzalloc(sizeof(struct ocfs2_write_ctxt), GFP_NOFS);
996 if (!wc)
997 return -ENOMEM;
998
999 wc->w_cpos = pos >> osb->s_clustersize_bits;
tao.ma@oracle.com30b85482007-09-06 08:02:25 +08001000 cend = (pos + len - 1) >> osb->s_clustersize_bits;
1001 wc->w_clen = cend - wc->w_cpos + 1;
Mark Fasheh607d44a2007-05-09 15:14:45 -07001002 get_bh(di_bh);
1003 wc->w_di_bh = di_bh;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001004
1005 if (unlikely(PAGE_CACHE_SHIFT > osb->s_clustersize_bits))
1006 wc->w_large_pages = 1;
1007 else
1008 wc->w_large_pages = 0;
1009
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001010 ocfs2_init_dealloc_ctxt(&wc->w_dealloc);
1011
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001012 *wcp = wc;
1013
1014 return 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001015}
1016
1017/*
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001018 * If a page has any new buffers, zero them out here, and mark them uptodate
1019 * and dirty so they'll be written out (in order to prevent uninitialised
1020 * block data from leaking). And clear the new bit.
Mark Fasheh9517bac2007-02-09 20:24:12 -08001021 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001022static void ocfs2_zero_new_buffers(struct page *page, unsigned from, unsigned to)
Mark Fasheh9517bac2007-02-09 20:24:12 -08001023{
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001024 unsigned int block_start, block_end;
1025 struct buffer_head *head, *bh;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001026
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001027 BUG_ON(!PageLocked(page));
1028 if (!page_has_buffers(page))
1029 return;
1030
1031 bh = head = page_buffers(page);
1032 block_start = 0;
1033 do {
1034 block_end = block_start + bh->b_size;
1035
1036 if (buffer_new(bh)) {
1037 if (block_end > from && block_start < to) {
1038 if (!PageUptodate(page)) {
1039 unsigned start, end;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001040
1041 start = max(from, block_start);
1042 end = min(to, block_end);
1043
Christoph Lametereebd2aa2008-02-04 22:28:29 -08001044 zero_user_segment(page, start, end);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001045 set_buffer_uptodate(bh);
1046 }
1047
1048 clear_buffer_new(bh);
1049 mark_buffer_dirty(bh);
1050 }
1051 }
1052
1053 block_start = block_end;
1054 bh = bh->b_this_page;
1055 } while (bh != head);
1056}
1057
1058/*
1059 * Only called when we have a failure during allocating write to write
1060 * zero's to the newly allocated region.
1061 */
1062static void ocfs2_write_failure(struct inode *inode,
1063 struct ocfs2_write_ctxt *wc,
1064 loff_t user_pos, unsigned user_len)
1065{
1066 int i;
Mark Fasheh5c26a7b2007-09-18 17:49:29 -07001067 unsigned from = user_pos & (PAGE_CACHE_SIZE - 1),
1068 to = user_pos + user_len;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001069 struct page *tmppage;
1070
Mark Fasheh5c26a7b2007-09-18 17:49:29 -07001071 ocfs2_zero_new_buffers(wc->w_target_page, from, to);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001072
1073 for(i = 0; i < wc->w_num_pages; i++) {
1074 tmppage = wc->w_pages[i];
1075
Sunil Mushran961cecb2008-07-16 17:22:22 -07001076 if (page_has_buffers(tmppage)) {
1077 if (ocfs2_should_order_data(inode))
1078 walk_page_buffers(wc->w_handle,
1079 page_buffers(tmppage),
1080 from, to, NULL,
1081 ocfs2_journal_dirty_data);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001082
Sunil Mushran961cecb2008-07-16 17:22:22 -07001083 block_commit_write(tmppage, from, to);
1084 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001085 }
1086}
1087
1088static int ocfs2_prepare_page_for_write(struct inode *inode, u64 *p_blkno,
1089 struct ocfs2_write_ctxt *wc,
1090 struct page *page, u32 cpos,
1091 loff_t user_pos, unsigned user_len,
1092 int new)
1093{
1094 int ret;
1095 unsigned int map_from = 0, map_to = 0;
1096 unsigned int cluster_start, cluster_end;
1097 unsigned int user_data_from = 0, user_data_to = 0;
1098
1099 ocfs2_figure_cluster_boundaries(OCFS2_SB(inode->i_sb), cpos,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001100 &cluster_start, &cluster_end);
1101
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001102 if (page == wc->w_target_page) {
1103 map_from = user_pos & (PAGE_CACHE_SIZE - 1);
1104 map_to = map_from + user_len;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001105
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001106 if (new)
1107 ret = ocfs2_map_page_blocks(page, p_blkno, inode,
1108 cluster_start, cluster_end,
1109 new);
1110 else
1111 ret = ocfs2_map_page_blocks(page, p_blkno, inode,
1112 map_from, map_to, new);
1113 if (ret) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001114 mlog_errno(ret);
1115 goto out;
1116 }
1117
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001118 user_data_from = map_from;
1119 user_data_to = map_to;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001120 if (new) {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001121 map_from = cluster_start;
1122 map_to = cluster_end;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001123 }
1124 } else {
1125 /*
1126 * If we haven't allocated the new page yet, we
1127 * shouldn't be writing it out without copying user
1128 * data. This is likely a math error from the caller.
1129 */
1130 BUG_ON(!new);
1131
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001132 map_from = cluster_start;
1133 map_to = cluster_end;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001134
1135 ret = ocfs2_map_page_blocks(page, p_blkno, inode,
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001136 cluster_start, cluster_end, new);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001137 if (ret) {
1138 mlog_errno(ret);
1139 goto out;
1140 }
1141 }
1142
1143 /*
1144 * Parts of newly allocated pages need to be zero'd.
1145 *
1146 * Above, we have also rewritten 'to' and 'from' - as far as
1147 * the rest of the function is concerned, the entire cluster
1148 * range inside of a page needs to be written.
1149 *
1150 * We can skip this if the page is up to date - it's already
1151 * been zero'd from being read in as a hole.
1152 */
1153 if (new && !PageUptodate(page))
1154 ocfs2_clear_page_regions(page, OCFS2_SB(inode->i_sb),
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001155 cpos, user_data_from, user_data_to);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001156
1157 flush_dcache_page(page);
1158
Mark Fasheh9517bac2007-02-09 20:24:12 -08001159out:
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001160 return ret;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001161}
1162
1163/*
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001164 * This function will only grab one clusters worth of pages.
Mark Fasheh9517bac2007-02-09 20:24:12 -08001165 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001166static int ocfs2_grab_pages_for_write(struct address_space *mapping,
1167 struct ocfs2_write_ctxt *wc,
Mark Fasheh7307de82007-05-09 15:16:19 -07001168 u32 cpos, loff_t user_pos, int new,
1169 struct page *mmap_page)
Mark Fasheh9517bac2007-02-09 20:24:12 -08001170{
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001171 int ret = 0, i;
1172 unsigned long start, target_index, index;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001173 struct inode *inode = mapping->host;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001174
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001175 target_index = user_pos >> PAGE_CACHE_SHIFT;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001176
1177 /*
1178 * Figure out how many pages we'll be manipulating here. For
Mark Fasheh60b11392007-02-16 11:46:50 -08001179 * non allocating write, we just change the one
1180 * page. Otherwise, we'll need a whole clusters worth.
Mark Fasheh9517bac2007-02-09 20:24:12 -08001181 */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001182 if (new) {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001183 wc->w_num_pages = ocfs2_pages_per_cluster(inode->i_sb);
1184 start = ocfs2_align_clusters_to_page_index(inode->i_sb, cpos);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001185 } else {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001186 wc->w_num_pages = 1;
1187 start = target_index;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001188 }
1189
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001190 for(i = 0; i < wc->w_num_pages; i++) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001191 index = start + i;
1192
Mark Fasheh7307de82007-05-09 15:16:19 -07001193 if (index == target_index && mmap_page) {
1194 /*
1195 * ocfs2_pagemkwrite() is a little different
1196 * and wants us to directly use the page
1197 * passed in.
1198 */
1199 lock_page(mmap_page);
1200
1201 if (mmap_page->mapping != mapping) {
1202 unlock_page(mmap_page);
1203 /*
1204 * Sanity check - the locking in
1205 * ocfs2_pagemkwrite() should ensure
1206 * that this code doesn't trigger.
1207 */
1208 ret = -EINVAL;
1209 mlog_errno(ret);
1210 goto out;
1211 }
1212
1213 page_cache_get(mmap_page);
1214 wc->w_pages[i] = mmap_page;
1215 } else {
1216 wc->w_pages[i] = find_or_create_page(mapping, index,
1217 GFP_NOFS);
1218 if (!wc->w_pages[i]) {
1219 ret = -ENOMEM;
1220 mlog_errno(ret);
1221 goto out;
1222 }
Mark Fasheh9517bac2007-02-09 20:24:12 -08001223 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001224
1225 if (index == target_index)
1226 wc->w_target_page = wc->w_pages[i];
Mark Fasheh9517bac2007-02-09 20:24:12 -08001227 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001228out:
1229 return ret;
1230}
1231
1232/*
1233 * Prepare a single cluster for write one cluster into the file.
1234 */
1235static int ocfs2_write_cluster(struct address_space *mapping,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001236 u32 phys, unsigned int unwritten,
1237 struct ocfs2_alloc_context *data_ac,
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001238 struct ocfs2_alloc_context *meta_ac,
1239 struct ocfs2_write_ctxt *wc, u32 cpos,
1240 loff_t user_pos, unsigned user_len)
1241{
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001242 int ret, i, new, should_zero = 0;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001243 u64 v_blkno, p_blkno;
1244 struct inode *inode = mapping->host;
Joel Beckerf99b9b72008-08-20 19:36:33 -07001245 struct ocfs2_extent_tree et;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001246
1247 new = phys == 0 ? 1 : 0;
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001248 if (new || unwritten)
1249 should_zero = 1;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001250
1251 if (new) {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001252 u32 tmp_pos;
1253
Mark Fasheh9517bac2007-02-09 20:24:12 -08001254 /*
1255 * This is safe to call with the page locks - it won't take
1256 * any additional semaphores or cluster locks.
1257 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001258 tmp_pos = cpos;
Tao Ma0eb8d472008-08-18 17:38:45 +08001259 ret = ocfs2_add_inode_data(OCFS2_SB(inode->i_sb), inode,
1260 &tmp_pos, 1, 0, wc->w_di_bh,
1261 wc->w_handle, data_ac,
1262 meta_ac, NULL);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001263 /*
1264 * This shouldn't happen because we must have already
1265 * calculated the correct meta data allocation required. The
1266 * internal tree allocation code should know how to increase
1267 * transaction credits itself.
1268 *
1269 * If need be, we could handle -EAGAIN for a
1270 * RESTART_TRANS here.
1271 */
1272 mlog_bug_on_msg(ret == -EAGAIN,
1273 "Inode %llu: EAGAIN return during allocation.\n",
1274 (unsigned long long)OCFS2_I(inode)->ip_blkno);
1275 if (ret < 0) {
1276 mlog_errno(ret);
1277 goto out;
1278 }
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001279 } else if (unwritten) {
Joel Beckerf99b9b72008-08-20 19:36:33 -07001280 ocfs2_get_dinode_extent_tree(&et, inode, wc->w_di_bh);
1281 ret = ocfs2_mark_extent_written(inode, &et,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001282 wc->w_handle, cpos, 1, phys,
Joel Beckerf99b9b72008-08-20 19:36:33 -07001283 meta_ac, &wc->w_dealloc);
1284 ocfs2_put_extent_tree(&et);
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001285 if (ret < 0) {
1286 mlog_errno(ret);
1287 goto out;
1288 }
Mark Fasheh9517bac2007-02-09 20:24:12 -08001289 }
1290
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001291 if (should_zero)
1292 v_blkno = ocfs2_clusters_to_blocks(inode->i_sb, cpos);
1293 else
1294 v_blkno = user_pos >> inode->i_sb->s_blocksize_bits;
1295
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001296 /*
1297 * The only reason this should fail is due to an inability to
1298 * find the extent added.
1299 */
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001300 ret = ocfs2_extent_map_get_blocks(inode, v_blkno, &p_blkno, NULL,
1301 NULL);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001302 if (ret < 0) {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001303 ocfs2_error(inode->i_sb, "Corrupting extend for inode %llu, "
1304 "at logical block %llu",
1305 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1306 (unsigned long long)v_blkno);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001307 goto out;
1308 }
1309
1310 BUG_ON(p_blkno == 0);
1311
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001312 for(i = 0; i < wc->w_num_pages; i++) {
1313 int tmpret;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001314
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001315 tmpret = ocfs2_prepare_page_for_write(inode, &p_blkno, wc,
1316 wc->w_pages[i], cpos,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001317 user_pos, user_len,
1318 should_zero);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001319 if (tmpret) {
1320 mlog_errno(tmpret);
1321 if (ret == 0)
1322 tmpret = ret;
1323 }
Mark Fasheh9517bac2007-02-09 20:24:12 -08001324 }
1325
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001326 /*
1327 * We only have cleanup to do in case of allocating write.
1328 */
1329 if (ret && new)
1330 ocfs2_write_failure(inode, wc, user_pos, user_len);
1331
Mark Fasheh9517bac2007-02-09 20:24:12 -08001332out:
Mark Fasheh9517bac2007-02-09 20:24:12 -08001333
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001334 return ret;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001335}
1336
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001337static int ocfs2_write_cluster_by_desc(struct address_space *mapping,
1338 struct ocfs2_alloc_context *data_ac,
1339 struct ocfs2_alloc_context *meta_ac,
1340 struct ocfs2_write_ctxt *wc,
1341 loff_t pos, unsigned len)
1342{
1343 int ret, i;
Mark Fashehdb562462007-09-17 09:06:29 -07001344 loff_t cluster_off;
1345 unsigned int local_len = len;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001346 struct ocfs2_write_cluster_desc *desc;
Mark Fashehdb562462007-09-17 09:06:29 -07001347 struct ocfs2_super *osb = OCFS2_SB(mapping->host->i_sb);
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001348
1349 for (i = 0; i < wc->w_clen; i++) {
1350 desc = &wc->w_desc[i];
1351
Mark Fashehdb562462007-09-17 09:06:29 -07001352 /*
1353 * We have to make sure that the total write passed in
1354 * doesn't extend past a single cluster.
1355 */
1356 local_len = len;
1357 cluster_off = pos & (osb->s_clustersize - 1);
1358 if ((cluster_off + local_len) > osb->s_clustersize)
1359 local_len = osb->s_clustersize - cluster_off;
1360
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001361 ret = ocfs2_write_cluster(mapping, desc->c_phys,
1362 desc->c_unwritten, data_ac, meta_ac,
Mark Fashehdb562462007-09-17 09:06:29 -07001363 wc, desc->c_cpos, pos, local_len);
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001364 if (ret) {
1365 mlog_errno(ret);
1366 goto out;
1367 }
Mark Fashehdb562462007-09-17 09:06:29 -07001368
1369 len -= local_len;
1370 pos += local_len;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001371 }
1372
1373 ret = 0;
1374out:
1375 return ret;
1376}
1377
Mark Fasheh9517bac2007-02-09 20:24:12 -08001378/*
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001379 * ocfs2_write_end() wants to know which parts of the target page it
1380 * should complete the write on. It's easiest to compute them ahead of
1381 * time when a more complete view of the write is available.
Mark Fasheh9517bac2007-02-09 20:24:12 -08001382 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001383static void ocfs2_set_target_boundaries(struct ocfs2_super *osb,
1384 struct ocfs2_write_ctxt *wc,
1385 loff_t pos, unsigned len, int alloc)
Mark Fasheh9517bac2007-02-09 20:24:12 -08001386{
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001387 struct ocfs2_write_cluster_desc *desc;
1388
1389 wc->w_target_from = pos & (PAGE_CACHE_SIZE - 1);
1390 wc->w_target_to = wc->w_target_from + len;
1391
1392 if (alloc == 0)
1393 return;
1394
1395 /*
1396 * Allocating write - we may have different boundaries based
1397 * on page size and cluster size.
1398 *
1399 * NOTE: We can no longer compute one value from the other as
1400 * the actual write length and user provided length may be
1401 * different.
1402 */
1403
1404 if (wc->w_large_pages) {
1405 /*
1406 * We only care about the 1st and last cluster within
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001407 * our range and whether they should be zero'd or not. Either
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001408 * value may be extended out to the start/end of a
1409 * newly allocated cluster.
1410 */
1411 desc = &wc->w_desc[0];
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001412 if (ocfs2_should_zero_cluster(desc))
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001413 ocfs2_figure_cluster_boundaries(osb,
1414 desc->c_cpos,
1415 &wc->w_target_from,
1416 NULL);
1417
1418 desc = &wc->w_desc[wc->w_clen - 1];
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001419 if (ocfs2_should_zero_cluster(desc))
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001420 ocfs2_figure_cluster_boundaries(osb,
1421 desc->c_cpos,
1422 NULL,
1423 &wc->w_target_to);
1424 } else {
1425 wc->w_target_from = 0;
1426 wc->w_target_to = PAGE_CACHE_SIZE;
1427 }
1428}
1429
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001430/*
1431 * Populate each single-cluster write descriptor in the write context
1432 * with information about the i/o to be done.
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001433 *
1434 * Returns the number of clusters that will have to be allocated, as
1435 * well as a worst case estimate of the number of extent records that
1436 * would have to be created during a write to an unwritten region.
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001437 */
1438static int ocfs2_populate_write_desc(struct inode *inode,
1439 struct ocfs2_write_ctxt *wc,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001440 unsigned int *clusters_to_alloc,
1441 unsigned int *extents_to_split)
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001442{
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001443 int ret;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001444 struct ocfs2_write_cluster_desc *desc;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001445 unsigned int num_clusters = 0;
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001446 unsigned int ext_flags = 0;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001447 u32 phys = 0;
1448 int i;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001449
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001450 *clusters_to_alloc = 0;
1451 *extents_to_split = 0;
1452
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001453 for (i = 0; i < wc->w_clen; i++) {
1454 desc = &wc->w_desc[i];
1455 desc->c_cpos = wc->w_cpos + i;
1456
1457 if (num_clusters == 0) {
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001458 /*
1459 * Need to look up the next extent record.
1460 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001461 ret = ocfs2_get_clusters(inode, desc->c_cpos, &phys,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001462 &num_clusters, &ext_flags);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001463 if (ret) {
1464 mlog_errno(ret);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001465 goto out;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001466 }
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001467
1468 /*
1469 * Assume worst case - that we're writing in
1470 * the middle of the extent.
1471 *
1472 * We can assume that the write proceeds from
1473 * left to right, in which case the extent
1474 * insert code is smart enough to coalesce the
1475 * next splits into the previous records created.
1476 */
1477 if (ext_flags & OCFS2_EXT_UNWRITTEN)
1478 *extents_to_split = *extents_to_split + 2;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001479 } else if (phys) {
1480 /*
1481 * Only increment phys if it doesn't describe
1482 * a hole.
1483 */
1484 phys++;
1485 }
1486
1487 desc->c_phys = phys;
1488 if (phys == 0) {
1489 desc->c_new = 1;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001490 *clusters_to_alloc = *clusters_to_alloc + 1;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001491 }
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001492 if (ext_flags & OCFS2_EXT_UNWRITTEN)
1493 desc->c_unwritten = 1;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001494
1495 num_clusters--;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001496 }
1497
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001498 ret = 0;
1499out:
1500 return ret;
1501}
1502
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001503static int ocfs2_write_begin_inline(struct address_space *mapping,
1504 struct inode *inode,
1505 struct ocfs2_write_ctxt *wc)
1506{
1507 int ret;
1508 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1509 struct page *page;
1510 handle_t *handle;
1511 struct ocfs2_dinode *di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
1512
1513 page = find_or_create_page(mapping, 0, GFP_NOFS);
1514 if (!page) {
1515 ret = -ENOMEM;
1516 mlog_errno(ret);
1517 goto out;
1518 }
1519 /*
1520 * If we don't set w_num_pages then this page won't get unlocked
1521 * and freed on cleanup of the write context.
1522 */
1523 wc->w_pages[0] = wc->w_target_page = page;
1524 wc->w_num_pages = 1;
1525
1526 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1527 if (IS_ERR(handle)) {
1528 ret = PTR_ERR(handle);
1529 mlog_errno(ret);
1530 goto out;
1531 }
1532
1533 ret = ocfs2_journal_access(handle, inode, wc->w_di_bh,
1534 OCFS2_JOURNAL_ACCESS_WRITE);
1535 if (ret) {
1536 ocfs2_commit_trans(osb, handle);
1537
1538 mlog_errno(ret);
1539 goto out;
1540 }
1541
1542 if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL))
1543 ocfs2_set_inode_data_inline(inode, di);
1544
1545 if (!PageUptodate(page)) {
1546 ret = ocfs2_read_inline_data(inode, page, wc->w_di_bh);
1547 if (ret) {
1548 ocfs2_commit_trans(osb, handle);
1549
1550 goto out;
1551 }
1552 }
1553
1554 wc->w_handle = handle;
1555out:
1556 return ret;
1557}
1558
1559int ocfs2_size_fits_inline_data(struct buffer_head *di_bh, u64 new_size)
1560{
1561 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1562
Mark Fasheh0d8a4e02007-11-20 11:48:41 -08001563 if (new_size <= le16_to_cpu(di->id2.i_data.id_count))
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001564 return 1;
1565 return 0;
1566}
1567
1568static int ocfs2_try_to_write_inline_data(struct address_space *mapping,
1569 struct inode *inode, loff_t pos,
1570 unsigned len, struct page *mmap_page,
1571 struct ocfs2_write_ctxt *wc)
1572{
1573 int ret, written = 0;
1574 loff_t end = pos + len;
1575 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1576
1577 mlog(0, "Inode %llu, write of %u bytes at off %llu. features: 0x%x\n",
1578 (unsigned long long)oi->ip_blkno, len, (unsigned long long)pos,
1579 oi->ip_dyn_features);
1580
1581 /*
1582 * Handle inodes which already have inline data 1st.
1583 */
1584 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1585 if (mmap_page == NULL &&
1586 ocfs2_size_fits_inline_data(wc->w_di_bh, end))
1587 goto do_inline_write;
1588
1589 /*
1590 * The write won't fit - we have to give this inode an
1591 * inline extent list now.
1592 */
1593 ret = ocfs2_convert_inline_data_to_extents(inode, wc->w_di_bh);
1594 if (ret)
1595 mlog_errno(ret);
1596 goto out;
1597 }
1598
1599 /*
1600 * Check whether the inode can accept inline data.
1601 */
1602 if (oi->ip_clusters != 0 || i_size_read(inode) != 0)
1603 return 0;
1604
1605 /*
1606 * Check whether the write can fit.
1607 */
1608 if (mmap_page || end > ocfs2_max_inline_data(inode->i_sb))
1609 return 0;
1610
1611do_inline_write:
1612 ret = ocfs2_write_begin_inline(mapping, inode, wc);
1613 if (ret) {
1614 mlog_errno(ret);
1615 goto out;
1616 }
1617
1618 /*
1619 * This signals to the caller that the data can be written
1620 * inline.
1621 */
1622 written = 1;
1623out:
1624 return written ? written : ret;
1625}
1626
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001627/*
1628 * This function only does anything for file systems which can't
1629 * handle sparse files.
1630 *
1631 * What we want to do here is fill in any hole between the current end
1632 * of allocation and the end of our write. That way the rest of the
1633 * write path can treat it as an non-allocating write, which has no
1634 * special case code for sparse/nonsparse files.
1635 */
1636static int ocfs2_expand_nonsparse_inode(struct inode *inode, loff_t pos,
1637 unsigned len,
1638 struct ocfs2_write_ctxt *wc)
1639{
1640 int ret;
1641 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1642 loff_t newsize = pos + len;
1643
1644 if (ocfs2_sparse_alloc(osb))
1645 return 0;
1646
1647 if (newsize <= i_size_read(inode))
1648 return 0;
1649
1650 ret = ocfs2_extend_no_holes(inode, newsize, newsize - len);
1651 if (ret)
1652 mlog_errno(ret);
1653
1654 return ret;
1655}
1656
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001657int ocfs2_write_begin_nolock(struct address_space *mapping,
1658 loff_t pos, unsigned len, unsigned flags,
1659 struct page **pagep, void **fsdata,
1660 struct buffer_head *di_bh, struct page *mmap_page)
1661{
1662 int ret, credits = OCFS2_INODE_UPDATE_CREDITS;
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001663 unsigned int clusters_to_alloc, extents_to_split;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001664 struct ocfs2_write_ctxt *wc;
1665 struct inode *inode = mapping->host;
1666 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1667 struct ocfs2_dinode *di;
1668 struct ocfs2_alloc_context *data_ac = NULL;
1669 struct ocfs2_alloc_context *meta_ac = NULL;
1670 handle_t *handle;
Joel Beckerf99b9b72008-08-20 19:36:33 -07001671 struct ocfs2_extent_tree et;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001672
1673 ret = ocfs2_alloc_write_ctxt(&wc, osb, pos, len, di_bh);
1674 if (ret) {
1675 mlog_errno(ret);
1676 return ret;
1677 }
1678
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001679 if (ocfs2_supports_inline_data(osb)) {
1680 ret = ocfs2_try_to_write_inline_data(mapping, inode, pos, len,
1681 mmap_page, wc);
1682 if (ret == 1) {
1683 ret = 0;
1684 goto success;
1685 }
1686 if (ret < 0) {
1687 mlog_errno(ret);
1688 goto out;
1689 }
1690 }
1691
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001692 ret = ocfs2_expand_nonsparse_inode(inode, pos, len, wc);
1693 if (ret) {
1694 mlog_errno(ret);
1695 goto out;
1696 }
1697
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001698 ret = ocfs2_populate_write_desc(inode, wc, &clusters_to_alloc,
1699 &extents_to_split);
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001700 if (ret) {
1701 mlog_errno(ret);
1702 goto out;
1703 }
1704
1705 di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
1706
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001707 /*
1708 * We set w_target_from, w_target_to here so that
1709 * ocfs2_write_end() knows which range in the target page to
1710 * write out. An allocation requires that we write the entire
1711 * cluster range.
1712 */
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001713 if (clusters_to_alloc || extents_to_split) {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001714 /*
1715 * XXX: We are stretching the limits of
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001716 * ocfs2_lock_allocators(). It greatly over-estimates
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001717 * the work to be done.
1718 */
Tao Mae7d4cb62008-08-18 17:38:44 +08001719 mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u,"
1720 " clusters_to_add = %u, extents_to_split = %u\n",
1721 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1722 (long long)i_size_read(inode), le32_to_cpu(di->i_clusters),
1723 clusters_to_alloc, extents_to_split);
1724
Joel Beckerf99b9b72008-08-20 19:36:33 -07001725 ocfs2_get_dinode_extent_tree(&et, inode, wc->w_di_bh);
1726 ret = ocfs2_lock_allocators(inode, &et,
Tao Ma231b87d2008-08-18 17:38:42 +08001727 clusters_to_alloc, extents_to_split,
Joel Beckerf99b9b72008-08-20 19:36:33 -07001728 &data_ac, &meta_ac);
1729 ocfs2_put_extent_tree(&et);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001730 if (ret) {
1731 mlog_errno(ret);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001732 goto out;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001733 }
1734
Tao Ma811f9332008-08-18 17:38:43 +08001735 credits = ocfs2_calc_extend_credits(inode->i_sb,
1736 &di->id2.i_list,
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001737 clusters_to_alloc);
1738
Mark Fasheh9517bac2007-02-09 20:24:12 -08001739 }
1740
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001741 ocfs2_set_target_boundaries(osb, wc, pos, len,
1742 clusters_to_alloc + extents_to_split);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001743
Mark Fasheh9517bac2007-02-09 20:24:12 -08001744 handle = ocfs2_start_trans(osb, credits);
1745 if (IS_ERR(handle)) {
1746 ret = PTR_ERR(handle);
1747 mlog_errno(ret);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001748 goto out;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001749 }
1750
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001751 wc->w_handle = handle;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001752
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001753 /*
1754 * We don't want this to fail in ocfs2_write_end(), so do it
1755 * here.
1756 */
1757 ret = ocfs2_journal_access(handle, inode, wc->w_di_bh,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001758 OCFS2_JOURNAL_ACCESS_WRITE);
1759 if (ret) {
1760 mlog_errno(ret);
1761 goto out_commit;
1762 }
1763
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001764 /*
1765 * Fill our page array first. That way we've grabbed enough so
1766 * that we can zero and flush if we error after adding the
1767 * extent.
1768 */
1769 ret = ocfs2_grab_pages_for_write(mapping, wc, wc->w_cpos, pos,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001770 clusters_to_alloc + extents_to_split,
1771 mmap_page);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001772 if (ret) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001773 mlog_errno(ret);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001774 goto out_commit;
1775 }
Mark Fasheh9517bac2007-02-09 20:24:12 -08001776
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001777 ret = ocfs2_write_cluster_by_desc(mapping, data_ac, meta_ac, wc, pos,
1778 len);
1779 if (ret) {
1780 mlog_errno(ret);
1781 goto out_commit;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001782 }
1783
1784 if (data_ac)
1785 ocfs2_free_alloc_context(data_ac);
1786 if (meta_ac)
1787 ocfs2_free_alloc_context(meta_ac);
1788
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001789success:
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001790 *pagep = wc->w_target_page;
1791 *fsdata = wc;
1792 return 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001793out_commit:
1794 ocfs2_commit_trans(osb, handle);
1795
Mark Fasheh9517bac2007-02-09 20:24:12 -08001796out:
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001797 ocfs2_free_write_ctxt(wc);
1798
Mark Fasheh9517bac2007-02-09 20:24:12 -08001799 if (data_ac)
1800 ocfs2_free_alloc_context(data_ac);
1801 if (meta_ac)
1802 ocfs2_free_alloc_context(meta_ac);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001803 return ret;
1804}
Mark Fasheh9517bac2007-02-09 20:24:12 -08001805
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001806static int ocfs2_write_begin(struct file *file, struct address_space *mapping,
1807 loff_t pos, unsigned len, unsigned flags,
1808 struct page **pagep, void **fsdata)
Mark Fasheh607d44a2007-05-09 15:14:45 -07001809{
1810 int ret;
1811 struct buffer_head *di_bh = NULL;
1812 struct inode *inode = mapping->host;
1813
Mark Fashehe63aecb62007-10-18 15:30:42 -07001814 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001815 if (ret) {
1816 mlog_errno(ret);
1817 return ret;
1818 }
1819
1820 /*
1821 * Take alloc sem here to prevent concurrent lookups. That way
1822 * the mapping, zeroing and tree manipulation within
1823 * ocfs2_write() will be safe against ->readpage(). This
1824 * should also serve to lock out allocation from a shared
1825 * writeable region.
1826 */
1827 down_write(&OCFS2_I(inode)->ip_alloc_sem);
1828
Mark Fasheh607d44a2007-05-09 15:14:45 -07001829 ret = ocfs2_write_begin_nolock(mapping, pos, len, flags, pagep,
Mark Fasheh7307de82007-05-09 15:16:19 -07001830 fsdata, di_bh, NULL);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001831 if (ret) {
1832 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -07001833 goto out_fail;
Mark Fasheh607d44a2007-05-09 15:14:45 -07001834 }
1835
1836 brelse(di_bh);
1837
1838 return 0;
1839
Mark Fasheh607d44a2007-05-09 15:14:45 -07001840out_fail:
1841 up_write(&OCFS2_I(inode)->ip_alloc_sem);
1842
1843 brelse(di_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001844 ocfs2_inode_unlock(inode, 1);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001845
1846 return ret;
1847}
1848
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001849static void ocfs2_write_end_inline(struct inode *inode, loff_t pos,
1850 unsigned len, unsigned *copied,
1851 struct ocfs2_dinode *di,
1852 struct ocfs2_write_ctxt *wc)
1853{
1854 void *kaddr;
1855
1856 if (unlikely(*copied < len)) {
1857 if (!PageUptodate(wc->w_target_page)) {
1858 *copied = 0;
1859 return;
1860 }
1861 }
1862
1863 kaddr = kmap_atomic(wc->w_target_page, KM_USER0);
1864 memcpy(di->id2.i_data.id_data + pos, kaddr + pos, *copied);
1865 kunmap_atomic(kaddr, KM_USER0);
1866
1867 mlog(0, "Data written to inode at offset %llu. "
1868 "id_count = %u, copied = %u, i_dyn_features = 0x%x\n",
1869 (unsigned long long)pos, *copied,
1870 le16_to_cpu(di->id2.i_data.id_count),
1871 le16_to_cpu(di->i_dyn_features));
1872}
1873
Mark Fasheh7307de82007-05-09 15:16:19 -07001874int ocfs2_write_end_nolock(struct address_space *mapping,
1875 loff_t pos, unsigned len, unsigned copied,
1876 struct page *page, void *fsdata)
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001877{
1878 int i;
1879 unsigned from, to, start = pos & (PAGE_CACHE_SIZE - 1);
1880 struct inode *inode = mapping->host;
1881 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1882 struct ocfs2_write_ctxt *wc = fsdata;
1883 struct ocfs2_dinode *di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
1884 handle_t *handle = wc->w_handle;
1885 struct page *tmppage;
1886
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001887 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1888 ocfs2_write_end_inline(inode, pos, len, &copied, di, wc);
1889 goto out_write_size;
1890 }
1891
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001892 if (unlikely(copied < len)) {
1893 if (!PageUptodate(wc->w_target_page))
1894 copied = 0;
1895
1896 ocfs2_zero_new_buffers(wc->w_target_page, start+copied,
1897 start+len);
1898 }
1899 flush_dcache_page(wc->w_target_page);
1900
1901 for(i = 0; i < wc->w_num_pages; i++) {
1902 tmppage = wc->w_pages[i];
1903
1904 if (tmppage == wc->w_target_page) {
1905 from = wc->w_target_from;
1906 to = wc->w_target_to;
1907
1908 BUG_ON(from > PAGE_CACHE_SIZE ||
1909 to > PAGE_CACHE_SIZE ||
1910 to < from);
1911 } else {
1912 /*
1913 * Pages adjacent to the target (if any) imply
1914 * a hole-filling write in which case we want
1915 * to flush their entire range.
1916 */
1917 from = 0;
1918 to = PAGE_CACHE_SIZE;
1919 }
1920
Sunil Mushran961cecb2008-07-16 17:22:22 -07001921 if (page_has_buffers(tmppage)) {
1922 if (ocfs2_should_order_data(inode))
1923 walk_page_buffers(wc->w_handle,
1924 page_buffers(tmppage),
1925 from, to, NULL,
1926 ocfs2_journal_dirty_data);
1927 block_commit_write(tmppage, from, to);
1928 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001929 }
1930
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001931out_write_size:
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001932 pos += copied;
1933 if (pos > inode->i_size) {
1934 i_size_write(inode, pos);
1935 mark_inode_dirty(inode);
1936 }
1937 inode->i_blocks = ocfs2_inode_sector_count(inode);
1938 di->i_size = cpu_to_le64((u64)i_size_read(inode));
1939 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1940 di->i_mtime = di->i_ctime = cpu_to_le64(inode->i_mtime.tv_sec);
1941 di->i_mtime_nsec = di->i_ctime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001942 ocfs2_journal_dirty(handle, wc->w_di_bh);
1943
1944 ocfs2_commit_trans(osb, handle);
Mark Fasheh59a5e412007-06-22 15:52:36 -07001945
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001946 ocfs2_run_deallocs(osb, &wc->w_dealloc);
1947
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001948 ocfs2_free_write_ctxt(wc);
1949
1950 return copied;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001951}
1952
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001953static int ocfs2_write_end(struct file *file, struct address_space *mapping,
1954 loff_t pos, unsigned len, unsigned copied,
1955 struct page *page, void *fsdata)
Mark Fasheh607d44a2007-05-09 15:14:45 -07001956{
1957 int ret;
1958 struct inode *inode = mapping->host;
1959
1960 ret = ocfs2_write_end_nolock(mapping, pos, len, copied, page, fsdata);
1961
Mark Fasheh607d44a2007-05-09 15:14:45 -07001962 up_write(&OCFS2_I(inode)->ip_alloc_sem);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001963 ocfs2_inode_unlock(inode, 1);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001964
1965 return ret;
1966}
1967
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001968const struct address_space_operations ocfs2_aops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08001969 .readpage = ocfs2_readpage,
Mark Fasheh628a24f2007-10-30 12:08:32 -07001970 .readpages = ocfs2_readpages,
Mark Fashehccd979b2005-12-15 14:31:24 -08001971 .writepage = ocfs2_writepage,
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001972 .write_begin = ocfs2_write_begin,
1973 .write_end = ocfs2_write_end,
Mark Fashehccd979b2005-12-15 14:31:24 -08001974 .bmap = ocfs2_bmap,
1975 .sync_page = block_sync_page,
Joel Becker03f981c2007-01-04 14:54:41 -08001976 .direct_IO = ocfs2_direct_IO,
1977 .invalidatepage = ocfs2_invalidatepage,
1978 .releasepage = ocfs2_releasepage,
1979 .migratepage = buffer_migrate_page,
Mark Fashehccd979b2005-12-15 14:31:24 -08001980};