blob: 23d1d811e2b2b159eea7eb1c721edd83a69957d7 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason39279cc2007-06-12 06:35:45 -040019#include <linux/fs.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
22#include <linux/time.h>
23#include <linux/init.h>
24#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040025#include <linux/backing-dev.h>
26#include <linux/mpage.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010027#include <linux/falloc.h>
Chris Mason39279cc2007-06-12 06:35:45 -040028#include <linux/swap.h>
29#include <linux/writeback.h>
30#include <linux/statfs.h>
31#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Chris Mason39279cc2007-06-12 06:35:45 -040033#include "ctree.h"
34#include "disk-io.h"
35#include "transaction.h"
36#include "btrfs_inode.h"
37#include "ioctl.h"
38#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040039#include "tree-log.h"
40#include "locking.h"
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -040041#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040042
Chris Mason4cb53002011-05-24 15:35:30 -040043/*
44 * when auto defrag is enabled we
45 * queue up these defrag structs to remember which
46 * inodes need defragging passes
47 */
48struct inode_defrag {
49 struct rb_node rb_node;
50 /* objectid */
51 u64 ino;
52 /*
53 * transid where the defrag was added, we search for
54 * extents newer than this
55 */
56 u64 transid;
57
58 /* root objectid */
59 u64 root;
60
61 /* last offset we were able to defrag */
62 u64 last_offset;
63
64 /* if we've wrapped around back to zero once already */
65 int cycled;
66};
67
68/* pop a record for an inode into the defrag tree. The lock
69 * must be held already
70 *
71 * If you're inserting a record for an older transid than an
72 * existing record, the transid already in the tree is lowered
73 *
74 * If an existing record is found the defrag item you
75 * pass in is freed
76 */
77static int __btrfs_add_inode_defrag(struct inode *inode,
78 struct inode_defrag *defrag)
79{
80 struct btrfs_root *root = BTRFS_I(inode)->root;
81 struct inode_defrag *entry;
82 struct rb_node **p;
83 struct rb_node *parent = NULL;
84
85 p = &root->fs_info->defrag_inodes.rb_node;
86 while (*p) {
87 parent = *p;
88 entry = rb_entry(parent, struct inode_defrag, rb_node);
89
90 if (defrag->ino < entry->ino)
91 p = &parent->rb_left;
92 else if (defrag->ino > entry->ino)
93 p = &parent->rb_right;
94 else {
95 /* if we're reinserting an entry for
96 * an old defrag run, make sure to
97 * lower the transid of our existing record
98 */
99 if (defrag->transid < entry->transid)
100 entry->transid = defrag->transid;
101 if (defrag->last_offset > entry->last_offset)
102 entry->last_offset = defrag->last_offset;
103 goto exists;
104 }
105 }
106 BTRFS_I(inode)->in_defrag = 1;
107 rb_link_node(&defrag->rb_node, parent, p);
108 rb_insert_color(&defrag->rb_node, &root->fs_info->defrag_inodes);
109 return 0;
110
111exists:
112 kfree(defrag);
113 return 0;
114
115}
116
117/*
118 * insert a defrag record for this inode if auto defrag is
119 * enabled
120 */
121int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
122 struct inode *inode)
123{
124 struct btrfs_root *root = BTRFS_I(inode)->root;
125 struct inode_defrag *defrag;
126 int ret = 0;
127 u64 transid;
128
129 if (!btrfs_test_opt(root, AUTO_DEFRAG))
130 return 0;
131
David Sterba7841cb22011-05-31 18:07:27 +0200132 if (btrfs_fs_closing(root->fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400133 return 0;
134
135 if (BTRFS_I(inode)->in_defrag)
136 return 0;
137
138 if (trans)
139 transid = trans->transid;
140 else
141 transid = BTRFS_I(inode)->root->last_trans;
142
143 defrag = kzalloc(sizeof(*defrag), GFP_NOFS);
144 if (!defrag)
145 return -ENOMEM;
146
David Sterbaa4689d22011-05-31 17:08:14 +0000147 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400148 defrag->transid = transid;
149 defrag->root = root->root_key.objectid;
150
151 spin_lock(&root->fs_info->defrag_inodes_lock);
152 if (!BTRFS_I(inode)->in_defrag)
153 ret = __btrfs_add_inode_defrag(inode, defrag);
154 spin_unlock(&root->fs_info->defrag_inodes_lock);
155 return ret;
156}
157
158/*
159 * must be called with the defrag_inodes lock held
160 */
161struct inode_defrag *btrfs_find_defrag_inode(struct btrfs_fs_info *info, u64 ino,
162 struct rb_node **next)
163{
164 struct inode_defrag *entry = NULL;
165 struct rb_node *p;
166 struct rb_node *parent = NULL;
167
168 p = info->defrag_inodes.rb_node;
169 while (p) {
170 parent = p;
171 entry = rb_entry(parent, struct inode_defrag, rb_node);
172
173 if (ino < entry->ino)
174 p = parent->rb_left;
175 else if (ino > entry->ino)
176 p = parent->rb_right;
177 else
178 return entry;
179 }
180
181 if (next) {
182 while (parent && ino > entry->ino) {
183 parent = rb_next(parent);
184 entry = rb_entry(parent, struct inode_defrag, rb_node);
185 }
186 *next = parent;
187 }
188 return NULL;
189}
190
191/*
192 * run through the list of inodes in the FS that need
193 * defragging
194 */
195int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
196{
197 struct inode_defrag *defrag;
198 struct btrfs_root *inode_root;
199 struct inode *inode;
200 struct rb_node *n;
201 struct btrfs_key key;
202 struct btrfs_ioctl_defrag_range_args range;
203 u64 first_ino = 0;
204 int num_defrag;
205 int defrag_batch = 1024;
206
207 memset(&range, 0, sizeof(range));
208 range.len = (u64)-1;
209
210 atomic_inc(&fs_info->defrag_running);
211 spin_lock(&fs_info->defrag_inodes_lock);
212 while(1) {
213 n = NULL;
214
215 /* find an inode to defrag */
216 defrag = btrfs_find_defrag_inode(fs_info, first_ino, &n);
217 if (!defrag) {
218 if (n)
219 defrag = rb_entry(n, struct inode_defrag, rb_node);
220 else if (first_ino) {
221 first_ino = 0;
222 continue;
223 } else {
224 break;
225 }
226 }
227
228 /* remove it from the rbtree */
229 first_ino = defrag->ino + 1;
230 rb_erase(&defrag->rb_node, &fs_info->defrag_inodes);
231
David Sterba7841cb22011-05-31 18:07:27 +0200232 if (btrfs_fs_closing(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400233 goto next_free;
234
235 spin_unlock(&fs_info->defrag_inodes_lock);
236
237 /* get the inode */
238 key.objectid = defrag->root;
239 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
240 key.offset = (u64)-1;
241 inode_root = btrfs_read_fs_root_no_name(fs_info, &key);
242 if (IS_ERR(inode_root))
243 goto next;
244
245 key.objectid = defrag->ino;
246 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
247 key.offset = 0;
248
249 inode = btrfs_iget(fs_info->sb, &key, inode_root, NULL);
250 if (IS_ERR(inode))
251 goto next;
252
253 /* do a chunk of defrag */
254 BTRFS_I(inode)->in_defrag = 0;
255 range.start = defrag->last_offset;
256 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
257 defrag_batch);
258 /*
259 * if we filled the whole defrag batch, there
260 * must be more work to do. Queue this defrag
261 * again
262 */
263 if (num_defrag == defrag_batch) {
264 defrag->last_offset = range.start;
265 __btrfs_add_inode_defrag(inode, defrag);
266 /*
267 * we don't want to kfree defrag, we added it back to
268 * the rbtree
269 */
270 defrag = NULL;
271 } else if (defrag->last_offset && !defrag->cycled) {
272 /*
273 * we didn't fill our defrag batch, but
274 * we didn't start at zero. Make sure we loop
275 * around to the start of the file.
276 */
277 defrag->last_offset = 0;
278 defrag->cycled = 1;
279 __btrfs_add_inode_defrag(inode, defrag);
280 defrag = NULL;
281 }
282
283 iput(inode);
284next:
285 spin_lock(&fs_info->defrag_inodes_lock);
286next_free:
287 kfree(defrag);
288 }
289 spin_unlock(&fs_info->defrag_inodes_lock);
290
291 atomic_dec(&fs_info->defrag_running);
292
293 /*
294 * during unmount, we use the transaction_wait queue to
295 * wait for the defragger to stop
296 */
297 wake_up(&fs_info->transaction_wait);
298 return 0;
299}
Chris Mason39279cc2007-06-12 06:35:45 -0400300
Chris Masond352ac62008-09-29 15:18:18 -0400301/* simple helper to fault in pages and copy. This should go away
302 * and be replaced with calls into generic code.
303 */
Chris Masond3977122009-01-05 21:25:51 -0500304static noinline int btrfs_copy_from_user(loff_t pos, int num_pages,
Josef Bacikd0215f32011-01-25 14:57:24 -0500305 size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400306 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400307 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400308{
Xin Zhong914ee292010-12-09 09:30:14 +0000309 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500310 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400311 int pg = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400312 int offset = pos & (PAGE_CACHE_SIZE - 1);
313
Josef Bacik11c65dc2010-05-23 11:07:21 -0400314 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400315 size_t count = min_t(size_t,
316 PAGE_CACHE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400317 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000318 /*
319 * Copy data from userspace to the current page
320 *
321 * Disable pagefault to avoid recursive lock since
322 * the pages are already locked
323 */
324 pagefault_disable();
325 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
326 pagefault_enable();
Josef Bacik11c65dc2010-05-23 11:07:21 -0400327
Chris Mason39279cc2007-06-12 06:35:45 -0400328 /* Flush processor's dcache for this page */
329 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500330
331 /*
332 * if we get a partial write, we can end up with
333 * partially up to date pages. These add
334 * a lot of complexity, so make sure they don't
335 * happen by forcing this copy to be retried.
336 *
337 * The rest of the btrfs_file_write code will fall
338 * back to page at a time copies after we return 0.
339 */
340 if (!PageUptodate(page) && copied < count)
341 copied = 0;
342
Josef Bacik11c65dc2010-05-23 11:07:21 -0400343 iov_iter_advance(i, copied);
344 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000345 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400346
Xin Zhong914ee292010-12-09 09:30:14 +0000347 /* Return to btrfs_file_aio_write to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500348 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000349 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400350
351 if (unlikely(copied < PAGE_CACHE_SIZE - offset)) {
352 offset += copied;
353 } else {
354 pg++;
355 offset = 0;
356 }
Chris Mason39279cc2007-06-12 06:35:45 -0400357 }
Xin Zhong914ee292010-12-09 09:30:14 +0000358 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400359}
360
Chris Masond352ac62008-09-29 15:18:18 -0400361/*
362 * unlocks pages after btrfs_file_write is done with them
363 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400364void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400365{
366 size_t i;
367 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400368 /* page checked is some magic around finding pages that
369 * have been modified without going through btrfs_set_page_dirty
370 * clear it here
371 */
Chris Mason4a096752008-07-21 10:29:44 -0400372 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400373 unlock_page(pages[i]);
374 mark_page_accessed(pages[i]);
375 page_cache_release(pages[i]);
376 }
377}
378
Chris Masond352ac62008-09-29 15:18:18 -0400379/*
380 * after copy_from_user, pages need to be dirtied and we need to make
381 * sure holes are created between the current EOF and the start of
382 * any next extents (if required).
383 *
384 * this also makes the decision about creating an inline extent vs
385 * doing real data extents, marking pages dirty and delalloc as required.
386 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400387int btrfs_dirty_pages(struct btrfs_root *root, struct inode *inode,
388 struct page **pages, size_t num_pages,
389 loff_t pos, size_t write_bytes,
390 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400391{
Chris Mason39279cc2007-06-12 06:35:45 -0400392 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400393 int i;
Chris Masondb945352007-10-15 16:15:53 -0400394 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400395 u64 start_pos;
396 u64 end_of_last_block;
397 u64 end_pos = pos + write_bytes;
398 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400399
Chris Mason5f39d392007-10-15 16:14:19 -0400400 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400401 num_bytes = (write_bytes + pos - start_pos +
402 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400403
Chris Masondb945352007-10-15 16:15:53 -0400404 end_of_last_block = start_pos + num_bytes - 1;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000405 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400406 cached);
Josef Bacikd0215f32011-01-25 14:57:24 -0500407 if (err)
408 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400409
Chris Masonc8b97812008-10-29 14:49:59 -0400410 for (i = 0; i < num_pages; i++) {
411 struct page *p = pages[i];
412 SetPageUptodate(p);
413 ClearPageChecked(p);
414 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400415 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500416
417 /*
418 * we've only changed i_size in ram, and we haven't updated
419 * the disk i_size. There is no need to log the inode
420 * at this time.
421 */
422 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400423 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400424 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400425}
426
Chris Masond352ac62008-09-29 15:18:18 -0400427/*
428 * this drops all the extents in the cache that intersect the range
429 * [start, end]. Existing extents are split as required.
430 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400431int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
432 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400433{
434 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400435 struct extent_map *split = NULL;
436 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400437 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500438 u64 len = end - start + 1;
Chris Mason3b951512008-04-17 11:29:12 -0400439 int ret;
440 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400441 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400442 int compressed = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400443
Chris Masone6dcd2d2008-07-17 12:53:50 -0400444 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400445 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500446 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400447 testend = 0;
448 }
Chris Masond3977122009-01-05 21:25:51 -0500449 while (1) {
Chris Mason3b951512008-04-17 11:29:12 -0400450 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200451 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400452 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200453 split2 = alloc_extent_map();
Tsutomu Itohc26a9202011-02-14 00:45:29 +0000454 BUG_ON(!split || !split2);
Chris Mason3b951512008-04-17 11:29:12 -0400455
Chris Mason890871b2009-09-02 16:24:52 -0400456 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500457 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500458 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400459 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400460 break;
Chris Masond1310b22008-01-24 16:13:08 -0500461 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400462 flags = em->flags;
463 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000464 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400465 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400466 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400467 break;
468 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000469 start = em->start + em->len;
470 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400471 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400472 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400473 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400474 continue;
475 }
Chris Masonc8b97812008-10-29 14:49:59 -0400476 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400477 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400478 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400479
480 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
481 em->start < start) {
482 split->start = em->start;
483 split->len = start - em->start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500484 split->orig_start = em->orig_start;
Chris Mason3b951512008-04-17 11:29:12 -0400485 split->block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400486
487 if (compressed)
488 split->block_len = em->block_len;
489 else
490 split->block_len = split->len;
491
Chris Mason3b951512008-04-17 11:29:12 -0400492 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400493 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800494 split->compress_type = em->compress_type;
Chris Mason3b951512008-04-17 11:29:12 -0400495 ret = add_extent_mapping(em_tree, split);
496 BUG_ON(ret);
497 free_extent_map(split);
498 split = split2;
499 split2 = NULL;
500 }
501 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
502 testend && em->start + em->len > start + len) {
503 u64 diff = start + len - em->start;
504
505 split->start = start + len;
506 split->len = em->start + em->len - (start + len);
507 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400508 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800509 split->compress_type = em->compress_type;
Chris Mason3b951512008-04-17 11:29:12 -0400510
Chris Masonc8b97812008-10-29 14:49:59 -0400511 if (compressed) {
512 split->block_len = em->block_len;
513 split->block_start = em->block_start;
Chris Mason445a6942008-11-10 11:53:33 -0500514 split->orig_start = em->orig_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400515 } else {
516 split->block_len = split->len;
517 split->block_start = em->block_start + diff;
Chris Mason445a6942008-11-10 11:53:33 -0500518 split->orig_start = split->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400519 }
Chris Mason3b951512008-04-17 11:29:12 -0400520
521 ret = add_extent_mapping(em_tree, split);
522 BUG_ON(ret);
523 free_extent_map(split);
524 split = NULL;
525 }
Chris Mason890871b2009-09-02 16:24:52 -0400526 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500527
Chris Masona52d9a82007-08-27 16:49:44 -0400528 /* once for us */
529 free_extent_map(em);
530 /* once for the tree*/
531 free_extent_map(em);
532 }
Chris Mason3b951512008-04-17 11:29:12 -0400533 if (split)
534 free_extent_map(split);
535 if (split2)
536 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400537 return 0;
538}
539
Chris Mason39279cc2007-06-12 06:35:45 -0400540/*
541 * this is very complex, but the basic idea is to drop all extents
542 * in the range start - end. hint_block is filled in with a block number
543 * that would be a good hint to the block allocator for this file.
544 *
545 * If an extent intersects the range but is not entirely inside the range
546 * it is either truncated or split. Anything entirely inside the range
547 * is deleted from the tree.
548 */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000549int btrfs_drop_extents(struct btrfs_trans_handle *trans, struct inode *inode,
550 u64 start, u64 end, u64 *hint_byte, int drop_cache)
Chris Mason39279cc2007-06-12 06:35:45 -0400551{
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000552 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason00f5c792007-11-30 10:09:33 -0500553 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000554 struct btrfs_file_extent_item *fi;
Chris Mason00f5c792007-11-30 10:09:33 -0500555 struct btrfs_path *path;
556 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000557 struct btrfs_key new_key;
Li Zefan33345d012011-04-20 10:31:50 +0800558 u64 ino = btrfs_ino(inode);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000559 u64 search_start = start;
560 u64 disk_bytenr = 0;
561 u64 num_bytes = 0;
562 u64 extent_offset = 0;
563 u64 extent_end = 0;
564 int del_nr = 0;
565 int del_slot = 0;
566 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400567 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500568 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400569
Chris Masona1ed8352009-09-11 12:27:37 -0400570 if (drop_cache)
571 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400572
Chris Mason39279cc2007-06-12 06:35:45 -0400573 path = btrfs_alloc_path();
574 if (!path)
575 return -ENOMEM;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000576
Chris Masond3977122009-01-05 21:25:51 -0500577 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400578 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800579 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Mason39279cc2007-06-12 06:35:45 -0400580 search_start, -1);
581 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000582 break;
583 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
584 leaf = path->nodes[0];
585 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800586 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000587 key.type == BTRFS_EXTENT_DATA_KEY)
588 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400589 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400590 ret = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000591next_slot:
592 leaf = path->nodes[0];
593 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
594 BUG_ON(del_nr > 0);
595 ret = btrfs_next_leaf(root, path);
596 if (ret < 0)
597 break;
598 if (ret > 0) {
599 ret = 0;
600 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400601 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000602 leaf = path->nodes[0];
603 recow = 1;
604 }
605
606 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +0800607 if (key.objectid > ino ||
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000608 key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
609 break;
610
611 fi = btrfs_item_ptr(leaf, path->slots[0],
612 struct btrfs_file_extent_item);
613 extent_type = btrfs_file_extent_type(leaf, fi);
614
615 if (extent_type == BTRFS_FILE_EXTENT_REG ||
616 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
617 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
618 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
619 extent_offset = btrfs_file_extent_offset(leaf, fi);
620 extent_end = key.offset +
621 btrfs_file_extent_num_bytes(leaf, fi);
622 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
623 extent_end = key.offset +
624 btrfs_file_extent_inline_len(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400625 } else {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000626 WARN_ON(1);
Chris Mason8c2383c2007-06-18 09:57:58 -0400627 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400628 }
629
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000630 if (extent_end <= search_start) {
631 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400632 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400633 }
634
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000635 search_start = max(key.offset, start);
636 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200637 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000638 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400639 }
Chris Mason771ed682008-11-06 22:02:51 -0500640
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000641 /*
642 * | - range to drop - |
643 * | -------- extent -------- |
644 */
645 if (start > key.offset && end < extent_end) {
646 BUG_ON(del_nr > 0);
647 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
648
649 memcpy(&new_key, &key, sizeof(new_key));
650 new_key.offset = start;
651 ret = btrfs_duplicate_item(trans, root, path,
652 &new_key);
653 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200654 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000655 continue;
656 }
657 if (ret < 0)
658 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400659
Chris Mason5f39d392007-10-15 16:14:19 -0400660 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000661 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
662 struct btrfs_file_extent_item);
663 btrfs_set_file_extent_num_bytes(leaf, fi,
664 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400665
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000666 fi = btrfs_item_ptr(leaf, path->slots[0],
667 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400668
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000669 extent_offset += start - key.offset;
670 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
671 btrfs_set_file_extent_num_bytes(leaf, fi,
672 extent_end - start);
673 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400674
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000675 if (disk_bytenr > 0) {
676 ret = btrfs_inc_extent_ref(trans, root,
677 disk_bytenr, num_bytes, 0,
678 root->root_key.objectid,
679 new_key.objectid,
680 start - extent_offset);
Zheng Yan31840ae2008-09-23 13:14:14 -0400681 BUG_ON(ret);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000682 *hint_byte = disk_bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -0400683 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000684 key.offset = start;
685 }
686 /*
687 * | ---- range to drop ----- |
688 * | -------- extent -------- |
689 */
690 if (start <= key.offset && end < extent_end) {
691 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
692
693 memcpy(&new_key, &key, sizeof(new_key));
694 new_key.offset = end;
695 btrfs_set_item_key_safe(trans, root, path, &new_key);
696
697 extent_offset += end - key.offset;
698 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
699 btrfs_set_file_extent_num_bytes(leaf, fi,
700 extent_end - end);
701 btrfs_mark_buffer_dirty(leaf);
702 if (disk_bytenr > 0) {
703 inode_sub_bytes(inode, end - key.offset);
704 *hint_byte = disk_bytenr;
705 }
706 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400707 }
708
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000709 search_start = extent_end;
710 /*
711 * | ---- range to drop ----- |
712 * | -------- extent -------- |
713 */
714 if (start > key.offset && end >= extent_end) {
715 BUG_ON(del_nr > 0);
716 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
717
718 btrfs_set_file_extent_num_bytes(leaf, fi,
719 start - key.offset);
720 btrfs_mark_buffer_dirty(leaf);
721 if (disk_bytenr > 0) {
722 inode_sub_bytes(inode, extent_end - start);
723 *hint_byte = disk_bytenr;
724 }
725 if (end == extent_end)
726 break;
727
728 path->slots[0]++;
729 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400730 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000731
732 /*
733 * | ---- range to drop ----- |
734 * | ------ extent ------ |
735 */
736 if (start <= key.offset && end >= extent_end) {
737 if (del_nr == 0) {
738 del_slot = path->slots[0];
739 del_nr = 1;
740 } else {
741 BUG_ON(del_slot + del_nr != path->slots[0]);
742 del_nr++;
743 }
744
745 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
746 inode_sub_bytes(inode,
747 extent_end - key.offset);
748 extent_end = ALIGN(extent_end,
749 root->sectorsize);
750 } else if (disk_bytenr > 0) {
751 ret = btrfs_free_extent(trans, root,
752 disk_bytenr, num_bytes, 0,
753 root->root_key.objectid,
754 key.objectid, key.offset -
755 extent_offset);
756 BUG_ON(ret);
757 inode_sub_bytes(inode,
758 extent_end - key.offset);
759 *hint_byte = disk_bytenr;
760 }
761
762 if (end == extent_end)
763 break;
764
765 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
766 path->slots[0]++;
767 goto next_slot;
768 }
769
770 ret = btrfs_del_items(trans, root, path, del_slot,
771 del_nr);
772 BUG_ON(ret);
773
774 del_nr = 0;
775 del_slot = 0;
776
David Sterbab3b4aa72011-04-21 01:20:15 +0200777 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000778 continue;
779 }
780
781 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400782 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000783
784 if (del_nr > 0) {
785 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
786 BUG_ON(ret);
787 }
788
Chris Mason39279cc2007-06-12 06:35:45 -0400789 btrfs_free_path(path);
790 return ret;
791}
792
Yan Zhengd899e052008-10-30 14:25:28 -0400793static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000794 u64 objectid, u64 bytenr, u64 orig_offset,
795 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -0400796{
797 struct btrfs_file_extent_item *fi;
798 struct btrfs_key key;
799 u64 extent_end;
800
801 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
802 return 0;
803
804 btrfs_item_key_to_cpu(leaf, &key, slot);
805 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
806 return 0;
807
808 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
809 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
810 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000811 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -0400812 btrfs_file_extent_compression(leaf, fi) ||
813 btrfs_file_extent_encryption(leaf, fi) ||
814 btrfs_file_extent_other_encoding(leaf, fi))
815 return 0;
816
817 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
818 if ((*start && *start != key.offset) || (*end && *end != extent_end))
819 return 0;
820
821 *start = key.offset;
822 *end = extent_end;
823 return 1;
824}
825
826/*
827 * Mark extent in the range start - end as written.
828 *
829 * This changes extent type from 'pre-allocated' to 'regular'. If only
830 * part of extent is marked as written, the extent will be split into
831 * two or three.
832 */
833int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Yan Zhengd899e052008-10-30 14:25:28 -0400834 struct inode *inode, u64 start, u64 end)
835{
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000836 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zhengd899e052008-10-30 14:25:28 -0400837 struct extent_buffer *leaf;
838 struct btrfs_path *path;
839 struct btrfs_file_extent_item *fi;
840 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000841 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -0400842 u64 bytenr;
843 u64 num_bytes;
844 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400845 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -0400846 u64 other_start;
847 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000848 u64 split;
849 int del_nr = 0;
850 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000851 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -0400852 int ret;
Li Zefan33345d012011-04-20 10:31:50 +0800853 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -0400854
855 btrfs_drop_extent_cache(inode, start, end - 1, 0);
856
857 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700858 if (!path)
859 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -0400860again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000861 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000862 split = start;
Li Zefan33345d012011-04-20 10:31:50 +0800863 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -0400864 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000865 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -0400866
867 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -0400868 if (ret < 0)
869 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -0400870 if (ret > 0 && path->slots[0] > 0)
871 path->slots[0]--;
872
873 leaf = path->nodes[0];
874 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +0800875 BUG_ON(key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY);
Yan Zhengd899e052008-10-30 14:25:28 -0400876 fi = btrfs_item_ptr(leaf, path->slots[0],
877 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000878 BUG_ON(btrfs_file_extent_type(leaf, fi) !=
879 BTRFS_FILE_EXTENT_PREALLOC);
Yan Zhengd899e052008-10-30 14:25:28 -0400880 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
881 BUG_ON(key.offset > start || extent_end < end);
882
883 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
884 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400885 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000886 memcpy(&new_key, &key, sizeof(new_key));
887
888 if (start == key.offset && end < extent_end) {
889 other_start = 0;
890 other_end = start;
891 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +0800892 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000893 &other_start, &other_end)) {
894 new_key.offset = end;
895 btrfs_set_item_key_safe(trans, root, path, &new_key);
896 fi = btrfs_item_ptr(leaf, path->slots[0],
897 struct btrfs_file_extent_item);
898 btrfs_set_file_extent_num_bytes(leaf, fi,
899 extent_end - end);
900 btrfs_set_file_extent_offset(leaf, fi,
901 end - orig_offset);
902 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
903 struct btrfs_file_extent_item);
904 btrfs_set_file_extent_num_bytes(leaf, fi,
905 end - other_start);
906 btrfs_mark_buffer_dirty(leaf);
907 goto out;
908 }
909 }
910
911 if (start > key.offset && end == extent_end) {
912 other_start = end;
913 other_end = 0;
914 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +0800915 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000916 &other_start, &other_end)) {
917 fi = btrfs_item_ptr(leaf, path->slots[0],
918 struct btrfs_file_extent_item);
919 btrfs_set_file_extent_num_bytes(leaf, fi,
920 start - key.offset);
921 path->slots[0]++;
922 new_key.offset = start;
923 btrfs_set_item_key_safe(trans, root, path, &new_key);
924
925 fi = btrfs_item_ptr(leaf, path->slots[0],
926 struct btrfs_file_extent_item);
927 btrfs_set_file_extent_num_bytes(leaf, fi,
928 other_end - start);
929 btrfs_set_file_extent_offset(leaf, fi,
930 start - orig_offset);
931 btrfs_mark_buffer_dirty(leaf);
932 goto out;
933 }
934 }
Yan Zhengd899e052008-10-30 14:25:28 -0400935
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000936 while (start > key.offset || end < extent_end) {
937 if (key.offset == start)
938 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -0400939
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000940 new_key.offset = split;
941 ret = btrfs_duplicate_item(trans, root, path, &new_key);
942 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200943 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000944 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -0400945 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000946 BUG_ON(ret < 0);
Yan Zhengd899e052008-10-30 14:25:28 -0400947
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000948 leaf = path->nodes[0];
949 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -0400950 struct btrfs_file_extent_item);
Yan Zhengd899e052008-10-30 14:25:28 -0400951 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000952 split - key.offset);
953
954 fi = btrfs_item_ptr(leaf, path->slots[0],
955 struct btrfs_file_extent_item);
956
957 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
958 btrfs_set_file_extent_num_bytes(leaf, fi,
959 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -0400960 btrfs_mark_buffer_dirty(leaf);
961
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000962 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
963 root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800964 ino, orig_offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400965 BUG_ON(ret);
Yan Zhengd899e052008-10-30 14:25:28 -0400966
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000967 if (split == start) {
968 key.offset = start;
969 } else {
970 BUG_ON(start != key.offset);
Yan Zhengd899e052008-10-30 14:25:28 -0400971 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000972 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -0400973 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000974 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -0400975 }
976
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000977 other_start = end;
978 other_end = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000979 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +0800980 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000981 &other_start, &other_end)) {
982 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200983 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000984 goto again;
985 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000986 extent_end = other_end;
987 del_slot = path->slots[0] + 1;
988 del_nr++;
989 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
990 0, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +0800991 ino, orig_offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000992 BUG_ON(ret);
993 }
994 other_start = 0;
995 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000996 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +0800997 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000998 &other_start, &other_end)) {
999 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001000 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001001 goto again;
1002 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001003 key.offset = other_start;
1004 del_slot = path->slots[0];
1005 del_nr++;
1006 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1007 0, root->root_key.objectid,
Li Zefan33345d012011-04-20 10:31:50 +08001008 ino, orig_offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001009 BUG_ON(ret);
1010 }
1011 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001012 fi = btrfs_item_ptr(leaf, path->slots[0],
1013 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001014 btrfs_set_file_extent_type(leaf, fi,
1015 BTRFS_FILE_EXTENT_REG);
1016 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001017 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001018 fi = btrfs_item_ptr(leaf, del_slot - 1,
1019 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001020 btrfs_set_file_extent_type(leaf, fi,
1021 BTRFS_FILE_EXTENT_REG);
1022 btrfs_set_file_extent_num_bytes(leaf, fi,
1023 extent_end - key.offset);
1024 btrfs_mark_buffer_dirty(leaf);
1025
1026 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
1027 BUG_ON(ret);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001028 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001029out:
Yan Zhengd899e052008-10-30 14:25:28 -04001030 btrfs_free_path(path);
1031 return 0;
1032}
1033
Chris Mason39279cc2007-06-12 06:35:45 -04001034/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001035 * on error we return an unlocked page and the error value
1036 * on success we return a locked page and 0
1037 */
1038static int prepare_uptodate_page(struct page *page, u64 pos)
1039{
1040 int ret = 0;
1041
1042 if ((pos & (PAGE_CACHE_SIZE - 1)) && !PageUptodate(page)) {
1043 ret = btrfs_readpage(NULL, page);
1044 if (ret)
1045 return ret;
1046 lock_page(page);
1047 if (!PageUptodate(page)) {
1048 unlock_page(page);
1049 return -EIO;
1050 }
1051 }
1052 return 0;
1053}
1054
1055/*
Chris Masond352ac62008-09-29 15:18:18 -04001056 * this gets pages into the page cache and locks them down, it also properly
1057 * waits for data=ordered extents to finish before allowing the pages to be
1058 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -04001059 */
Chris Masond3977122009-01-05 21:25:51 -05001060static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -05001061 struct page **pages, size_t num_pages,
1062 loff_t pos, unsigned long first_index,
1063 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -04001064{
Josef Bacik2ac55d42010-02-03 19:33:23 +00001065 struct extent_state *cached_state = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001066 int i;
1067 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -05001068 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001069 int err = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001070 int faili = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -04001071 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001072 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -04001073
Chris Mason5f39d392007-10-15 16:14:19 -04001074 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001075 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -04001076
Yan Zheng9036c102008-10-30 14:19:41 -04001077 if (start_pos > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05001078 err = btrfs_cont_expand(inode, i_size_read(inode), start_pos);
Yan Zheng9036c102008-10-30 14:19:41 -04001079 if (err)
1080 return err;
1081 }
1082
Chris Masone6dcd2d2008-07-17 12:53:50 -04001083again:
Chris Mason39279cc2007-06-12 06:35:45 -04001084 for (i = 0; i < num_pages; i++) {
1085 pages[i] = grab_cache_page(inode->i_mapping, index + i);
1086 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001087 faili = i - 1;
1088 err = -ENOMEM;
1089 goto fail;
1090 }
1091
1092 if (i == 0)
1093 err = prepare_uptodate_page(pages[i], pos);
1094 if (i == num_pages - 1)
1095 err = prepare_uptodate_page(pages[i],
1096 pos + write_bytes);
1097 if (err) {
1098 page_cache_release(pages[i]);
1099 faili = i - 1;
1100 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001101 }
Chris Masonccd467d2007-06-28 15:57:36 -04001102 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001103 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001104 err = 0;
Chris Mason07627042008-02-19 11:29:24 -05001105 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04001106 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001107 lock_extent_bits(&BTRFS_I(inode)->io_tree,
1108 start_pos, last_pos - 1, 0, &cached_state,
1109 GFP_NOFS);
Chris Masond3977122009-01-05 21:25:51 -05001110 ordered = btrfs_lookup_first_ordered_extent(inode,
1111 last_pos - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001112 if (ordered &&
1113 ordered->file_offset + ordered->len > start_pos &&
1114 ordered->file_offset < last_pos) {
1115 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00001116 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1117 start_pos, last_pos - 1,
1118 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001119 for (i = 0; i < num_pages; i++) {
1120 unlock_page(pages[i]);
1121 page_cache_release(pages[i]);
1122 }
1123 btrfs_wait_ordered_range(inode, start_pos,
1124 last_pos - start_pos);
1125 goto again;
1126 }
1127 if (ordered)
1128 btrfs_put_ordered_extent(ordered);
1129
Josef Bacik2ac55d42010-02-03 19:33:23 +00001130 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos,
Josef Bacik32c00af2009-10-08 13:34:05 -04001131 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00001132 EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
Chris Mason07627042008-02-19 11:29:24 -05001133 GFP_NOFS);
Josef Bacik2ac55d42010-02-03 19:33:23 +00001134 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1135 start_pos, last_pos - 1, &cached_state,
1136 GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -05001137 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001138 for (i = 0; i < num_pages; i++) {
Chris Masonf87f0572008-08-01 11:27:23 -04001139 clear_page_dirty_for_io(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001140 set_page_extent_mapped(pages[i]);
1141 WARN_ON(!PageLocked(pages[i]));
1142 }
Chris Mason39279cc2007-06-12 06:35:45 -04001143 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001144fail:
1145 while (faili >= 0) {
1146 unlock_page(pages[faili]);
1147 page_cache_release(pages[faili]);
1148 faili--;
1149 }
1150 return err;
1151
Chris Mason39279cc2007-06-12 06:35:45 -04001152}
1153
Josef Bacikd0215f32011-01-25 14:57:24 -05001154static noinline ssize_t __btrfs_buffered_write(struct file *file,
1155 struct iov_iter *i,
1156 loff_t pos)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001157{
Josef Bacik11c65dc2010-05-23 11:07:21 -04001158 struct inode *inode = fdentry(file)->d_inode;
1159 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001160 struct page **pages = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001161 unsigned long first_index;
1162 unsigned long last_index;
Josef Bacikd0215f32011-01-25 14:57:24 -05001163 size_t num_written = 0;
1164 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001165 int ret = 0;
Chris Masoncb843a62008-10-03 12:30:02 -04001166
Josef Bacikd0215f32011-01-25 14:57:24 -05001167 nrptrs = min((iov_iter_count(i) + PAGE_CACHE_SIZE - 1) /
Josef Bacik11c65dc2010-05-23 11:07:21 -04001168 PAGE_CACHE_SIZE, PAGE_CACHE_SIZE /
1169 (sizeof(struct page *)));
Chris Mason8c2383c2007-06-18 09:57:58 -04001170 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001171 if (!pages)
1172 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001173
Chris Mason39279cc2007-06-12 06:35:45 -04001174 first_index = pos >> PAGE_CACHE_SHIFT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001175 last_index = (pos + iov_iter_count(i)) >> PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -04001176
Josef Bacikd0215f32011-01-25 14:57:24 -05001177 while (iov_iter_count(i) > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -04001178 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Josef Bacikd0215f32011-01-25 14:57:24 -05001179 size_t write_bytes = min(iov_iter_count(i),
Josef Bacik11c65dc2010-05-23 11:07:21 -04001180 nrptrs * (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001181 offset);
Yan, Zheng3a909832011-01-18 13:34:40 +08001182 size_t num_pages = (write_bytes + offset +
1183 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001184 size_t dirty_pages;
1185 size_t copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001186
Chris Mason8c2383c2007-06-18 09:57:58 -04001187 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001188
Xin Zhong914ee292010-12-09 09:30:14 +00001189 /*
1190 * Fault pages before locking them in prepare_pages
1191 * to avoid recursive lock
1192 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001193 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001194 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001195 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001196 }
1197
1198 ret = btrfs_delalloc_reserve_space(inode,
1199 num_pages << PAGE_CACHE_SHIFT);
Chris Mason1832a6d2007-12-21 16:27:21 -05001200 if (ret)
Josef Bacikd0215f32011-01-25 14:57:24 -05001201 break;
Chris Mason1832a6d2007-12-21 16:27:21 -05001202
Josef Bacik4a640012011-01-25 15:10:08 -05001203 /*
1204 * This is going to setup the pages array with the number of
1205 * pages we want, so we don't really need to worry about the
1206 * contents of pages from loop to loop
1207 */
Chris Mason39279cc2007-06-12 06:35:45 -04001208 ret = prepare_pages(root, file, pages, num_pages,
1209 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -04001210 write_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05001211 if (ret) {
Xin Zhong914ee292010-12-09 09:30:14 +00001212 btrfs_delalloc_release_space(inode,
1213 num_pages << PAGE_CACHE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001214 break;
Josef Bacik6a632092009-02-20 11:00:09 -05001215 }
Chris Mason39279cc2007-06-12 06:35:45 -04001216
Xin Zhong914ee292010-12-09 09:30:14 +00001217 copied = btrfs_copy_from_user(pos, num_pages,
Josef Bacikd0215f32011-01-25 14:57:24 -05001218 write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001219
1220 /*
1221 * if we have trouble faulting in the pages, fall
1222 * back to one page at a time
1223 */
1224 if (copied < write_bytes)
1225 nrptrs = 1;
1226
1227 if (copied == 0)
1228 dirty_pages = 0;
1229 else
1230 dirty_pages = (copied + offset +
1231 PAGE_CACHE_SIZE - 1) >>
1232 PAGE_CACHE_SHIFT;
Xin Zhong914ee292010-12-09 09:30:14 +00001233
Josef Bacikd0215f32011-01-25 14:57:24 -05001234 /*
1235 * If we had a short copy we need to release the excess delaloc
1236 * bytes we reserved. We need to increment outstanding_extents
1237 * because btrfs_delalloc_release_space will decrement it, but
1238 * we still have an outstanding extent for the chunk we actually
1239 * managed to copy.
1240 */
Xin Zhong914ee292010-12-09 09:30:14 +00001241 if (num_pages > dirty_pages) {
1242 if (copied > 0)
1243 atomic_inc(
1244 &BTRFS_I(inode)->outstanding_extents);
1245 btrfs_delalloc_release_space(inode,
1246 (num_pages - dirty_pages) <<
1247 PAGE_CACHE_SHIFT);
1248 }
1249
1250 if (copied > 0) {
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001251 ret = btrfs_dirty_pages(root, inode, pages,
1252 dirty_pages, pos, copied,
1253 NULL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001254 if (ret) {
1255 btrfs_delalloc_release_space(inode,
1256 dirty_pages << PAGE_CACHE_SHIFT);
1257 btrfs_drop_pages(pages, num_pages);
1258 break;
1259 }
Chris Mason54aa1f42007-06-22 14:16:25 -04001260 }
Chris Mason39279cc2007-06-12 06:35:45 -04001261
Chris Mason39279cc2007-06-12 06:35:45 -04001262 btrfs_drop_pages(pages, num_pages);
Xin Zhong914ee292010-12-09 09:30:14 +00001263
Josef Bacikd0215f32011-01-25 14:57:24 -05001264 cond_resched();
1265
1266 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1267 dirty_pages);
1268 if (dirty_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1269 btrfs_btree_balance_dirty(root, 1);
1270 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001271
Xin Zhong914ee292010-12-09 09:30:14 +00001272 pos += copied;
1273 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001274 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001275
Chris Mason8c2383c2007-06-18 09:57:58 -04001276 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001277
1278 return num_written ? num_written : ret;
1279}
1280
1281static ssize_t __btrfs_direct_write(struct kiocb *iocb,
1282 const struct iovec *iov,
1283 unsigned long nr_segs, loff_t pos,
1284 loff_t *ppos, size_t count, size_t ocount)
1285{
1286 struct file *file = iocb->ki_filp;
1287 struct inode *inode = fdentry(file)->d_inode;
1288 struct iov_iter i;
1289 ssize_t written;
1290 ssize_t written_buffered;
1291 loff_t endbyte;
1292 int err;
1293
1294 written = generic_file_direct_write(iocb, iov, &nr_segs, pos, ppos,
1295 count, ocount);
1296
1297 /*
1298 * the generic O_DIRECT will update in-memory i_size after the
1299 * DIOs are done. But our endio handlers that update the on
1300 * disk i_size never update past the in memory i_size. So we
1301 * need one more update here to catch any additions to the
1302 * file
1303 */
1304 if (inode->i_size != BTRFS_I(inode)->disk_i_size) {
1305 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
1306 mark_inode_dirty(inode);
1307 }
1308
1309 if (written < 0 || written == count)
1310 return written;
1311
1312 pos += written;
1313 count -= written;
1314 iov_iter_init(&i, iov, nr_segs, count, written);
1315 written_buffered = __btrfs_buffered_write(file, &i, pos);
1316 if (written_buffered < 0) {
1317 err = written_buffered;
1318 goto out;
1319 }
1320 endbyte = pos + written_buffered - 1;
1321 err = filemap_write_and_wait_range(file->f_mapping, pos, endbyte);
1322 if (err)
1323 goto out;
1324 written += written_buffered;
1325 *ppos = pos + written_buffered;
1326 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_CACHE_SHIFT,
1327 endbyte >> PAGE_CACHE_SHIFT);
1328out:
1329 return written ? written : err;
1330}
1331
1332static ssize_t btrfs_file_aio_write(struct kiocb *iocb,
1333 const struct iovec *iov,
1334 unsigned long nr_segs, loff_t pos)
1335{
1336 struct file *file = iocb->ki_filp;
1337 struct inode *inode = fdentry(file)->d_inode;
1338 struct btrfs_root *root = BTRFS_I(inode)->root;
1339 loff_t *ppos = &iocb->ki_pos;
1340 ssize_t num_written = 0;
1341 ssize_t err = 0;
1342 size_t count, ocount;
1343
1344 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1345
1346 mutex_lock(&inode->i_mutex);
1347
1348 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
1349 if (err) {
1350 mutex_unlock(&inode->i_mutex);
1351 goto out;
1352 }
1353 count = ocount;
1354
1355 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1356 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1357 if (err) {
1358 mutex_unlock(&inode->i_mutex);
1359 goto out;
1360 }
1361
1362 if (count == 0) {
1363 mutex_unlock(&inode->i_mutex);
1364 goto out;
1365 }
1366
1367 err = file_remove_suid(file);
1368 if (err) {
1369 mutex_unlock(&inode->i_mutex);
1370 goto out;
1371 }
1372
1373 /*
1374 * If BTRFS flips readonly due to some impossible error
1375 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1376 * although we have opened a file as writable, we have
1377 * to stop this write operation to ensure FS consistency.
1378 */
1379 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
1380 mutex_unlock(&inode->i_mutex);
1381 err = -EROFS;
1382 goto out;
1383 }
1384
1385 file_update_time(file);
1386 BTRFS_I(inode)->sequence++;
1387
1388 if (unlikely(file->f_flags & O_DIRECT)) {
1389 num_written = __btrfs_direct_write(iocb, iov, nr_segs,
1390 pos, ppos, count, ocount);
1391 } else {
1392 struct iov_iter i;
1393
1394 iov_iter_init(&i, iov, nr_segs, count, num_written);
1395
1396 num_written = __btrfs_buffered_write(file, &i, pos);
1397 if (num_written > 0)
1398 *ppos = pos + num_written;
1399 }
1400
1401 mutex_unlock(&inode->i_mutex);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001402
Chris Mason5a3f23d2009-03-31 13:27:11 -04001403 /*
1404 * we want to make sure fsync finds this change
1405 * but we haven't joined a transaction running right now.
1406 *
1407 * Later on, someone is sure to update the inode and get the
1408 * real transid recorded.
1409 *
1410 * We set last_trans now to the fs_info generation + 1,
1411 * this will either be one more than the running transaction
1412 * or the generation used for the next transaction if there isn't
1413 * one running right now.
1414 */
1415 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
Josef Bacikd0215f32011-01-25 14:57:24 -05001416 if (num_written > 0 || num_written == -EIOCBQUEUED) {
1417 err = generic_write_sync(file, pos, num_written);
1418 if (err < 0 && num_written > 0)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001419 num_written = err;
1420 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001421out:
Chris Mason39279cc2007-06-12 06:35:45 -04001422 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001423 return num_written ? num_written : err;
1424}
1425
Chris Masond3977122009-01-05 21:25:51 -05001426int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001427{
Chris Mason5a3f23d2009-03-31 13:27:11 -04001428 /*
1429 * ordered_data_close is set by settattr when we are about to truncate
1430 * a file from a non-zero size to a zero size. This tries to
1431 * flush down new bytes that may have been written if the
1432 * application were using truncate to replace a file in place.
1433 */
1434 if (BTRFS_I(inode)->ordered_data_close) {
1435 BTRFS_I(inode)->ordered_data_close = 0;
1436 btrfs_add_ordered_operation(NULL, BTRFS_I(inode)->root, inode);
1437 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1438 filemap_flush(inode->i_mapping);
1439 }
Sage Weil6bf13c02008-06-10 10:07:39 -04001440 if (filp->private_data)
1441 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001442 return 0;
1443}
1444
Chris Masond352ac62008-09-29 15:18:18 -04001445/*
1446 * fsync call for both files and directories. This logs the inode into
1447 * the tree log instead of forcing full commits whenever possible.
1448 *
1449 * It needs to call filemap_fdatawait so that all ordered extent updates are
1450 * in the metadata btree are up to date for copying to the log.
1451 *
1452 * It drops the inode mutex before doing the tree log commit. This is an
1453 * important optimization for directories because holding the mutex prevents
1454 * new operations on the dir while we write to disk.
1455 */
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001456int btrfs_sync_file(struct file *file, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001457{
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001458 struct dentry *dentry = file->f_path.dentry;
Chris Mason39279cc2007-06-12 06:35:45 -04001459 struct inode *inode = dentry->d_inode;
1460 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001461 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001462 struct btrfs_trans_handle *trans;
1463
liubo1abe9b82011-03-24 11:18:59 +00001464 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04001465
1466 /* we wait first, since the writeback may change the inode */
1467 root->log_batch++;
1468 /* the VFS called filemap_fdatawrite for us */
1469 btrfs_wait_ordered_range(inode, 0, (u64)-1);
1470 root->log_batch++;
1471
Chris Mason39279cc2007-06-12 06:35:45 -04001472 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001473 * check the transaction that last modified this inode
1474 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001475 */
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001476 if (!BTRFS_I(inode)->last_trans)
1477 goto out;
Chris Masona2135012008-06-25 16:01:30 -04001478
Chris Mason257c62e2009-10-13 13:21:08 -04001479 /*
1480 * if the last transaction that changed this file was before
1481 * the current transaction, we can bail out now without any
1482 * syncing
1483 */
Josef Bacika4abeea2011-04-11 17:25:13 -04001484 smp_mb();
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001485 if (BTRFS_I(inode)->last_trans <=
1486 root->fs_info->last_trans_committed) {
1487 BTRFS_I(inode)->last_trans = 0;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001488 goto out;
1489 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001490
1491 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001492 * ok we haven't committed the transaction yet, lets do a commit
1493 */
Dan Carpenter6f902af2010-05-29 09:49:07 +00001494 if (file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04001495 btrfs_ioctl_trans_end(file);
1496
Yan, Zhenga22285a2010-05-16 10:48:46 -04001497 trans = btrfs_start_transaction(root, 0);
1498 if (IS_ERR(trans)) {
1499 ret = PTR_ERR(trans);
Chris Mason39279cc2007-06-12 06:35:45 -04001500 goto out;
1501 }
Chris Masone02119d2008-09-05 16:13:11 -04001502
Chris Mason2cfbd502009-02-20 10:55:10 -05001503 ret = btrfs_log_dentry_safe(trans, root, dentry);
Chris Masond3977122009-01-05 21:25:51 -05001504 if (ret < 0)
Chris Masone02119d2008-09-05 16:13:11 -04001505 goto out;
Chris Mason49eb7e42008-09-11 15:53:12 -04001506
1507 /* we've logged all the items and now have a consistent
1508 * version of the file in the log. It is possible that
1509 * someone will come in and modify the file, but that's
1510 * fine because the log is consistent on disk, and we
1511 * have references to all of the file's extents
1512 *
1513 * It is possible that someone will come in and log the
1514 * file again, but that will end up using the synchronization
1515 * inside btrfs_sync_log to keep things safe.
1516 */
Chris Mason2cfbd502009-02-20 10:55:10 -05001517 mutex_unlock(&dentry->d_inode->i_mutex);
Chris Mason49eb7e42008-09-11 15:53:12 -04001518
Chris Mason257c62e2009-10-13 13:21:08 -04001519 if (ret != BTRFS_NO_LOG_SYNC) {
1520 if (ret > 0) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001521 ret = btrfs_commit_transaction(trans, root);
Chris Mason257c62e2009-10-13 13:21:08 -04001522 } else {
1523 ret = btrfs_sync_log(trans, root);
1524 if (ret == 0)
1525 ret = btrfs_end_transaction(trans, root);
1526 else
1527 ret = btrfs_commit_transaction(trans, root);
1528 }
1529 } else {
1530 ret = btrfs_end_transaction(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04001531 }
Chris Mason2cfbd502009-02-20 10:55:10 -05001532 mutex_lock(&dentry->d_inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001533out:
Roel Kluin014e4ac2010-01-29 10:42:11 +00001534 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04001535}
1536
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04001537static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001538 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001539 .page_mkwrite = btrfs_page_mkwrite,
1540};
1541
1542static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1543{
Miao Xie058a4572010-05-20 07:21:50 +00001544 struct address_space *mapping = filp->f_mapping;
1545
1546 if (!mapping->a_ops->readpage)
1547 return -ENOEXEC;
1548
Chris Mason9ebefb182007-06-15 13:50:00 -04001549 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00001550 vma->vm_ops = &btrfs_file_vm_ops;
1551 vma->vm_flags |= VM_CAN_NONLINEAR;
1552
Chris Mason9ebefb182007-06-15 13:50:00 -04001553 return 0;
1554}
1555
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001556static long btrfs_fallocate(struct file *file, int mode,
1557 loff_t offset, loff_t len)
1558{
1559 struct inode *inode = file->f_path.dentry->d_inode;
1560 struct extent_state *cached_state = NULL;
1561 u64 cur_offset;
1562 u64 last_byte;
1563 u64 alloc_start;
1564 u64 alloc_end;
1565 u64 alloc_hint = 0;
1566 u64 locked_end;
1567 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
1568 struct extent_map *em;
1569 int ret;
1570
1571 alloc_start = offset & ~mask;
1572 alloc_end = (offset + len + mask) & ~mask;
1573
1574 /* We only support the FALLOC_FL_KEEP_SIZE mode */
1575 if (mode & ~FALLOC_FL_KEEP_SIZE)
1576 return -EOPNOTSUPP;
1577
1578 /*
1579 * wait for ordered IO before we have any locks. We'll loop again
1580 * below with the locks held.
1581 */
1582 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
1583
1584 mutex_lock(&inode->i_mutex);
1585 ret = inode_newsize_ok(inode, alloc_end);
1586 if (ret)
1587 goto out;
1588
1589 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05001590 ret = btrfs_cont_expand(inode, i_size_read(inode),
1591 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001592 if (ret)
1593 goto out;
1594 }
1595
1596 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start);
1597 if (ret)
1598 goto out;
1599
1600 locked_end = alloc_end - 1;
1601 while (1) {
1602 struct btrfs_ordered_extent *ordered;
1603
1604 /* the extent lock is ordered inside the running
1605 * transaction
1606 */
1607 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
1608 locked_end, 0, &cached_state, GFP_NOFS);
1609 ordered = btrfs_lookup_first_ordered_extent(inode,
1610 alloc_end - 1);
1611 if (ordered &&
1612 ordered->file_offset + ordered->len > alloc_start &&
1613 ordered->file_offset < alloc_end) {
1614 btrfs_put_ordered_extent(ordered);
1615 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1616 alloc_start, locked_end,
1617 &cached_state, GFP_NOFS);
1618 /*
1619 * we can't wait on the range with the transaction
1620 * running or with the extent lock held
1621 */
1622 btrfs_wait_ordered_range(inode, alloc_start,
1623 alloc_end - alloc_start);
1624 } else {
1625 if (ordered)
1626 btrfs_put_ordered_extent(ordered);
1627 break;
1628 }
1629 }
1630
1631 cur_offset = alloc_start;
1632 while (1) {
1633 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
1634 alloc_end - cur_offset, 0);
David Sterbac7040052011-04-19 18:00:01 +02001635 BUG_ON(IS_ERR_OR_NULL(em));
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001636 last_byte = min(extent_map_end(em), alloc_end);
1637 last_byte = (last_byte + mask) & ~mask;
1638 if (em->block_start == EXTENT_MAP_HOLE ||
1639 (cur_offset >= inode->i_size &&
1640 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
1641 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
1642 last_byte - cur_offset,
1643 1 << inode->i_blkbits,
1644 offset + len,
1645 &alloc_hint);
1646 if (ret < 0) {
1647 free_extent_map(em);
1648 break;
1649 }
1650 }
1651 free_extent_map(em);
1652
1653 cur_offset = last_byte;
1654 if (cur_offset >= alloc_end) {
1655 ret = 0;
1656 break;
1657 }
1658 }
1659 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
1660 &cached_state, GFP_NOFS);
1661
1662 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start);
1663out:
1664 mutex_unlock(&inode->i_mutex);
1665 return ret;
1666}
1667
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001668const struct file_operations btrfs_file_operations = {
Chris Mason39279cc2007-06-12 06:35:45 -04001669 .llseek = generic_file_llseek,
1670 .read = do_sync_read,
Miao Xie4a0010712010-06-07 03:38:51 +00001671 .write = do_sync_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001672 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001673 .splice_read = generic_file_splice_read,
Josef Bacik11c65dc2010-05-23 11:07:21 -04001674 .aio_write = btrfs_file_aio_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001675 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001676 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001677 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001678 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001679 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001680 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001681#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001682 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001683#endif
1684};