blob: 0a4b03d8fcd6eed47e5c0eb28417b64cfce9dabe [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"
Josef Bacik2aaa6652012-08-29 14:27:18 -040042#include "volumes.h"
Chris Mason39279cc2007-06-12 06:35:45 -040043
Chris Mason4cb53002011-05-24 15:35:30 -040044/*
45 * when auto defrag is enabled we
46 * queue up these defrag structs to remember which
47 * inodes need defragging passes
48 */
49struct inode_defrag {
50 struct rb_node rb_node;
51 /* objectid */
52 u64 ino;
53 /*
54 * transid where the defrag was added, we search for
55 * extents newer than this
56 */
57 u64 transid;
58
59 /* root objectid */
60 u64 root;
61
62 /* last offset we were able to defrag */
63 u64 last_offset;
64
65 /* if we've wrapped around back to zero once already */
66 int cycled;
67};
68
Miao Xie762f2262012-05-24 18:58:27 +080069static int __compare_inode_defrag(struct inode_defrag *defrag1,
70 struct inode_defrag *defrag2)
71{
72 if (defrag1->root > defrag2->root)
73 return 1;
74 else if (defrag1->root < defrag2->root)
75 return -1;
76 else if (defrag1->ino > defrag2->ino)
77 return 1;
78 else if (defrag1->ino < defrag2->ino)
79 return -1;
80 else
81 return 0;
82}
83
Chris Mason4cb53002011-05-24 15:35:30 -040084/* pop a record for an inode into the defrag tree. The lock
85 * must be held already
86 *
87 * If you're inserting a record for an older transid than an
88 * existing record, the transid already in the tree is lowered
89 *
90 * If an existing record is found the defrag item you
91 * pass in is freed
92 */
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +000093static void __btrfs_add_inode_defrag(struct inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040094 struct inode_defrag *defrag)
95{
96 struct btrfs_root *root = BTRFS_I(inode)->root;
97 struct inode_defrag *entry;
98 struct rb_node **p;
99 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800100 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400101
102 p = &root->fs_info->defrag_inodes.rb_node;
103 while (*p) {
104 parent = *p;
105 entry = rb_entry(parent, struct inode_defrag, rb_node);
106
Miao Xie762f2262012-05-24 18:58:27 +0800107 ret = __compare_inode_defrag(defrag, entry);
108 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400109 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800110 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400111 p = &parent->rb_right;
112 else {
113 /* if we're reinserting an entry for
114 * an old defrag run, make sure to
115 * lower the transid of our existing record
116 */
117 if (defrag->transid < entry->transid)
118 entry->transid = defrag->transid;
119 if (defrag->last_offset > entry->last_offset)
120 entry->last_offset = defrag->last_offset;
121 goto exists;
122 }
123 }
Josef Bacik72ac3c02012-05-23 14:13:11 -0400124 set_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400125 rb_link_node(&defrag->rb_node, parent, p);
126 rb_insert_color(&defrag->rb_node, &root->fs_info->defrag_inodes);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000127 return;
Chris Mason4cb53002011-05-24 15:35:30 -0400128
129exists:
130 kfree(defrag);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000131 return;
Chris Mason4cb53002011-05-24 15:35:30 -0400132
133}
134
135/*
136 * insert a defrag record for this inode if auto defrag is
137 * enabled
138 */
139int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
140 struct inode *inode)
141{
142 struct btrfs_root *root = BTRFS_I(inode)->root;
143 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400144 u64 transid;
145
146 if (!btrfs_test_opt(root, AUTO_DEFRAG))
147 return 0;
148
David Sterba7841cb22011-05-31 18:07:27 +0200149 if (btrfs_fs_closing(root->fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400150 return 0;
151
Josef Bacik72ac3c02012-05-23 14:13:11 -0400152 if (test_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400153 return 0;
154
155 if (trans)
156 transid = trans->transid;
157 else
158 transid = BTRFS_I(inode)->root->last_trans;
159
160 defrag = kzalloc(sizeof(*defrag), GFP_NOFS);
161 if (!defrag)
162 return -ENOMEM;
163
David Sterbaa4689d22011-05-31 17:08:14 +0000164 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400165 defrag->transid = transid;
166 defrag->root = root->root_key.objectid;
167
168 spin_lock(&root->fs_info->defrag_inodes_lock);
Josef Bacik72ac3c02012-05-23 14:13:11 -0400169 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags))
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000170 __btrfs_add_inode_defrag(inode, defrag);
Dan Carpenterf4ac9042011-08-05 14:19:00 +0000171 else
172 kfree(defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400173 spin_unlock(&root->fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000174 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400175}
176
177/*
178 * must be called with the defrag_inodes lock held
179 */
Miao Xie762f2262012-05-24 18:58:27 +0800180struct inode_defrag *btrfs_find_defrag_inode(struct btrfs_fs_info *info,
181 u64 root, u64 ino,
Chris Mason4cb53002011-05-24 15:35:30 -0400182 struct rb_node **next)
183{
184 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800185 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400186 struct rb_node *p;
187 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800188 int ret;
189
190 tmp.ino = ino;
191 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400192
193 p = info->defrag_inodes.rb_node;
194 while (p) {
195 parent = p;
196 entry = rb_entry(parent, struct inode_defrag, rb_node);
197
Miao Xie762f2262012-05-24 18:58:27 +0800198 ret = __compare_inode_defrag(&tmp, entry);
199 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400200 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800201 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400202 p = parent->rb_right;
203 else
204 return entry;
205 }
206
207 if (next) {
Miao Xie762f2262012-05-24 18:58:27 +0800208 while (parent && __compare_inode_defrag(&tmp, entry) > 0) {
Chris Mason4cb53002011-05-24 15:35:30 -0400209 parent = rb_next(parent);
210 entry = rb_entry(parent, struct inode_defrag, rb_node);
211 }
212 *next = parent;
213 }
214 return NULL;
215}
216
217/*
218 * run through the list of inodes in the FS that need
219 * defragging
220 */
221int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
222{
223 struct inode_defrag *defrag;
224 struct btrfs_root *inode_root;
225 struct inode *inode;
226 struct rb_node *n;
227 struct btrfs_key key;
228 struct btrfs_ioctl_defrag_range_args range;
229 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800230 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400231 int num_defrag;
232 int defrag_batch = 1024;
233
234 memset(&range, 0, sizeof(range));
235 range.len = (u64)-1;
236
237 atomic_inc(&fs_info->defrag_running);
238 spin_lock(&fs_info->defrag_inodes_lock);
239 while(1) {
240 n = NULL;
241
242 /* find an inode to defrag */
Miao Xie762f2262012-05-24 18:58:27 +0800243 defrag = btrfs_find_defrag_inode(fs_info, root_objectid,
244 first_ino, &n);
Chris Mason4cb53002011-05-24 15:35:30 -0400245 if (!defrag) {
Miao Xie762f2262012-05-24 18:58:27 +0800246 if (n) {
247 defrag = rb_entry(n, struct inode_defrag,
248 rb_node);
249 } else if (root_objectid || first_ino) {
250 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400251 first_ino = 0;
252 continue;
253 } else {
254 break;
255 }
256 }
257
258 /* remove it from the rbtree */
259 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800260 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400261 rb_erase(&defrag->rb_node, &fs_info->defrag_inodes);
262
David Sterba7841cb22011-05-31 18:07:27 +0200263 if (btrfs_fs_closing(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400264 goto next_free;
265
266 spin_unlock(&fs_info->defrag_inodes_lock);
267
268 /* get the inode */
269 key.objectid = defrag->root;
270 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
271 key.offset = (u64)-1;
272 inode_root = btrfs_read_fs_root_no_name(fs_info, &key);
273 if (IS_ERR(inode_root))
274 goto next;
275
276 key.objectid = defrag->ino;
277 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
278 key.offset = 0;
279
280 inode = btrfs_iget(fs_info->sb, &key, inode_root, NULL);
281 if (IS_ERR(inode))
282 goto next;
283
284 /* do a chunk of defrag */
Josef Bacik72ac3c02012-05-23 14:13:11 -0400285 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400286 range.start = defrag->last_offset;
287 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
288 defrag_batch);
289 /*
290 * if we filled the whole defrag batch, there
291 * must be more work to do. Queue this defrag
292 * again
293 */
294 if (num_defrag == defrag_batch) {
295 defrag->last_offset = range.start;
296 __btrfs_add_inode_defrag(inode, defrag);
297 /*
298 * we don't want to kfree defrag, we added it back to
299 * the rbtree
300 */
301 defrag = NULL;
302 } else if (defrag->last_offset && !defrag->cycled) {
303 /*
304 * we didn't fill our defrag batch, but
305 * we didn't start at zero. Make sure we loop
306 * around to the start of the file.
307 */
308 defrag->last_offset = 0;
309 defrag->cycled = 1;
310 __btrfs_add_inode_defrag(inode, defrag);
311 defrag = NULL;
312 }
313
314 iput(inode);
315next:
316 spin_lock(&fs_info->defrag_inodes_lock);
317next_free:
318 kfree(defrag);
319 }
320 spin_unlock(&fs_info->defrag_inodes_lock);
321
322 atomic_dec(&fs_info->defrag_running);
323
324 /*
325 * during unmount, we use the transaction_wait queue to
326 * wait for the defragger to stop
327 */
328 wake_up(&fs_info->transaction_wait);
329 return 0;
330}
Chris Mason39279cc2007-06-12 06:35:45 -0400331
Chris Masond352ac62008-09-29 15:18:18 -0400332/* simple helper to fault in pages and copy. This should go away
333 * and be replaced with calls into generic code.
334 */
Chris Masond3977122009-01-05 21:25:51 -0500335static noinline int btrfs_copy_from_user(loff_t pos, int num_pages,
Josef Bacikd0215f32011-01-25 14:57:24 -0500336 size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400337 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400338 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400339{
Xin Zhong914ee292010-12-09 09:30:14 +0000340 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500341 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400342 int pg = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400343 int offset = pos & (PAGE_CACHE_SIZE - 1);
344
Josef Bacik11c65dc2010-05-23 11:07:21 -0400345 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400346 size_t count = min_t(size_t,
347 PAGE_CACHE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400348 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000349 /*
350 * Copy data from userspace to the current page
351 *
352 * Disable pagefault to avoid recursive lock since
353 * the pages are already locked
354 */
355 pagefault_disable();
356 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
357 pagefault_enable();
Josef Bacik11c65dc2010-05-23 11:07:21 -0400358
Chris Mason39279cc2007-06-12 06:35:45 -0400359 /* Flush processor's dcache for this page */
360 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500361
362 /*
363 * if we get a partial write, we can end up with
364 * partially up to date pages. These add
365 * a lot of complexity, so make sure they don't
366 * happen by forcing this copy to be retried.
367 *
368 * The rest of the btrfs_file_write code will fall
369 * back to page at a time copies after we return 0.
370 */
371 if (!PageUptodate(page) && copied < count)
372 copied = 0;
373
Josef Bacik11c65dc2010-05-23 11:07:21 -0400374 iov_iter_advance(i, copied);
375 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000376 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400377
Xin Zhong914ee292010-12-09 09:30:14 +0000378 /* Return to btrfs_file_aio_write to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500379 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000380 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400381
382 if (unlikely(copied < PAGE_CACHE_SIZE - offset)) {
383 offset += copied;
384 } else {
385 pg++;
386 offset = 0;
387 }
Chris Mason39279cc2007-06-12 06:35:45 -0400388 }
Xin Zhong914ee292010-12-09 09:30:14 +0000389 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400390}
391
Chris Masond352ac62008-09-29 15:18:18 -0400392/*
393 * unlocks pages after btrfs_file_write is done with them
394 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400395void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400396{
397 size_t i;
398 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400399 /* page checked is some magic around finding pages that
400 * have been modified without going through btrfs_set_page_dirty
401 * clear it here
402 */
Chris Mason4a096752008-07-21 10:29:44 -0400403 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400404 unlock_page(pages[i]);
405 mark_page_accessed(pages[i]);
406 page_cache_release(pages[i]);
407 }
408}
409
Chris Masond352ac62008-09-29 15:18:18 -0400410/*
411 * after copy_from_user, pages need to be dirtied and we need to make
412 * sure holes are created between the current EOF and the start of
413 * any next extents (if required).
414 *
415 * this also makes the decision about creating an inline extent vs
416 * doing real data extents, marking pages dirty and delalloc as required.
417 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400418int btrfs_dirty_pages(struct btrfs_root *root, struct inode *inode,
419 struct page **pages, size_t num_pages,
420 loff_t pos, size_t write_bytes,
421 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400422{
Chris Mason39279cc2007-06-12 06:35:45 -0400423 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400424 int i;
Chris Masondb945352007-10-15 16:15:53 -0400425 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400426 u64 start_pos;
427 u64 end_of_last_block;
428 u64 end_pos = pos + write_bytes;
429 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400430
Chris Mason5f39d392007-10-15 16:14:19 -0400431 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400432 num_bytes = (write_bytes + pos - start_pos +
433 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400434
Chris Masondb945352007-10-15 16:15:53 -0400435 end_of_last_block = start_pos + num_bytes - 1;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000436 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400437 cached);
Josef Bacikd0215f32011-01-25 14:57:24 -0500438 if (err)
439 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400440
Chris Masonc8b97812008-10-29 14:49:59 -0400441 for (i = 0; i < num_pages; i++) {
442 struct page *p = pages[i];
443 SetPageUptodate(p);
444 ClearPageChecked(p);
445 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400446 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500447
448 /*
449 * we've only changed i_size in ram, and we haven't updated
450 * the disk i_size. There is no need to log the inode
451 * at this time.
452 */
453 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400454 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400455 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400456}
457
Chris Masond352ac62008-09-29 15:18:18 -0400458/*
459 * this drops all the extents in the cache that intersect the range
460 * [start, end]. Existing extents are split as required.
461 */
Josef Bacik7014cdb2012-08-30 20:06:49 -0400462void btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
463 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400464{
465 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400466 struct extent_map *split = NULL;
467 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400468 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500469 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400470 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400471 int ret;
472 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400473 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400474 int compressed = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400475
Chris Masone6dcd2d2008-07-17 12:53:50 -0400476 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400477 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500478 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400479 testend = 0;
480 }
Chris Masond3977122009-01-05 21:25:51 -0500481 while (1) {
Josef Bacik7014cdb2012-08-30 20:06:49 -0400482 int no_splits = 0;
483
Chris Mason3b951512008-04-17 11:29:12 -0400484 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200485 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400486 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200487 split2 = alloc_extent_map();
Josef Bacik7014cdb2012-08-30 20:06:49 -0400488 if (!split || !split2)
489 no_splits = 1;
Chris Mason3b951512008-04-17 11:29:12 -0400490
Chris Mason890871b2009-09-02 16:24:52 -0400491 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500492 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500493 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400494 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400495 break;
Chris Masond1310b22008-01-24 16:13:08 -0500496 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400497 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400498 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400499 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000500 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400501 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400502 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400503 break;
504 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000505 start = em->start + em->len;
506 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400507 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400508 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400509 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400510 continue;
511 }
Chris Masonc8b97812008-10-29 14:49:59 -0400512 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400513 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400514 remove_extent_mapping(em_tree, em);
Josef Bacik7014cdb2012-08-30 20:06:49 -0400515 if (no_splits)
516 goto next;
Chris Mason3b951512008-04-17 11:29:12 -0400517
518 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
519 em->start < start) {
520 split->start = em->start;
521 split->len = start - em->start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500522 split->orig_start = em->orig_start;
Chris Mason3b951512008-04-17 11:29:12 -0400523 split->block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400524
525 if (compressed)
526 split->block_len = em->block_len;
527 else
528 split->block_len = split->len;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400529 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400530 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400531 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800532 split->compress_type = em->compress_type;
Chris Mason3b951512008-04-17 11:29:12 -0400533 ret = add_extent_mapping(em_tree, split);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100534 BUG_ON(ret); /* Logic error */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400535 list_move(&split->list, &em_tree->modified_extents);
Chris Mason3b951512008-04-17 11:29:12 -0400536 free_extent_map(split);
537 split = split2;
538 split2 = NULL;
539 }
540 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
541 testend && em->start + em->len > start + len) {
542 u64 diff = start + len - em->start;
543
544 split->start = start + len;
545 split->len = em->start + em->len - (start + len);
546 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400547 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800548 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400549 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400550
Chris Masonc8b97812008-10-29 14:49:59 -0400551 if (compressed) {
552 split->block_len = em->block_len;
553 split->block_start = em->block_start;
Chris Mason445a6942008-11-10 11:53:33 -0500554 split->orig_start = em->orig_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400555 } else {
556 split->block_len = split->len;
557 split->block_start = em->block_start + diff;
Chris Mason445a6942008-11-10 11:53:33 -0500558 split->orig_start = split->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400559 }
Chris Mason3b951512008-04-17 11:29:12 -0400560
561 ret = add_extent_mapping(em_tree, split);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100562 BUG_ON(ret); /* Logic error */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400563 list_move(&split->list, &em_tree->modified_extents);
Chris Mason3b951512008-04-17 11:29:12 -0400564 free_extent_map(split);
565 split = NULL;
566 }
Josef Bacik7014cdb2012-08-30 20:06:49 -0400567next:
Chris Mason890871b2009-09-02 16:24:52 -0400568 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500569
Chris Masona52d9a82007-08-27 16:49:44 -0400570 /* once for us */
571 free_extent_map(em);
572 /* once for the tree*/
573 free_extent_map(em);
574 }
Chris Mason3b951512008-04-17 11:29:12 -0400575 if (split)
576 free_extent_map(split);
577 if (split2)
578 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400579}
580
Chris Mason39279cc2007-06-12 06:35:45 -0400581/*
582 * this is very complex, but the basic idea is to drop all extents
583 * in the range start - end. hint_block is filled in with a block number
584 * that would be a good hint to the block allocator for this file.
585 *
586 * If an extent intersects the range but is not entirely inside the range
587 * it is either truncated or split. Anything entirely inside the range
588 * is deleted from the tree.
589 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400590int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
591 struct btrfs_root *root, struct inode *inode,
592 struct btrfs_path *path, u64 start, u64 end,
Josef Bacik2aaa6652012-08-29 14:27:18 -0400593 u64 *drop_end, int drop_cache)
Chris Mason39279cc2007-06-12 06:35:45 -0400594{
Chris Mason00f5c792007-11-30 10:09:33 -0500595 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000596 struct btrfs_file_extent_item *fi;
Chris Mason00f5c792007-11-30 10:09:33 -0500597 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000598 struct btrfs_key new_key;
Li Zefan33345d012011-04-20 10:31:50 +0800599 u64 ino = btrfs_ino(inode);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000600 u64 search_start = start;
601 u64 disk_bytenr = 0;
602 u64 num_bytes = 0;
603 u64 extent_offset = 0;
604 u64 extent_end = 0;
605 int del_nr = 0;
606 int del_slot = 0;
607 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400608 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500609 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400610 int modify_tree = -1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400611 int update_refs = (root->ref_cows || root == root->fs_info->tree_root);
Chris Mason39279cc2007-06-12 06:35:45 -0400612
Chris Masona1ed8352009-09-11 12:27:37 -0400613 if (drop_cache)
614 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400615
Chris Masondc7fdde2012-04-27 14:31:29 -0400616 if (start >= BTRFS_I(inode)->disk_i_size)
617 modify_tree = 0;
618
Chris Masond3977122009-01-05 21:25:51 -0500619 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400620 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800621 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400622 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400623 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000624 break;
625 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
626 leaf = path->nodes[0];
627 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800628 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000629 key.type == BTRFS_EXTENT_DATA_KEY)
630 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400631 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400632 ret = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000633next_slot:
634 leaf = path->nodes[0];
635 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
636 BUG_ON(del_nr > 0);
637 ret = btrfs_next_leaf(root, path);
638 if (ret < 0)
639 break;
640 if (ret > 0) {
641 ret = 0;
642 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400643 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000644 leaf = path->nodes[0];
645 recow = 1;
646 }
647
648 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +0800649 if (key.objectid > ino ||
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000650 key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
651 break;
652
653 fi = btrfs_item_ptr(leaf, path->slots[0],
654 struct btrfs_file_extent_item);
655 extent_type = btrfs_file_extent_type(leaf, fi);
656
657 if (extent_type == BTRFS_FILE_EXTENT_REG ||
658 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
659 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
660 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
661 extent_offset = btrfs_file_extent_offset(leaf, fi);
662 extent_end = key.offset +
663 btrfs_file_extent_num_bytes(leaf, fi);
664 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
665 extent_end = key.offset +
666 btrfs_file_extent_inline_len(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400667 } else {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000668 WARN_ON(1);
Chris Mason8c2383c2007-06-18 09:57:58 -0400669 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400670 }
671
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000672 if (extent_end <= search_start) {
673 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400674 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400675 }
676
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000677 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400678 if (recow || !modify_tree) {
679 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200680 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000681 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400682 }
Chris Mason771ed682008-11-06 22:02:51 -0500683
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000684 /*
685 * | - range to drop - |
686 * | -------- extent -------- |
687 */
688 if (start > key.offset && end < extent_end) {
689 BUG_ON(del_nr > 0);
690 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
691
692 memcpy(&new_key, &key, sizeof(new_key));
693 new_key.offset = start;
694 ret = btrfs_duplicate_item(trans, root, path,
695 &new_key);
696 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200697 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000698 continue;
699 }
700 if (ret < 0)
701 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400702
Chris Mason5f39d392007-10-15 16:14:19 -0400703 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000704 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
705 struct btrfs_file_extent_item);
706 btrfs_set_file_extent_num_bytes(leaf, fi,
707 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400708
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000709 fi = btrfs_item_ptr(leaf, path->slots[0],
710 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400711
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000712 extent_offset += start - key.offset;
713 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
714 btrfs_set_file_extent_num_bytes(leaf, fi,
715 extent_end - start);
716 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400717
Josef Bacik5dc562c2012-08-17 13:14:17 -0400718 if (update_refs && disk_bytenr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000719 ret = btrfs_inc_extent_ref(trans, root,
720 disk_bytenr, num_bytes, 0,
721 root->root_key.objectid,
722 new_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200723 start - extent_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100724 BUG_ON(ret); /* -ENOMEM */
Zheng Yan31840ae2008-09-23 13:14:14 -0400725 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000726 key.offset = start;
727 }
728 /*
729 * | ---- range to drop ----- |
730 * | -------- extent -------- |
731 */
732 if (start <= key.offset && end < extent_end) {
733 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
734
735 memcpy(&new_key, &key, sizeof(new_key));
736 new_key.offset = end;
737 btrfs_set_item_key_safe(trans, root, path, &new_key);
738
739 extent_offset += end - key.offset;
740 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
741 btrfs_set_file_extent_num_bytes(leaf, fi,
742 extent_end - end);
743 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400744 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000745 inode_sub_bytes(inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000746 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400747 }
748
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000749 search_start = extent_end;
750 /*
751 * | ---- range to drop ----- |
752 * | -------- extent -------- |
753 */
754 if (start > key.offset && end >= extent_end) {
755 BUG_ON(del_nr > 0);
756 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
757
758 btrfs_set_file_extent_num_bytes(leaf, fi,
759 start - key.offset);
760 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400761 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000762 inode_sub_bytes(inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000763 if (end == extent_end)
764 break;
765
766 path->slots[0]++;
767 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400768 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000769
770 /*
771 * | ---- range to drop ----- |
772 * | ------ extent ------ |
773 */
774 if (start <= key.offset && end >= extent_end) {
775 if (del_nr == 0) {
776 del_slot = path->slots[0];
777 del_nr = 1;
778 } else {
779 BUG_ON(del_slot + del_nr != path->slots[0]);
780 del_nr++;
781 }
782
Josef Bacik5dc562c2012-08-17 13:14:17 -0400783 if (update_refs &&
784 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000785 inode_sub_bytes(inode,
786 extent_end - key.offset);
787 extent_end = ALIGN(extent_end,
788 root->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400789 } else if (update_refs && disk_bytenr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000790 ret = btrfs_free_extent(trans, root,
791 disk_bytenr, num_bytes, 0,
792 root->root_key.objectid,
793 key.objectid, key.offset -
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200794 extent_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100795 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000796 inode_sub_bytes(inode,
797 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000798 }
799
800 if (end == extent_end)
801 break;
802
803 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
804 path->slots[0]++;
805 goto next_slot;
806 }
807
808 ret = btrfs_del_items(trans, root, path, del_slot,
809 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100810 if (ret) {
811 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400812 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100813 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000814
815 del_nr = 0;
816 del_slot = 0;
817
David Sterbab3b4aa72011-04-21 01:20:15 +0200818 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000819 continue;
820 }
821
822 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400823 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000824
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100825 if (!ret && del_nr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000826 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100827 if (ret)
828 btrfs_abort_transaction(trans, root, ret);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000829 }
830
Josef Bacik2aaa6652012-08-29 14:27:18 -0400831 if (drop_end)
832 *drop_end = min(end, extent_end);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400833 btrfs_release_path(path);
834 return ret;
835}
836
837int btrfs_drop_extents(struct btrfs_trans_handle *trans,
838 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -0400839 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -0400840{
841 struct btrfs_path *path;
842 int ret;
843
844 path = btrfs_alloc_path();
845 if (!path)
846 return -ENOMEM;
Josef Bacik2aaa6652012-08-29 14:27:18 -0400847 ret = __btrfs_drop_extents(trans, root, inode, path, start, end, NULL,
Josef Bacik26714852012-08-29 12:24:27 -0400848 drop_cache);
Chris Mason39279cc2007-06-12 06:35:45 -0400849 btrfs_free_path(path);
850 return ret;
851}
852
Yan Zhengd899e052008-10-30 14:25:28 -0400853static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000854 u64 objectid, u64 bytenr, u64 orig_offset,
855 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -0400856{
857 struct btrfs_file_extent_item *fi;
858 struct btrfs_key key;
859 u64 extent_end;
860
861 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
862 return 0;
863
864 btrfs_item_key_to_cpu(leaf, &key, slot);
865 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
866 return 0;
867
868 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
869 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
870 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000871 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -0400872 btrfs_file_extent_compression(leaf, fi) ||
873 btrfs_file_extent_encryption(leaf, fi) ||
874 btrfs_file_extent_other_encoding(leaf, fi))
875 return 0;
876
877 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
878 if ((*start && *start != key.offset) || (*end && *end != extent_end))
879 return 0;
880
881 *start = key.offset;
882 *end = extent_end;
883 return 1;
884}
885
886/*
887 * Mark extent in the range start - end as written.
888 *
889 * This changes extent type from 'pre-allocated' to 'regular'. If only
890 * part of extent is marked as written, the extent will be split into
891 * two or three.
892 */
893int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Yan Zhengd899e052008-10-30 14:25:28 -0400894 struct inode *inode, u64 start, u64 end)
895{
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000896 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zhengd899e052008-10-30 14:25:28 -0400897 struct extent_buffer *leaf;
898 struct btrfs_path *path;
899 struct btrfs_file_extent_item *fi;
900 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000901 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -0400902 u64 bytenr;
903 u64 num_bytes;
904 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400905 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -0400906 u64 other_start;
907 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000908 u64 split;
909 int del_nr = 0;
910 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000911 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -0400912 int ret;
Li Zefan33345d012011-04-20 10:31:50 +0800913 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -0400914
Yan Zhengd899e052008-10-30 14:25:28 -0400915 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700916 if (!path)
917 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -0400918again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000919 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000920 split = start;
Li Zefan33345d012011-04-20 10:31:50 +0800921 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -0400922 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000923 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -0400924
925 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -0400926 if (ret < 0)
927 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -0400928 if (ret > 0 && path->slots[0] > 0)
929 path->slots[0]--;
930
931 leaf = path->nodes[0];
932 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +0800933 BUG_ON(key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY);
Yan Zhengd899e052008-10-30 14:25:28 -0400934 fi = btrfs_item_ptr(leaf, path->slots[0],
935 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000936 BUG_ON(btrfs_file_extent_type(leaf, fi) !=
937 BTRFS_FILE_EXTENT_PREALLOC);
Yan Zhengd899e052008-10-30 14:25:28 -0400938 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
939 BUG_ON(key.offset > start || extent_end < end);
940
941 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
942 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400943 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000944 memcpy(&new_key, &key, sizeof(new_key));
945
946 if (start == key.offset && end < extent_end) {
947 other_start = 0;
948 other_end = start;
949 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +0800950 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000951 &other_start, &other_end)) {
952 new_key.offset = end;
953 btrfs_set_item_key_safe(trans, root, path, &new_key);
954 fi = btrfs_item_ptr(leaf, path->slots[0],
955 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -0400956 btrfs_set_file_extent_generation(leaf, fi,
957 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000958 btrfs_set_file_extent_num_bytes(leaf, fi,
959 extent_end - end);
960 btrfs_set_file_extent_offset(leaf, fi,
961 end - orig_offset);
962 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
963 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -0400964 btrfs_set_file_extent_generation(leaf, fi,
965 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000966 btrfs_set_file_extent_num_bytes(leaf, fi,
967 end - other_start);
968 btrfs_mark_buffer_dirty(leaf);
969 goto out;
970 }
971 }
972
973 if (start > key.offset && end == extent_end) {
974 other_start = end;
975 other_end = 0;
976 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +0800977 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000978 &other_start, &other_end)) {
979 fi = btrfs_item_ptr(leaf, path->slots[0],
980 struct btrfs_file_extent_item);
981 btrfs_set_file_extent_num_bytes(leaf, fi,
982 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -0400983 btrfs_set_file_extent_generation(leaf, fi,
984 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000985 path->slots[0]++;
986 new_key.offset = start;
987 btrfs_set_item_key_safe(trans, root, path, &new_key);
988
989 fi = btrfs_item_ptr(leaf, path->slots[0],
990 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -0400991 btrfs_set_file_extent_generation(leaf, fi,
992 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000993 btrfs_set_file_extent_num_bytes(leaf, fi,
994 other_end - start);
995 btrfs_set_file_extent_offset(leaf, fi,
996 start - orig_offset);
997 btrfs_mark_buffer_dirty(leaf);
998 goto out;
999 }
1000 }
Yan Zhengd899e052008-10-30 14:25:28 -04001001
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001002 while (start > key.offset || end < extent_end) {
1003 if (key.offset == start)
1004 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001005
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001006 new_key.offset = split;
1007 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1008 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001009 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001010 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001011 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001012 if (ret < 0) {
1013 btrfs_abort_transaction(trans, root, ret);
1014 goto out;
1015 }
Yan Zhengd899e052008-10-30 14:25:28 -04001016
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001017 leaf = path->nodes[0];
1018 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001019 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001020 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001021 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001022 split - key.offset);
1023
1024 fi = btrfs_item_ptr(leaf, path->slots[0],
1025 struct btrfs_file_extent_item);
1026
Josef Bacik224ecce2012-08-16 16:32:06 -04001027 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001028 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1029 btrfs_set_file_extent_num_bytes(leaf, fi,
1030 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001031 btrfs_mark_buffer_dirty(leaf);
1032
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001033 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
1034 root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001035 ino, orig_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001036 BUG_ON(ret); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001037
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001038 if (split == start) {
1039 key.offset = start;
1040 } else {
1041 BUG_ON(start != key.offset);
Yan Zhengd899e052008-10-30 14:25:28 -04001042 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001043 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001044 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001045 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001046 }
1047
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001048 other_start = end;
1049 other_end = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001050 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001051 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001052 &other_start, &other_end)) {
1053 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001054 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001055 goto again;
1056 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001057 extent_end = other_end;
1058 del_slot = path->slots[0] + 1;
1059 del_nr++;
1060 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1061 0, root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001062 ino, orig_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001063 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001064 }
1065 other_start = 0;
1066 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001067 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001068 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001069 &other_start, &other_end)) {
1070 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001071 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001072 goto again;
1073 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001074 key.offset = other_start;
1075 del_slot = path->slots[0];
1076 del_nr++;
1077 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1078 0, root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001079 ino, orig_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001080 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001081 }
1082 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001083 fi = btrfs_item_ptr(leaf, path->slots[0],
1084 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001085 btrfs_set_file_extent_type(leaf, fi,
1086 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001087 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001088 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001089 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001090 fi = btrfs_item_ptr(leaf, del_slot - 1,
1091 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001092 btrfs_set_file_extent_type(leaf, fi,
1093 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001094 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001095 btrfs_set_file_extent_num_bytes(leaf, fi,
1096 extent_end - key.offset);
1097 btrfs_mark_buffer_dirty(leaf);
1098
1099 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001100 if (ret < 0) {
1101 btrfs_abort_transaction(trans, root, ret);
1102 goto out;
1103 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001104 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001105out:
Yan Zhengd899e052008-10-30 14:25:28 -04001106 btrfs_free_path(path);
1107 return 0;
1108}
1109
Chris Mason39279cc2007-06-12 06:35:45 -04001110/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001111 * on error we return an unlocked page and the error value
1112 * on success we return a locked page and 0
1113 */
Josef Bacikb63164292011-09-30 15:23:54 -04001114static int prepare_uptodate_page(struct page *page, u64 pos,
1115 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001116{
1117 int ret = 0;
1118
Josef Bacikb63164292011-09-30 15:23:54 -04001119 if (((pos & (PAGE_CACHE_SIZE - 1)) || force_uptodate) &&
1120 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001121 ret = btrfs_readpage(NULL, page);
1122 if (ret)
1123 return ret;
1124 lock_page(page);
1125 if (!PageUptodate(page)) {
1126 unlock_page(page);
1127 return -EIO;
1128 }
1129 }
1130 return 0;
1131}
1132
1133/*
Chris Masond352ac62008-09-29 15:18:18 -04001134 * this gets pages into the page cache and locks them down, it also properly
1135 * waits for data=ordered extents to finish before allowing the pages to be
1136 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -04001137 */
Chris Masond3977122009-01-05 21:25:51 -05001138static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -05001139 struct page **pages, size_t num_pages,
1140 loff_t pos, unsigned long first_index,
Josef Bacikb63164292011-09-30 15:23:54 -04001141 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001142{
Josef Bacik2ac55d42010-02-03 19:33:23 +00001143 struct extent_state *cached_state = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001144 int i;
1145 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -05001146 struct inode *inode = fdentry(file)->d_inode;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001147 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason39279cc2007-06-12 06:35:45 -04001148 int err = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001149 int faili = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -04001150 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001151 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -04001152
Chris Mason5f39d392007-10-15 16:14:19 -04001153 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001154 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -04001155
Chris Masone6dcd2d2008-07-17 12:53:50 -04001156again:
Chris Mason39279cc2007-06-12 06:35:45 -04001157 for (i = 0; i < num_pages; i++) {
Josef Bacika94733d2011-07-11 10:47:06 -04001158 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001159 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001160 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001161 faili = i - 1;
1162 err = -ENOMEM;
1163 goto fail;
1164 }
1165
1166 if (i == 0)
Josef Bacikb63164292011-09-30 15:23:54 -04001167 err = prepare_uptodate_page(pages[i], pos,
1168 force_uptodate);
Chris Masonb1bf8622011-02-28 09:52:08 -05001169 if (i == num_pages - 1)
1170 err = prepare_uptodate_page(pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001171 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001172 if (err) {
1173 page_cache_release(pages[i]);
1174 faili = i - 1;
1175 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001176 }
Chris Masonccd467d2007-06-28 15:57:36 -04001177 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001178 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001179 err = 0;
Chris Mason07627042008-02-19 11:29:24 -05001180 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04001181 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001182 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001183 start_pos, last_pos - 1, 0, &cached_state);
Chris Masond3977122009-01-05 21:25:51 -05001184 ordered = btrfs_lookup_first_ordered_extent(inode,
1185 last_pos - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001186 if (ordered &&
1187 ordered->file_offset + ordered->len > start_pos &&
1188 ordered->file_offset < last_pos) {
1189 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00001190 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1191 start_pos, last_pos - 1,
1192 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001193 for (i = 0; i < num_pages; i++) {
1194 unlock_page(pages[i]);
1195 page_cache_release(pages[i]);
1196 }
1197 btrfs_wait_ordered_range(inode, start_pos,
1198 last_pos - start_pos);
1199 goto again;
1200 }
1201 if (ordered)
1202 btrfs_put_ordered_extent(ordered);
1203
Josef Bacik2ac55d42010-02-03 19:33:23 +00001204 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos,
Josef Bacik32c00af2009-10-08 13:34:05 -04001205 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Liu Bo9e8a4a82012-09-05 19:10:51 -06001206 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
1207 0, 0, &cached_state, GFP_NOFS);
Josef Bacik2ac55d42010-02-03 19:33:23 +00001208 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1209 start_pos, last_pos - 1, &cached_state,
1210 GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -05001211 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001212 for (i = 0; i < num_pages; i++) {
Wu Fengguang32c7f202011-08-08 15:19:47 -06001213 if (clear_page_dirty_for_io(pages[i]))
1214 account_page_redirty(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001215 set_page_extent_mapped(pages[i]);
1216 WARN_ON(!PageLocked(pages[i]));
1217 }
Chris Mason39279cc2007-06-12 06:35:45 -04001218 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001219fail:
1220 while (faili >= 0) {
1221 unlock_page(pages[faili]);
1222 page_cache_release(pages[faili]);
1223 faili--;
1224 }
1225 return err;
1226
Chris Mason39279cc2007-06-12 06:35:45 -04001227}
1228
Josef Bacikd0215f32011-01-25 14:57:24 -05001229static noinline ssize_t __btrfs_buffered_write(struct file *file,
1230 struct iov_iter *i,
1231 loff_t pos)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001232{
Josef Bacik11c65dc2010-05-23 11:07:21 -04001233 struct inode *inode = fdentry(file)->d_inode;
1234 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001235 struct page **pages = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001236 unsigned long first_index;
Josef Bacikd0215f32011-01-25 14:57:24 -05001237 size_t num_written = 0;
1238 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001239 int ret = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001240 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001241
Josef Bacikd0215f32011-01-25 14:57:24 -05001242 nrptrs = min((iov_iter_count(i) + PAGE_CACHE_SIZE - 1) /
Josef Bacik11c65dc2010-05-23 11:07:21 -04001243 PAGE_CACHE_SIZE, PAGE_CACHE_SIZE /
1244 (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001245 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1246 nrptrs = max(nrptrs, 8);
Chris Mason8c2383c2007-06-18 09:57:58 -04001247 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001248 if (!pages)
1249 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001250
Chris Mason39279cc2007-06-12 06:35:45 -04001251 first_index = pos >> PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -04001252
Josef Bacikd0215f32011-01-25 14:57:24 -05001253 while (iov_iter_count(i) > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -04001254 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Josef Bacikd0215f32011-01-25 14:57:24 -05001255 size_t write_bytes = min(iov_iter_count(i),
Josef Bacik11c65dc2010-05-23 11:07:21 -04001256 nrptrs * (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001257 offset);
Yan, Zheng3a909832011-01-18 13:34:40 +08001258 size_t num_pages = (write_bytes + offset +
1259 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001260 size_t dirty_pages;
1261 size_t copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001262
Chris Mason8c2383c2007-06-18 09:57:58 -04001263 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001264
Xin Zhong914ee292010-12-09 09:30:14 +00001265 /*
1266 * Fault pages before locking them in prepare_pages
1267 * to avoid recursive lock
1268 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001269 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001270 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001271 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001272 }
1273
1274 ret = btrfs_delalloc_reserve_space(inode,
1275 num_pages << PAGE_CACHE_SHIFT);
Chris Mason1832a6d2007-12-21 16:27:21 -05001276 if (ret)
Josef Bacikd0215f32011-01-25 14:57:24 -05001277 break;
Chris Mason1832a6d2007-12-21 16:27:21 -05001278
Josef Bacik4a640012011-01-25 15:10:08 -05001279 /*
1280 * This is going to setup the pages array with the number of
1281 * pages we want, so we don't really need to worry about the
1282 * contents of pages from loop to loop
1283 */
Chris Mason39279cc2007-06-12 06:35:45 -04001284 ret = prepare_pages(root, file, pages, num_pages,
Josef Bacikb63164292011-09-30 15:23:54 -04001285 pos, first_index, write_bytes,
1286 force_page_uptodate);
Josef Bacik6a632092009-02-20 11:00:09 -05001287 if (ret) {
Xin Zhong914ee292010-12-09 09:30:14 +00001288 btrfs_delalloc_release_space(inode,
1289 num_pages << PAGE_CACHE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001290 break;
Josef Bacik6a632092009-02-20 11:00:09 -05001291 }
Chris Mason39279cc2007-06-12 06:35:45 -04001292
Xin Zhong914ee292010-12-09 09:30:14 +00001293 copied = btrfs_copy_from_user(pos, num_pages,
Josef Bacikd0215f32011-01-25 14:57:24 -05001294 write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001295
1296 /*
1297 * if we have trouble faulting in the pages, fall
1298 * back to one page at a time
1299 */
1300 if (copied < write_bytes)
1301 nrptrs = 1;
1302
Josef Bacikb63164292011-09-30 15:23:54 -04001303 if (copied == 0) {
1304 force_page_uptodate = true;
Chris Masonb1bf8622011-02-28 09:52:08 -05001305 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001306 } else {
1307 force_page_uptodate = false;
Chris Masonb1bf8622011-02-28 09:52:08 -05001308 dirty_pages = (copied + offset +
1309 PAGE_CACHE_SIZE - 1) >>
1310 PAGE_CACHE_SHIFT;
Josef Bacikb63164292011-09-30 15:23:54 -04001311 }
Xin Zhong914ee292010-12-09 09:30:14 +00001312
Josef Bacikd0215f32011-01-25 14:57:24 -05001313 /*
1314 * If we had a short copy we need to release the excess delaloc
1315 * bytes we reserved. We need to increment outstanding_extents
1316 * because btrfs_delalloc_release_space will decrement it, but
1317 * we still have an outstanding extent for the chunk we actually
1318 * managed to copy.
1319 */
Xin Zhong914ee292010-12-09 09:30:14 +00001320 if (num_pages > dirty_pages) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001321 if (copied > 0) {
1322 spin_lock(&BTRFS_I(inode)->lock);
1323 BTRFS_I(inode)->outstanding_extents++;
1324 spin_unlock(&BTRFS_I(inode)->lock);
1325 }
Xin Zhong914ee292010-12-09 09:30:14 +00001326 btrfs_delalloc_release_space(inode,
1327 (num_pages - dirty_pages) <<
1328 PAGE_CACHE_SHIFT);
1329 }
1330
1331 if (copied > 0) {
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001332 ret = btrfs_dirty_pages(root, inode, pages,
1333 dirty_pages, pos, copied,
1334 NULL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001335 if (ret) {
1336 btrfs_delalloc_release_space(inode,
1337 dirty_pages << PAGE_CACHE_SHIFT);
1338 btrfs_drop_pages(pages, num_pages);
1339 break;
1340 }
Chris Mason54aa1f42007-06-22 14:16:25 -04001341 }
Chris Mason39279cc2007-06-12 06:35:45 -04001342
Chris Mason39279cc2007-06-12 06:35:45 -04001343 btrfs_drop_pages(pages, num_pages);
Xin Zhong914ee292010-12-09 09:30:14 +00001344
Josef Bacikd0215f32011-01-25 14:57:24 -05001345 cond_resched();
1346
1347 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1348 dirty_pages);
1349 if (dirty_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1350 btrfs_btree_balance_dirty(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04001351
Xin Zhong914ee292010-12-09 09:30:14 +00001352 pos += copied;
1353 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001354 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001355
Chris Mason8c2383c2007-06-18 09:57:58 -04001356 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001357
1358 return num_written ? num_written : ret;
1359}
1360
1361static ssize_t __btrfs_direct_write(struct kiocb *iocb,
1362 const struct iovec *iov,
1363 unsigned long nr_segs, loff_t pos,
1364 loff_t *ppos, size_t count, size_t ocount)
1365{
1366 struct file *file = iocb->ki_filp;
Josef Bacikd0215f32011-01-25 14:57:24 -05001367 struct iov_iter i;
1368 ssize_t written;
1369 ssize_t written_buffered;
1370 loff_t endbyte;
1371 int err;
1372
1373 written = generic_file_direct_write(iocb, iov, &nr_segs, pos, ppos,
1374 count, ocount);
1375
Josef Bacikd0215f32011-01-25 14:57:24 -05001376 if (written < 0 || written == count)
1377 return written;
1378
1379 pos += written;
1380 count -= written;
1381 iov_iter_init(&i, iov, nr_segs, count, written);
1382 written_buffered = __btrfs_buffered_write(file, &i, pos);
1383 if (written_buffered < 0) {
1384 err = written_buffered;
1385 goto out;
1386 }
1387 endbyte = pos + written_buffered - 1;
1388 err = filemap_write_and_wait_range(file->f_mapping, pos, endbyte);
1389 if (err)
1390 goto out;
1391 written += written_buffered;
1392 *ppos = pos + written_buffered;
1393 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_CACHE_SHIFT,
1394 endbyte >> PAGE_CACHE_SHIFT);
1395out:
1396 return written ? written : err;
1397}
1398
1399static ssize_t btrfs_file_aio_write(struct kiocb *iocb,
1400 const struct iovec *iov,
1401 unsigned long nr_segs, loff_t pos)
1402{
1403 struct file *file = iocb->ki_filp;
1404 struct inode *inode = fdentry(file)->d_inode;
1405 struct btrfs_root *root = BTRFS_I(inode)->root;
1406 loff_t *ppos = &iocb->ki_pos;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001407 u64 start_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001408 ssize_t num_written = 0;
1409 ssize_t err = 0;
1410 size_t count, ocount;
1411
Jan Karab2b5ef52012-06-12 16:20:45 +02001412 sb_start_write(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001413
1414 mutex_lock(&inode->i_mutex);
1415
1416 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
1417 if (err) {
1418 mutex_unlock(&inode->i_mutex);
1419 goto out;
1420 }
1421 count = ocount;
1422
1423 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1424 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1425 if (err) {
1426 mutex_unlock(&inode->i_mutex);
1427 goto out;
1428 }
1429
1430 if (count == 0) {
1431 mutex_unlock(&inode->i_mutex);
1432 goto out;
1433 }
1434
1435 err = file_remove_suid(file);
1436 if (err) {
1437 mutex_unlock(&inode->i_mutex);
1438 goto out;
1439 }
1440
1441 /*
1442 * If BTRFS flips readonly due to some impossible error
1443 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1444 * although we have opened a file as writable, we have
1445 * to stop this write operation to ensure FS consistency.
1446 */
1447 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
1448 mutex_unlock(&inode->i_mutex);
1449 err = -EROFS;
1450 goto out;
1451 }
1452
Josef Bacike41f9412012-03-26 09:46:47 -04001453 err = file_update_time(file);
Josef Bacik22c44fe2011-11-30 10:45:38 -05001454 if (err) {
1455 mutex_unlock(&inode->i_mutex);
1456 goto out;
1457 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001458
Miao Xie0c1a98c2011-09-11 10:52:24 -04001459 start_pos = round_down(pos, root->sectorsize);
1460 if (start_pos > i_size_read(inode)) {
1461 err = btrfs_cont_expand(inode, i_size_read(inode), start_pos);
1462 if (err) {
1463 mutex_unlock(&inode->i_mutex);
1464 goto out;
1465 }
1466 }
1467
Josef Bacikd0215f32011-01-25 14:57:24 -05001468 if (unlikely(file->f_flags & O_DIRECT)) {
1469 num_written = __btrfs_direct_write(iocb, iov, nr_segs,
1470 pos, ppos, count, ocount);
1471 } else {
1472 struct iov_iter i;
1473
1474 iov_iter_init(&i, iov, nr_segs, count, num_written);
1475
1476 num_written = __btrfs_buffered_write(file, &i, pos);
1477 if (num_written > 0)
1478 *ppos = pos + num_written;
1479 }
1480
1481 mutex_unlock(&inode->i_mutex);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001482
Chris Mason5a3f23d2009-03-31 13:27:11 -04001483 /*
1484 * we want to make sure fsync finds this change
1485 * but we haven't joined a transaction running right now.
1486 *
1487 * Later on, someone is sure to update the inode and get the
1488 * real transid recorded.
1489 *
1490 * We set last_trans now to the fs_info generation + 1,
1491 * this will either be one more than the running transaction
1492 * or the generation used for the next transaction if there isn't
1493 * one running right now.
1494 */
1495 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
Josef Bacikd0215f32011-01-25 14:57:24 -05001496 if (num_written > 0 || num_written == -EIOCBQUEUED) {
1497 err = generic_write_sync(file, pos, num_written);
1498 if (err < 0 && num_written > 0)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001499 num_written = err;
1500 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001501out:
Jan Karab2b5ef52012-06-12 16:20:45 +02001502 sb_end_write(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04001503 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001504 return num_written ? num_written : err;
1505}
1506
Chris Masond3977122009-01-05 21:25:51 -05001507int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001508{
Chris Mason5a3f23d2009-03-31 13:27:11 -04001509 /*
1510 * ordered_data_close is set by settattr when we are about to truncate
1511 * a file from a non-zero size to a zero size. This tries to
1512 * flush down new bytes that may have been written if the
1513 * application were using truncate to replace a file in place.
1514 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04001515 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
1516 &BTRFS_I(inode)->runtime_flags)) {
Chris Mason5a3f23d2009-03-31 13:27:11 -04001517 btrfs_add_ordered_operation(NULL, BTRFS_I(inode)->root, inode);
1518 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1519 filemap_flush(inode->i_mapping);
1520 }
Sage Weil6bf13c02008-06-10 10:07:39 -04001521 if (filp->private_data)
1522 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001523 return 0;
1524}
1525
Chris Masond352ac62008-09-29 15:18:18 -04001526/*
1527 * fsync call for both files and directories. This logs the inode into
1528 * the tree log instead of forcing full commits whenever possible.
1529 *
1530 * It needs to call filemap_fdatawait so that all ordered extent updates are
1531 * in the metadata btree are up to date for copying to the log.
1532 *
1533 * It drops the inode mutex before doing the tree log commit. This is an
1534 * important optimization for directories because holding the mutex prevents
1535 * new operations on the dir while we write to disk.
1536 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001537int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001538{
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001539 struct dentry *dentry = file->f_path.dentry;
Chris Mason39279cc2007-06-12 06:35:45 -04001540 struct inode *inode = dentry->d_inode;
1541 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001542 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001543 struct btrfs_trans_handle *trans;
1544
liubo1abe9b82011-03-24 11:18:59 +00001545 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04001546
Josef Bacik02c24a82011-07-16 20:44:56 -04001547 mutex_lock(&inode->i_mutex);
1548
Josef Bacik0885ef52012-04-23 15:09:39 -04001549 /*
1550 * we wait first, since the writeback may change the inode, also wait
1551 * ordered range does a filemape_write_and_wait_range which is why we
1552 * don't do it above like other file systems.
1553 */
Miao Xie2ecb7922012-09-06 04:04:27 -06001554 atomic_inc(&root->log_batch);
Josef Bacik0885ef52012-04-23 15:09:39 -04001555 btrfs_wait_ordered_range(inode, start, end);
Miao Xie2ecb7922012-09-06 04:04:27 -06001556 atomic_inc(&root->log_batch);
Chris Mason257c62e2009-10-13 13:21:08 -04001557
Chris Mason39279cc2007-06-12 06:35:45 -04001558 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001559 * check the transaction that last modified this inode
1560 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001561 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001562 if (!BTRFS_I(inode)->last_trans) {
1563 mutex_unlock(&inode->i_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001564 goto out;
Josef Bacik02c24a82011-07-16 20:44:56 -04001565 }
Chris Masona2135012008-06-25 16:01:30 -04001566
Chris Mason257c62e2009-10-13 13:21:08 -04001567 /*
1568 * if the last transaction that changed this file was before
1569 * the current transaction, we can bail out now without any
1570 * syncing
1571 */
Josef Bacika4abeea2011-04-11 17:25:13 -04001572 smp_mb();
Josef Bacik22ee6982012-05-29 16:57:49 -04001573 if (btrfs_inode_in_log(inode, root->fs_info->generation) ||
1574 BTRFS_I(inode)->last_trans <=
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001575 root->fs_info->last_trans_committed) {
1576 BTRFS_I(inode)->last_trans = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001577
1578 /*
1579 * We'v had everything committed since the last time we were
1580 * modified so clear this flag in case it was set for whatever
1581 * reason, it's no longer relevant.
1582 */
1583 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
1584 &BTRFS_I(inode)->runtime_flags);
Josef Bacik02c24a82011-07-16 20:44:56 -04001585 mutex_unlock(&inode->i_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001586 goto out;
1587 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001588
1589 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001590 * ok we haven't committed the transaction yet, lets do a commit
1591 */
Dan Carpenter6f902af2010-05-29 09:49:07 +00001592 if (file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04001593 btrfs_ioctl_trans_end(file);
1594
Yan, Zhenga22285a2010-05-16 10:48:46 -04001595 trans = btrfs_start_transaction(root, 0);
1596 if (IS_ERR(trans)) {
1597 ret = PTR_ERR(trans);
Josef Bacik02c24a82011-07-16 20:44:56 -04001598 mutex_unlock(&inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001599 goto out;
1600 }
Chris Masone02119d2008-09-05 16:13:11 -04001601
Chris Mason2cfbd502009-02-20 10:55:10 -05001602 ret = btrfs_log_dentry_safe(trans, root, dentry);
Josef Bacik02c24a82011-07-16 20:44:56 -04001603 if (ret < 0) {
1604 mutex_unlock(&inode->i_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001605 goto out;
Josef Bacik02c24a82011-07-16 20:44:56 -04001606 }
Chris Mason49eb7e42008-09-11 15:53:12 -04001607
1608 /* we've logged all the items and now have a consistent
1609 * version of the file in the log. It is possible that
1610 * someone will come in and modify the file, but that's
1611 * fine because the log is consistent on disk, and we
1612 * have references to all of the file's extents
1613 *
1614 * It is possible that someone will come in and log the
1615 * file again, but that will end up using the synchronization
1616 * inside btrfs_sync_log to keep things safe.
1617 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001618 mutex_unlock(&inode->i_mutex);
Chris Mason49eb7e42008-09-11 15:53:12 -04001619
Chris Mason257c62e2009-10-13 13:21:08 -04001620 if (ret != BTRFS_NO_LOG_SYNC) {
1621 if (ret > 0) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001622 ret = btrfs_commit_transaction(trans, root);
Chris Mason257c62e2009-10-13 13:21:08 -04001623 } else {
1624 ret = btrfs_sync_log(trans, root);
1625 if (ret == 0)
1626 ret = btrfs_end_transaction(trans, root);
1627 else
1628 ret = btrfs_commit_transaction(trans, root);
1629 }
1630 } else {
1631 ret = btrfs_end_transaction(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04001632 }
Chris Mason39279cc2007-06-12 06:35:45 -04001633out:
Roel Kluin014e4ac2010-01-29 10:42:11 +00001634 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04001635}
1636
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001637static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001638 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001639 .page_mkwrite = btrfs_page_mkwrite,
1640};
1641
1642static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1643{
Miao Xie058a4572010-05-20 07:21:50 +00001644 struct address_space *mapping = filp->f_mapping;
1645
1646 if (!mapping->a_ops->readpage)
1647 return -ENOEXEC;
1648
Chris Mason9ebefb182007-06-15 13:50:00 -04001649 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00001650 vma->vm_ops = &btrfs_file_vm_ops;
1651 vma->vm_flags |= VM_CAN_NONLINEAR;
1652
Chris Mason9ebefb182007-06-15 13:50:00 -04001653 return 0;
1654}
1655
Josef Bacik2aaa6652012-08-29 14:27:18 -04001656static int hole_mergeable(struct inode *inode, struct extent_buffer *leaf,
1657 int slot, u64 start, u64 end)
1658{
1659 struct btrfs_file_extent_item *fi;
1660 struct btrfs_key key;
1661
1662 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
1663 return 0;
1664
1665 btrfs_item_key_to_cpu(leaf, &key, slot);
1666 if (key.objectid != btrfs_ino(inode) ||
1667 key.type != BTRFS_EXTENT_DATA_KEY)
1668 return 0;
1669
1670 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
1671
1672 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
1673 return 0;
1674
1675 if (btrfs_file_extent_disk_bytenr(leaf, fi))
1676 return 0;
1677
1678 if (key.offset == end)
1679 return 1;
1680 if (key.offset + btrfs_file_extent_num_bytes(leaf, fi) == start)
1681 return 1;
1682 return 0;
1683}
1684
1685static int fill_holes(struct btrfs_trans_handle *trans, struct inode *inode,
1686 struct btrfs_path *path, u64 offset, u64 end)
1687{
1688 struct btrfs_root *root = BTRFS_I(inode)->root;
1689 struct extent_buffer *leaf;
1690 struct btrfs_file_extent_item *fi;
1691 struct extent_map *hole_em;
1692 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
1693 struct btrfs_key key;
1694 int ret;
1695
1696 key.objectid = btrfs_ino(inode);
1697 key.type = BTRFS_EXTENT_DATA_KEY;
1698 key.offset = offset;
1699
1700
1701 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1702 if (ret < 0)
1703 return ret;
1704 BUG_ON(!ret);
1705
1706 leaf = path->nodes[0];
1707 if (hole_mergeable(inode, leaf, path->slots[0]-1, offset, end)) {
1708 u64 num_bytes;
1709
1710 path->slots[0]--;
1711 fi = btrfs_item_ptr(leaf, path->slots[0],
1712 struct btrfs_file_extent_item);
1713 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) +
1714 end - offset;
1715 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1716 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
1717 btrfs_set_file_extent_offset(leaf, fi, 0);
1718 btrfs_mark_buffer_dirty(leaf);
1719 goto out;
1720 }
1721
1722 if (hole_mergeable(inode, leaf, path->slots[0]+1, offset, end)) {
1723 u64 num_bytes;
1724
1725 path->slots[0]++;
1726 key.offset = offset;
1727 btrfs_set_item_key_safe(trans, root, path, &key);
1728 fi = btrfs_item_ptr(leaf, path->slots[0],
1729 struct btrfs_file_extent_item);
1730 num_bytes = btrfs_file_extent_num_bytes(leaf, fi) + end -
1731 offset;
1732 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1733 btrfs_set_file_extent_ram_bytes(leaf, fi, num_bytes);
1734 btrfs_set_file_extent_offset(leaf, fi, 0);
1735 btrfs_mark_buffer_dirty(leaf);
1736 goto out;
1737 }
1738 btrfs_release_path(path);
1739
1740 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode), offset,
1741 0, 0, end - offset, 0, end - offset,
1742 0, 0, 0);
1743 if (ret)
1744 return ret;
1745
1746out:
1747 btrfs_release_path(path);
1748
1749 hole_em = alloc_extent_map();
1750 if (!hole_em) {
1751 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
1752 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
1753 &BTRFS_I(inode)->runtime_flags);
1754 } else {
1755 hole_em->start = offset;
1756 hole_em->len = end - offset;
1757 hole_em->orig_start = offset;
1758
1759 hole_em->block_start = EXTENT_MAP_HOLE;
1760 hole_em->block_len = 0;
1761 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
1762 hole_em->compress_type = BTRFS_COMPRESS_NONE;
1763 hole_em->generation = trans->transid;
1764
1765 do {
1766 btrfs_drop_extent_cache(inode, offset, end - 1, 0);
1767 write_lock(&em_tree->lock);
1768 ret = add_extent_mapping(em_tree, hole_em);
1769 if (!ret)
1770 list_move(&hole_em->list,
1771 &em_tree->modified_extents);
1772 write_unlock(&em_tree->lock);
1773 } while (ret == -EEXIST);
1774 free_extent_map(hole_em);
1775 if (ret)
1776 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
1777 &BTRFS_I(inode)->runtime_flags);
1778 }
1779
1780 return 0;
1781}
1782
1783static int btrfs_punch_hole(struct inode *inode, loff_t offset, loff_t len)
1784{
1785 struct btrfs_root *root = BTRFS_I(inode)->root;
1786 struct extent_state *cached_state = NULL;
1787 struct btrfs_path *path;
1788 struct btrfs_block_rsv *rsv;
1789 struct btrfs_trans_handle *trans;
1790 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
1791 u64 lockstart = (offset + mask) & ~mask;
1792 u64 lockend = ((offset + len) & ~mask) - 1;
1793 u64 cur_offset = lockstart;
1794 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
1795 u64 drop_end;
1796 unsigned long nr;
1797 int ret = 0;
1798 int err = 0;
1799 bool same_page = (offset >> PAGE_CACHE_SHIFT) ==
1800 ((offset + len) >> PAGE_CACHE_SHIFT);
1801
1802 btrfs_wait_ordered_range(inode, offset, len);
1803
1804 mutex_lock(&inode->i_mutex);
1805 if (offset >= inode->i_size) {
1806 mutex_unlock(&inode->i_mutex);
1807 return 0;
1808 }
1809
1810 /*
1811 * Only do this if we are in the same page and we aren't doing the
1812 * entire page.
1813 */
1814 if (same_page && len < PAGE_CACHE_SIZE) {
1815 ret = btrfs_truncate_page(inode, offset, len, 0);
1816 mutex_unlock(&inode->i_mutex);
1817 return ret;
1818 }
1819
1820 /* zero back part of the first page */
1821 ret = btrfs_truncate_page(inode, offset, 0, 0);
1822 if (ret) {
1823 mutex_unlock(&inode->i_mutex);
1824 return ret;
1825 }
1826
1827 /* zero the front end of the last page */
1828 ret = btrfs_truncate_page(inode, offset + len, 0, 1);
1829 if (ret) {
1830 mutex_unlock(&inode->i_mutex);
1831 return ret;
1832 }
1833
1834 if (lockend < lockstart) {
1835 mutex_unlock(&inode->i_mutex);
1836 return 0;
1837 }
1838
1839 while (1) {
1840 struct btrfs_ordered_extent *ordered;
1841
1842 truncate_pagecache_range(inode, lockstart, lockend);
1843
1844 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
1845 0, &cached_state);
1846 ordered = btrfs_lookup_first_ordered_extent(inode, lockend);
1847
1848 /*
1849 * We need to make sure we have no ordered extents in this range
1850 * and nobody raced in and read a page in this range, if we did
1851 * we need to try again.
1852 */
1853 if ((!ordered ||
1854 (ordered->file_offset + ordered->len < lockstart ||
1855 ordered->file_offset > lockend)) &&
1856 !test_range_bit(&BTRFS_I(inode)->io_tree, lockstart,
1857 lockend, EXTENT_UPTODATE, 0,
1858 cached_state)) {
1859 if (ordered)
1860 btrfs_put_ordered_extent(ordered);
1861 break;
1862 }
1863 if (ordered)
1864 btrfs_put_ordered_extent(ordered);
1865 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart,
1866 lockend, &cached_state, GFP_NOFS);
1867 btrfs_wait_ordered_range(inode, lockstart,
1868 lockend - lockstart + 1);
1869 }
1870
1871 path = btrfs_alloc_path();
1872 if (!path) {
1873 ret = -ENOMEM;
1874 goto out;
1875 }
1876
Miao Xie66d8f3d2012-09-06 04:02:28 -06001877 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
Josef Bacik2aaa6652012-08-29 14:27:18 -04001878 if (!rsv) {
1879 ret = -ENOMEM;
1880 goto out_free;
1881 }
1882 rsv->size = btrfs_calc_trunc_metadata_size(root, 1);
1883 rsv->failfast = 1;
1884
1885 /*
1886 * 1 - update the inode
1887 * 1 - removing the extents in the range
1888 * 1 - adding the hole extent
1889 */
1890 trans = btrfs_start_transaction(root, 3);
1891 if (IS_ERR(trans)) {
1892 err = PTR_ERR(trans);
1893 goto out_free;
1894 }
1895
1896 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
1897 min_size);
1898 BUG_ON(ret);
1899 trans->block_rsv = rsv;
1900
1901 while (cur_offset < lockend) {
1902 ret = __btrfs_drop_extents(trans, root, inode, path,
1903 cur_offset, lockend + 1,
1904 &drop_end, 1);
1905 if (ret != -ENOSPC)
1906 break;
1907
1908 trans->block_rsv = &root->fs_info->trans_block_rsv;
1909
1910 ret = fill_holes(trans, inode, path, cur_offset, drop_end);
1911 if (ret) {
1912 err = ret;
1913 break;
1914 }
1915
1916 cur_offset = drop_end;
1917
1918 ret = btrfs_update_inode(trans, root, inode);
1919 if (ret) {
1920 err = ret;
1921 break;
1922 }
1923
1924 nr = trans->blocks_used;
1925 btrfs_end_transaction(trans, root);
1926 btrfs_btree_balance_dirty(root, nr);
1927
1928 trans = btrfs_start_transaction(root, 3);
1929 if (IS_ERR(trans)) {
1930 ret = PTR_ERR(trans);
1931 trans = NULL;
1932 break;
1933 }
1934
1935 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
1936 rsv, min_size);
1937 BUG_ON(ret); /* shouldn't happen */
1938 trans->block_rsv = rsv;
1939 }
1940
1941 if (ret) {
1942 err = ret;
1943 goto out_trans;
1944 }
1945
1946 trans->block_rsv = &root->fs_info->trans_block_rsv;
1947 ret = fill_holes(trans, inode, path, cur_offset, drop_end);
1948 if (ret) {
1949 err = ret;
1950 goto out_trans;
1951 }
1952
1953out_trans:
1954 if (!trans)
1955 goto out_free;
1956
1957 trans->block_rsv = &root->fs_info->trans_block_rsv;
1958 ret = btrfs_update_inode(trans, root, inode);
1959 nr = trans->blocks_used;
1960 btrfs_end_transaction(trans, root);
1961 btrfs_btree_balance_dirty(root, nr);
1962out_free:
1963 btrfs_free_path(path);
1964 btrfs_free_block_rsv(root, rsv);
1965out:
1966 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
1967 &cached_state, GFP_NOFS);
1968 mutex_unlock(&inode->i_mutex);
1969 if (ret && !err)
1970 err = ret;
1971 return err;
1972}
1973
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001974static long btrfs_fallocate(struct file *file, int mode,
1975 loff_t offset, loff_t len)
1976{
1977 struct inode *inode = file->f_path.dentry->d_inode;
1978 struct extent_state *cached_state = NULL;
1979 u64 cur_offset;
1980 u64 last_byte;
1981 u64 alloc_start;
1982 u64 alloc_end;
1983 u64 alloc_hint = 0;
1984 u64 locked_end;
1985 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
1986 struct extent_map *em;
1987 int ret;
1988
1989 alloc_start = offset & ~mask;
1990 alloc_end = (offset + len + mask) & ~mask;
1991
Josef Bacik2aaa6652012-08-29 14:27:18 -04001992 /* Make sure we aren't being give some crap mode */
1993 if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001994 return -EOPNOTSUPP;
1995
Josef Bacik2aaa6652012-08-29 14:27:18 -04001996 if (mode & FALLOC_FL_PUNCH_HOLE)
1997 return btrfs_punch_hole(inode, offset, len);
1998
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001999 /*
Chris Masond98456f2012-01-31 20:27:41 -05002000 * Make sure we have enough space before we do the
2001 * allocation.
2002 */
Miao Xie903889f42012-09-06 04:04:57 -06002003 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start + 1);
Chris Masond98456f2012-01-31 20:27:41 -05002004 if (ret)
2005 return ret;
2006
2007 /*
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002008 * wait for ordered IO before we have any locks. We'll loop again
2009 * below with the locks held.
2010 */
2011 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
2012
2013 mutex_lock(&inode->i_mutex);
2014 ret = inode_newsize_ok(inode, alloc_end);
2015 if (ret)
2016 goto out;
2017
2018 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05002019 ret = btrfs_cont_expand(inode, i_size_read(inode),
2020 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002021 if (ret)
2022 goto out;
2023 }
2024
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002025 locked_end = alloc_end - 1;
2026 while (1) {
2027 struct btrfs_ordered_extent *ordered;
2028
2029 /* the extent lock is ordered inside the running
2030 * transaction
2031 */
2032 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002033 locked_end, 0, &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002034 ordered = btrfs_lookup_first_ordered_extent(inode,
2035 alloc_end - 1);
2036 if (ordered &&
2037 ordered->file_offset + ordered->len > alloc_start &&
2038 ordered->file_offset < alloc_end) {
2039 btrfs_put_ordered_extent(ordered);
2040 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
2041 alloc_start, locked_end,
2042 &cached_state, GFP_NOFS);
2043 /*
2044 * we can't wait on the range with the transaction
2045 * running or with the extent lock held
2046 */
2047 btrfs_wait_ordered_range(inode, alloc_start,
2048 alloc_end - alloc_start);
2049 } else {
2050 if (ordered)
2051 btrfs_put_ordered_extent(ordered);
2052 break;
2053 }
2054 }
2055
2056 cur_offset = alloc_start;
2057 while (1) {
Josef Bacikf1e490a2011-08-18 10:36:39 -04002058 u64 actual_end;
2059
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002060 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2061 alloc_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002062 if (IS_ERR_OR_NULL(em)) {
2063 if (!em)
2064 ret = -ENOMEM;
2065 else
2066 ret = PTR_ERR(em);
2067 break;
2068 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002069 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04002070 actual_end = min_t(u64, extent_map_end(em), offset + len);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002071 last_byte = (last_byte + mask) & ~mask;
Josef Bacikf1e490a2011-08-18 10:36:39 -04002072
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002073 if (em->block_start == EXTENT_MAP_HOLE ||
2074 (cur_offset >= inode->i_size &&
2075 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
2076 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
2077 last_byte - cur_offset,
2078 1 << inode->i_blkbits,
2079 offset + len,
2080 &alloc_hint);
Josef Bacik1b9c3322011-08-17 10:19:52 -04002081
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002082 if (ret < 0) {
2083 free_extent_map(em);
2084 break;
2085 }
Josef Bacikf1e490a2011-08-18 10:36:39 -04002086 } else if (actual_end > inode->i_size &&
2087 !(mode & FALLOC_FL_KEEP_SIZE)) {
2088 /*
2089 * We didn't need to allocate any more space, but we
2090 * still extended the size of the file so we need to
2091 * update i_size.
2092 */
2093 inode->i_ctime = CURRENT_TIME;
2094 i_size_write(inode, actual_end);
2095 btrfs_ordered_update_i_size(inode, actual_end, NULL);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002096 }
2097 free_extent_map(em);
2098
2099 cur_offset = last_byte;
2100 if (cur_offset >= alloc_end) {
2101 ret = 0;
2102 break;
2103 }
2104 }
2105 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
2106 &cached_state, GFP_NOFS);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002107out:
2108 mutex_unlock(&inode->i_mutex);
Chris Masond98456f2012-01-31 20:27:41 -05002109 /* Let go of our reservation. */
Miao Xie903889f42012-09-06 04:04:57 -06002110 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start + 1);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002111 return ret;
2112}
2113
Josef Bacikb2675152011-07-18 13:21:36 -04002114static int find_desired_extent(struct inode *inode, loff_t *offset, int origin)
2115{
2116 struct btrfs_root *root = BTRFS_I(inode)->root;
2117 struct extent_map *em;
2118 struct extent_state *cached_state = NULL;
2119 u64 lockstart = *offset;
2120 u64 lockend = i_size_read(inode);
2121 u64 start = *offset;
2122 u64 orig_start = *offset;
2123 u64 len = i_size_read(inode);
2124 u64 last_end = 0;
2125 int ret = 0;
2126
2127 lockend = max_t(u64, root->sectorsize, lockend);
2128 if (lockend <= lockstart)
2129 lockend = lockstart + root->sectorsize;
2130
2131 len = lockend - lockstart + 1;
2132
2133 len = max_t(u64, len, root->sectorsize);
2134 if (inode->i_size == 0)
2135 return -ENXIO;
2136
2137 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002138 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04002139
2140 /*
2141 * Delalloc is such a pain. If we have a hole and we have pending
2142 * delalloc for a portion of the hole we will get back a hole that
2143 * exists for the entire range since it hasn't been actually written
2144 * yet. So to take care of this case we need to look for an extent just
2145 * before the position we want in case there is outstanding delalloc
2146 * going on here.
2147 */
2148 if (origin == SEEK_HOLE && start != 0) {
2149 if (start <= root->sectorsize)
2150 em = btrfs_get_extent_fiemap(inode, NULL, 0, 0,
2151 root->sectorsize, 0);
2152 else
2153 em = btrfs_get_extent_fiemap(inode, NULL, 0,
2154 start - root->sectorsize,
2155 root->sectorsize, 0);
2156 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08002157 ret = PTR_ERR(em);
Josef Bacikb2675152011-07-18 13:21:36 -04002158 goto out;
2159 }
2160 last_end = em->start + em->len;
2161 if (em->block_start == EXTENT_MAP_DELALLOC)
2162 last_end = min_t(u64, last_end, inode->i_size);
2163 free_extent_map(em);
2164 }
2165
2166 while (1) {
2167 em = btrfs_get_extent_fiemap(inode, NULL, 0, start, len, 0);
2168 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08002169 ret = PTR_ERR(em);
Josef Bacikb2675152011-07-18 13:21:36 -04002170 break;
2171 }
2172
2173 if (em->block_start == EXTENT_MAP_HOLE) {
2174 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
2175 if (last_end <= orig_start) {
2176 free_extent_map(em);
2177 ret = -ENXIO;
2178 break;
2179 }
2180 }
2181
2182 if (origin == SEEK_HOLE) {
2183 *offset = start;
2184 free_extent_map(em);
2185 break;
2186 }
2187 } else {
2188 if (origin == SEEK_DATA) {
2189 if (em->block_start == EXTENT_MAP_DELALLOC) {
2190 if (start >= inode->i_size) {
2191 free_extent_map(em);
2192 ret = -ENXIO;
2193 break;
2194 }
2195 }
2196
2197 *offset = start;
2198 free_extent_map(em);
2199 break;
2200 }
2201 }
2202
2203 start = em->start + em->len;
2204 last_end = em->start + em->len;
2205
2206 if (em->block_start == EXTENT_MAP_DELALLOC)
2207 last_end = min_t(u64, last_end, inode->i_size);
2208
2209 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
2210 free_extent_map(em);
2211 ret = -ENXIO;
2212 break;
2213 }
2214 free_extent_map(em);
2215 cond_resched();
2216 }
2217 if (!ret)
2218 *offset = min(*offset, inode->i_size);
2219out:
2220 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
2221 &cached_state, GFP_NOFS);
2222 return ret;
2223}
2224
2225static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int origin)
2226{
2227 struct inode *inode = file->f_mapping->host;
2228 int ret;
2229
2230 mutex_lock(&inode->i_mutex);
2231 switch (origin) {
2232 case SEEK_END:
2233 case SEEK_CUR:
Andi Kleenef3d0fd2011-09-15 16:06:48 -07002234 offset = generic_file_llseek(file, offset, origin);
Josef Bacikb2675152011-07-18 13:21:36 -04002235 goto out;
2236 case SEEK_DATA:
2237 case SEEK_HOLE:
Jeff Liu48802c82011-09-18 10:34:02 -04002238 if (offset >= i_size_read(inode)) {
2239 mutex_unlock(&inode->i_mutex);
2240 return -ENXIO;
2241 }
2242
Josef Bacikb2675152011-07-18 13:21:36 -04002243 ret = find_desired_extent(inode, &offset, origin);
2244 if (ret) {
2245 mutex_unlock(&inode->i_mutex);
2246 return ret;
2247 }
2248 }
2249
Dan Carpenter9a4327c2011-08-18 10:16:05 -04002250 if (offset < 0 && !(file->f_mode & FMODE_UNSIGNED_OFFSET)) {
Jeff Liu48802c82011-09-18 10:34:02 -04002251 offset = -EINVAL;
Dan Carpenter9a4327c2011-08-18 10:16:05 -04002252 goto out;
2253 }
2254 if (offset > inode->i_sb->s_maxbytes) {
Jeff Liu48802c82011-09-18 10:34:02 -04002255 offset = -EINVAL;
Dan Carpenter9a4327c2011-08-18 10:16:05 -04002256 goto out;
2257 }
Josef Bacikb2675152011-07-18 13:21:36 -04002258
2259 /* Special lock needed here? */
2260 if (offset != file->f_pos) {
2261 file->f_pos = offset;
2262 file->f_version = 0;
2263 }
2264out:
2265 mutex_unlock(&inode->i_mutex);
2266 return offset;
2267}
2268
Alexey Dobriyan828c0952009-10-01 15:43:56 -07002269const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04002270 .llseek = btrfs_file_llseek,
Chris Mason39279cc2007-06-12 06:35:45 -04002271 .read = do_sync_read,
Miao Xie4a0010712010-06-07 03:38:51 +00002272 .write = do_sync_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04002273 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05002274 .splice_read = generic_file_splice_read,
Josef Bacik11c65dc2010-05-23 11:07:21 -04002275 .aio_write = btrfs_file_aio_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04002276 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04002277 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04002278 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04002279 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01002280 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04002281 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04002282#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04002283 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04002284#endif
2285};