blob: 98e16fb49e4bb2894fee7782ccc424142b04eb80 [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:
Mark Fasheha81cb882008-10-07 14:25:16 -0700131 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800132
133 mlog_exit(err);
134 return err;
135}
136
137static int ocfs2_get_block(struct inode *inode, sector_t iblock,
138 struct buffer_head *bh_result, int create)
139{
140 int err = 0;
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800141 unsigned int ext_flags;
Mark Fasheh628a24f2007-10-30 12:08:32 -0700142 u64 max_blocks = bh_result->b_size >> inode->i_blkbits;
143 u64 p_blkno, count, past_eof;
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800144 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800145
146 mlog_entry("(0x%p, %llu, 0x%p, %d)\n", inode,
147 (unsigned long long)iblock, bh_result, create);
148
149 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_SYSTEM_FILE)
150 mlog(ML_NOTICE, "get_block on system inode 0x%p (%lu)\n",
151 inode, inode->i_ino);
152
153 if (S_ISLNK(inode->i_mode)) {
154 /* this always does I/O for some reason. */
155 err = ocfs2_symlink_get_block(inode, iblock, bh_result, create);
156 goto bail;
157 }
158
Mark Fasheh628a24f2007-10-30 12:08:32 -0700159 err = ocfs2_extent_map_get_blocks(inode, iblock, &p_blkno, &count,
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800160 &ext_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800161 if (err) {
162 mlog(ML_ERROR, "Error %d from get_blocks(0x%p, %llu, 1, "
Mark Fashehb06970532006-03-03 10:24:33 -0800163 "%llu, NULL)\n", err, inode, (unsigned long long)iblock,
164 (unsigned long long)p_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -0800165 goto bail;
166 }
167
Mark Fasheh628a24f2007-10-30 12:08:32 -0700168 if (max_blocks < count)
169 count = max_blocks;
170
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800171 /*
172 * ocfs2 never allocates in this function - the only time we
173 * need to use BH_New is when we're extending i_size on a file
174 * system which doesn't support holes, in which case BH_New
175 * allows block_prepare_write() to zero.
Coly Lic0420ad2008-06-30 18:45:45 +0800176 *
177 * If we see this on a sparse file system, then a truncate has
178 * raced us and removed the cluster. In this case, we clear
179 * the buffers dirty and uptodate bits and let the buffer code
180 * ignore it as a hole.
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800181 */
Coly Lic0420ad2008-06-30 18:45:45 +0800182 if (create && p_blkno == 0 && ocfs2_sparse_alloc(osb)) {
183 clear_buffer_dirty(bh_result);
184 clear_buffer_uptodate(bh_result);
185 goto bail;
186 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800187
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800188 /* Treat the unwritten extent as a hole for zeroing purposes. */
189 if (p_blkno && !(ext_flags & OCFS2_EXT_UNWRITTEN))
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800190 map_bh(bh_result, inode->i_sb, p_blkno);
191
Mark Fasheh628a24f2007-10-30 12:08:32 -0700192 bh_result->b_size = count << inode->i_blkbits;
193
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800194 if (!ocfs2_sparse_alloc(osb)) {
195 if (p_blkno == 0) {
196 err = -EIO;
197 mlog(ML_ERROR,
198 "iblock = %llu p_blkno = %llu blkno=(%llu)\n",
199 (unsigned long long)iblock,
200 (unsigned long long)p_blkno,
201 (unsigned long long)OCFS2_I(inode)->ip_blkno);
202 mlog(ML_ERROR, "Size %llu, clusters %u\n", (unsigned long long)i_size_read(inode), OCFS2_I(inode)->ip_clusters);
203 dump_stack();
204 }
205
206 past_eof = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode));
207 mlog(0, "Inode %lu, past_eof = %llu\n", inode->i_ino,
208 (unsigned long long)past_eof);
209
210 if (create && (iblock >= past_eof))
211 set_buffer_new(bh_result);
Mark Fashehccd979b2005-12-15 14:31:24 -0800212 }
213
Mark Fashehccd979b2005-12-15 14:31:24 -0800214bail:
215 if (err < 0)
216 err = -EIO;
217
218 mlog_exit(err);
219 return err;
220}
221
Mark Fasheh1afc32b2007-09-07 14:46:51 -0700222int ocfs2_read_inline_data(struct inode *inode, struct page *page,
223 struct buffer_head *di_bh)
Mark Fasheh6798d352007-09-07 14:05:51 -0700224{
225 void *kaddr;
Jan Karad2849fb2007-12-19 15:24:09 +0100226 loff_t size;
Mark Fasheh6798d352007-09-07 14:05:51 -0700227 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
228
229 if (!(le16_to_cpu(di->i_dyn_features) & OCFS2_INLINE_DATA_FL)) {
230 ocfs2_error(inode->i_sb, "Inode %llu lost inline data flag",
231 (unsigned long long)OCFS2_I(inode)->ip_blkno);
232 return -EROFS;
233 }
234
235 size = i_size_read(inode);
236
237 if (size > PAGE_CACHE_SIZE ||
238 size > ocfs2_max_inline_data(inode->i_sb)) {
239 ocfs2_error(inode->i_sb,
Jan Karad2849fb2007-12-19 15:24:09 +0100240 "Inode %llu has with inline data has bad size: %Lu",
241 (unsigned long long)OCFS2_I(inode)->ip_blkno,
242 (unsigned long long)size);
Mark Fasheh6798d352007-09-07 14:05:51 -0700243 return -EROFS;
244 }
245
246 kaddr = kmap_atomic(page, KM_USER0);
247 if (size)
248 memcpy(kaddr, di->id2.i_data.id_data, size);
249 /* Clear the remaining part of the page */
250 memset(kaddr + size, 0, PAGE_CACHE_SIZE - size);
251 flush_dcache_page(page);
252 kunmap_atomic(kaddr, KM_USER0);
253
254 SetPageUptodate(page);
255
256 return 0;
257}
258
259static int ocfs2_readpage_inline(struct inode *inode, struct page *page)
260{
261 int ret;
262 struct buffer_head *di_bh = NULL;
263 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
264
265 BUG_ON(!PageLocked(page));
Julia Lawall86c838b2008-02-26 21:45:56 +0100266 BUG_ON(!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL));
Mark Fasheh6798d352007-09-07 14:05:51 -0700267
268 ret = ocfs2_read_block(osb, OCFS2_I(inode)->ip_blkno, &di_bh,
269 OCFS2_BH_CACHED, inode);
270 if (ret) {
271 mlog_errno(ret);
272 goto out;
273 }
274
275 ret = ocfs2_read_inline_data(inode, page, di_bh);
276out:
277 unlock_page(page);
278
279 brelse(di_bh);
280 return ret;
281}
282
Mark Fashehccd979b2005-12-15 14:31:24 -0800283static int ocfs2_readpage(struct file *file, struct page *page)
284{
285 struct inode *inode = page->mapping->host;
Mark Fasheh6798d352007-09-07 14:05:51 -0700286 struct ocfs2_inode_info *oi = OCFS2_I(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800287 loff_t start = (loff_t)page->index << PAGE_CACHE_SHIFT;
288 int ret, unlock = 1;
289
290 mlog_entry("(0x%p, %lu)\n", file, (page ? page->index : 0));
291
Mark Fashehe63aecb62007-10-18 15:30:42 -0700292 ret = ocfs2_inode_lock_with_page(inode, NULL, 0, page);
Mark Fashehccd979b2005-12-15 14:31:24 -0800293 if (ret != 0) {
294 if (ret == AOP_TRUNCATED_PAGE)
295 unlock = 0;
296 mlog_errno(ret);
297 goto out;
298 }
299
Mark Fasheh6798d352007-09-07 14:05:51 -0700300 if (down_read_trylock(&oi->ip_alloc_sem) == 0) {
Mark Fashehe9dfc0b2007-05-14 11:38:51 -0700301 ret = AOP_TRUNCATED_PAGE;
Mark Fashehe63aecb62007-10-18 15:30:42 -0700302 goto out_inode_unlock;
Mark Fashehe9dfc0b2007-05-14 11:38:51 -0700303 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800304
305 /*
306 * i_size might have just been updated as we grabed the meta lock. We
307 * might now be discovering a truncate that hit on another node.
308 * block_read_full_page->get_block freaks out if it is asked to read
309 * beyond the end of a file, so we check here. Callers
Nick Piggin54cb8822007-07-19 01:46:59 -0700310 * (generic_file_read, vm_ops->fault) are clever enough to check i_size
Mark Fashehccd979b2005-12-15 14:31:24 -0800311 * and notice that the page they just read isn't needed.
312 *
313 * XXX sys_readahead() seems to get that wrong?
314 */
315 if (start >= i_size_read(inode)) {
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800316 zero_user(page, 0, PAGE_SIZE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800317 SetPageUptodate(page);
318 ret = 0;
319 goto out_alloc;
320 }
321
Mark Fasheh6798d352007-09-07 14:05:51 -0700322 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
323 ret = ocfs2_readpage_inline(inode, page);
324 else
325 ret = block_read_full_page(page, ocfs2_get_block);
Mark Fashehccd979b2005-12-15 14:31:24 -0800326 unlock = 0;
327
Mark Fashehccd979b2005-12-15 14:31:24 -0800328out_alloc:
329 up_read(&OCFS2_I(inode)->ip_alloc_sem);
Mark Fashehe63aecb62007-10-18 15:30:42 -0700330out_inode_unlock:
331 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800332out:
333 if (unlock)
334 unlock_page(page);
335 mlog_exit(ret);
336 return ret;
337}
338
Mark Fasheh628a24f2007-10-30 12:08:32 -0700339/*
340 * This is used only for read-ahead. Failures or difficult to handle
341 * situations are safe to ignore.
342 *
343 * Right now, we don't bother with BH_Boundary - in-inode extent lists
344 * are quite large (243 extents on 4k blocks), so most inodes don't
345 * grow out to a tree. If need be, detecting boundary extents could
346 * trivially be added in a future version of ocfs2_get_block().
347 */
348static int ocfs2_readpages(struct file *filp, struct address_space *mapping,
349 struct list_head *pages, unsigned nr_pages)
350{
351 int ret, err = -EIO;
352 struct inode *inode = mapping->host;
353 struct ocfs2_inode_info *oi = OCFS2_I(inode);
354 loff_t start;
355 struct page *last;
356
357 /*
358 * Use the nonblocking flag for the dlm code to avoid page
359 * lock inversion, but don't bother with retrying.
360 */
361 ret = ocfs2_inode_lock_full(inode, NULL, 0, OCFS2_LOCK_NONBLOCK);
362 if (ret)
363 return err;
364
365 if (down_read_trylock(&oi->ip_alloc_sem) == 0) {
366 ocfs2_inode_unlock(inode, 0);
367 return err;
368 }
369
370 /*
371 * Don't bother with inline-data. There isn't anything
372 * to read-ahead in that case anyway...
373 */
374 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL)
375 goto out_unlock;
376
377 /*
378 * Check whether a remote node truncated this file - we just
379 * drop out in that case as it's not worth handling here.
380 */
381 last = list_entry(pages->prev, struct page, lru);
382 start = (loff_t)last->index << PAGE_CACHE_SHIFT;
383 if (start >= i_size_read(inode))
384 goto out_unlock;
385
386 err = mpage_readpages(mapping, pages, nr_pages, ocfs2_get_block);
387
388out_unlock:
389 up_read(&oi->ip_alloc_sem);
390 ocfs2_inode_unlock(inode, 0);
391
392 return err;
393}
394
Mark Fashehccd979b2005-12-15 14:31:24 -0800395/* Note: Because we don't support holes, our allocation has
396 * already happened (allocation writes zeros to the file data)
397 * so we don't have to worry about ordered writes in
398 * ocfs2_writepage.
399 *
400 * ->writepage is called during the process of invalidating the page cache
401 * during blocked lock processing. It can't block on any cluster locks
402 * to during block mapping. It's relying on the fact that the block
403 * mapping can't have disappeared under the dirty pages that it is
404 * being asked to write back.
405 */
406static int ocfs2_writepage(struct page *page, struct writeback_control *wbc)
407{
408 int ret;
409
410 mlog_entry("(0x%p)\n", page);
411
412 ret = block_write_full_page(page, ocfs2_get_block, wbc);
413
414 mlog_exit(ret);
415
416 return ret;
417}
418
Mark Fasheh50691202007-02-09 20:52:53 -0800419/*
420 * This is called from ocfs2_write_zero_page() which has handled it's
421 * own cluster locking and has ensured allocation exists for those
422 * blocks to be written.
423 */
Mark Fasheh53013cb2006-05-05 19:04:03 -0700424int ocfs2_prepare_write_nolock(struct inode *inode, struct page *page,
425 unsigned from, unsigned to)
426{
427 int ret;
428
Mark Fasheh53013cb2006-05-05 19:04:03 -0700429 ret = block_prepare_write(page, from, to, ocfs2_get_block);
430
Mark Fasheh53013cb2006-05-05 19:04:03 -0700431 return ret;
432}
433
Mark Fashehccd979b2005-12-15 14:31:24 -0800434/* Taken from ext3. We don't necessarily need the full blown
435 * functionality yet, but IMHO it's better to cut and paste the whole
436 * thing so we can avoid introducing our own bugs (and easily pick up
437 * their fixes when they happen) --Mark */
Mark Fasheh60b11392007-02-16 11:46:50 -0800438int walk_page_buffers( handle_t *handle,
439 struct buffer_head *head,
440 unsigned from,
441 unsigned to,
442 int *partial,
443 int (*fn)( handle_t *handle,
444 struct buffer_head *bh))
Mark Fashehccd979b2005-12-15 14:31:24 -0800445{
446 struct buffer_head *bh;
447 unsigned block_start, block_end;
448 unsigned blocksize = head->b_size;
449 int err, ret = 0;
450 struct buffer_head *next;
451
452 for ( bh = head, block_start = 0;
453 ret == 0 && (bh != head || !block_start);
454 block_start = block_end, bh = next)
455 {
456 next = bh->b_this_page;
457 block_end = block_start + blocksize;
458 if (block_end <= from || block_start >= to) {
459 if (partial && !buffer_uptodate(bh))
460 *partial = 1;
461 continue;
462 }
463 err = (*fn)(handle, bh);
464 if (!ret)
465 ret = err;
466 }
467 return ret;
468}
469
Mark Fasheh1fabe142006-10-09 18:11:45 -0700470handle_t *ocfs2_start_walk_page_trans(struct inode *inode,
Mark Fashehccd979b2005-12-15 14:31:24 -0800471 struct page *page,
472 unsigned from,
473 unsigned to)
474{
475 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
Julia Lawall58dadcd2008-03-28 14:43:10 -0700476 handle_t *handle;
Mark Fashehccd979b2005-12-15 14:31:24 -0800477 int ret = 0;
478
Mark Fasheh65eff9c2006-10-09 17:26:22 -0700479 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
Julia Lawall58dadcd2008-03-28 14:43:10 -0700480 if (IS_ERR(handle)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800481 ret = -ENOMEM;
482 mlog_errno(ret);
483 goto out;
484 }
485
486 if (ocfs2_should_order_data(inode)) {
Joel Becker2b4e30f2008-09-03 20:03:41 -0700487 ret = ocfs2_jbd2_file_inode(handle, inode);
488#ifdef CONFIG_OCFS2_COMPAT_JBD
Mark Fasheh1fabe142006-10-09 18:11:45 -0700489 ret = walk_page_buffers(handle,
Mark Fashehccd979b2005-12-15 14:31:24 -0800490 page_buffers(page),
491 from, to, NULL,
492 ocfs2_journal_dirty_data);
Joel Becker2b4e30f2008-09-03 20:03:41 -0700493#endif
494 if (ret < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -0800495 mlog_errno(ret);
496 }
497out:
498 if (ret) {
Julia Lawall58dadcd2008-03-28 14:43:10 -0700499 if (!IS_ERR(handle))
Mark Fasheh02dc1af2006-10-09 16:48:10 -0700500 ocfs2_commit_trans(osb, handle);
Mark Fashehccd979b2005-12-15 14:31:24 -0800501 handle = ERR_PTR(ret);
502 }
503 return handle;
504}
505
Mark Fashehccd979b2005-12-15 14:31:24 -0800506static sector_t ocfs2_bmap(struct address_space *mapping, sector_t block)
507{
508 sector_t status;
509 u64 p_blkno = 0;
510 int err = 0;
511 struct inode *inode = mapping->host;
512
513 mlog_entry("(block = %llu)\n", (unsigned long long)block);
514
515 /* We don't need to lock journal system files, since they aren't
516 * accessed concurrently from multiple nodes.
517 */
518 if (!INODE_JOURNAL(inode)) {
Mark Fashehe63aecb62007-10-18 15:30:42 -0700519 err = ocfs2_inode_lock(inode, NULL, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800520 if (err) {
521 if (err != -ENOENT)
522 mlog_errno(err);
523 goto bail;
524 }
525 down_read(&OCFS2_I(inode)->ip_alloc_sem);
526 }
527
Mark Fasheh6798d352007-09-07 14:05:51 -0700528 if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL))
529 err = ocfs2_extent_map_get_blocks(inode, block, &p_blkno, NULL,
530 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -0800531
532 if (!INODE_JOURNAL(inode)) {
533 up_read(&OCFS2_I(inode)->ip_alloc_sem);
Mark Fashehe63aecb62007-10-18 15:30:42 -0700534 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800535 }
536
537 if (err) {
538 mlog(ML_ERROR, "get_blocks() failed, block = %llu\n",
539 (unsigned long long)block);
540 mlog_errno(err);
541 goto bail;
542 }
543
Mark Fashehccd979b2005-12-15 14:31:24 -0800544bail:
545 status = err ? 0 : p_blkno;
546
547 mlog_exit((int)status);
548
549 return status;
550}
551
552/*
553 * TODO: Make this into a generic get_blocks function.
554 *
555 * From do_direct_io in direct-io.c:
556 * "So what we do is to permit the ->get_blocks function to populate
557 * bh.b_size with the size of IO which is permitted at this offset and
558 * this i_blkbits."
559 *
560 * This function is called directly from get_more_blocks in direct-io.c.
561 *
562 * called like this: dio->get_blocks(dio->inode, fs_startblk,
563 * fs_count, map_bh, dio->rw == WRITE);
564 */
565static int ocfs2_direct_IO_get_blocks(struct inode *inode, sector_t iblock,
Mark Fashehccd979b2005-12-15 14:31:24 -0800566 struct buffer_head *bh_result, int create)
567{
568 int ret;
Mark Fasheh4f902c32007-03-09 16:26:50 -0800569 u64 p_blkno, inode_blocks, contig_blocks;
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800570 unsigned int ext_flags;
Florin Malita184d7d22006-06-03 19:30:10 -0400571 unsigned char blocksize_bits = inode->i_sb->s_blocksize_bits;
Badari Pulavarty1d8fa7a2006-03-26 01:38:02 -0800572 unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
Mark Fashehccd979b2005-12-15 14:31:24 -0800573
Mark Fashehccd979b2005-12-15 14:31:24 -0800574 /* This function won't even be called if the request isn't all
575 * nicely aligned and of the right size, so there's no need
576 * for us to check any of that. */
577
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800578 inode_blocks = ocfs2_blocks_for_bytes(inode->i_sb, i_size_read(inode));
Mark Fasheh564f8a32006-12-14 13:01:05 -0800579
580 /*
581 * Any write past EOF is not allowed because we'd be extending.
582 */
583 if (create && (iblock + max_blocks) > inode_blocks) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800584 ret = -EIO;
585 goto bail;
586 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800587
588 /* This figures out the size of the next contiguous block, and
589 * our logical offset */
Mark Fasheh363041a2007-01-17 12:31:35 -0800590 ret = ocfs2_extent_map_get_blocks(inode, iblock, &p_blkno,
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800591 &contig_blocks, &ext_flags);
Mark Fashehccd979b2005-12-15 14:31:24 -0800592 if (ret) {
593 mlog(ML_ERROR, "get_blocks() failed iblock=%llu\n",
594 (unsigned long long)iblock);
595 ret = -EIO;
596 goto bail;
597 }
598
Tao Ma0e116222008-09-03 01:57:14 +0800599 if (!ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)) && !p_blkno && create) {
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800600 ocfs2_error(inode->i_sb,
601 "Inode %llu has a hole at block %llu\n",
602 (unsigned long long)OCFS2_I(inode)->ip_blkno,
603 (unsigned long long)iblock);
604 ret = -EROFS;
605 goto bail;
606 }
607
608 /*
609 * get_more_blocks() expects us to describe a hole by clearing
610 * the mapped bit on bh_result().
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800611 *
612 * Consider an unwritten extent as a hole.
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800613 */
Mark Fasheh49cb8d22007-03-09 16:21:46 -0800614 if (p_blkno && !(ext_flags & OCFS2_EXT_UNWRITTEN))
Mark Fasheh25baf2d2007-02-14 15:30:30 -0800615 map_bh(bh_result, inode->i_sb, p_blkno);
616 else {
617 /*
618 * ocfs2_prepare_inode_for_write() should have caught
619 * the case where we'd be filling a hole and triggered
620 * a buffered write instead.
621 */
622 if (create) {
623 ret = -EIO;
624 mlog_errno(ret);
625 goto bail;
626 }
627
628 clear_buffer_mapped(bh_result);
629 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800630
631 /* make sure we don't map more than max_blocks blocks here as
632 that's all the kernel will handle at this point. */
633 if (max_blocks < contig_blocks)
634 contig_blocks = max_blocks;
635 bh_result->b_size = contig_blocks << blocksize_bits;
636bail:
637 return ret;
638}
639
640/*
641 * ocfs2_dio_end_io is called by the dio core when a dio is finished. We're
642 * particularly interested in the aio/dio case. Like the core uses
643 * i_alloc_sem, we use the rw_lock DLM lock to protect io on one node from
644 * truncation on another.
645 */
646static void ocfs2_dio_end_io(struct kiocb *iocb,
647 loff_t offset,
648 ssize_t bytes,
649 void *private)
650{
Josef Sipekd28c9172006-12-08 02:37:25 -0800651 struct inode *inode = iocb->ki_filp->f_path.dentry->d_inode;
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -0700652 int level;
Mark Fashehccd979b2005-12-15 14:31:24 -0800653
654 /* this io's submitter should not have unlocked this before we could */
655 BUG_ON(!ocfs2_iocb_is_rw_locked(iocb));
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -0700656
Mark Fashehccd979b2005-12-15 14:31:24 -0800657 ocfs2_iocb_clear_rw_locked(iocb);
Mark Fasheh7cdfc3a2007-04-16 17:28:51 -0700658
659 level = ocfs2_iocb_rw_locked_level(iocb);
660 if (!level)
661 up_read(&inode->i_alloc_sem);
662 ocfs2_rw_unlock(inode, level);
Mark Fashehccd979b2005-12-15 14:31:24 -0800663}
664
Joel Becker03f981c2007-01-04 14:54:41 -0800665/*
666 * ocfs2_invalidatepage() and ocfs2_releasepage() are shamelessly stolen
667 * from ext3. PageChecked() bits have been removed as OCFS2 does not
668 * do journalled data.
669 */
670static void ocfs2_invalidatepage(struct page *page, unsigned long offset)
671{
672 journal_t *journal = OCFS2_SB(page->mapping->host->i_sb)->journal->j_journal;
673
Joel Becker2b4e30f2008-09-03 20:03:41 -0700674 jbd2_journal_invalidatepage(journal, page, offset);
Joel Becker03f981c2007-01-04 14:54:41 -0800675}
676
677static int ocfs2_releasepage(struct page *page, gfp_t wait)
678{
679 journal_t *journal = OCFS2_SB(page->mapping->host->i_sb)->journal->j_journal;
680
681 if (!page_has_buffers(page))
682 return 0;
Joel Becker2b4e30f2008-09-03 20:03:41 -0700683 return jbd2_journal_try_to_free_buffers(journal, page, wait);
Joel Becker03f981c2007-01-04 14:54:41 -0800684}
685
Mark Fashehccd979b2005-12-15 14:31:24 -0800686static ssize_t ocfs2_direct_IO(int rw,
687 struct kiocb *iocb,
688 const struct iovec *iov,
689 loff_t offset,
690 unsigned long nr_segs)
691{
692 struct file *file = iocb->ki_filp;
Josef Sipekd28c9172006-12-08 02:37:25 -0800693 struct inode *inode = file->f_path.dentry->d_inode->i_mapping->host;
Mark Fashehccd979b2005-12-15 14:31:24 -0800694 int ret;
695
696 mlog_entry_void();
Mark Fasheh53013cb2006-05-05 19:04:03 -0700697
Mark Fasheh6798d352007-09-07 14:05:51 -0700698 /*
699 * Fallback to buffered I/O if we see an inode without
700 * extents.
701 */
702 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL)
703 return 0;
704
Mark Fashehccd979b2005-12-15 14:31:24 -0800705 ret = blockdev_direct_IO_no_locking(rw, iocb, inode,
706 inode->i_sb->s_bdev, iov, offset,
707 nr_segs,
708 ocfs2_direct_IO_get_blocks,
709 ocfs2_dio_end_io);
Mark Fashehc934a922007-10-18 15:23:46 -0700710
Mark Fashehccd979b2005-12-15 14:31:24 -0800711 mlog_exit(ret);
712 return ret;
713}
714
Mark Fasheh9517bac2007-02-09 20:24:12 -0800715static void ocfs2_figure_cluster_boundaries(struct ocfs2_super *osb,
716 u32 cpos,
717 unsigned int *start,
718 unsigned int *end)
719{
720 unsigned int cluster_start = 0, cluster_end = PAGE_CACHE_SIZE;
721
722 if (unlikely(PAGE_CACHE_SHIFT > osb->s_clustersize_bits)) {
723 unsigned int cpp;
724
725 cpp = 1 << (PAGE_CACHE_SHIFT - osb->s_clustersize_bits);
726
727 cluster_start = cpos % cpp;
728 cluster_start = cluster_start << osb->s_clustersize_bits;
729
730 cluster_end = cluster_start + osb->s_clustersize;
731 }
732
733 BUG_ON(cluster_start > PAGE_SIZE);
734 BUG_ON(cluster_end > PAGE_SIZE);
735
736 if (start)
737 *start = cluster_start;
738 if (end)
739 *end = cluster_end;
740}
741
742/*
743 * 'from' and 'to' are the region in the page to avoid zeroing.
744 *
745 * If pagesize > clustersize, this function will avoid zeroing outside
746 * of the cluster boundary.
747 *
748 * from == to == 0 is code for "zero the entire cluster region"
749 */
750static void ocfs2_clear_page_regions(struct page *page,
751 struct ocfs2_super *osb, u32 cpos,
752 unsigned from, unsigned to)
753{
754 void *kaddr;
755 unsigned int cluster_start, cluster_end;
756
757 ocfs2_figure_cluster_boundaries(osb, cpos, &cluster_start, &cluster_end);
758
759 kaddr = kmap_atomic(page, KM_USER0);
760
761 if (from || to) {
762 if (from > cluster_start)
763 memset(kaddr + cluster_start, 0, from - cluster_start);
764 if (to < cluster_end)
765 memset(kaddr + to, 0, cluster_end - to);
766 } else {
767 memset(kaddr + cluster_start, 0, cluster_end - cluster_start);
768 }
769
770 kunmap_atomic(kaddr, KM_USER0);
771}
772
773/*
Mark Fasheh4e9563f2007-11-01 11:37:48 -0700774 * Nonsparse file systems fully allocate before we get to the write
775 * code. This prevents ocfs2_write() from tagging the write as an
776 * allocating one, which means ocfs2_map_page_blocks() might try to
777 * read-in the blocks at the tail of our file. Avoid reading them by
778 * testing i_size against each block offset.
779 */
780static int ocfs2_should_read_blk(struct inode *inode, struct page *page,
781 unsigned int block_start)
782{
783 u64 offset = page_offset(page) + block_start;
784
785 if (ocfs2_sparse_alloc(OCFS2_SB(inode->i_sb)))
786 return 1;
787
788 if (i_size_read(inode) > offset)
789 return 1;
790
791 return 0;
792}
793
794/*
Mark Fasheh9517bac2007-02-09 20:24:12 -0800795 * Some of this taken from block_prepare_write(). We already have our
796 * mapping by now though, and the entire write will be allocating or
797 * it won't, so not much need to use BH_New.
798 *
799 * This will also skip zeroing, which is handled externally.
800 */
Mark Fasheh60b11392007-02-16 11:46:50 -0800801int ocfs2_map_page_blocks(struct page *page, u64 *p_blkno,
802 struct inode *inode, unsigned int from,
803 unsigned int to, int new)
Mark Fasheh9517bac2007-02-09 20:24:12 -0800804{
805 int ret = 0;
806 struct buffer_head *head, *bh, *wait[2], **wait_bh = wait;
807 unsigned int block_end, block_start;
808 unsigned int bsize = 1 << inode->i_blkbits;
809
810 if (!page_has_buffers(page))
811 create_empty_buffers(page, bsize, 0);
812
813 head = page_buffers(page);
814 for (bh = head, block_start = 0; bh != head || !block_start;
815 bh = bh->b_this_page, block_start += bsize) {
816 block_end = block_start + bsize;
817
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700818 clear_buffer_new(bh);
819
Mark Fasheh9517bac2007-02-09 20:24:12 -0800820 /*
821 * Ignore blocks outside of our i/o range -
822 * they may belong to unallocated clusters.
823 */
Mark Fasheh60b11392007-02-16 11:46:50 -0800824 if (block_start >= to || block_end <= from) {
Mark Fasheh9517bac2007-02-09 20:24:12 -0800825 if (PageUptodate(page))
826 set_buffer_uptodate(bh);
827 continue;
828 }
829
830 /*
831 * For an allocating write with cluster size >= page
832 * size, we always write the entire page.
833 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700834 if (new)
835 set_buffer_new(bh);
Mark Fasheh9517bac2007-02-09 20:24:12 -0800836
837 if (!buffer_mapped(bh)) {
838 map_bh(bh, inode->i_sb, *p_blkno);
839 unmap_underlying_metadata(bh->b_bdev, bh->b_blocknr);
840 }
841
842 if (PageUptodate(page)) {
843 if (!buffer_uptodate(bh))
844 set_buffer_uptodate(bh);
845 } else if (!buffer_uptodate(bh) && !buffer_delay(bh) &&
Mark Fashehbce99762007-06-18 11:12:36 -0700846 !buffer_new(bh) &&
Mark Fasheh4e9563f2007-11-01 11:37:48 -0700847 ocfs2_should_read_blk(inode, page, block_start) &&
Mark Fashehbce99762007-06-18 11:12:36 -0700848 (block_start < from || block_end > to)) {
Mark Fasheh9517bac2007-02-09 20:24:12 -0800849 ll_rw_block(READ, 1, &bh);
850 *wait_bh++=bh;
851 }
852
853 *p_blkno = *p_blkno + 1;
854 }
855
856 /*
857 * If we issued read requests - let them complete.
858 */
859 while(wait_bh > wait) {
860 wait_on_buffer(*--wait_bh);
861 if (!buffer_uptodate(*wait_bh))
862 ret = -EIO;
863 }
864
865 if (ret == 0 || !new)
866 return ret;
867
868 /*
869 * If we get -EIO above, zero out any newly allocated blocks
870 * to avoid exposing stale data.
871 */
872 bh = head;
873 block_start = 0;
874 do {
Mark Fasheh9517bac2007-02-09 20:24:12 -0800875 block_end = block_start + bsize;
876 if (block_end <= from)
877 goto next_bh;
878 if (block_start >= to)
879 break;
880
Christoph Lametereebd2aa2008-02-04 22:28:29 -0800881 zero_user(page, block_start, bh->b_size);
Mark Fasheh9517bac2007-02-09 20:24:12 -0800882 set_buffer_uptodate(bh);
883 mark_buffer_dirty(bh);
884
885next_bh:
886 block_start = block_end;
887 bh = bh->b_this_page;
888 } while (bh != head);
889
890 return ret;
891}
892
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700893#if (PAGE_CACHE_SIZE >= OCFS2_MAX_CLUSTERSIZE)
894#define OCFS2_MAX_CTXT_PAGES 1
895#else
896#define OCFS2_MAX_CTXT_PAGES (OCFS2_MAX_CLUSTERSIZE / PAGE_CACHE_SIZE)
897#endif
Mark Fasheh6af67d82007-03-06 17:24:46 -0800898
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700899#define OCFS2_MAX_CLUSTERS_PER_PAGE (PAGE_CACHE_SIZE / OCFS2_MIN_CLUSTERSIZE)
Mark Fasheh6af67d82007-03-06 17:24:46 -0800900
901/*
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700902 * Describe the state of a single cluster to be written to.
Mark Fasheh9517bac2007-02-09 20:24:12 -0800903 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700904struct ocfs2_write_cluster_desc {
905 u32 c_cpos;
906 u32 c_phys;
Mark Fasheh9517bac2007-02-09 20:24:12 -0800907 /*
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700908 * Give this a unique field because c_phys eventually gets
909 * filled.
Mark Fasheh9517bac2007-02-09 20:24:12 -0800910 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700911 unsigned c_new;
Mark Fashehb27b7cb2007-06-18 11:22:56 -0700912 unsigned c_unwritten;
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700913};
Mark Fasheh9517bac2007-02-09 20:24:12 -0800914
Mark Fashehb27b7cb2007-06-18 11:22:56 -0700915static inline int ocfs2_should_zero_cluster(struct ocfs2_write_cluster_desc *d)
916{
917 return d->c_new || d->c_unwritten;
918}
919
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700920struct ocfs2_write_ctxt {
921 /* Logical cluster position / len of write */
922 u32 w_cpos;
923 u32 w_clen;
Mark Fasheh9517bac2007-02-09 20:24:12 -0800924
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700925 struct ocfs2_write_cluster_desc w_desc[OCFS2_MAX_CLUSTERS_PER_PAGE];
Mark Fasheh9517bac2007-02-09 20:24:12 -0800926
927 /*
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700928 * This is true if page_size > cluster_size.
Mark Fasheh9517bac2007-02-09 20:24:12 -0800929 *
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700930 * It triggers a set of special cases during write which might
931 * have to deal with allocating writes to partial pages.
Mark Fasheh9517bac2007-02-09 20:24:12 -0800932 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700933 unsigned int w_large_pages;
Mark Fasheh9517bac2007-02-09 20:24:12 -0800934
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700935 /*
936 * Pages involved in this write.
937 *
938 * w_target_page is the page being written to by the user.
939 *
940 * w_pages is an array of pages which always contains
941 * w_target_page, and in the case of an allocating write with
942 * page_size < cluster size, it will contain zero'd and mapped
943 * pages adjacent to w_target_page which need to be written
944 * out in so that future reads from that region will get
945 * zero's.
946 */
947 struct page *w_pages[OCFS2_MAX_CTXT_PAGES];
948 unsigned int w_num_pages;
949 struct page *w_target_page;
Mark Fasheh9517bac2007-02-09 20:24:12 -0800950
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700951 /*
952 * ocfs2_write_end() uses this to know what the real range to
953 * write in the target should be.
954 */
955 unsigned int w_target_from;
956 unsigned int w_target_to;
957
958 /*
959 * We could use journal_current_handle() but this is cleaner,
960 * IMHO -Mark
961 */
962 handle_t *w_handle;
963
964 struct buffer_head *w_di_bh;
Mark Fashehb27b7cb2007-06-18 11:22:56 -0700965
966 struct ocfs2_cached_dealloc_ctxt w_dealloc;
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700967};
968
Mark Fasheh1d410a62007-09-07 14:20:45 -0700969void ocfs2_unlock_and_free_pages(struct page **pages, int num_pages)
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700970{
971 int i;
972
Mark Fasheh1d410a62007-09-07 14:20:45 -0700973 for(i = 0; i < num_pages; i++) {
974 if (pages[i]) {
975 unlock_page(pages[i]);
976 mark_page_accessed(pages[i]);
977 page_cache_release(pages[i]);
978 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700979 }
Mark Fasheh1d410a62007-09-07 14:20:45 -0700980}
981
982static void ocfs2_free_write_ctxt(struct ocfs2_write_ctxt *wc)
983{
984 ocfs2_unlock_and_free_pages(wc->w_pages, wc->w_num_pages);
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700985
986 brelse(wc->w_di_bh);
987 kfree(wc);
988}
989
990static int ocfs2_alloc_write_ctxt(struct ocfs2_write_ctxt **wcp,
991 struct ocfs2_super *osb, loff_t pos,
Mark Fasheh607d44a2007-05-09 15:14:45 -0700992 unsigned len, struct buffer_head *di_bh)
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700993{
tao.ma@oracle.com30b85482007-09-06 08:02:25 +0800994 u32 cend;
Mark Fasheh3a307ff2007-05-08 17:47:32 -0700995 struct ocfs2_write_ctxt *wc;
996
997 wc = kzalloc(sizeof(struct ocfs2_write_ctxt), GFP_NOFS);
998 if (!wc)
999 return -ENOMEM;
1000
1001 wc->w_cpos = pos >> osb->s_clustersize_bits;
tao.ma@oracle.com30b85482007-09-06 08:02:25 +08001002 cend = (pos + len - 1) >> osb->s_clustersize_bits;
1003 wc->w_clen = cend - wc->w_cpos + 1;
Mark Fasheh607d44a2007-05-09 15:14:45 -07001004 get_bh(di_bh);
1005 wc->w_di_bh = di_bh;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001006
1007 if (unlikely(PAGE_CACHE_SHIFT > osb->s_clustersize_bits))
1008 wc->w_large_pages = 1;
1009 else
1010 wc->w_large_pages = 0;
1011
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001012 ocfs2_init_dealloc_ctxt(&wc->w_dealloc);
1013
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001014 *wcp = wc;
1015
1016 return 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001017}
1018
1019/*
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001020 * If a page has any new buffers, zero them out here, and mark them uptodate
1021 * and dirty so they'll be written out (in order to prevent uninitialised
1022 * block data from leaking). And clear the new bit.
Mark Fasheh9517bac2007-02-09 20:24:12 -08001023 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001024static void ocfs2_zero_new_buffers(struct page *page, unsigned from, unsigned to)
Mark Fasheh9517bac2007-02-09 20:24:12 -08001025{
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001026 unsigned int block_start, block_end;
1027 struct buffer_head *head, *bh;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001028
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001029 BUG_ON(!PageLocked(page));
1030 if (!page_has_buffers(page))
1031 return;
1032
1033 bh = head = page_buffers(page);
1034 block_start = 0;
1035 do {
1036 block_end = block_start + bh->b_size;
1037
1038 if (buffer_new(bh)) {
1039 if (block_end > from && block_start < to) {
1040 if (!PageUptodate(page)) {
1041 unsigned start, end;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001042
1043 start = max(from, block_start);
1044 end = min(to, block_end);
1045
Christoph Lametereebd2aa2008-02-04 22:28:29 -08001046 zero_user_segment(page, start, end);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001047 set_buffer_uptodate(bh);
1048 }
1049
1050 clear_buffer_new(bh);
1051 mark_buffer_dirty(bh);
1052 }
1053 }
1054
1055 block_start = block_end;
1056 bh = bh->b_this_page;
1057 } while (bh != head);
1058}
1059
1060/*
1061 * Only called when we have a failure during allocating write to write
1062 * zero's to the newly allocated region.
1063 */
1064static void ocfs2_write_failure(struct inode *inode,
1065 struct ocfs2_write_ctxt *wc,
1066 loff_t user_pos, unsigned user_len)
1067{
1068 int i;
Mark Fasheh5c26a7b2007-09-18 17:49:29 -07001069 unsigned from = user_pos & (PAGE_CACHE_SIZE - 1),
1070 to = user_pos + user_len;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001071 struct page *tmppage;
1072
Mark Fasheh5c26a7b2007-09-18 17:49:29 -07001073 ocfs2_zero_new_buffers(wc->w_target_page, from, to);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001074
1075 for(i = 0; i < wc->w_num_pages; i++) {
1076 tmppage = wc->w_pages[i];
1077
Sunil Mushran961cecb2008-07-16 17:22:22 -07001078 if (page_has_buffers(tmppage)) {
Joel Becker2b4e30f2008-09-03 20:03:41 -07001079 if (ocfs2_should_order_data(inode)) {
1080 ocfs2_jbd2_file_inode(wc->w_handle, inode);
1081#ifdef CONFIG_OCFS2_COMPAT_JBD
Sunil Mushran961cecb2008-07-16 17:22:22 -07001082 walk_page_buffers(wc->w_handle,
1083 page_buffers(tmppage),
1084 from, to, NULL,
1085 ocfs2_journal_dirty_data);
Joel Becker2b4e30f2008-09-03 20:03:41 -07001086#endif
1087 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001088
Sunil Mushran961cecb2008-07-16 17:22:22 -07001089 block_commit_write(tmppage, from, to);
1090 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001091 }
1092}
1093
1094static int ocfs2_prepare_page_for_write(struct inode *inode, u64 *p_blkno,
1095 struct ocfs2_write_ctxt *wc,
1096 struct page *page, u32 cpos,
1097 loff_t user_pos, unsigned user_len,
1098 int new)
1099{
1100 int ret;
1101 unsigned int map_from = 0, map_to = 0;
1102 unsigned int cluster_start, cluster_end;
1103 unsigned int user_data_from = 0, user_data_to = 0;
1104
1105 ocfs2_figure_cluster_boundaries(OCFS2_SB(inode->i_sb), cpos,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001106 &cluster_start, &cluster_end);
1107
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001108 if (page == wc->w_target_page) {
1109 map_from = user_pos & (PAGE_CACHE_SIZE - 1);
1110 map_to = map_from + user_len;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001111
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001112 if (new)
1113 ret = ocfs2_map_page_blocks(page, p_blkno, inode,
1114 cluster_start, cluster_end,
1115 new);
1116 else
1117 ret = ocfs2_map_page_blocks(page, p_blkno, inode,
1118 map_from, map_to, new);
1119 if (ret) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001120 mlog_errno(ret);
1121 goto out;
1122 }
1123
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001124 user_data_from = map_from;
1125 user_data_to = map_to;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001126 if (new) {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001127 map_from = cluster_start;
1128 map_to = cluster_end;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001129 }
1130 } else {
1131 /*
1132 * If we haven't allocated the new page yet, we
1133 * shouldn't be writing it out without copying user
1134 * data. This is likely a math error from the caller.
1135 */
1136 BUG_ON(!new);
1137
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001138 map_from = cluster_start;
1139 map_to = cluster_end;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001140
1141 ret = ocfs2_map_page_blocks(page, p_blkno, inode,
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001142 cluster_start, cluster_end, new);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001143 if (ret) {
1144 mlog_errno(ret);
1145 goto out;
1146 }
1147 }
1148
1149 /*
1150 * Parts of newly allocated pages need to be zero'd.
1151 *
1152 * Above, we have also rewritten 'to' and 'from' - as far as
1153 * the rest of the function is concerned, the entire cluster
1154 * range inside of a page needs to be written.
1155 *
1156 * We can skip this if the page is up to date - it's already
1157 * been zero'd from being read in as a hole.
1158 */
1159 if (new && !PageUptodate(page))
1160 ocfs2_clear_page_regions(page, OCFS2_SB(inode->i_sb),
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001161 cpos, user_data_from, user_data_to);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001162
1163 flush_dcache_page(page);
1164
Mark Fasheh9517bac2007-02-09 20:24:12 -08001165out:
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001166 return ret;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001167}
1168
1169/*
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001170 * This function will only grab one clusters worth of pages.
Mark Fasheh9517bac2007-02-09 20:24:12 -08001171 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001172static int ocfs2_grab_pages_for_write(struct address_space *mapping,
1173 struct ocfs2_write_ctxt *wc,
Mark Fasheh7307de82007-05-09 15:16:19 -07001174 u32 cpos, loff_t user_pos, int new,
1175 struct page *mmap_page)
Mark Fasheh9517bac2007-02-09 20:24:12 -08001176{
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001177 int ret = 0, i;
1178 unsigned long start, target_index, index;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001179 struct inode *inode = mapping->host;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001180
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001181 target_index = user_pos >> PAGE_CACHE_SHIFT;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001182
1183 /*
1184 * Figure out how many pages we'll be manipulating here. For
Mark Fasheh60b11392007-02-16 11:46:50 -08001185 * non allocating write, we just change the one
1186 * page. Otherwise, we'll need a whole clusters worth.
Mark Fasheh9517bac2007-02-09 20:24:12 -08001187 */
Mark Fasheh9517bac2007-02-09 20:24:12 -08001188 if (new) {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001189 wc->w_num_pages = ocfs2_pages_per_cluster(inode->i_sb);
1190 start = ocfs2_align_clusters_to_page_index(inode->i_sb, cpos);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001191 } else {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001192 wc->w_num_pages = 1;
1193 start = target_index;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001194 }
1195
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001196 for(i = 0; i < wc->w_num_pages; i++) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001197 index = start + i;
1198
Mark Fasheh7307de82007-05-09 15:16:19 -07001199 if (index == target_index && mmap_page) {
1200 /*
1201 * ocfs2_pagemkwrite() is a little different
1202 * and wants us to directly use the page
1203 * passed in.
1204 */
1205 lock_page(mmap_page);
1206
1207 if (mmap_page->mapping != mapping) {
1208 unlock_page(mmap_page);
1209 /*
1210 * Sanity check - the locking in
1211 * ocfs2_pagemkwrite() should ensure
1212 * that this code doesn't trigger.
1213 */
1214 ret = -EINVAL;
1215 mlog_errno(ret);
1216 goto out;
1217 }
1218
1219 page_cache_get(mmap_page);
1220 wc->w_pages[i] = mmap_page;
1221 } else {
1222 wc->w_pages[i] = find_or_create_page(mapping, index,
1223 GFP_NOFS);
1224 if (!wc->w_pages[i]) {
1225 ret = -ENOMEM;
1226 mlog_errno(ret);
1227 goto out;
1228 }
Mark Fasheh9517bac2007-02-09 20:24:12 -08001229 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001230
1231 if (index == target_index)
1232 wc->w_target_page = wc->w_pages[i];
Mark Fasheh9517bac2007-02-09 20:24:12 -08001233 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001234out:
1235 return ret;
1236}
1237
1238/*
1239 * Prepare a single cluster for write one cluster into the file.
1240 */
1241static int ocfs2_write_cluster(struct address_space *mapping,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001242 u32 phys, unsigned int unwritten,
1243 struct ocfs2_alloc_context *data_ac,
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001244 struct ocfs2_alloc_context *meta_ac,
1245 struct ocfs2_write_ctxt *wc, u32 cpos,
1246 loff_t user_pos, unsigned user_len)
1247{
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001248 int ret, i, new, should_zero = 0;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001249 u64 v_blkno, p_blkno;
1250 struct inode *inode = mapping->host;
Joel Beckerf99b9b72008-08-20 19:36:33 -07001251 struct ocfs2_extent_tree et;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001252
1253 new = phys == 0 ? 1 : 0;
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001254 if (new || unwritten)
1255 should_zero = 1;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001256
1257 if (new) {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001258 u32 tmp_pos;
1259
Mark Fasheh9517bac2007-02-09 20:24:12 -08001260 /*
1261 * This is safe to call with the page locks - it won't take
1262 * any additional semaphores or cluster locks.
1263 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001264 tmp_pos = cpos;
Tao Ma0eb8d472008-08-18 17:38:45 +08001265 ret = ocfs2_add_inode_data(OCFS2_SB(inode->i_sb), inode,
1266 &tmp_pos, 1, 0, wc->w_di_bh,
1267 wc->w_handle, data_ac,
1268 meta_ac, NULL);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001269 /*
1270 * This shouldn't happen because we must have already
1271 * calculated the correct meta data allocation required. The
1272 * internal tree allocation code should know how to increase
1273 * transaction credits itself.
1274 *
1275 * If need be, we could handle -EAGAIN for a
1276 * RESTART_TRANS here.
1277 */
1278 mlog_bug_on_msg(ret == -EAGAIN,
1279 "Inode %llu: EAGAIN return during allocation.\n",
1280 (unsigned long long)OCFS2_I(inode)->ip_blkno);
1281 if (ret < 0) {
1282 mlog_errno(ret);
1283 goto out;
1284 }
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001285 } else if (unwritten) {
Joel Becker8d6220d2008-08-22 12:46:09 -07001286 ocfs2_init_dinode_extent_tree(&et, inode, wc->w_di_bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -07001287 ret = ocfs2_mark_extent_written(inode, &et,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001288 wc->w_handle, cpos, 1, phys,
Joel Beckerf99b9b72008-08-20 19:36:33 -07001289 meta_ac, &wc->w_dealloc);
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001290 if (ret < 0) {
1291 mlog_errno(ret);
1292 goto out;
1293 }
Mark Fasheh9517bac2007-02-09 20:24:12 -08001294 }
1295
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001296 if (should_zero)
1297 v_blkno = ocfs2_clusters_to_blocks(inode->i_sb, cpos);
1298 else
1299 v_blkno = user_pos >> inode->i_sb->s_blocksize_bits;
1300
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001301 /*
1302 * The only reason this should fail is due to an inability to
1303 * find the extent added.
1304 */
Mark Fasheh49cb8d22007-03-09 16:21:46 -08001305 ret = ocfs2_extent_map_get_blocks(inode, v_blkno, &p_blkno, NULL,
1306 NULL);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001307 if (ret < 0) {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001308 ocfs2_error(inode->i_sb, "Corrupting extend for inode %llu, "
1309 "at logical block %llu",
1310 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1311 (unsigned long long)v_blkno);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001312 goto out;
1313 }
1314
1315 BUG_ON(p_blkno == 0);
1316
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001317 for(i = 0; i < wc->w_num_pages; i++) {
1318 int tmpret;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001319
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001320 tmpret = ocfs2_prepare_page_for_write(inode, &p_blkno, wc,
1321 wc->w_pages[i], cpos,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001322 user_pos, user_len,
1323 should_zero);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001324 if (tmpret) {
1325 mlog_errno(tmpret);
1326 if (ret == 0)
1327 tmpret = ret;
1328 }
Mark Fasheh9517bac2007-02-09 20:24:12 -08001329 }
1330
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001331 /*
1332 * We only have cleanup to do in case of allocating write.
1333 */
1334 if (ret && new)
1335 ocfs2_write_failure(inode, wc, user_pos, user_len);
1336
Mark Fasheh9517bac2007-02-09 20:24:12 -08001337out:
Mark Fasheh9517bac2007-02-09 20:24:12 -08001338
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001339 return ret;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001340}
1341
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001342static int ocfs2_write_cluster_by_desc(struct address_space *mapping,
1343 struct ocfs2_alloc_context *data_ac,
1344 struct ocfs2_alloc_context *meta_ac,
1345 struct ocfs2_write_ctxt *wc,
1346 loff_t pos, unsigned len)
1347{
1348 int ret, i;
Mark Fashehdb562462007-09-17 09:06:29 -07001349 loff_t cluster_off;
1350 unsigned int local_len = len;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001351 struct ocfs2_write_cluster_desc *desc;
Mark Fashehdb562462007-09-17 09:06:29 -07001352 struct ocfs2_super *osb = OCFS2_SB(mapping->host->i_sb);
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001353
1354 for (i = 0; i < wc->w_clen; i++) {
1355 desc = &wc->w_desc[i];
1356
Mark Fashehdb562462007-09-17 09:06:29 -07001357 /*
1358 * We have to make sure that the total write passed in
1359 * doesn't extend past a single cluster.
1360 */
1361 local_len = len;
1362 cluster_off = pos & (osb->s_clustersize - 1);
1363 if ((cluster_off + local_len) > osb->s_clustersize)
1364 local_len = osb->s_clustersize - cluster_off;
1365
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001366 ret = ocfs2_write_cluster(mapping, desc->c_phys,
1367 desc->c_unwritten, data_ac, meta_ac,
Mark Fashehdb562462007-09-17 09:06:29 -07001368 wc, desc->c_cpos, pos, local_len);
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001369 if (ret) {
1370 mlog_errno(ret);
1371 goto out;
1372 }
Mark Fashehdb562462007-09-17 09:06:29 -07001373
1374 len -= local_len;
1375 pos += local_len;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001376 }
1377
1378 ret = 0;
1379out:
1380 return ret;
1381}
1382
Mark Fasheh9517bac2007-02-09 20:24:12 -08001383/*
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001384 * ocfs2_write_end() wants to know which parts of the target page it
1385 * should complete the write on. It's easiest to compute them ahead of
1386 * time when a more complete view of the write is available.
Mark Fasheh9517bac2007-02-09 20:24:12 -08001387 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001388static void ocfs2_set_target_boundaries(struct ocfs2_super *osb,
1389 struct ocfs2_write_ctxt *wc,
1390 loff_t pos, unsigned len, int alloc)
Mark Fasheh9517bac2007-02-09 20:24:12 -08001391{
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001392 struct ocfs2_write_cluster_desc *desc;
1393
1394 wc->w_target_from = pos & (PAGE_CACHE_SIZE - 1);
1395 wc->w_target_to = wc->w_target_from + len;
1396
1397 if (alloc == 0)
1398 return;
1399
1400 /*
1401 * Allocating write - we may have different boundaries based
1402 * on page size and cluster size.
1403 *
1404 * NOTE: We can no longer compute one value from the other as
1405 * the actual write length and user provided length may be
1406 * different.
1407 */
1408
1409 if (wc->w_large_pages) {
1410 /*
1411 * We only care about the 1st and last cluster within
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001412 * our range and whether they should be zero'd or not. Either
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001413 * value may be extended out to the start/end of a
1414 * newly allocated cluster.
1415 */
1416 desc = &wc->w_desc[0];
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001417 if (ocfs2_should_zero_cluster(desc))
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001418 ocfs2_figure_cluster_boundaries(osb,
1419 desc->c_cpos,
1420 &wc->w_target_from,
1421 NULL);
1422
1423 desc = &wc->w_desc[wc->w_clen - 1];
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001424 if (ocfs2_should_zero_cluster(desc))
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001425 ocfs2_figure_cluster_boundaries(osb,
1426 desc->c_cpos,
1427 NULL,
1428 &wc->w_target_to);
1429 } else {
1430 wc->w_target_from = 0;
1431 wc->w_target_to = PAGE_CACHE_SIZE;
1432 }
1433}
1434
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001435/*
1436 * Populate each single-cluster write descriptor in the write context
1437 * with information about the i/o to be done.
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001438 *
1439 * Returns the number of clusters that will have to be allocated, as
1440 * well as a worst case estimate of the number of extent records that
1441 * would have to be created during a write to an unwritten region.
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001442 */
1443static int ocfs2_populate_write_desc(struct inode *inode,
1444 struct ocfs2_write_ctxt *wc,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001445 unsigned int *clusters_to_alloc,
1446 unsigned int *extents_to_split)
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001447{
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001448 int ret;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001449 struct ocfs2_write_cluster_desc *desc;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001450 unsigned int num_clusters = 0;
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001451 unsigned int ext_flags = 0;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001452 u32 phys = 0;
1453 int i;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001454
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001455 *clusters_to_alloc = 0;
1456 *extents_to_split = 0;
1457
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001458 for (i = 0; i < wc->w_clen; i++) {
1459 desc = &wc->w_desc[i];
1460 desc->c_cpos = wc->w_cpos + i;
1461
1462 if (num_clusters == 0) {
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001463 /*
1464 * Need to look up the next extent record.
1465 */
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001466 ret = ocfs2_get_clusters(inode, desc->c_cpos, &phys,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001467 &num_clusters, &ext_flags);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001468 if (ret) {
1469 mlog_errno(ret);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001470 goto out;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001471 }
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001472
1473 /*
1474 * Assume worst case - that we're writing in
1475 * the middle of the extent.
1476 *
1477 * We can assume that the write proceeds from
1478 * left to right, in which case the extent
1479 * insert code is smart enough to coalesce the
1480 * next splits into the previous records created.
1481 */
1482 if (ext_flags & OCFS2_EXT_UNWRITTEN)
1483 *extents_to_split = *extents_to_split + 2;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001484 } else if (phys) {
1485 /*
1486 * Only increment phys if it doesn't describe
1487 * a hole.
1488 */
1489 phys++;
1490 }
1491
1492 desc->c_phys = phys;
1493 if (phys == 0) {
1494 desc->c_new = 1;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001495 *clusters_to_alloc = *clusters_to_alloc + 1;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001496 }
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001497 if (ext_flags & OCFS2_EXT_UNWRITTEN)
1498 desc->c_unwritten = 1;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001499
1500 num_clusters--;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001501 }
1502
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001503 ret = 0;
1504out:
1505 return ret;
1506}
1507
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001508static int ocfs2_write_begin_inline(struct address_space *mapping,
1509 struct inode *inode,
1510 struct ocfs2_write_ctxt *wc)
1511{
1512 int ret;
1513 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1514 struct page *page;
1515 handle_t *handle;
1516 struct ocfs2_dinode *di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
1517
1518 page = find_or_create_page(mapping, 0, GFP_NOFS);
1519 if (!page) {
1520 ret = -ENOMEM;
1521 mlog_errno(ret);
1522 goto out;
1523 }
1524 /*
1525 * If we don't set w_num_pages then this page won't get unlocked
1526 * and freed on cleanup of the write context.
1527 */
1528 wc->w_pages[0] = wc->w_target_page = page;
1529 wc->w_num_pages = 1;
1530
1531 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
1532 if (IS_ERR(handle)) {
1533 ret = PTR_ERR(handle);
1534 mlog_errno(ret);
1535 goto out;
1536 }
1537
1538 ret = ocfs2_journal_access(handle, inode, wc->w_di_bh,
1539 OCFS2_JOURNAL_ACCESS_WRITE);
1540 if (ret) {
1541 ocfs2_commit_trans(osb, handle);
1542
1543 mlog_errno(ret);
1544 goto out;
1545 }
1546
1547 if (!(OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL))
1548 ocfs2_set_inode_data_inline(inode, di);
1549
1550 if (!PageUptodate(page)) {
1551 ret = ocfs2_read_inline_data(inode, page, wc->w_di_bh);
1552 if (ret) {
1553 ocfs2_commit_trans(osb, handle);
1554
1555 goto out;
1556 }
1557 }
1558
1559 wc->w_handle = handle;
1560out:
1561 return ret;
1562}
1563
1564int ocfs2_size_fits_inline_data(struct buffer_head *di_bh, u64 new_size)
1565{
1566 struct ocfs2_dinode *di = (struct ocfs2_dinode *)di_bh->b_data;
1567
Mark Fasheh0d8a4e02007-11-20 11:48:41 -08001568 if (new_size <= le16_to_cpu(di->id2.i_data.id_count))
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001569 return 1;
1570 return 0;
1571}
1572
1573static int ocfs2_try_to_write_inline_data(struct address_space *mapping,
1574 struct inode *inode, loff_t pos,
1575 unsigned len, struct page *mmap_page,
1576 struct ocfs2_write_ctxt *wc)
1577{
1578 int ret, written = 0;
1579 loff_t end = pos + len;
1580 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1581
1582 mlog(0, "Inode %llu, write of %u bytes at off %llu. features: 0x%x\n",
1583 (unsigned long long)oi->ip_blkno, len, (unsigned long long)pos,
1584 oi->ip_dyn_features);
1585
1586 /*
1587 * Handle inodes which already have inline data 1st.
1588 */
1589 if (oi->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1590 if (mmap_page == NULL &&
1591 ocfs2_size_fits_inline_data(wc->w_di_bh, end))
1592 goto do_inline_write;
1593
1594 /*
1595 * The write won't fit - we have to give this inode an
1596 * inline extent list now.
1597 */
1598 ret = ocfs2_convert_inline_data_to_extents(inode, wc->w_di_bh);
1599 if (ret)
1600 mlog_errno(ret);
1601 goto out;
1602 }
1603
1604 /*
1605 * Check whether the inode can accept inline data.
1606 */
1607 if (oi->ip_clusters != 0 || i_size_read(inode) != 0)
1608 return 0;
1609
1610 /*
1611 * Check whether the write can fit.
1612 */
1613 if (mmap_page || end > ocfs2_max_inline_data(inode->i_sb))
1614 return 0;
1615
1616do_inline_write:
1617 ret = ocfs2_write_begin_inline(mapping, inode, wc);
1618 if (ret) {
1619 mlog_errno(ret);
1620 goto out;
1621 }
1622
1623 /*
1624 * This signals to the caller that the data can be written
1625 * inline.
1626 */
1627 written = 1;
1628out:
1629 return written ? written : ret;
1630}
1631
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001632/*
1633 * This function only does anything for file systems which can't
1634 * handle sparse files.
1635 *
1636 * What we want to do here is fill in any hole between the current end
1637 * of allocation and the end of our write. That way the rest of the
1638 * write path can treat it as an non-allocating write, which has no
1639 * special case code for sparse/nonsparse files.
1640 */
1641static int ocfs2_expand_nonsparse_inode(struct inode *inode, loff_t pos,
1642 unsigned len,
1643 struct ocfs2_write_ctxt *wc)
1644{
1645 int ret;
1646 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1647 loff_t newsize = pos + len;
1648
1649 if (ocfs2_sparse_alloc(osb))
1650 return 0;
1651
1652 if (newsize <= i_size_read(inode))
1653 return 0;
1654
1655 ret = ocfs2_extend_no_holes(inode, newsize, newsize - len);
1656 if (ret)
1657 mlog_errno(ret);
1658
1659 return ret;
1660}
1661
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001662int ocfs2_write_begin_nolock(struct address_space *mapping,
1663 loff_t pos, unsigned len, unsigned flags,
1664 struct page **pagep, void **fsdata,
1665 struct buffer_head *di_bh, struct page *mmap_page)
1666{
1667 int ret, credits = OCFS2_INODE_UPDATE_CREDITS;
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001668 unsigned int clusters_to_alloc, extents_to_split;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001669 struct ocfs2_write_ctxt *wc;
1670 struct inode *inode = mapping->host;
1671 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1672 struct ocfs2_dinode *di;
1673 struct ocfs2_alloc_context *data_ac = NULL;
1674 struct ocfs2_alloc_context *meta_ac = NULL;
1675 handle_t *handle;
Joel Beckerf99b9b72008-08-20 19:36:33 -07001676 struct ocfs2_extent_tree et;
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001677
1678 ret = ocfs2_alloc_write_ctxt(&wc, osb, pos, len, di_bh);
1679 if (ret) {
1680 mlog_errno(ret);
1681 return ret;
1682 }
1683
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001684 if (ocfs2_supports_inline_data(osb)) {
1685 ret = ocfs2_try_to_write_inline_data(mapping, inode, pos, len,
1686 mmap_page, wc);
1687 if (ret == 1) {
1688 ret = 0;
1689 goto success;
1690 }
1691 if (ret < 0) {
1692 mlog_errno(ret);
1693 goto out;
1694 }
1695 }
1696
Mark Fasheh65ed39d2007-08-28 17:13:23 -07001697 ret = ocfs2_expand_nonsparse_inode(inode, pos, len, wc);
1698 if (ret) {
1699 mlog_errno(ret);
1700 goto out;
1701 }
1702
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001703 ret = ocfs2_populate_write_desc(inode, wc, &clusters_to_alloc,
1704 &extents_to_split);
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001705 if (ret) {
1706 mlog_errno(ret);
1707 goto out;
1708 }
1709
1710 di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
1711
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001712 /*
1713 * We set w_target_from, w_target_to here so that
1714 * ocfs2_write_end() knows which range in the target page to
1715 * write out. An allocation requires that we write the entire
1716 * cluster range.
1717 */
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001718 if (clusters_to_alloc || extents_to_split) {
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001719 /*
1720 * XXX: We are stretching the limits of
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001721 * ocfs2_lock_allocators(). It greatly over-estimates
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001722 * the work to be done.
1723 */
Tao Mae7d4cb62008-08-18 17:38:44 +08001724 mlog(0, "extend inode %llu, i_size = %lld, di->i_clusters = %u,"
1725 " clusters_to_add = %u, extents_to_split = %u\n",
1726 (unsigned long long)OCFS2_I(inode)->ip_blkno,
1727 (long long)i_size_read(inode), le32_to_cpu(di->i_clusters),
1728 clusters_to_alloc, extents_to_split);
1729
Joel Becker8d6220d2008-08-22 12:46:09 -07001730 ocfs2_init_dinode_extent_tree(&et, inode, wc->w_di_bh);
Joel Beckerf99b9b72008-08-20 19:36:33 -07001731 ret = ocfs2_lock_allocators(inode, &et,
Tao Ma231b87d2008-08-18 17:38:42 +08001732 clusters_to_alloc, extents_to_split,
Joel Beckerf99b9b72008-08-20 19:36:33 -07001733 &data_ac, &meta_ac);
Mark Fasheh9517bac2007-02-09 20:24:12 -08001734 if (ret) {
1735 mlog_errno(ret);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001736 goto out;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001737 }
1738
Tao Ma811f9332008-08-18 17:38:43 +08001739 credits = ocfs2_calc_extend_credits(inode->i_sb,
1740 &di->id2.i_list,
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001741 clusters_to_alloc);
1742
Mark Fasheh9517bac2007-02-09 20:24:12 -08001743 }
1744
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001745 ocfs2_set_target_boundaries(osb, wc, pos, len,
1746 clusters_to_alloc + extents_to_split);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001747
Mark Fasheh9517bac2007-02-09 20:24:12 -08001748 handle = ocfs2_start_trans(osb, credits);
1749 if (IS_ERR(handle)) {
1750 ret = PTR_ERR(handle);
1751 mlog_errno(ret);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001752 goto out;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001753 }
1754
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001755 wc->w_handle = handle;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001756
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001757 /*
1758 * We don't want this to fail in ocfs2_write_end(), so do it
1759 * here.
1760 */
1761 ret = ocfs2_journal_access(handle, inode, wc->w_di_bh,
Mark Fasheh9517bac2007-02-09 20:24:12 -08001762 OCFS2_JOURNAL_ACCESS_WRITE);
1763 if (ret) {
1764 mlog_errno(ret);
1765 goto out_commit;
1766 }
1767
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001768 /*
1769 * Fill our page array first. That way we've grabbed enough so
1770 * that we can zero and flush if we error after adding the
1771 * extent.
1772 */
1773 ret = ocfs2_grab_pages_for_write(mapping, wc, wc->w_cpos, pos,
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001774 clusters_to_alloc + extents_to_split,
1775 mmap_page);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001776 if (ret) {
Mark Fasheh9517bac2007-02-09 20:24:12 -08001777 mlog_errno(ret);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001778 goto out_commit;
1779 }
Mark Fasheh9517bac2007-02-09 20:24:12 -08001780
Mark Fasheh0d172ba2007-05-14 18:09:54 -07001781 ret = ocfs2_write_cluster_by_desc(mapping, data_ac, meta_ac, wc, pos,
1782 len);
1783 if (ret) {
1784 mlog_errno(ret);
1785 goto out_commit;
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001786 }
1787
1788 if (data_ac)
1789 ocfs2_free_alloc_context(data_ac);
1790 if (meta_ac)
1791 ocfs2_free_alloc_context(meta_ac);
1792
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001793success:
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001794 *pagep = wc->w_target_page;
1795 *fsdata = wc;
1796 return 0;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001797out_commit:
1798 ocfs2_commit_trans(osb, handle);
1799
Mark Fasheh9517bac2007-02-09 20:24:12 -08001800out:
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001801 ocfs2_free_write_ctxt(wc);
1802
Mark Fasheh9517bac2007-02-09 20:24:12 -08001803 if (data_ac)
1804 ocfs2_free_alloc_context(data_ac);
1805 if (meta_ac)
1806 ocfs2_free_alloc_context(meta_ac);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001807 return ret;
1808}
Mark Fasheh9517bac2007-02-09 20:24:12 -08001809
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001810static int ocfs2_write_begin(struct file *file, struct address_space *mapping,
1811 loff_t pos, unsigned len, unsigned flags,
1812 struct page **pagep, void **fsdata)
Mark Fasheh607d44a2007-05-09 15:14:45 -07001813{
1814 int ret;
1815 struct buffer_head *di_bh = NULL;
1816 struct inode *inode = mapping->host;
1817
Mark Fashehe63aecb62007-10-18 15:30:42 -07001818 ret = ocfs2_inode_lock(inode, &di_bh, 1);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001819 if (ret) {
1820 mlog_errno(ret);
1821 return ret;
1822 }
1823
1824 /*
1825 * Take alloc sem here to prevent concurrent lookups. That way
1826 * the mapping, zeroing and tree manipulation within
1827 * ocfs2_write() will be safe against ->readpage(). This
1828 * should also serve to lock out allocation from a shared
1829 * writeable region.
1830 */
1831 down_write(&OCFS2_I(inode)->ip_alloc_sem);
1832
Mark Fasheh607d44a2007-05-09 15:14:45 -07001833 ret = ocfs2_write_begin_nolock(mapping, pos, len, flags, pagep,
Mark Fasheh7307de82007-05-09 15:16:19 -07001834 fsdata, di_bh, NULL);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001835 if (ret) {
1836 mlog_errno(ret);
Mark Fashehc934a922007-10-18 15:23:46 -07001837 goto out_fail;
Mark Fasheh607d44a2007-05-09 15:14:45 -07001838 }
1839
1840 brelse(di_bh);
1841
1842 return 0;
1843
Mark Fasheh607d44a2007-05-09 15:14:45 -07001844out_fail:
1845 up_write(&OCFS2_I(inode)->ip_alloc_sem);
1846
1847 brelse(di_bh);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001848 ocfs2_inode_unlock(inode, 1);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001849
1850 return ret;
1851}
1852
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001853static void ocfs2_write_end_inline(struct inode *inode, loff_t pos,
1854 unsigned len, unsigned *copied,
1855 struct ocfs2_dinode *di,
1856 struct ocfs2_write_ctxt *wc)
1857{
1858 void *kaddr;
1859
1860 if (unlikely(*copied < len)) {
1861 if (!PageUptodate(wc->w_target_page)) {
1862 *copied = 0;
1863 return;
1864 }
1865 }
1866
1867 kaddr = kmap_atomic(wc->w_target_page, KM_USER0);
1868 memcpy(di->id2.i_data.id_data + pos, kaddr + pos, *copied);
1869 kunmap_atomic(kaddr, KM_USER0);
1870
1871 mlog(0, "Data written to inode at offset %llu. "
1872 "id_count = %u, copied = %u, i_dyn_features = 0x%x\n",
1873 (unsigned long long)pos, *copied,
1874 le16_to_cpu(di->id2.i_data.id_count),
1875 le16_to_cpu(di->i_dyn_features));
1876}
1877
Mark Fasheh7307de82007-05-09 15:16:19 -07001878int ocfs2_write_end_nolock(struct address_space *mapping,
1879 loff_t pos, unsigned len, unsigned copied,
1880 struct page *page, void *fsdata)
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001881{
1882 int i;
1883 unsigned from, to, start = pos & (PAGE_CACHE_SIZE - 1);
1884 struct inode *inode = mapping->host;
1885 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
1886 struct ocfs2_write_ctxt *wc = fsdata;
1887 struct ocfs2_dinode *di = (struct ocfs2_dinode *)wc->w_di_bh->b_data;
1888 handle_t *handle = wc->w_handle;
1889 struct page *tmppage;
1890
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001891 if (OCFS2_I(inode)->ip_dyn_features & OCFS2_INLINE_DATA_FL) {
1892 ocfs2_write_end_inline(inode, pos, len, &copied, di, wc);
1893 goto out_write_size;
1894 }
1895
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001896 if (unlikely(copied < len)) {
1897 if (!PageUptodate(wc->w_target_page))
1898 copied = 0;
1899
1900 ocfs2_zero_new_buffers(wc->w_target_page, start+copied,
1901 start+len);
1902 }
1903 flush_dcache_page(wc->w_target_page);
1904
1905 for(i = 0; i < wc->w_num_pages; i++) {
1906 tmppage = wc->w_pages[i];
1907
1908 if (tmppage == wc->w_target_page) {
1909 from = wc->w_target_from;
1910 to = wc->w_target_to;
1911
1912 BUG_ON(from > PAGE_CACHE_SIZE ||
1913 to > PAGE_CACHE_SIZE ||
1914 to < from);
1915 } else {
1916 /*
1917 * Pages adjacent to the target (if any) imply
1918 * a hole-filling write in which case we want
1919 * to flush their entire range.
1920 */
1921 from = 0;
1922 to = PAGE_CACHE_SIZE;
1923 }
1924
Sunil Mushran961cecb2008-07-16 17:22:22 -07001925 if (page_has_buffers(tmppage)) {
Joel Becker2b4e30f2008-09-03 20:03:41 -07001926 if (ocfs2_should_order_data(inode)) {
1927 ocfs2_jbd2_file_inode(wc->w_handle, inode);
1928#ifdef CONFIG_OCFS2_COMPAT_JBD
Sunil Mushran961cecb2008-07-16 17:22:22 -07001929 walk_page_buffers(wc->w_handle,
1930 page_buffers(tmppage),
1931 from, to, NULL,
1932 ocfs2_journal_dirty_data);
Joel Becker2b4e30f2008-09-03 20:03:41 -07001933#endif
1934 }
Sunil Mushran961cecb2008-07-16 17:22:22 -07001935 block_commit_write(tmppage, from, to);
1936 }
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001937 }
1938
Mark Fasheh1afc32b2007-09-07 14:46:51 -07001939out_write_size:
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001940 pos += copied;
1941 if (pos > inode->i_size) {
1942 i_size_write(inode, pos);
1943 mark_inode_dirty(inode);
1944 }
1945 inode->i_blocks = ocfs2_inode_sector_count(inode);
1946 di->i_size = cpu_to_le64((u64)i_size_read(inode));
1947 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1948 di->i_mtime = di->i_ctime = cpu_to_le64(inode->i_mtime.tv_sec);
1949 di->i_mtime_nsec = di->i_ctime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001950 ocfs2_journal_dirty(handle, wc->w_di_bh);
1951
1952 ocfs2_commit_trans(osb, handle);
Mark Fasheh59a5e412007-06-22 15:52:36 -07001953
Mark Fashehb27b7cb2007-06-18 11:22:56 -07001954 ocfs2_run_deallocs(osb, &wc->w_dealloc);
1955
Mark Fasheh3a307ff2007-05-08 17:47:32 -07001956 ocfs2_free_write_ctxt(wc);
1957
1958 return copied;
Mark Fasheh9517bac2007-02-09 20:24:12 -08001959}
1960
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001961static int ocfs2_write_end(struct file *file, struct address_space *mapping,
1962 loff_t pos, unsigned len, unsigned copied,
1963 struct page *page, void *fsdata)
Mark Fasheh607d44a2007-05-09 15:14:45 -07001964{
1965 int ret;
1966 struct inode *inode = mapping->host;
1967
1968 ret = ocfs2_write_end_nolock(mapping, pos, len, copied, page, fsdata);
1969
Mark Fasheh607d44a2007-05-09 15:14:45 -07001970 up_write(&OCFS2_I(inode)->ip_alloc_sem);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001971 ocfs2_inode_unlock(inode, 1);
Mark Fasheh607d44a2007-05-09 15:14:45 -07001972
1973 return ret;
1974}
1975
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07001976const struct address_space_operations ocfs2_aops = {
Mark Fashehccd979b2005-12-15 14:31:24 -08001977 .readpage = ocfs2_readpage,
Mark Fasheh628a24f2007-10-30 12:08:32 -07001978 .readpages = ocfs2_readpages,
Mark Fashehccd979b2005-12-15 14:31:24 -08001979 .writepage = ocfs2_writepage,
Nick Pigginb6af1bc2007-10-16 01:25:24 -07001980 .write_begin = ocfs2_write_begin,
1981 .write_end = ocfs2_write_end,
Mark Fashehccd979b2005-12-15 14:31:24 -08001982 .bmap = ocfs2_bmap,
1983 .sync_page = block_sync_page,
Joel Becker03f981c2007-01-04 14:54:41 -08001984 .direct_IO = ocfs2_direct_IO,
1985 .invalidatepage = ocfs2_invalidatepage,
1986 .releasepage = ocfs2_releasepage,
1987 .migratepage = buffer_migrate_page,
Mark Fashehccd979b2005-12-15 14:31:24 -08001988};