blob: 399f9d71a92674e43551bc9540632f590b1adce6 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason39279cc2007-06-12 06:35:45 -040019#include <linux/fs.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
22#include <linux/time.h>
23#include <linux/init.h>
24#include <linux/string.h>
Chris Mason39279cc2007-06-12 06:35:45 -040025#include <linux/backing-dev.h>
26#include <linux/mpage.h>
Christoph Hellwig2fe17c12011-01-14 13:07:43 +010027#include <linux/falloc.h>
Chris Mason39279cc2007-06-12 06:35:45 -040028#include <linux/swap.h>
29#include <linux/writeback.h>
30#include <linux/statfs.h>
31#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Chris Mason39279cc2007-06-12 06:35:45 -040033#include "ctree.h"
34#include "disk-io.h"
35#include "transaction.h"
36#include "btrfs_inode.h"
37#include "ioctl.h"
38#include "print-tree.h"
Chris Masone02119d2008-09-05 16:13:11 -040039#include "tree-log.h"
40#include "locking.h"
Jeff Mahoney12fa8ec2008-05-02 15:03:58 -040041#include "compat.h"
Chris Mason39279cc2007-06-12 06:35:45 -040042
Chris Mason4cb53002011-05-24 15:35:30 -040043/*
44 * when auto defrag is enabled we
45 * queue up these defrag structs to remember which
46 * inodes need defragging passes
47 */
48struct inode_defrag {
49 struct rb_node rb_node;
50 /* objectid */
51 u64 ino;
52 /*
53 * transid where the defrag was added, we search for
54 * extents newer than this
55 */
56 u64 transid;
57
58 /* root objectid */
59 u64 root;
60
61 /* last offset we were able to defrag */
62 u64 last_offset;
63
64 /* if we've wrapped around back to zero once already */
65 int cycled;
66};
67
Miao Xie762f2262012-05-24 18:58:27 +080068static int __compare_inode_defrag(struct inode_defrag *defrag1,
69 struct inode_defrag *defrag2)
70{
71 if (defrag1->root > defrag2->root)
72 return 1;
73 else if (defrag1->root < defrag2->root)
74 return -1;
75 else if (defrag1->ino > defrag2->ino)
76 return 1;
77 else if (defrag1->ino < defrag2->ino)
78 return -1;
79 else
80 return 0;
81}
82
Chris Mason4cb53002011-05-24 15:35:30 -040083/* pop a record for an inode into the defrag tree. The lock
84 * must be held already
85 *
86 * If you're inserting a record for an older transid than an
87 * existing record, the transid already in the tree is lowered
88 *
89 * If an existing record is found the defrag item you
90 * pass in is freed
91 */
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +000092static void __btrfs_add_inode_defrag(struct inode *inode,
Chris Mason4cb53002011-05-24 15:35:30 -040093 struct inode_defrag *defrag)
94{
95 struct btrfs_root *root = BTRFS_I(inode)->root;
96 struct inode_defrag *entry;
97 struct rb_node **p;
98 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +080099 int ret;
Chris Mason4cb53002011-05-24 15:35:30 -0400100
101 p = &root->fs_info->defrag_inodes.rb_node;
102 while (*p) {
103 parent = *p;
104 entry = rb_entry(parent, struct inode_defrag, rb_node);
105
Miao Xie762f2262012-05-24 18:58:27 +0800106 ret = __compare_inode_defrag(defrag, entry);
107 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400108 p = &parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800109 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400110 p = &parent->rb_right;
111 else {
112 /* if we're reinserting an entry for
113 * an old defrag run, make sure to
114 * lower the transid of our existing record
115 */
116 if (defrag->transid < entry->transid)
117 entry->transid = defrag->transid;
118 if (defrag->last_offset > entry->last_offset)
119 entry->last_offset = defrag->last_offset;
120 goto exists;
121 }
122 }
Josef Bacik72ac3c02012-05-23 14:13:11 -0400123 set_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400124 rb_link_node(&defrag->rb_node, parent, p);
125 rb_insert_color(&defrag->rb_node, &root->fs_info->defrag_inodes);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000126 return;
Chris Mason4cb53002011-05-24 15:35:30 -0400127
128exists:
129 kfree(defrag);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000130 return;
Chris Mason4cb53002011-05-24 15:35:30 -0400131
132}
133
134/*
135 * insert a defrag record for this inode if auto defrag is
136 * enabled
137 */
138int btrfs_add_inode_defrag(struct btrfs_trans_handle *trans,
139 struct inode *inode)
140{
141 struct btrfs_root *root = BTRFS_I(inode)->root;
142 struct inode_defrag *defrag;
Chris Mason4cb53002011-05-24 15:35:30 -0400143 u64 transid;
144
145 if (!btrfs_test_opt(root, AUTO_DEFRAG))
146 return 0;
147
David Sterba7841cb22011-05-31 18:07:27 +0200148 if (btrfs_fs_closing(root->fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400149 return 0;
150
Josef Bacik72ac3c02012-05-23 14:13:11 -0400151 if (test_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags))
Chris Mason4cb53002011-05-24 15:35:30 -0400152 return 0;
153
154 if (trans)
155 transid = trans->transid;
156 else
157 transid = BTRFS_I(inode)->root->last_trans;
158
159 defrag = kzalloc(sizeof(*defrag), GFP_NOFS);
160 if (!defrag)
161 return -ENOMEM;
162
David Sterbaa4689d22011-05-31 17:08:14 +0000163 defrag->ino = btrfs_ino(inode);
Chris Mason4cb53002011-05-24 15:35:30 -0400164 defrag->transid = transid;
165 defrag->root = root->root_key.objectid;
166
167 spin_lock(&root->fs_info->defrag_inodes_lock);
Josef Bacik72ac3c02012-05-23 14:13:11 -0400168 if (!test_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags))
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000169 __btrfs_add_inode_defrag(inode, defrag);
Dan Carpenterf4ac9042011-08-05 14:19:00 +0000170 else
171 kfree(defrag);
Chris Mason4cb53002011-05-24 15:35:30 -0400172 spin_unlock(&root->fs_info->defrag_inodes_lock);
Wanlong Gaoa0f98dd2011-07-18 12:19:35 +0000173 return 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400174}
175
176/*
177 * must be called with the defrag_inodes lock held
178 */
Miao Xie762f2262012-05-24 18:58:27 +0800179struct inode_defrag *btrfs_find_defrag_inode(struct btrfs_fs_info *info,
180 u64 root, u64 ino,
Chris Mason4cb53002011-05-24 15:35:30 -0400181 struct rb_node **next)
182{
183 struct inode_defrag *entry = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800184 struct inode_defrag tmp;
Chris Mason4cb53002011-05-24 15:35:30 -0400185 struct rb_node *p;
186 struct rb_node *parent = NULL;
Miao Xie762f2262012-05-24 18:58:27 +0800187 int ret;
188
189 tmp.ino = ino;
190 tmp.root = root;
Chris Mason4cb53002011-05-24 15:35:30 -0400191
192 p = info->defrag_inodes.rb_node;
193 while (p) {
194 parent = p;
195 entry = rb_entry(parent, struct inode_defrag, rb_node);
196
Miao Xie762f2262012-05-24 18:58:27 +0800197 ret = __compare_inode_defrag(&tmp, entry);
198 if (ret < 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400199 p = parent->rb_left;
Miao Xie762f2262012-05-24 18:58:27 +0800200 else if (ret > 0)
Chris Mason4cb53002011-05-24 15:35:30 -0400201 p = parent->rb_right;
202 else
203 return entry;
204 }
205
206 if (next) {
Miao Xie762f2262012-05-24 18:58:27 +0800207 while (parent && __compare_inode_defrag(&tmp, entry) > 0) {
Chris Mason4cb53002011-05-24 15:35:30 -0400208 parent = rb_next(parent);
209 entry = rb_entry(parent, struct inode_defrag, rb_node);
210 }
211 *next = parent;
212 }
213 return NULL;
214}
215
216/*
217 * run through the list of inodes in the FS that need
218 * defragging
219 */
220int btrfs_run_defrag_inodes(struct btrfs_fs_info *fs_info)
221{
222 struct inode_defrag *defrag;
223 struct btrfs_root *inode_root;
224 struct inode *inode;
225 struct rb_node *n;
226 struct btrfs_key key;
227 struct btrfs_ioctl_defrag_range_args range;
228 u64 first_ino = 0;
Miao Xie762f2262012-05-24 18:58:27 +0800229 u64 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400230 int num_defrag;
231 int defrag_batch = 1024;
232
233 memset(&range, 0, sizeof(range));
234 range.len = (u64)-1;
235
236 atomic_inc(&fs_info->defrag_running);
237 spin_lock(&fs_info->defrag_inodes_lock);
238 while(1) {
239 n = NULL;
240
241 /* find an inode to defrag */
Miao Xie762f2262012-05-24 18:58:27 +0800242 defrag = btrfs_find_defrag_inode(fs_info, root_objectid,
243 first_ino, &n);
Chris Mason4cb53002011-05-24 15:35:30 -0400244 if (!defrag) {
Miao Xie762f2262012-05-24 18:58:27 +0800245 if (n) {
246 defrag = rb_entry(n, struct inode_defrag,
247 rb_node);
248 } else if (root_objectid || first_ino) {
249 root_objectid = 0;
Chris Mason4cb53002011-05-24 15:35:30 -0400250 first_ino = 0;
251 continue;
252 } else {
253 break;
254 }
255 }
256
257 /* remove it from the rbtree */
258 first_ino = defrag->ino + 1;
Miao Xie762f2262012-05-24 18:58:27 +0800259 root_objectid = defrag->root;
Chris Mason4cb53002011-05-24 15:35:30 -0400260 rb_erase(&defrag->rb_node, &fs_info->defrag_inodes);
261
David Sterba7841cb22011-05-31 18:07:27 +0200262 if (btrfs_fs_closing(fs_info))
Chris Mason4cb53002011-05-24 15:35:30 -0400263 goto next_free;
264
265 spin_unlock(&fs_info->defrag_inodes_lock);
266
267 /* get the inode */
268 key.objectid = defrag->root;
269 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
270 key.offset = (u64)-1;
271 inode_root = btrfs_read_fs_root_no_name(fs_info, &key);
272 if (IS_ERR(inode_root))
273 goto next;
274
275 key.objectid = defrag->ino;
276 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
277 key.offset = 0;
278
279 inode = btrfs_iget(fs_info->sb, &key, inode_root, NULL);
280 if (IS_ERR(inode))
281 goto next;
282
283 /* do a chunk of defrag */
Josef Bacik72ac3c02012-05-23 14:13:11 -0400284 clear_bit(BTRFS_INODE_IN_DEFRAG, &BTRFS_I(inode)->runtime_flags);
Chris Mason4cb53002011-05-24 15:35:30 -0400285 range.start = defrag->last_offset;
286 num_defrag = btrfs_defrag_file(inode, NULL, &range, defrag->transid,
287 defrag_batch);
288 /*
289 * if we filled the whole defrag batch, there
290 * must be more work to do. Queue this defrag
291 * again
292 */
293 if (num_defrag == defrag_batch) {
294 defrag->last_offset = range.start;
295 __btrfs_add_inode_defrag(inode, defrag);
296 /*
297 * we don't want to kfree defrag, we added it back to
298 * the rbtree
299 */
300 defrag = NULL;
301 } else if (defrag->last_offset && !defrag->cycled) {
302 /*
303 * we didn't fill our defrag batch, but
304 * we didn't start at zero. Make sure we loop
305 * around to the start of the file.
306 */
307 defrag->last_offset = 0;
308 defrag->cycled = 1;
309 __btrfs_add_inode_defrag(inode, defrag);
310 defrag = NULL;
311 }
312
313 iput(inode);
314next:
315 spin_lock(&fs_info->defrag_inodes_lock);
316next_free:
317 kfree(defrag);
318 }
319 spin_unlock(&fs_info->defrag_inodes_lock);
320
321 atomic_dec(&fs_info->defrag_running);
322
323 /*
324 * during unmount, we use the transaction_wait queue to
325 * wait for the defragger to stop
326 */
327 wake_up(&fs_info->transaction_wait);
328 return 0;
329}
Chris Mason39279cc2007-06-12 06:35:45 -0400330
Chris Masond352ac62008-09-29 15:18:18 -0400331/* simple helper to fault in pages and copy. This should go away
332 * and be replaced with calls into generic code.
333 */
Chris Masond3977122009-01-05 21:25:51 -0500334static noinline int btrfs_copy_from_user(loff_t pos, int num_pages,
Josef Bacikd0215f32011-01-25 14:57:24 -0500335 size_t write_bytes,
Chris Masona1b32a52008-09-05 16:09:51 -0400336 struct page **prepared_pages,
Josef Bacik11c65dc2010-05-23 11:07:21 -0400337 struct iov_iter *i)
Chris Mason39279cc2007-06-12 06:35:45 -0400338{
Xin Zhong914ee292010-12-09 09:30:14 +0000339 size_t copied = 0;
Josef Bacikd0215f32011-01-25 14:57:24 -0500340 size_t total_copied = 0;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400341 int pg = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400342 int offset = pos & (PAGE_CACHE_SIZE - 1);
343
Josef Bacik11c65dc2010-05-23 11:07:21 -0400344 while (write_bytes > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400345 size_t count = min_t(size_t,
346 PAGE_CACHE_SIZE - offset, write_bytes);
Josef Bacik11c65dc2010-05-23 11:07:21 -0400347 struct page *page = prepared_pages[pg];
Xin Zhong914ee292010-12-09 09:30:14 +0000348 /*
349 * Copy data from userspace to the current page
350 *
351 * Disable pagefault to avoid recursive lock since
352 * the pages are already locked
353 */
354 pagefault_disable();
355 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
356 pagefault_enable();
Josef Bacik11c65dc2010-05-23 11:07:21 -0400357
Chris Mason39279cc2007-06-12 06:35:45 -0400358 /* Flush processor's dcache for this page */
359 flush_dcache_page(page);
Chris Mason31339ac2011-03-07 11:10:24 -0500360
361 /*
362 * if we get a partial write, we can end up with
363 * partially up to date pages. These add
364 * a lot of complexity, so make sure they don't
365 * happen by forcing this copy to be retried.
366 *
367 * The rest of the btrfs_file_write code will fall
368 * back to page at a time copies after we return 0.
369 */
370 if (!PageUptodate(page) && copied < count)
371 copied = 0;
372
Josef Bacik11c65dc2010-05-23 11:07:21 -0400373 iov_iter_advance(i, copied);
374 write_bytes -= copied;
Xin Zhong914ee292010-12-09 09:30:14 +0000375 total_copied += copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400376
Xin Zhong914ee292010-12-09 09:30:14 +0000377 /* Return to btrfs_file_aio_write to fault page */
Josef Bacik9f570b82011-01-25 12:42:37 -0500378 if (unlikely(copied == 0))
Xin Zhong914ee292010-12-09 09:30:14 +0000379 break;
Josef Bacik11c65dc2010-05-23 11:07:21 -0400380
381 if (unlikely(copied < PAGE_CACHE_SIZE - offset)) {
382 offset += copied;
383 } else {
384 pg++;
385 offset = 0;
386 }
Chris Mason39279cc2007-06-12 06:35:45 -0400387 }
Xin Zhong914ee292010-12-09 09:30:14 +0000388 return total_copied;
Chris Mason39279cc2007-06-12 06:35:45 -0400389}
390
Chris Masond352ac62008-09-29 15:18:18 -0400391/*
392 * unlocks pages after btrfs_file_write is done with them
393 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400394void btrfs_drop_pages(struct page **pages, size_t num_pages)
Chris Mason39279cc2007-06-12 06:35:45 -0400395{
396 size_t i;
397 for (i = 0; i < num_pages; i++) {
Chris Masond352ac62008-09-29 15:18:18 -0400398 /* page checked is some magic around finding pages that
399 * have been modified without going through btrfs_set_page_dirty
400 * clear it here
401 */
Chris Mason4a096752008-07-21 10:29:44 -0400402 ClearPageChecked(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -0400403 unlock_page(pages[i]);
404 mark_page_accessed(pages[i]);
405 page_cache_release(pages[i]);
406 }
407}
408
Chris Masond352ac62008-09-29 15:18:18 -0400409/*
410 * after copy_from_user, pages need to be dirtied and we need to make
411 * sure holes are created between the current EOF and the start of
412 * any next extents (if required).
413 *
414 * this also makes the decision about creating an inline extent vs
415 * doing real data extents, marking pages dirty and delalloc as required.
416 */
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400417int btrfs_dirty_pages(struct btrfs_root *root, struct inode *inode,
418 struct page **pages, size_t num_pages,
419 loff_t pos, size_t write_bytes,
420 struct extent_state **cached)
Chris Mason39279cc2007-06-12 06:35:45 -0400421{
Chris Mason39279cc2007-06-12 06:35:45 -0400422 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400423 int i;
Chris Masondb945352007-10-15 16:15:53 -0400424 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400425 u64 start_pos;
426 u64 end_of_last_block;
427 u64 end_pos = pos + write_bytes;
428 loff_t isize = i_size_read(inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400429
Chris Mason5f39d392007-10-15 16:14:19 -0400430 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400431 num_bytes = (write_bytes + pos - start_pos +
432 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400433
Chris Masondb945352007-10-15 16:15:53 -0400434 end_of_last_block = start_pos + num_bytes - 1;
Josef Bacik2ac55d42010-02-03 19:33:23 +0000435 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400436 cached);
Josef Bacikd0215f32011-01-25 14:57:24 -0500437 if (err)
438 return err;
Josef Bacik9ed74f22009-09-11 16:12:44 -0400439
Chris Masonc8b97812008-10-29 14:49:59 -0400440 for (i = 0; i < num_pages; i++) {
441 struct page *p = pages[i];
442 SetPageUptodate(p);
443 ClearPageChecked(p);
444 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400445 }
Josef Bacik9f570b82011-01-25 12:42:37 -0500446
447 /*
448 * we've only changed i_size in ram, and we haven't updated
449 * the disk i_size. There is no need to log the inode
450 * at this time.
451 */
452 if (end_pos > isize)
Chris Masona52d9a82007-08-27 16:49:44 -0400453 i_size_write(inode, end_pos);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400454 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400455}
456
Chris Masond352ac62008-09-29 15:18:18 -0400457/*
458 * this drops all the extents in the cache that intersect the range
459 * [start, end]. Existing extents are split as required.
460 */
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400461int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
Josef Bacik5dc562c2012-08-17 13:14:17 -0400462 int skip_pinned)
Chris Masona52d9a82007-08-27 16:49:44 -0400463{
464 struct extent_map *em;
Chris Mason3b951512008-04-17 11:29:12 -0400465 struct extent_map *split = NULL;
466 struct extent_map *split2 = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400467 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Yan39b56372008-02-15 10:40:50 -0500468 u64 len = end - start + 1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400469 u64 gen;
Chris Mason3b951512008-04-17 11:29:12 -0400470 int ret;
471 int testend = 1;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400472 unsigned long flags;
Chris Masonc8b97812008-10-29 14:49:59 -0400473 int compressed = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400474
Chris Masone6dcd2d2008-07-17 12:53:50 -0400475 WARN_ON(end < start);
Chris Mason3b951512008-04-17 11:29:12 -0400476 if (end == (u64)-1) {
Yan39b56372008-02-15 10:40:50 -0500477 len = (u64)-1;
Chris Mason3b951512008-04-17 11:29:12 -0400478 testend = 0;
479 }
Chris Masond3977122009-01-05 21:25:51 -0500480 while (1) {
Chris Mason3b951512008-04-17 11:29:12 -0400481 if (!split)
David Sterba172ddd62011-04-21 00:48:27 +0200482 split = alloc_extent_map();
Chris Mason3b951512008-04-17 11:29:12 -0400483 if (!split2)
David Sterba172ddd62011-04-21 00:48:27 +0200484 split2 = alloc_extent_map();
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100485 BUG_ON(!split || !split2); /* -ENOMEM */
Chris Mason3b951512008-04-17 11:29:12 -0400486
Chris Mason890871b2009-09-02 16:24:52 -0400487 write_lock(&em_tree->lock);
Yan39b56372008-02-15 10:40:50 -0500488 em = lookup_extent_mapping(em_tree, start, len);
Chris Masond1310b22008-01-24 16:13:08 -0500489 if (!em) {
Chris Mason890871b2009-09-02 16:24:52 -0400490 write_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400491 break;
Chris Masond1310b22008-01-24 16:13:08 -0500492 }
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400493 flags = em->flags;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400494 gen = em->generation;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400495 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
Yan, Zheng55ef6892009-11-12 09:36:44 +0000496 if (testend && em->start + em->len >= start + len) {
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400497 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400498 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400499 break;
500 }
Yan, Zheng55ef6892009-11-12 09:36:44 +0000501 start = em->start + em->len;
502 if (testend)
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400503 len = start + len - (em->start + em->len);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400504 free_extent_map(em);
Chris Masona1ed8352009-09-11 12:27:37 -0400505 write_unlock(&em_tree->lock);
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400506 continue;
507 }
Chris Masonc8b97812008-10-29 14:49:59 -0400508 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
Chris Mason3ce7e672008-07-31 15:42:54 -0400509 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masona52d9a82007-08-27 16:49:44 -0400510 remove_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -0400511
512 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
513 em->start < start) {
514 split->start = em->start;
515 split->len = start - em->start;
Yan Zhengff5b7ee2008-11-10 07:34:43 -0500516 split->orig_start = em->orig_start;
Chris Mason3b951512008-04-17 11:29:12 -0400517 split->block_start = em->block_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400518
519 if (compressed)
520 split->block_len = em->block_len;
521 else
522 split->block_len = split->len;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400523 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400524 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400525 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800526 split->compress_type = em->compress_type;
Chris Mason3b951512008-04-17 11:29:12 -0400527 ret = add_extent_mapping(em_tree, split);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100528 BUG_ON(ret); /* Logic error */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400529 list_move(&split->list, &em_tree->modified_extents);
Chris Mason3b951512008-04-17 11:29:12 -0400530 free_extent_map(split);
531 split = split2;
532 split2 = NULL;
533 }
534 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
535 testend && em->start + em->len > start + len) {
536 u64 diff = start + len - em->start;
537
538 split->start = start + len;
539 split->len = em->start + em->len - (start + len);
540 split->bdev = em->bdev;
Zheng Yan5b21f2e2008-09-26 10:05:38 -0400541 split->flags = flags;
Li Zefan261507a02010-12-17 14:21:50 +0800542 split->compress_type = em->compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400543 split->generation = gen;
Chris Mason3b951512008-04-17 11:29:12 -0400544
Chris Masonc8b97812008-10-29 14:49:59 -0400545 if (compressed) {
546 split->block_len = em->block_len;
547 split->block_start = em->block_start;
Chris Mason445a6942008-11-10 11:53:33 -0500548 split->orig_start = em->orig_start;
Chris Masonc8b97812008-10-29 14:49:59 -0400549 } else {
550 split->block_len = split->len;
551 split->block_start = em->block_start + diff;
Chris Mason445a6942008-11-10 11:53:33 -0500552 split->orig_start = split->start;
Chris Masonc8b97812008-10-29 14:49:59 -0400553 }
Chris Mason3b951512008-04-17 11:29:12 -0400554
555 ret = add_extent_mapping(em_tree, split);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100556 BUG_ON(ret); /* Logic error */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400557 list_move(&split->list, &em_tree->modified_extents);
Chris Mason3b951512008-04-17 11:29:12 -0400558 free_extent_map(split);
559 split = NULL;
560 }
Chris Mason890871b2009-09-02 16:24:52 -0400561 write_unlock(&em_tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500562
Chris Masona52d9a82007-08-27 16:49:44 -0400563 /* once for us */
564 free_extent_map(em);
565 /* once for the tree*/
566 free_extent_map(em);
567 }
Chris Mason3b951512008-04-17 11:29:12 -0400568 if (split)
569 free_extent_map(split);
570 if (split2)
571 free_extent_map(split2);
Chris Masona52d9a82007-08-27 16:49:44 -0400572 return 0;
573}
574
Chris Mason39279cc2007-06-12 06:35:45 -0400575/*
576 * this is very complex, but the basic idea is to drop all extents
577 * in the range start - end. hint_block is filled in with a block number
578 * that would be a good hint to the block allocator for this file.
579 *
580 * If an extent intersects the range but is not entirely inside the range
581 * it is either truncated or split. Anything entirely inside the range
582 * is deleted from the tree.
583 */
Josef Bacik5dc562c2012-08-17 13:14:17 -0400584int __btrfs_drop_extents(struct btrfs_trans_handle *trans,
585 struct btrfs_root *root, struct inode *inode,
586 struct btrfs_path *path, u64 start, u64 end,
587 u64 *hint_byte, int drop_cache)
Chris Mason39279cc2007-06-12 06:35:45 -0400588{
Chris Mason00f5c792007-11-30 10:09:33 -0500589 struct extent_buffer *leaf;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000590 struct btrfs_file_extent_item *fi;
Chris Mason00f5c792007-11-30 10:09:33 -0500591 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000592 struct btrfs_key new_key;
Li Zefan33345d012011-04-20 10:31:50 +0800593 u64 ino = btrfs_ino(inode);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000594 u64 search_start = start;
595 u64 disk_bytenr = 0;
596 u64 num_bytes = 0;
597 u64 extent_offset = 0;
598 u64 extent_end = 0;
599 int del_nr = 0;
600 int del_slot = 0;
601 int extent_type;
Chris Masonccd467d2007-06-28 15:57:36 -0400602 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500603 int ret;
Chris Masondc7fdde2012-04-27 14:31:29 -0400604 int modify_tree = -1;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400605 int update_refs = (root->ref_cows || root == root->fs_info->tree_root);
Chris Mason39279cc2007-06-12 06:35:45 -0400606
Chris Masona1ed8352009-09-11 12:27:37 -0400607 if (drop_cache)
608 btrfs_drop_extent_cache(inode, start, end - 1, 0);
Chris Masona52d9a82007-08-27 16:49:44 -0400609
Chris Masondc7fdde2012-04-27 14:31:29 -0400610 if (start >= BTRFS_I(inode)->disk_i_size)
611 modify_tree = 0;
612
Chris Masond3977122009-01-05 21:25:51 -0500613 while (1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400614 recow = 0;
Li Zefan33345d012011-04-20 10:31:50 +0800615 ret = btrfs_lookup_file_extent(trans, root, path, ino,
Chris Masondc7fdde2012-04-27 14:31:29 -0400616 search_start, modify_tree);
Chris Mason39279cc2007-06-12 06:35:45 -0400617 if (ret < 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000618 break;
619 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
620 leaf = path->nodes[0];
621 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
Li Zefan33345d012011-04-20 10:31:50 +0800622 if (key.objectid == ino &&
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000623 key.type == BTRFS_EXTENT_DATA_KEY)
624 path->slots[0]--;
Chris Mason39279cc2007-06-12 06:35:45 -0400625 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400626 ret = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000627next_slot:
628 leaf = path->nodes[0];
629 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
630 BUG_ON(del_nr > 0);
631 ret = btrfs_next_leaf(root, path);
632 if (ret < 0)
633 break;
634 if (ret > 0) {
635 ret = 0;
636 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400637 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000638 leaf = path->nodes[0];
639 recow = 1;
640 }
641
642 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +0800643 if (key.objectid > ino ||
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000644 key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
645 break;
646
647 fi = btrfs_item_ptr(leaf, path->slots[0],
648 struct btrfs_file_extent_item);
649 extent_type = btrfs_file_extent_type(leaf, fi);
650
651 if (extent_type == BTRFS_FILE_EXTENT_REG ||
652 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
653 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
654 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
655 extent_offset = btrfs_file_extent_offset(leaf, fi);
656 extent_end = key.offset +
657 btrfs_file_extent_num_bytes(leaf, fi);
658 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
659 extent_end = key.offset +
660 btrfs_file_extent_inline_len(leaf, fi);
Chris Mason8c2383c2007-06-18 09:57:58 -0400661 } else {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000662 WARN_ON(1);
Chris Mason8c2383c2007-06-18 09:57:58 -0400663 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400664 }
665
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000666 if (extent_end <= search_start) {
667 path->slots[0]++;
Chris Mason8c2383c2007-06-18 09:57:58 -0400668 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400669 }
670
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000671 search_start = max(key.offset, start);
Chris Masondc7fdde2012-04-27 14:31:29 -0400672 if (recow || !modify_tree) {
673 modify_tree = -1;
David Sterbab3b4aa72011-04-21 01:20:15 +0200674 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000675 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400676 }
Chris Mason771ed682008-11-06 22:02:51 -0500677
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000678 /*
679 * | - range to drop - |
680 * | -------- extent -------- |
681 */
682 if (start > key.offset && end < extent_end) {
683 BUG_ON(del_nr > 0);
684 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
685
686 memcpy(&new_key, &key, sizeof(new_key));
687 new_key.offset = start;
688 ret = btrfs_duplicate_item(trans, root, path,
689 &new_key);
690 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200691 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000692 continue;
693 }
694 if (ret < 0)
695 break;
Chris Mason8c2383c2007-06-18 09:57:58 -0400696
Chris Mason5f39d392007-10-15 16:14:19 -0400697 leaf = path->nodes[0];
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000698 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
699 struct btrfs_file_extent_item);
700 btrfs_set_file_extent_num_bytes(leaf, fi,
701 start - key.offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400702
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000703 fi = btrfs_item_ptr(leaf, path->slots[0],
704 struct btrfs_file_extent_item);
Chris Masonc8b97812008-10-29 14:49:59 -0400705
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000706 extent_offset += start - key.offset;
707 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
708 btrfs_set_file_extent_num_bytes(leaf, fi,
709 extent_end - start);
710 btrfs_mark_buffer_dirty(leaf);
Chris Masondb945352007-10-15 16:15:53 -0400711
Josef Bacik5dc562c2012-08-17 13:14:17 -0400712 if (update_refs && disk_bytenr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000713 ret = btrfs_inc_extent_ref(trans, root,
714 disk_bytenr, num_bytes, 0,
715 root->root_key.objectid,
716 new_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200717 start - extent_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100718 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000719 *hint_byte = disk_bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -0400720 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000721 key.offset = start;
722 }
723 /*
724 * | ---- range to drop ----- |
725 * | -------- extent -------- |
726 */
727 if (start <= key.offset && end < extent_end) {
728 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
729
730 memcpy(&new_key, &key, sizeof(new_key));
731 new_key.offset = end;
732 btrfs_set_item_key_safe(trans, root, path, &new_key);
733
734 extent_offset += end - key.offset;
735 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
736 btrfs_set_file_extent_num_bytes(leaf, fi,
737 extent_end - end);
738 btrfs_mark_buffer_dirty(leaf);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400739 if (update_refs && disk_bytenr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000740 inode_sub_bytes(inode, end - key.offset);
741 *hint_byte = disk_bytenr;
742 }
743 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400744 }
745
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000746 search_start = extent_end;
747 /*
748 * | ---- range to drop ----- |
749 * | -------- extent -------- |
750 */
751 if (start > key.offset && end >= extent_end) {
752 BUG_ON(del_nr > 0);
753 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
754
755 btrfs_set_file_extent_num_bytes(leaf, fi,
756 start - key.offset);
757 btrfs_mark_buffer_dirty(leaf);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400758 if (update_refs && disk_bytenr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000759 inode_sub_bytes(inode, extent_end - start);
760 *hint_byte = disk_bytenr;
761 }
762 if (end == extent_end)
763 break;
764
765 path->slots[0]++;
766 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400767 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000768
769 /*
770 * | ---- range to drop ----- |
771 * | ------ extent ------ |
772 */
773 if (start <= key.offset && end >= extent_end) {
774 if (del_nr == 0) {
775 del_slot = path->slots[0];
776 del_nr = 1;
777 } else {
778 BUG_ON(del_slot + del_nr != path->slots[0]);
779 del_nr++;
780 }
781
Josef Bacik5dc562c2012-08-17 13:14:17 -0400782 if (update_refs &&
783 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000784 inode_sub_bytes(inode,
785 extent_end - key.offset);
786 extent_end = ALIGN(extent_end,
787 root->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400788 } else if (update_refs && disk_bytenr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000789 ret = btrfs_free_extent(trans, root,
790 disk_bytenr, num_bytes, 0,
791 root->root_key.objectid,
792 key.objectid, key.offset -
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200793 extent_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100794 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000795 inode_sub_bytes(inode,
796 extent_end - key.offset);
797 *hint_byte = disk_bytenr;
798 }
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 Bacik5dc562c2012-08-17 13:14:17 -0400831 btrfs_release_path(path);
832 return ret;
833}
834
835int btrfs_drop_extents(struct btrfs_trans_handle *trans,
836 struct btrfs_root *root, struct inode *inode, u64 start,
837 u64 end, u64 *hint_byte, int drop_cache)
838{
839 struct btrfs_path *path;
840 int ret;
841
842 path = btrfs_alloc_path();
843 if (!path)
844 return -ENOMEM;
845 ret = __btrfs_drop_extents(trans, root, inode, path, start, end,
846 hint_byte, drop_cache);
Chris Mason39279cc2007-06-12 06:35:45 -0400847 btrfs_free_path(path);
848 return ret;
849}
850
Yan Zhengd899e052008-10-30 14:25:28 -0400851static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000852 u64 objectid, u64 bytenr, u64 orig_offset,
853 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -0400854{
855 struct btrfs_file_extent_item *fi;
856 struct btrfs_key key;
857 u64 extent_end;
858
859 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
860 return 0;
861
862 btrfs_item_key_to_cpu(leaf, &key, slot);
863 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
864 return 0;
865
866 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
867 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
868 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000869 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -0400870 btrfs_file_extent_compression(leaf, fi) ||
871 btrfs_file_extent_encryption(leaf, fi) ||
872 btrfs_file_extent_other_encoding(leaf, fi))
873 return 0;
874
875 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
876 if ((*start && *start != key.offset) || (*end && *end != extent_end))
877 return 0;
878
879 *start = key.offset;
880 *end = extent_end;
881 return 1;
882}
883
884/*
885 * Mark extent in the range start - end as written.
886 *
887 * This changes extent type from 'pre-allocated' to 'regular'. If only
888 * part of extent is marked as written, the extent will be split into
889 * two or three.
890 */
891int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Yan Zhengd899e052008-10-30 14:25:28 -0400892 struct inode *inode, u64 start, u64 end)
893{
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000894 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zhengd899e052008-10-30 14:25:28 -0400895 struct extent_buffer *leaf;
896 struct btrfs_path *path;
897 struct btrfs_file_extent_item *fi;
898 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000899 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -0400900 u64 bytenr;
901 u64 num_bytes;
902 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400903 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -0400904 u64 other_start;
905 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000906 u64 split;
907 int del_nr = 0;
908 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000909 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -0400910 int ret;
Li Zefan33345d012011-04-20 10:31:50 +0800911 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -0400912
Yan Zhengd899e052008-10-30 14:25:28 -0400913 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700914 if (!path)
915 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -0400916again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000917 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000918 split = start;
Li Zefan33345d012011-04-20 10:31:50 +0800919 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -0400920 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000921 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -0400922
923 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -0400924 if (ret < 0)
925 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -0400926 if (ret > 0 && path->slots[0] > 0)
927 path->slots[0]--;
928
929 leaf = path->nodes[0];
930 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +0800931 BUG_ON(key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY);
Yan Zhengd899e052008-10-30 14:25:28 -0400932 fi = btrfs_item_ptr(leaf, path->slots[0],
933 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000934 BUG_ON(btrfs_file_extent_type(leaf, fi) !=
935 BTRFS_FILE_EXTENT_PREALLOC);
Yan Zhengd899e052008-10-30 14:25:28 -0400936 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
937 BUG_ON(key.offset > start || extent_end < end);
938
939 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
940 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400941 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000942 memcpy(&new_key, &key, sizeof(new_key));
943
944 if (start == key.offset && end < extent_end) {
945 other_start = 0;
946 other_end = start;
947 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +0800948 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000949 &other_start, &other_end)) {
950 new_key.offset = end;
951 btrfs_set_item_key_safe(trans, root, path, &new_key);
952 fi = btrfs_item_ptr(leaf, path->slots[0],
953 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -0400954 btrfs_set_file_extent_generation(leaf, fi,
955 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000956 btrfs_set_file_extent_num_bytes(leaf, fi,
957 extent_end - end);
958 btrfs_set_file_extent_offset(leaf, fi,
959 end - orig_offset);
960 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
961 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -0400962 btrfs_set_file_extent_generation(leaf, fi,
963 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000964 btrfs_set_file_extent_num_bytes(leaf, fi,
965 end - other_start);
966 btrfs_mark_buffer_dirty(leaf);
967 goto out;
968 }
969 }
970
971 if (start > key.offset && end == extent_end) {
972 other_start = end;
973 other_end = 0;
974 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +0800975 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000976 &other_start, &other_end)) {
977 fi = btrfs_item_ptr(leaf, path->slots[0],
978 struct btrfs_file_extent_item);
979 btrfs_set_file_extent_num_bytes(leaf, fi,
980 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -0400981 btrfs_set_file_extent_generation(leaf, fi,
982 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000983 path->slots[0]++;
984 new_key.offset = start;
985 btrfs_set_item_key_safe(trans, root, path, &new_key);
986
987 fi = btrfs_item_ptr(leaf, path->slots[0],
988 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -0400989 btrfs_set_file_extent_generation(leaf, fi,
990 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000991 btrfs_set_file_extent_num_bytes(leaf, fi,
992 other_end - start);
993 btrfs_set_file_extent_offset(leaf, fi,
994 start - orig_offset);
995 btrfs_mark_buffer_dirty(leaf);
996 goto out;
997 }
998 }
Yan Zhengd899e052008-10-30 14:25:28 -0400999
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001000 while (start > key.offset || end < extent_end) {
1001 if (key.offset == start)
1002 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001003
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001004 new_key.offset = split;
1005 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1006 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001007 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001008 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001009 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001010 if (ret < 0) {
1011 btrfs_abort_transaction(trans, root, ret);
1012 goto out;
1013 }
Yan Zhengd899e052008-10-30 14:25:28 -04001014
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001015 leaf = path->nodes[0];
1016 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001017 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001018 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001019 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001020 split - key.offset);
1021
1022 fi = btrfs_item_ptr(leaf, path->slots[0],
1023 struct btrfs_file_extent_item);
1024
Josef Bacik224ecce2012-08-16 16:32:06 -04001025 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001026 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1027 btrfs_set_file_extent_num_bytes(leaf, fi,
1028 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001029 btrfs_mark_buffer_dirty(leaf);
1030
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001031 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
1032 root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001033 ino, orig_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001034 BUG_ON(ret); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001035
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001036 if (split == start) {
1037 key.offset = start;
1038 } else {
1039 BUG_ON(start != key.offset);
Yan Zhengd899e052008-10-30 14:25:28 -04001040 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001041 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001042 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001043 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001044 }
1045
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001046 other_start = end;
1047 other_end = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001048 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001049 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001050 &other_start, &other_end)) {
1051 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001052 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001053 goto again;
1054 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001055 extent_end = other_end;
1056 del_slot = path->slots[0] + 1;
1057 del_nr++;
1058 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1059 0, root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001060 ino, orig_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001061 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001062 }
1063 other_start = 0;
1064 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001065 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001066 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001067 &other_start, &other_end)) {
1068 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001069 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001070 goto again;
1071 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001072 key.offset = other_start;
1073 del_slot = path->slots[0];
1074 del_nr++;
1075 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1076 0, root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001077 ino, orig_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001078 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001079 }
1080 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001081 fi = btrfs_item_ptr(leaf, path->slots[0],
1082 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001083 btrfs_set_file_extent_type(leaf, fi,
1084 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001085 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001086 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001087 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001088 fi = btrfs_item_ptr(leaf, del_slot - 1,
1089 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001090 btrfs_set_file_extent_type(leaf, fi,
1091 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001092 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001093 btrfs_set_file_extent_num_bytes(leaf, fi,
1094 extent_end - key.offset);
1095 btrfs_mark_buffer_dirty(leaf);
1096
1097 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001098 if (ret < 0) {
1099 btrfs_abort_transaction(trans, root, ret);
1100 goto out;
1101 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001102 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001103out:
Yan Zhengd899e052008-10-30 14:25:28 -04001104 btrfs_free_path(path);
1105 return 0;
1106}
1107
Chris Mason39279cc2007-06-12 06:35:45 -04001108/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001109 * on error we return an unlocked page and the error value
1110 * on success we return a locked page and 0
1111 */
Josef Bacikb63164292011-09-30 15:23:54 -04001112static int prepare_uptodate_page(struct page *page, u64 pos,
1113 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001114{
1115 int ret = 0;
1116
Josef Bacikb63164292011-09-30 15:23:54 -04001117 if (((pos & (PAGE_CACHE_SIZE - 1)) || force_uptodate) &&
1118 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001119 ret = btrfs_readpage(NULL, page);
1120 if (ret)
1121 return ret;
1122 lock_page(page);
1123 if (!PageUptodate(page)) {
1124 unlock_page(page);
1125 return -EIO;
1126 }
1127 }
1128 return 0;
1129}
1130
1131/*
Chris Masond352ac62008-09-29 15:18:18 -04001132 * this gets pages into the page cache and locks them down, it also properly
1133 * waits for data=ordered extents to finish before allowing the pages to be
1134 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -04001135 */
Chris Masond3977122009-01-05 21:25:51 -05001136static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -05001137 struct page **pages, size_t num_pages,
1138 loff_t pos, unsigned long first_index,
Josef Bacikb63164292011-09-30 15:23:54 -04001139 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001140{
Josef Bacik2ac55d42010-02-03 19:33:23 +00001141 struct extent_state *cached_state = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001142 int i;
1143 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -05001144 struct inode *inode = fdentry(file)->d_inode;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001145 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason39279cc2007-06-12 06:35:45 -04001146 int err = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001147 int faili = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -04001148 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001149 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -04001150
Chris Mason5f39d392007-10-15 16:14:19 -04001151 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001152 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -04001153
Chris Masone6dcd2d2008-07-17 12:53:50 -04001154again:
Chris Mason39279cc2007-06-12 06:35:45 -04001155 for (i = 0; i < num_pages; i++) {
Josef Bacika94733d2011-07-11 10:47:06 -04001156 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001157 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001158 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001159 faili = i - 1;
1160 err = -ENOMEM;
1161 goto fail;
1162 }
1163
1164 if (i == 0)
Josef Bacikb63164292011-09-30 15:23:54 -04001165 err = prepare_uptodate_page(pages[i], pos,
1166 force_uptodate);
Chris Masonb1bf8622011-02-28 09:52:08 -05001167 if (i == num_pages - 1)
1168 err = prepare_uptodate_page(pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001169 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001170 if (err) {
1171 page_cache_release(pages[i]);
1172 faili = i - 1;
1173 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001174 }
Chris Masonccd467d2007-06-28 15:57:36 -04001175 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001176 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001177 err = 0;
Chris Mason07627042008-02-19 11:29:24 -05001178 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04001179 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001180 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001181 start_pos, last_pos - 1, 0, &cached_state);
Chris Masond3977122009-01-05 21:25:51 -05001182 ordered = btrfs_lookup_first_ordered_extent(inode,
1183 last_pos - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001184 if (ordered &&
1185 ordered->file_offset + ordered->len > start_pos &&
1186 ordered->file_offset < last_pos) {
1187 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00001188 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1189 start_pos, last_pos - 1,
1190 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001191 for (i = 0; i < num_pages; i++) {
1192 unlock_page(pages[i]);
1193 page_cache_release(pages[i]);
1194 }
1195 btrfs_wait_ordered_range(inode, start_pos,
1196 last_pos - start_pos);
1197 goto again;
1198 }
1199 if (ordered)
1200 btrfs_put_ordered_extent(ordered);
1201
Josef Bacik2ac55d42010-02-03 19:33:23 +00001202 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos,
Josef Bacik32c00af2009-10-08 13:34:05 -04001203 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00001204 EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
Chris Mason07627042008-02-19 11:29:24 -05001205 GFP_NOFS);
Josef Bacik2ac55d42010-02-03 19:33:23 +00001206 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1207 start_pos, last_pos - 1, &cached_state,
1208 GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -05001209 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001210 for (i = 0; i < num_pages; i++) {
Wu Fengguang32c7f202011-08-08 15:19:47 -06001211 if (clear_page_dirty_for_io(pages[i]))
1212 account_page_redirty(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001213 set_page_extent_mapped(pages[i]);
1214 WARN_ON(!PageLocked(pages[i]));
1215 }
Chris Mason39279cc2007-06-12 06:35:45 -04001216 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001217fail:
1218 while (faili >= 0) {
1219 unlock_page(pages[faili]);
1220 page_cache_release(pages[faili]);
1221 faili--;
1222 }
1223 return err;
1224
Chris Mason39279cc2007-06-12 06:35:45 -04001225}
1226
Josef Bacikd0215f32011-01-25 14:57:24 -05001227static noinline ssize_t __btrfs_buffered_write(struct file *file,
1228 struct iov_iter *i,
1229 loff_t pos)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001230{
Josef Bacik11c65dc2010-05-23 11:07:21 -04001231 struct inode *inode = fdentry(file)->d_inode;
1232 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001233 struct page **pages = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001234 unsigned long first_index;
Josef Bacikd0215f32011-01-25 14:57:24 -05001235 size_t num_written = 0;
1236 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001237 int ret = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001238 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001239
Josef Bacikd0215f32011-01-25 14:57:24 -05001240 nrptrs = min((iov_iter_count(i) + PAGE_CACHE_SIZE - 1) /
Josef Bacik11c65dc2010-05-23 11:07:21 -04001241 PAGE_CACHE_SIZE, PAGE_CACHE_SIZE /
1242 (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001243 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1244 nrptrs = max(nrptrs, 8);
Chris Mason8c2383c2007-06-18 09:57:58 -04001245 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001246 if (!pages)
1247 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001248
Chris Mason39279cc2007-06-12 06:35:45 -04001249 first_index = pos >> PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -04001250
Josef Bacikd0215f32011-01-25 14:57:24 -05001251 while (iov_iter_count(i) > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -04001252 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Josef Bacikd0215f32011-01-25 14:57:24 -05001253 size_t write_bytes = min(iov_iter_count(i),
Josef Bacik11c65dc2010-05-23 11:07:21 -04001254 nrptrs * (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001255 offset);
Yan, Zheng3a909832011-01-18 13:34:40 +08001256 size_t num_pages = (write_bytes + offset +
1257 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001258 size_t dirty_pages;
1259 size_t copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001260
Chris Mason8c2383c2007-06-18 09:57:58 -04001261 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001262
Xin Zhong914ee292010-12-09 09:30:14 +00001263 /*
1264 * Fault pages before locking them in prepare_pages
1265 * to avoid recursive lock
1266 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001267 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001268 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001269 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001270 }
1271
1272 ret = btrfs_delalloc_reserve_space(inode,
1273 num_pages << PAGE_CACHE_SHIFT);
Chris Mason1832a6d2007-12-21 16:27:21 -05001274 if (ret)
Josef Bacikd0215f32011-01-25 14:57:24 -05001275 break;
Chris Mason1832a6d2007-12-21 16:27:21 -05001276
Josef Bacik4a640012011-01-25 15:10:08 -05001277 /*
1278 * This is going to setup the pages array with the number of
1279 * pages we want, so we don't really need to worry about the
1280 * contents of pages from loop to loop
1281 */
Chris Mason39279cc2007-06-12 06:35:45 -04001282 ret = prepare_pages(root, file, pages, num_pages,
Josef Bacikb63164292011-09-30 15:23:54 -04001283 pos, first_index, write_bytes,
1284 force_page_uptodate);
Josef Bacik6a632092009-02-20 11:00:09 -05001285 if (ret) {
Xin Zhong914ee292010-12-09 09:30:14 +00001286 btrfs_delalloc_release_space(inode,
1287 num_pages << PAGE_CACHE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001288 break;
Josef Bacik6a632092009-02-20 11:00:09 -05001289 }
Chris Mason39279cc2007-06-12 06:35:45 -04001290
Xin Zhong914ee292010-12-09 09:30:14 +00001291 copied = btrfs_copy_from_user(pos, num_pages,
Josef Bacikd0215f32011-01-25 14:57:24 -05001292 write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001293
1294 /*
1295 * if we have trouble faulting in the pages, fall
1296 * back to one page at a time
1297 */
1298 if (copied < write_bytes)
1299 nrptrs = 1;
1300
Josef Bacikb63164292011-09-30 15:23:54 -04001301 if (copied == 0) {
1302 force_page_uptodate = true;
Chris Masonb1bf8622011-02-28 09:52:08 -05001303 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001304 } else {
1305 force_page_uptodate = false;
Chris Masonb1bf8622011-02-28 09:52:08 -05001306 dirty_pages = (copied + offset +
1307 PAGE_CACHE_SIZE - 1) >>
1308 PAGE_CACHE_SHIFT;
Josef Bacikb63164292011-09-30 15:23:54 -04001309 }
Xin Zhong914ee292010-12-09 09:30:14 +00001310
Josef Bacikd0215f32011-01-25 14:57:24 -05001311 /*
1312 * If we had a short copy we need to release the excess delaloc
1313 * bytes we reserved. We need to increment outstanding_extents
1314 * because btrfs_delalloc_release_space will decrement it, but
1315 * we still have an outstanding extent for the chunk we actually
1316 * managed to copy.
1317 */
Xin Zhong914ee292010-12-09 09:30:14 +00001318 if (num_pages > dirty_pages) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001319 if (copied > 0) {
1320 spin_lock(&BTRFS_I(inode)->lock);
1321 BTRFS_I(inode)->outstanding_extents++;
1322 spin_unlock(&BTRFS_I(inode)->lock);
1323 }
Xin Zhong914ee292010-12-09 09:30:14 +00001324 btrfs_delalloc_release_space(inode,
1325 (num_pages - dirty_pages) <<
1326 PAGE_CACHE_SHIFT);
1327 }
1328
1329 if (copied > 0) {
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001330 ret = btrfs_dirty_pages(root, inode, pages,
1331 dirty_pages, pos, copied,
1332 NULL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001333 if (ret) {
1334 btrfs_delalloc_release_space(inode,
1335 dirty_pages << PAGE_CACHE_SHIFT);
1336 btrfs_drop_pages(pages, num_pages);
1337 break;
1338 }
Chris Mason54aa1f42007-06-22 14:16:25 -04001339 }
Chris Mason39279cc2007-06-12 06:35:45 -04001340
Chris Mason39279cc2007-06-12 06:35:45 -04001341 btrfs_drop_pages(pages, num_pages);
Xin Zhong914ee292010-12-09 09:30:14 +00001342
Josef Bacikd0215f32011-01-25 14:57:24 -05001343 cond_resched();
1344
1345 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1346 dirty_pages);
1347 if (dirty_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1348 btrfs_btree_balance_dirty(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04001349
Xin Zhong914ee292010-12-09 09:30:14 +00001350 pos += copied;
1351 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001352 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001353
Chris Mason8c2383c2007-06-18 09:57:58 -04001354 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001355
1356 return num_written ? num_written : ret;
1357}
1358
1359static ssize_t __btrfs_direct_write(struct kiocb *iocb,
1360 const struct iovec *iov,
1361 unsigned long nr_segs, loff_t pos,
1362 loff_t *ppos, size_t count, size_t ocount)
1363{
1364 struct file *file = iocb->ki_filp;
Josef Bacikd0215f32011-01-25 14:57:24 -05001365 struct iov_iter i;
1366 ssize_t written;
1367 ssize_t written_buffered;
1368 loff_t endbyte;
1369 int err;
1370
1371 written = generic_file_direct_write(iocb, iov, &nr_segs, pos, ppos,
1372 count, ocount);
1373
Josef Bacikd0215f32011-01-25 14:57:24 -05001374 if (written < 0 || written == count)
1375 return written;
1376
1377 pos += written;
1378 count -= written;
1379 iov_iter_init(&i, iov, nr_segs, count, written);
1380 written_buffered = __btrfs_buffered_write(file, &i, pos);
1381 if (written_buffered < 0) {
1382 err = written_buffered;
1383 goto out;
1384 }
1385 endbyte = pos + written_buffered - 1;
1386 err = filemap_write_and_wait_range(file->f_mapping, pos, endbyte);
1387 if (err)
1388 goto out;
1389 written += written_buffered;
1390 *ppos = pos + written_buffered;
1391 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_CACHE_SHIFT,
1392 endbyte >> PAGE_CACHE_SHIFT);
1393out:
1394 return written ? written : err;
1395}
1396
1397static ssize_t btrfs_file_aio_write(struct kiocb *iocb,
1398 const struct iovec *iov,
1399 unsigned long nr_segs, loff_t pos)
1400{
1401 struct file *file = iocb->ki_filp;
1402 struct inode *inode = fdentry(file)->d_inode;
1403 struct btrfs_root *root = BTRFS_I(inode)->root;
1404 loff_t *ppos = &iocb->ki_pos;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001405 u64 start_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001406 ssize_t num_written = 0;
1407 ssize_t err = 0;
1408 size_t count, ocount;
1409
Jan Karab2b5ef52012-06-12 16:20:45 +02001410 sb_start_write(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001411
1412 mutex_lock(&inode->i_mutex);
1413
1414 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
1415 if (err) {
1416 mutex_unlock(&inode->i_mutex);
1417 goto out;
1418 }
1419 count = ocount;
1420
1421 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1422 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1423 if (err) {
1424 mutex_unlock(&inode->i_mutex);
1425 goto out;
1426 }
1427
1428 if (count == 0) {
1429 mutex_unlock(&inode->i_mutex);
1430 goto out;
1431 }
1432
1433 err = file_remove_suid(file);
1434 if (err) {
1435 mutex_unlock(&inode->i_mutex);
1436 goto out;
1437 }
1438
1439 /*
1440 * If BTRFS flips readonly due to some impossible error
1441 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1442 * although we have opened a file as writable, we have
1443 * to stop this write operation to ensure FS consistency.
1444 */
1445 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
1446 mutex_unlock(&inode->i_mutex);
1447 err = -EROFS;
1448 goto out;
1449 }
1450
Josef Bacike41f9412012-03-26 09:46:47 -04001451 err = file_update_time(file);
Josef Bacik22c44fe2011-11-30 10:45:38 -05001452 if (err) {
1453 mutex_unlock(&inode->i_mutex);
1454 goto out;
1455 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001456
Miao Xie0c1a98c2011-09-11 10:52:24 -04001457 start_pos = round_down(pos, root->sectorsize);
1458 if (start_pos > i_size_read(inode)) {
1459 err = btrfs_cont_expand(inode, i_size_read(inode), start_pos);
1460 if (err) {
1461 mutex_unlock(&inode->i_mutex);
1462 goto out;
1463 }
1464 }
1465
Josef Bacikd0215f32011-01-25 14:57:24 -05001466 if (unlikely(file->f_flags & O_DIRECT)) {
1467 num_written = __btrfs_direct_write(iocb, iov, nr_segs,
1468 pos, ppos, count, ocount);
1469 } else {
1470 struct iov_iter i;
1471
1472 iov_iter_init(&i, iov, nr_segs, count, num_written);
1473
1474 num_written = __btrfs_buffered_write(file, &i, pos);
1475 if (num_written > 0)
1476 *ppos = pos + num_written;
1477 }
1478
1479 mutex_unlock(&inode->i_mutex);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001480
Chris Mason5a3f23d2009-03-31 13:27:11 -04001481 /*
1482 * we want to make sure fsync finds this change
1483 * but we haven't joined a transaction running right now.
1484 *
1485 * Later on, someone is sure to update the inode and get the
1486 * real transid recorded.
1487 *
1488 * We set last_trans now to the fs_info generation + 1,
1489 * this will either be one more than the running transaction
1490 * or the generation used for the next transaction if there isn't
1491 * one running right now.
1492 */
1493 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
Josef Bacikd0215f32011-01-25 14:57:24 -05001494 if (num_written > 0 || num_written == -EIOCBQUEUED) {
1495 err = generic_write_sync(file, pos, num_written);
1496 if (err < 0 && num_written > 0)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001497 num_written = err;
1498 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001499out:
Jan Karab2b5ef52012-06-12 16:20:45 +02001500 sb_end_write(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04001501 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001502 return num_written ? num_written : err;
1503}
1504
Chris Masond3977122009-01-05 21:25:51 -05001505int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001506{
Chris Mason5a3f23d2009-03-31 13:27:11 -04001507 /*
1508 * ordered_data_close is set by settattr when we are about to truncate
1509 * a file from a non-zero size to a zero size. This tries to
1510 * flush down new bytes that may have been written if the
1511 * application were using truncate to replace a file in place.
1512 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04001513 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
1514 &BTRFS_I(inode)->runtime_flags)) {
Chris Mason5a3f23d2009-03-31 13:27:11 -04001515 btrfs_add_ordered_operation(NULL, BTRFS_I(inode)->root, inode);
1516 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1517 filemap_flush(inode->i_mapping);
1518 }
Sage Weil6bf13c02008-06-10 10:07:39 -04001519 if (filp->private_data)
1520 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001521 return 0;
1522}
1523
Chris Masond352ac62008-09-29 15:18:18 -04001524/*
1525 * fsync call for both files and directories. This logs the inode into
1526 * the tree log instead of forcing full commits whenever possible.
1527 *
1528 * It needs to call filemap_fdatawait so that all ordered extent updates are
1529 * in the metadata btree are up to date for copying to the log.
1530 *
1531 * It drops the inode mutex before doing the tree log commit. This is an
1532 * important optimization for directories because holding the mutex prevents
1533 * new operations on the dir while we write to disk.
1534 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001535int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001536{
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001537 struct dentry *dentry = file->f_path.dentry;
Chris Mason39279cc2007-06-12 06:35:45 -04001538 struct inode *inode = dentry->d_inode;
1539 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001540 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001541 struct btrfs_trans_handle *trans;
1542
liubo1abe9b82011-03-24 11:18:59 +00001543 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04001544
Josef Bacik02c24a82011-07-16 20:44:56 -04001545 mutex_lock(&inode->i_mutex);
1546
Josef Bacik0885ef52012-04-23 15:09:39 -04001547 /*
1548 * we wait first, since the writeback may change the inode, also wait
1549 * ordered range does a filemape_write_and_wait_range which is why we
1550 * don't do it above like other file systems.
1551 */
Chris Mason257c62e2009-10-13 13:21:08 -04001552 root->log_batch++;
Josef Bacik0885ef52012-04-23 15:09:39 -04001553 btrfs_wait_ordered_range(inode, start, end);
Chris Mason257c62e2009-10-13 13:21:08 -04001554 root->log_batch++;
1555
Chris Mason39279cc2007-06-12 06:35:45 -04001556 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001557 * check the transaction that last modified this inode
1558 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001559 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001560 if (!BTRFS_I(inode)->last_trans) {
1561 mutex_unlock(&inode->i_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001562 goto out;
Josef Bacik02c24a82011-07-16 20:44:56 -04001563 }
Chris Masona2135012008-06-25 16:01:30 -04001564
Chris Mason257c62e2009-10-13 13:21:08 -04001565 /*
1566 * if the last transaction that changed this file was before
1567 * the current transaction, we can bail out now without any
1568 * syncing
1569 */
Josef Bacika4abeea2011-04-11 17:25:13 -04001570 smp_mb();
Josef Bacik22ee6982012-05-29 16:57:49 -04001571 if (btrfs_inode_in_log(inode, root->fs_info->generation) ||
1572 BTRFS_I(inode)->last_trans <=
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001573 root->fs_info->last_trans_committed) {
1574 BTRFS_I(inode)->last_trans = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001575
1576 /*
1577 * We'v had everything committed since the last time we were
1578 * modified so clear this flag in case it was set for whatever
1579 * reason, it's no longer relevant.
1580 */
1581 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
1582 &BTRFS_I(inode)->runtime_flags);
Josef Bacik02c24a82011-07-16 20:44:56 -04001583 mutex_unlock(&inode->i_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001584 goto out;
1585 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001586
1587 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001588 * ok we haven't committed the transaction yet, lets do a commit
1589 */
Dan Carpenter6f902af2010-05-29 09:49:07 +00001590 if (file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04001591 btrfs_ioctl_trans_end(file);
1592
Yan, Zhenga22285a2010-05-16 10:48:46 -04001593 trans = btrfs_start_transaction(root, 0);
1594 if (IS_ERR(trans)) {
1595 ret = PTR_ERR(trans);
Josef Bacik02c24a82011-07-16 20:44:56 -04001596 mutex_unlock(&inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001597 goto out;
1598 }
Chris Masone02119d2008-09-05 16:13:11 -04001599
Chris Mason2cfbd502009-02-20 10:55:10 -05001600 ret = btrfs_log_dentry_safe(trans, root, dentry);
Josef Bacik02c24a82011-07-16 20:44:56 -04001601 if (ret < 0) {
1602 mutex_unlock(&inode->i_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001603 goto out;
Josef Bacik02c24a82011-07-16 20:44:56 -04001604 }
Chris Mason49eb7e42008-09-11 15:53:12 -04001605
1606 /* we've logged all the items and now have a consistent
1607 * version of the file in the log. It is possible that
1608 * someone will come in and modify the file, but that's
1609 * fine because the log is consistent on disk, and we
1610 * have references to all of the file's extents
1611 *
1612 * It is possible that someone will come in and log the
1613 * file again, but that will end up using the synchronization
1614 * inside btrfs_sync_log to keep things safe.
1615 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001616 mutex_unlock(&inode->i_mutex);
Chris Mason49eb7e42008-09-11 15:53:12 -04001617
Chris Mason257c62e2009-10-13 13:21:08 -04001618 if (ret != BTRFS_NO_LOG_SYNC) {
1619 if (ret > 0) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001620 ret = btrfs_commit_transaction(trans, root);
Chris Mason257c62e2009-10-13 13:21:08 -04001621 } else {
1622 ret = btrfs_sync_log(trans, root);
1623 if (ret == 0)
1624 ret = btrfs_end_transaction(trans, root);
1625 else
1626 ret = btrfs_commit_transaction(trans, root);
1627 }
1628 } else {
1629 ret = btrfs_end_transaction(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04001630 }
Chris Mason39279cc2007-06-12 06:35:45 -04001631out:
Roel Kluin014e4ac2010-01-29 10:42:11 +00001632 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04001633}
1634
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001635static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001636 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001637 .page_mkwrite = btrfs_page_mkwrite,
1638};
1639
1640static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1641{
Miao Xie058a4572010-05-20 07:21:50 +00001642 struct address_space *mapping = filp->f_mapping;
1643
1644 if (!mapping->a_ops->readpage)
1645 return -ENOEXEC;
1646
Chris Mason9ebefb182007-06-15 13:50:00 -04001647 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00001648 vma->vm_ops = &btrfs_file_vm_ops;
1649 vma->vm_flags |= VM_CAN_NONLINEAR;
1650
Chris Mason9ebefb182007-06-15 13:50:00 -04001651 return 0;
1652}
1653
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001654static long btrfs_fallocate(struct file *file, int mode,
1655 loff_t offset, loff_t len)
1656{
1657 struct inode *inode = file->f_path.dentry->d_inode;
1658 struct extent_state *cached_state = NULL;
1659 u64 cur_offset;
1660 u64 last_byte;
1661 u64 alloc_start;
1662 u64 alloc_end;
1663 u64 alloc_hint = 0;
1664 u64 locked_end;
1665 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
1666 struct extent_map *em;
1667 int ret;
1668
1669 alloc_start = offset & ~mask;
1670 alloc_end = (offset + len + mask) & ~mask;
1671
1672 /* We only support the FALLOC_FL_KEEP_SIZE mode */
1673 if (mode & ~FALLOC_FL_KEEP_SIZE)
1674 return -EOPNOTSUPP;
1675
1676 /*
Chris Masond98456f2012-01-31 20:27:41 -05001677 * Make sure we have enough space before we do the
1678 * allocation.
1679 */
1680 ret = btrfs_check_data_free_space(inode, len);
1681 if (ret)
1682 return ret;
1683
1684 /*
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001685 * wait for ordered IO before we have any locks. We'll loop again
1686 * below with the locks held.
1687 */
1688 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
1689
1690 mutex_lock(&inode->i_mutex);
1691 ret = inode_newsize_ok(inode, alloc_end);
1692 if (ret)
1693 goto out;
1694
1695 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05001696 ret = btrfs_cont_expand(inode, i_size_read(inode),
1697 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001698 if (ret)
1699 goto out;
1700 }
1701
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001702 locked_end = alloc_end - 1;
1703 while (1) {
1704 struct btrfs_ordered_extent *ordered;
1705
1706 /* the extent lock is ordered inside the running
1707 * transaction
1708 */
1709 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001710 locked_end, 0, &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001711 ordered = btrfs_lookup_first_ordered_extent(inode,
1712 alloc_end - 1);
1713 if (ordered &&
1714 ordered->file_offset + ordered->len > alloc_start &&
1715 ordered->file_offset < alloc_end) {
1716 btrfs_put_ordered_extent(ordered);
1717 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1718 alloc_start, locked_end,
1719 &cached_state, GFP_NOFS);
1720 /*
1721 * we can't wait on the range with the transaction
1722 * running or with the extent lock held
1723 */
1724 btrfs_wait_ordered_range(inode, alloc_start,
1725 alloc_end - alloc_start);
1726 } else {
1727 if (ordered)
1728 btrfs_put_ordered_extent(ordered);
1729 break;
1730 }
1731 }
1732
1733 cur_offset = alloc_start;
1734 while (1) {
Josef Bacikf1e490a2011-08-18 10:36:39 -04001735 u64 actual_end;
1736
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001737 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
1738 alloc_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001739 if (IS_ERR_OR_NULL(em)) {
1740 if (!em)
1741 ret = -ENOMEM;
1742 else
1743 ret = PTR_ERR(em);
1744 break;
1745 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001746 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04001747 actual_end = min_t(u64, extent_map_end(em), offset + len);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001748 last_byte = (last_byte + mask) & ~mask;
Josef Bacikf1e490a2011-08-18 10:36:39 -04001749
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001750 if (em->block_start == EXTENT_MAP_HOLE ||
1751 (cur_offset >= inode->i_size &&
1752 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
1753 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
1754 last_byte - cur_offset,
1755 1 << inode->i_blkbits,
1756 offset + len,
1757 &alloc_hint);
Josef Bacik1b9c3322011-08-17 10:19:52 -04001758
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001759 if (ret < 0) {
1760 free_extent_map(em);
1761 break;
1762 }
Josef Bacikf1e490a2011-08-18 10:36:39 -04001763 } else if (actual_end > inode->i_size &&
1764 !(mode & FALLOC_FL_KEEP_SIZE)) {
1765 /*
1766 * We didn't need to allocate any more space, but we
1767 * still extended the size of the file so we need to
1768 * update i_size.
1769 */
1770 inode->i_ctime = CURRENT_TIME;
1771 i_size_write(inode, actual_end);
1772 btrfs_ordered_update_i_size(inode, actual_end, NULL);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001773 }
1774 free_extent_map(em);
1775
1776 cur_offset = last_byte;
1777 if (cur_offset >= alloc_end) {
1778 ret = 0;
1779 break;
1780 }
1781 }
1782 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
1783 &cached_state, GFP_NOFS);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001784out:
1785 mutex_unlock(&inode->i_mutex);
Chris Masond98456f2012-01-31 20:27:41 -05001786 /* Let go of our reservation. */
1787 btrfs_free_reserved_data_space(inode, len);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001788 return ret;
1789}
1790
Josef Bacikb2675152011-07-18 13:21:36 -04001791static int find_desired_extent(struct inode *inode, loff_t *offset, int origin)
1792{
1793 struct btrfs_root *root = BTRFS_I(inode)->root;
1794 struct extent_map *em;
1795 struct extent_state *cached_state = NULL;
1796 u64 lockstart = *offset;
1797 u64 lockend = i_size_read(inode);
1798 u64 start = *offset;
1799 u64 orig_start = *offset;
1800 u64 len = i_size_read(inode);
1801 u64 last_end = 0;
1802 int ret = 0;
1803
1804 lockend = max_t(u64, root->sectorsize, lockend);
1805 if (lockend <= lockstart)
1806 lockend = lockstart + root->sectorsize;
1807
1808 len = lockend - lockstart + 1;
1809
1810 len = max_t(u64, len, root->sectorsize);
1811 if (inode->i_size == 0)
1812 return -ENXIO;
1813
1814 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001815 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04001816
1817 /*
1818 * Delalloc is such a pain. If we have a hole and we have pending
1819 * delalloc for a portion of the hole we will get back a hole that
1820 * exists for the entire range since it hasn't been actually written
1821 * yet. So to take care of this case we need to look for an extent just
1822 * before the position we want in case there is outstanding delalloc
1823 * going on here.
1824 */
1825 if (origin == SEEK_HOLE && start != 0) {
1826 if (start <= root->sectorsize)
1827 em = btrfs_get_extent_fiemap(inode, NULL, 0, 0,
1828 root->sectorsize, 0);
1829 else
1830 em = btrfs_get_extent_fiemap(inode, NULL, 0,
1831 start - root->sectorsize,
1832 root->sectorsize, 0);
1833 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08001834 ret = PTR_ERR(em);
Josef Bacikb2675152011-07-18 13:21:36 -04001835 goto out;
1836 }
1837 last_end = em->start + em->len;
1838 if (em->block_start == EXTENT_MAP_DELALLOC)
1839 last_end = min_t(u64, last_end, inode->i_size);
1840 free_extent_map(em);
1841 }
1842
1843 while (1) {
1844 em = btrfs_get_extent_fiemap(inode, NULL, 0, start, len, 0);
1845 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08001846 ret = PTR_ERR(em);
Josef Bacikb2675152011-07-18 13:21:36 -04001847 break;
1848 }
1849
1850 if (em->block_start == EXTENT_MAP_HOLE) {
1851 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
1852 if (last_end <= orig_start) {
1853 free_extent_map(em);
1854 ret = -ENXIO;
1855 break;
1856 }
1857 }
1858
1859 if (origin == SEEK_HOLE) {
1860 *offset = start;
1861 free_extent_map(em);
1862 break;
1863 }
1864 } else {
1865 if (origin == SEEK_DATA) {
1866 if (em->block_start == EXTENT_MAP_DELALLOC) {
1867 if (start >= inode->i_size) {
1868 free_extent_map(em);
1869 ret = -ENXIO;
1870 break;
1871 }
1872 }
1873
1874 *offset = start;
1875 free_extent_map(em);
1876 break;
1877 }
1878 }
1879
1880 start = em->start + em->len;
1881 last_end = em->start + em->len;
1882
1883 if (em->block_start == EXTENT_MAP_DELALLOC)
1884 last_end = min_t(u64, last_end, inode->i_size);
1885
1886 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
1887 free_extent_map(em);
1888 ret = -ENXIO;
1889 break;
1890 }
1891 free_extent_map(em);
1892 cond_resched();
1893 }
1894 if (!ret)
1895 *offset = min(*offset, inode->i_size);
1896out:
1897 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
1898 &cached_state, GFP_NOFS);
1899 return ret;
1900}
1901
1902static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int origin)
1903{
1904 struct inode *inode = file->f_mapping->host;
1905 int ret;
1906
1907 mutex_lock(&inode->i_mutex);
1908 switch (origin) {
1909 case SEEK_END:
1910 case SEEK_CUR:
Andi Kleenef3d0fd2011-09-15 16:06:48 -07001911 offset = generic_file_llseek(file, offset, origin);
Josef Bacikb2675152011-07-18 13:21:36 -04001912 goto out;
1913 case SEEK_DATA:
1914 case SEEK_HOLE:
Jeff Liu48802c82011-09-18 10:34:02 -04001915 if (offset >= i_size_read(inode)) {
1916 mutex_unlock(&inode->i_mutex);
1917 return -ENXIO;
1918 }
1919
Josef Bacikb2675152011-07-18 13:21:36 -04001920 ret = find_desired_extent(inode, &offset, origin);
1921 if (ret) {
1922 mutex_unlock(&inode->i_mutex);
1923 return ret;
1924 }
1925 }
1926
Dan Carpenter9a4327c2011-08-18 10:16:05 -04001927 if (offset < 0 && !(file->f_mode & FMODE_UNSIGNED_OFFSET)) {
Jeff Liu48802c82011-09-18 10:34:02 -04001928 offset = -EINVAL;
Dan Carpenter9a4327c2011-08-18 10:16:05 -04001929 goto out;
1930 }
1931 if (offset > inode->i_sb->s_maxbytes) {
Jeff Liu48802c82011-09-18 10:34:02 -04001932 offset = -EINVAL;
Dan Carpenter9a4327c2011-08-18 10:16:05 -04001933 goto out;
1934 }
Josef Bacikb2675152011-07-18 13:21:36 -04001935
1936 /* Special lock needed here? */
1937 if (offset != file->f_pos) {
1938 file->f_pos = offset;
1939 file->f_version = 0;
1940 }
1941out:
1942 mutex_unlock(&inode->i_mutex);
1943 return offset;
1944}
1945
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001946const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04001947 .llseek = btrfs_file_llseek,
Chris Mason39279cc2007-06-12 06:35:45 -04001948 .read = do_sync_read,
Miao Xie4a0010712010-06-07 03:38:51 +00001949 .write = do_sync_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001950 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001951 .splice_read = generic_file_splice_read,
Josef Bacik11c65dc2010-05-23 11:07:21 -04001952 .aio_write = btrfs_file_aio_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001953 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001954 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001955 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001956 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001957 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001958 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001959#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001960 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001961#endif
1962};