blob: 58598c249951fe030f660272b0adb3cab4dbad6f [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,
Josef Bacik26714852012-08-29 12:24:27 -0400587 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 */
Zheng Yan31840ae2008-09-23 13:14:14 -0400719 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000720 key.offset = start;
721 }
722 /*
723 * | ---- range to drop ----- |
724 * | -------- extent -------- |
725 */
726 if (start <= key.offset && end < extent_end) {
727 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
728
729 memcpy(&new_key, &key, sizeof(new_key));
730 new_key.offset = end;
731 btrfs_set_item_key_safe(trans, root, path, &new_key);
732
733 extent_offset += end - key.offset;
734 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
735 btrfs_set_file_extent_num_bytes(leaf, fi,
736 extent_end - end);
737 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400738 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000739 inode_sub_bytes(inode, end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000740 break;
Zheng Yan31840ae2008-09-23 13:14:14 -0400741 }
742
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000743 search_start = extent_end;
744 /*
745 * | ---- range to drop ----- |
746 * | -------- extent -------- |
747 */
748 if (start > key.offset && end >= extent_end) {
749 BUG_ON(del_nr > 0);
750 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
751
752 btrfs_set_file_extent_num_bytes(leaf, fi,
753 start - key.offset);
754 btrfs_mark_buffer_dirty(leaf);
Josef Bacik26714852012-08-29 12:24:27 -0400755 if (update_refs && disk_bytenr > 0)
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000756 inode_sub_bytes(inode, extent_end - start);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000757 if (end == extent_end)
758 break;
759
760 path->slots[0]++;
761 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400762 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000763
764 /*
765 * | ---- range to drop ----- |
766 * | ------ extent ------ |
767 */
768 if (start <= key.offset && end >= extent_end) {
769 if (del_nr == 0) {
770 del_slot = path->slots[0];
771 del_nr = 1;
772 } else {
773 BUG_ON(del_slot + del_nr != path->slots[0]);
774 del_nr++;
775 }
776
Josef Bacik5dc562c2012-08-17 13:14:17 -0400777 if (update_refs &&
778 extent_type == BTRFS_FILE_EXTENT_INLINE) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000779 inode_sub_bytes(inode,
780 extent_end - key.offset);
781 extent_end = ALIGN(extent_end,
782 root->sectorsize);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400783 } else if (update_refs && disk_bytenr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000784 ret = btrfs_free_extent(trans, root,
785 disk_bytenr, num_bytes, 0,
786 root->root_key.objectid,
787 key.objectid, key.offset -
Arne Jansen66d7e7f2011-09-12 15:26:38 +0200788 extent_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100789 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000790 inode_sub_bytes(inode,
791 extent_end - key.offset);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000792 }
793
794 if (end == extent_end)
795 break;
796
797 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
798 path->slots[0]++;
799 goto next_slot;
800 }
801
802 ret = btrfs_del_items(trans, root, path, del_slot,
803 del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100804 if (ret) {
805 btrfs_abort_transaction(trans, root, ret);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400806 break;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100807 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000808
809 del_nr = 0;
810 del_slot = 0;
811
David Sterbab3b4aa72011-04-21 01:20:15 +0200812 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000813 continue;
814 }
815
816 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400817 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000818
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100819 if (!ret && del_nr > 0) {
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000820 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100821 if (ret)
822 btrfs_abort_transaction(trans, root, ret);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000823 }
824
Josef Bacik5dc562c2012-08-17 13:14:17 -0400825 btrfs_release_path(path);
826 return ret;
827}
828
829int btrfs_drop_extents(struct btrfs_trans_handle *trans,
830 struct btrfs_root *root, struct inode *inode, u64 start,
Josef Bacik26714852012-08-29 12:24:27 -0400831 u64 end, int drop_cache)
Josef Bacik5dc562c2012-08-17 13:14:17 -0400832{
833 struct btrfs_path *path;
834 int ret;
835
836 path = btrfs_alloc_path();
837 if (!path)
838 return -ENOMEM;
839 ret = __btrfs_drop_extents(trans, root, inode, path, start, end,
Josef Bacik26714852012-08-29 12:24:27 -0400840 drop_cache);
Chris Mason39279cc2007-06-12 06:35:45 -0400841 btrfs_free_path(path);
842 return ret;
843}
844
Yan Zhengd899e052008-10-30 14:25:28 -0400845static int extent_mergeable(struct extent_buffer *leaf, int slot,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000846 u64 objectid, u64 bytenr, u64 orig_offset,
847 u64 *start, u64 *end)
Yan Zhengd899e052008-10-30 14:25:28 -0400848{
849 struct btrfs_file_extent_item *fi;
850 struct btrfs_key key;
851 u64 extent_end;
852
853 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
854 return 0;
855
856 btrfs_item_key_to_cpu(leaf, &key, slot);
857 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
858 return 0;
859
860 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
861 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
862 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000863 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
Yan Zhengd899e052008-10-30 14:25:28 -0400864 btrfs_file_extent_compression(leaf, fi) ||
865 btrfs_file_extent_encryption(leaf, fi) ||
866 btrfs_file_extent_other_encoding(leaf, fi))
867 return 0;
868
869 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
870 if ((*start && *start != key.offset) || (*end && *end != extent_end))
871 return 0;
872
873 *start = key.offset;
874 *end = extent_end;
875 return 1;
876}
877
878/*
879 * Mark extent in the range start - end as written.
880 *
881 * This changes extent type from 'pre-allocated' to 'regular'. If only
882 * part of extent is marked as written, the extent will be split into
883 * two or three.
884 */
885int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
Yan Zhengd899e052008-10-30 14:25:28 -0400886 struct inode *inode, u64 start, u64 end)
887{
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000888 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zhengd899e052008-10-30 14:25:28 -0400889 struct extent_buffer *leaf;
890 struct btrfs_path *path;
891 struct btrfs_file_extent_item *fi;
892 struct btrfs_key key;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000893 struct btrfs_key new_key;
Yan Zhengd899e052008-10-30 14:25:28 -0400894 u64 bytenr;
895 u64 num_bytes;
896 u64 extent_end;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400897 u64 orig_offset;
Yan Zhengd899e052008-10-30 14:25:28 -0400898 u64 other_start;
899 u64 other_end;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000900 u64 split;
901 int del_nr = 0;
902 int del_slot = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000903 int recow;
Yan Zhengd899e052008-10-30 14:25:28 -0400904 int ret;
Li Zefan33345d012011-04-20 10:31:50 +0800905 u64 ino = btrfs_ino(inode);
Yan Zhengd899e052008-10-30 14:25:28 -0400906
Yan Zhengd899e052008-10-30 14:25:28 -0400907 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700908 if (!path)
909 return -ENOMEM;
Yan Zhengd899e052008-10-30 14:25:28 -0400910again:
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000911 recow = 0;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000912 split = start;
Li Zefan33345d012011-04-20 10:31:50 +0800913 key.objectid = ino;
Yan Zhengd899e052008-10-30 14:25:28 -0400914 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000915 key.offset = split;
Yan Zhengd899e052008-10-30 14:25:28 -0400916
917 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
Josef Bacik41415732011-03-16 13:59:32 -0400918 if (ret < 0)
919 goto out;
Yan Zhengd899e052008-10-30 14:25:28 -0400920 if (ret > 0 && path->slots[0] > 0)
921 path->slots[0]--;
922
923 leaf = path->nodes[0];
924 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Li Zefan33345d012011-04-20 10:31:50 +0800925 BUG_ON(key.objectid != ino || key.type != BTRFS_EXTENT_DATA_KEY);
Yan Zhengd899e052008-10-30 14:25:28 -0400926 fi = btrfs_item_ptr(leaf, path->slots[0],
927 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000928 BUG_ON(btrfs_file_extent_type(leaf, fi) !=
929 BTRFS_FILE_EXTENT_PREALLOC);
Yan Zhengd899e052008-10-30 14:25:28 -0400930 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
931 BUG_ON(key.offset > start || extent_end < end);
932
933 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
934 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400935 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000936 memcpy(&new_key, &key, sizeof(new_key));
937
938 if (start == key.offset && end < extent_end) {
939 other_start = 0;
940 other_end = start;
941 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +0800942 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000943 &other_start, &other_end)) {
944 new_key.offset = end;
945 btrfs_set_item_key_safe(trans, root, path, &new_key);
946 fi = btrfs_item_ptr(leaf, path->slots[0],
947 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -0400948 btrfs_set_file_extent_generation(leaf, fi,
949 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000950 btrfs_set_file_extent_num_bytes(leaf, fi,
951 extent_end - end);
952 btrfs_set_file_extent_offset(leaf, fi,
953 end - orig_offset);
954 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
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 end - other_start);
960 btrfs_mark_buffer_dirty(leaf);
961 goto out;
962 }
963 }
964
965 if (start > key.offset && end == extent_end) {
966 other_start = end;
967 other_end = 0;
968 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +0800969 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000970 &other_start, &other_end)) {
971 fi = btrfs_item_ptr(leaf, path->slots[0],
972 struct btrfs_file_extent_item);
973 btrfs_set_file_extent_num_bytes(leaf, fi,
974 start - key.offset);
Josef Bacik224ecce2012-08-16 16:32:06 -0400975 btrfs_set_file_extent_generation(leaf, fi,
976 trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +0000977 path->slots[0]++;
978 new_key.offset = start;
979 btrfs_set_item_key_safe(trans, root, path, &new_key);
980
981 fi = btrfs_item_ptr(leaf, path->slots[0],
982 struct btrfs_file_extent_item);
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 btrfs_set_file_extent_num_bytes(leaf, fi,
986 other_end - start);
987 btrfs_set_file_extent_offset(leaf, fi,
988 start - orig_offset);
989 btrfs_mark_buffer_dirty(leaf);
990 goto out;
991 }
992 }
Yan Zhengd899e052008-10-30 14:25:28 -0400993
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000994 while (start > key.offset || end < extent_end) {
995 if (key.offset == start)
996 split = end;
Yan Zhengd899e052008-10-30 14:25:28 -0400997
Yan, Zheng920bbbf2009-11-12 09:34:08 +0000998 new_key.offset = split;
999 ret = btrfs_duplicate_item(trans, root, path, &new_key);
1000 if (ret == -EAGAIN) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001001 btrfs_release_path(path);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001002 goto again;
Yan Zhengd899e052008-10-30 14:25:28 -04001003 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001004 if (ret < 0) {
1005 btrfs_abort_transaction(trans, root, ret);
1006 goto out;
1007 }
Yan Zhengd899e052008-10-30 14:25:28 -04001008
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001009 leaf = path->nodes[0];
1010 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
Yan Zhengd899e052008-10-30 14:25:28 -04001011 struct btrfs_file_extent_item);
Josef Bacik224ecce2012-08-16 16:32:06 -04001012 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan Zhengd899e052008-10-30 14:25:28 -04001013 btrfs_set_file_extent_num_bytes(leaf, fi,
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001014 split - key.offset);
1015
1016 fi = btrfs_item_ptr(leaf, path->slots[0],
1017 struct btrfs_file_extent_item);
1018
Josef Bacik224ecce2012-08-16 16:32:06 -04001019 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001020 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
1021 btrfs_set_file_extent_num_bytes(leaf, fi,
1022 extent_end - split);
Yan Zhengd899e052008-10-30 14:25:28 -04001023 btrfs_mark_buffer_dirty(leaf);
1024
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001025 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
1026 root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001027 ino, orig_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001028 BUG_ON(ret); /* -ENOMEM */
Yan Zhengd899e052008-10-30 14:25:28 -04001029
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001030 if (split == start) {
1031 key.offset = start;
1032 } else {
1033 BUG_ON(start != key.offset);
Yan Zhengd899e052008-10-30 14:25:28 -04001034 path->slots[0]--;
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001035 extent_end = end;
Yan Zhengd899e052008-10-30 14:25:28 -04001036 }
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001037 recow = 1;
Yan Zhengd899e052008-10-30 14:25:28 -04001038 }
1039
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001040 other_start = end;
1041 other_end = 0;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001042 if (extent_mergeable(leaf, path->slots[0] + 1,
Li Zefan33345d012011-04-20 10:31:50 +08001043 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001044 &other_start, &other_end)) {
1045 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001046 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001047 goto again;
1048 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001049 extent_end = other_end;
1050 del_slot = path->slots[0] + 1;
1051 del_nr++;
1052 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1053 0, root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001054 ino, orig_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001055 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001056 }
1057 other_start = 0;
1058 other_end = start;
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001059 if (extent_mergeable(leaf, path->slots[0] - 1,
Li Zefan33345d012011-04-20 10:31:50 +08001060 ino, bytenr, orig_offset,
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001061 &other_start, &other_end)) {
1062 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001063 btrfs_release_path(path);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001064 goto again;
1065 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001066 key.offset = other_start;
1067 del_slot = path->slots[0];
1068 del_nr++;
1069 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1070 0, root->root_key.objectid,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001071 ino, orig_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001072 BUG_ON(ret); /* -ENOMEM */
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001073 }
1074 if (del_nr == 0) {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001075 fi = btrfs_item_ptr(leaf, path->slots[0],
1076 struct btrfs_file_extent_item);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001077 btrfs_set_file_extent_type(leaf, fi,
1078 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001079 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001080 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001081 } else {
Shaohua Li3f6fae92010-02-11 07:43:00 +00001082 fi = btrfs_item_ptr(leaf, del_slot - 1,
1083 struct btrfs_file_extent_item);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001084 btrfs_set_file_extent_type(leaf, fi,
1085 BTRFS_FILE_EXTENT_REG);
Josef Bacik224ecce2012-08-16 16:32:06 -04001086 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
Yan, Zheng6c7d54a2010-01-15 08:43:09 +00001087 btrfs_set_file_extent_num_bytes(leaf, fi,
1088 extent_end - key.offset);
1089 btrfs_mark_buffer_dirty(leaf);
1090
1091 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001092 if (ret < 0) {
1093 btrfs_abort_transaction(trans, root, ret);
1094 goto out;
1095 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001096 }
Yan, Zheng920bbbf2009-11-12 09:34:08 +00001097out:
Yan Zhengd899e052008-10-30 14:25:28 -04001098 btrfs_free_path(path);
1099 return 0;
1100}
1101
Chris Mason39279cc2007-06-12 06:35:45 -04001102/*
Chris Masonb1bf8622011-02-28 09:52:08 -05001103 * on error we return an unlocked page and the error value
1104 * on success we return a locked page and 0
1105 */
Josef Bacikb63164292011-09-30 15:23:54 -04001106static int prepare_uptodate_page(struct page *page, u64 pos,
1107 bool force_uptodate)
Chris Masonb1bf8622011-02-28 09:52:08 -05001108{
1109 int ret = 0;
1110
Josef Bacikb63164292011-09-30 15:23:54 -04001111 if (((pos & (PAGE_CACHE_SIZE - 1)) || force_uptodate) &&
1112 !PageUptodate(page)) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001113 ret = btrfs_readpage(NULL, page);
1114 if (ret)
1115 return ret;
1116 lock_page(page);
1117 if (!PageUptodate(page)) {
1118 unlock_page(page);
1119 return -EIO;
1120 }
1121 }
1122 return 0;
1123}
1124
1125/*
Chris Masond352ac62008-09-29 15:18:18 -04001126 * this gets pages into the page cache and locks them down, it also properly
1127 * waits for data=ordered extents to finish before allowing the pages to be
1128 * modified.
Chris Mason39279cc2007-06-12 06:35:45 -04001129 */
Chris Masond3977122009-01-05 21:25:51 -05001130static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
Chris Mason98ed5172008-01-03 10:01:48 -05001131 struct page **pages, size_t num_pages,
1132 loff_t pos, unsigned long first_index,
Josef Bacikb63164292011-09-30 15:23:54 -04001133 size_t write_bytes, bool force_uptodate)
Chris Mason39279cc2007-06-12 06:35:45 -04001134{
Josef Bacik2ac55d42010-02-03 19:33:23 +00001135 struct extent_state *cached_state = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001136 int i;
1137 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -05001138 struct inode *inode = fdentry(file)->d_inode;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04001139 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Chris Mason39279cc2007-06-12 06:35:45 -04001140 int err = 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001141 int faili = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -04001142 u64 start_pos;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001143 u64 last_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -04001144
Chris Mason5f39d392007-10-15 16:14:19 -04001145 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001146 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -04001147
Chris Masone6dcd2d2008-07-17 12:53:50 -04001148again:
Chris Mason39279cc2007-06-12 06:35:45 -04001149 for (i = 0; i < num_pages; i++) {
Josef Bacika94733d2011-07-11 10:47:06 -04001150 pages[i] = find_or_create_page(inode->i_mapping, index + i,
Johannes Weinere3a41a52012-01-10 15:07:55 -08001151 mask | __GFP_WRITE);
Chris Mason39279cc2007-06-12 06:35:45 -04001152 if (!pages[i]) {
Chris Masonb1bf8622011-02-28 09:52:08 -05001153 faili = i - 1;
1154 err = -ENOMEM;
1155 goto fail;
1156 }
1157
1158 if (i == 0)
Josef Bacikb63164292011-09-30 15:23:54 -04001159 err = prepare_uptodate_page(pages[i], pos,
1160 force_uptodate);
Chris Masonb1bf8622011-02-28 09:52:08 -05001161 if (i == num_pages - 1)
1162 err = prepare_uptodate_page(pages[i],
Josef Bacikb63164292011-09-30 15:23:54 -04001163 pos + write_bytes, false);
Chris Masonb1bf8622011-02-28 09:52:08 -05001164 if (err) {
1165 page_cache_release(pages[i]);
1166 faili = i - 1;
1167 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001168 }
Chris Masonccd467d2007-06-28 15:57:36 -04001169 wait_on_page_writeback(pages[i]);
Chris Mason39279cc2007-06-12 06:35:45 -04001170 }
Chris Masonb1bf8622011-02-28 09:52:08 -05001171 err = 0;
Chris Mason07627042008-02-19 11:29:24 -05001172 if (start_pos < inode->i_size) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04001173 struct btrfs_ordered_extent *ordered;
Josef Bacik2ac55d42010-02-03 19:33:23 +00001174 lock_extent_bits(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001175 start_pos, last_pos - 1, 0, &cached_state);
Chris Masond3977122009-01-05 21:25:51 -05001176 ordered = btrfs_lookup_first_ordered_extent(inode,
1177 last_pos - 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001178 if (ordered &&
1179 ordered->file_offset + ordered->len > start_pos &&
1180 ordered->file_offset < last_pos) {
1181 btrfs_put_ordered_extent(ordered);
Josef Bacik2ac55d42010-02-03 19:33:23 +00001182 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1183 start_pos, last_pos - 1,
1184 &cached_state, GFP_NOFS);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001185 for (i = 0; i < num_pages; i++) {
1186 unlock_page(pages[i]);
1187 page_cache_release(pages[i]);
1188 }
1189 btrfs_wait_ordered_range(inode, start_pos,
1190 last_pos - start_pos);
1191 goto again;
1192 }
1193 if (ordered)
1194 btrfs_put_ordered_extent(ordered);
1195
Josef Bacik2ac55d42010-02-03 19:33:23 +00001196 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos,
Josef Bacik32c00af2009-10-08 13:34:05 -04001197 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
Josef Bacik2ac55d42010-02-03 19:33:23 +00001198 EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
Chris Mason07627042008-02-19 11:29:24 -05001199 GFP_NOFS);
Josef Bacik2ac55d42010-02-03 19:33:23 +00001200 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1201 start_pos, last_pos - 1, &cached_state,
1202 GFP_NOFS);
Chris Mason07627042008-02-19 11:29:24 -05001203 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04001204 for (i = 0; i < num_pages; i++) {
Wu Fengguang32c7f202011-08-08 15:19:47 -06001205 if (clear_page_dirty_for_io(pages[i]))
1206 account_page_redirty(pages[i]);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001207 set_page_extent_mapped(pages[i]);
1208 WARN_ON(!PageLocked(pages[i]));
1209 }
Chris Mason39279cc2007-06-12 06:35:45 -04001210 return 0;
Chris Masonb1bf8622011-02-28 09:52:08 -05001211fail:
1212 while (faili >= 0) {
1213 unlock_page(pages[faili]);
1214 page_cache_release(pages[faili]);
1215 faili--;
1216 }
1217 return err;
1218
Chris Mason39279cc2007-06-12 06:35:45 -04001219}
1220
Josef Bacikd0215f32011-01-25 14:57:24 -05001221static noinline ssize_t __btrfs_buffered_write(struct file *file,
1222 struct iov_iter *i,
1223 loff_t pos)
Josef Bacik4b46fce2010-05-23 11:00:55 -04001224{
Josef Bacik11c65dc2010-05-23 11:07:21 -04001225 struct inode *inode = fdentry(file)->d_inode;
1226 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik11c65dc2010-05-23 11:07:21 -04001227 struct page **pages = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001228 unsigned long first_index;
Josef Bacikd0215f32011-01-25 14:57:24 -05001229 size_t num_written = 0;
1230 int nrptrs;
Tsutomu Itohc9149232011-03-30 00:57:23 +00001231 int ret = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001232 bool force_page_uptodate = false;
Chris Masoncb843a62008-10-03 12:30:02 -04001233
Josef Bacikd0215f32011-01-25 14:57:24 -05001234 nrptrs = min((iov_iter_count(i) + PAGE_CACHE_SIZE - 1) /
Josef Bacik11c65dc2010-05-23 11:07:21 -04001235 PAGE_CACHE_SIZE, PAGE_CACHE_SIZE /
1236 (sizeof(struct page *)));
Wu Fengguang142349f2011-12-16 12:32:57 -05001237 nrptrs = min(nrptrs, current->nr_dirtied_pause - current->nr_dirtied);
1238 nrptrs = max(nrptrs, 8);
Chris Mason8c2383c2007-06-18 09:57:58 -04001239 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001240 if (!pages)
1241 return -ENOMEM;
Chris Masonab93dbe2009-10-01 12:29:10 -04001242
Chris Mason39279cc2007-06-12 06:35:45 -04001243 first_index = pos >> PAGE_CACHE_SHIFT;
Chris Mason39279cc2007-06-12 06:35:45 -04001244
Josef Bacikd0215f32011-01-25 14:57:24 -05001245 while (iov_iter_count(i) > 0) {
Chris Mason39279cc2007-06-12 06:35:45 -04001246 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Josef Bacikd0215f32011-01-25 14:57:24 -05001247 size_t write_bytes = min(iov_iter_count(i),
Josef Bacik11c65dc2010-05-23 11:07:21 -04001248 nrptrs * (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -04001249 offset);
Yan, Zheng3a909832011-01-18 13:34:40 +08001250 size_t num_pages = (write_bytes + offset +
1251 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001252 size_t dirty_pages;
1253 size_t copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001254
Chris Mason8c2383c2007-06-18 09:57:58 -04001255 WARN_ON(num_pages > nrptrs);
Chris Mason1832a6d2007-12-21 16:27:21 -05001256
Xin Zhong914ee292010-12-09 09:30:14 +00001257 /*
1258 * Fault pages before locking them in prepare_pages
1259 * to avoid recursive lock
1260 */
Josef Bacikd0215f32011-01-25 14:57:24 -05001261 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
Xin Zhong914ee292010-12-09 09:30:14 +00001262 ret = -EFAULT;
Josef Bacikd0215f32011-01-25 14:57:24 -05001263 break;
Xin Zhong914ee292010-12-09 09:30:14 +00001264 }
1265
1266 ret = btrfs_delalloc_reserve_space(inode,
1267 num_pages << PAGE_CACHE_SHIFT);
Chris Mason1832a6d2007-12-21 16:27:21 -05001268 if (ret)
Josef Bacikd0215f32011-01-25 14:57:24 -05001269 break;
Chris Mason1832a6d2007-12-21 16:27:21 -05001270
Josef Bacik4a640012011-01-25 15:10:08 -05001271 /*
1272 * This is going to setup the pages array with the number of
1273 * pages we want, so we don't really need to worry about the
1274 * contents of pages from loop to loop
1275 */
Chris Mason39279cc2007-06-12 06:35:45 -04001276 ret = prepare_pages(root, file, pages, num_pages,
Josef Bacikb63164292011-09-30 15:23:54 -04001277 pos, first_index, write_bytes,
1278 force_page_uptodate);
Josef Bacik6a632092009-02-20 11:00:09 -05001279 if (ret) {
Xin Zhong914ee292010-12-09 09:30:14 +00001280 btrfs_delalloc_release_space(inode,
1281 num_pages << PAGE_CACHE_SHIFT);
Josef Bacikd0215f32011-01-25 14:57:24 -05001282 break;
Josef Bacik6a632092009-02-20 11:00:09 -05001283 }
Chris Mason39279cc2007-06-12 06:35:45 -04001284
Xin Zhong914ee292010-12-09 09:30:14 +00001285 copied = btrfs_copy_from_user(pos, num_pages,
Josef Bacikd0215f32011-01-25 14:57:24 -05001286 write_bytes, pages, i);
Chris Masonb1bf8622011-02-28 09:52:08 -05001287
1288 /*
1289 * if we have trouble faulting in the pages, fall
1290 * back to one page at a time
1291 */
1292 if (copied < write_bytes)
1293 nrptrs = 1;
1294
Josef Bacikb63164292011-09-30 15:23:54 -04001295 if (copied == 0) {
1296 force_page_uptodate = true;
Chris Masonb1bf8622011-02-28 09:52:08 -05001297 dirty_pages = 0;
Josef Bacikb63164292011-09-30 15:23:54 -04001298 } else {
1299 force_page_uptodate = false;
Chris Masonb1bf8622011-02-28 09:52:08 -05001300 dirty_pages = (copied + offset +
1301 PAGE_CACHE_SIZE - 1) >>
1302 PAGE_CACHE_SHIFT;
Josef Bacikb63164292011-09-30 15:23:54 -04001303 }
Xin Zhong914ee292010-12-09 09:30:14 +00001304
Josef Bacikd0215f32011-01-25 14:57:24 -05001305 /*
1306 * If we had a short copy we need to release the excess delaloc
1307 * bytes we reserved. We need to increment outstanding_extents
1308 * because btrfs_delalloc_release_space will decrement it, but
1309 * we still have an outstanding extent for the chunk we actually
1310 * managed to copy.
1311 */
Xin Zhong914ee292010-12-09 09:30:14 +00001312 if (num_pages > dirty_pages) {
Josef Bacik9e0baf62011-07-15 15:16:44 +00001313 if (copied > 0) {
1314 spin_lock(&BTRFS_I(inode)->lock);
1315 BTRFS_I(inode)->outstanding_extents++;
1316 spin_unlock(&BTRFS_I(inode)->lock);
1317 }
Xin Zhong914ee292010-12-09 09:30:14 +00001318 btrfs_delalloc_release_space(inode,
1319 (num_pages - dirty_pages) <<
1320 PAGE_CACHE_SHIFT);
1321 }
1322
1323 if (copied > 0) {
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001324 ret = btrfs_dirty_pages(root, inode, pages,
1325 dirty_pages, pos, copied,
1326 NULL);
Josef Bacikd0215f32011-01-25 14:57:24 -05001327 if (ret) {
1328 btrfs_delalloc_release_space(inode,
1329 dirty_pages << PAGE_CACHE_SHIFT);
1330 btrfs_drop_pages(pages, num_pages);
1331 break;
1332 }
Chris Mason54aa1f42007-06-22 14:16:25 -04001333 }
Chris Mason39279cc2007-06-12 06:35:45 -04001334
Chris Mason39279cc2007-06-12 06:35:45 -04001335 btrfs_drop_pages(pages, num_pages);
Xin Zhong914ee292010-12-09 09:30:14 +00001336
Josef Bacikd0215f32011-01-25 14:57:24 -05001337 cond_resched();
1338
1339 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1340 dirty_pages);
1341 if (dirty_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1342 btrfs_btree_balance_dirty(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04001343
Xin Zhong914ee292010-12-09 09:30:14 +00001344 pos += copied;
1345 num_written += copied;
Chris Mason39279cc2007-06-12 06:35:45 -04001346 }
Chris Mason5b92ee72008-01-03 13:46:11 -05001347
Chris Mason8c2383c2007-06-18 09:57:58 -04001348 kfree(pages);
Josef Bacikd0215f32011-01-25 14:57:24 -05001349
1350 return num_written ? num_written : ret;
1351}
1352
1353static ssize_t __btrfs_direct_write(struct kiocb *iocb,
1354 const struct iovec *iov,
1355 unsigned long nr_segs, loff_t pos,
1356 loff_t *ppos, size_t count, size_t ocount)
1357{
1358 struct file *file = iocb->ki_filp;
Josef Bacikd0215f32011-01-25 14:57:24 -05001359 struct iov_iter i;
1360 ssize_t written;
1361 ssize_t written_buffered;
1362 loff_t endbyte;
1363 int err;
1364
1365 written = generic_file_direct_write(iocb, iov, &nr_segs, pos, ppos,
1366 count, ocount);
1367
Josef Bacikd0215f32011-01-25 14:57:24 -05001368 if (written < 0 || written == count)
1369 return written;
1370
1371 pos += written;
1372 count -= written;
1373 iov_iter_init(&i, iov, nr_segs, count, written);
1374 written_buffered = __btrfs_buffered_write(file, &i, pos);
1375 if (written_buffered < 0) {
1376 err = written_buffered;
1377 goto out;
1378 }
1379 endbyte = pos + written_buffered - 1;
1380 err = filemap_write_and_wait_range(file->f_mapping, pos, endbyte);
1381 if (err)
1382 goto out;
1383 written += written_buffered;
1384 *ppos = pos + written_buffered;
1385 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_CACHE_SHIFT,
1386 endbyte >> PAGE_CACHE_SHIFT);
1387out:
1388 return written ? written : err;
1389}
1390
1391static ssize_t btrfs_file_aio_write(struct kiocb *iocb,
1392 const struct iovec *iov,
1393 unsigned long nr_segs, loff_t pos)
1394{
1395 struct file *file = iocb->ki_filp;
1396 struct inode *inode = fdentry(file)->d_inode;
1397 struct btrfs_root *root = BTRFS_I(inode)->root;
1398 loff_t *ppos = &iocb->ki_pos;
Miao Xie0c1a98c2011-09-11 10:52:24 -04001399 u64 start_pos;
Josef Bacikd0215f32011-01-25 14:57:24 -05001400 ssize_t num_written = 0;
1401 ssize_t err = 0;
1402 size_t count, ocount;
1403
Jan Karab2b5ef52012-06-12 16:20:45 +02001404 sb_start_write(inode->i_sb);
Josef Bacikd0215f32011-01-25 14:57:24 -05001405
1406 mutex_lock(&inode->i_mutex);
1407
1408 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
1409 if (err) {
1410 mutex_unlock(&inode->i_mutex);
1411 goto out;
1412 }
1413 count = ocount;
1414
1415 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1416 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1417 if (err) {
1418 mutex_unlock(&inode->i_mutex);
1419 goto out;
1420 }
1421
1422 if (count == 0) {
1423 mutex_unlock(&inode->i_mutex);
1424 goto out;
1425 }
1426
1427 err = file_remove_suid(file);
1428 if (err) {
1429 mutex_unlock(&inode->i_mutex);
1430 goto out;
1431 }
1432
1433 /*
1434 * If BTRFS flips readonly due to some impossible error
1435 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1436 * although we have opened a file as writable, we have
1437 * to stop this write operation to ensure FS consistency.
1438 */
1439 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
1440 mutex_unlock(&inode->i_mutex);
1441 err = -EROFS;
1442 goto out;
1443 }
1444
Josef Bacike41f9412012-03-26 09:46:47 -04001445 err = file_update_time(file);
Josef Bacik22c44fe2011-11-30 10:45:38 -05001446 if (err) {
1447 mutex_unlock(&inode->i_mutex);
1448 goto out;
1449 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001450
Miao Xie0c1a98c2011-09-11 10:52:24 -04001451 start_pos = round_down(pos, root->sectorsize);
1452 if (start_pos > i_size_read(inode)) {
1453 err = btrfs_cont_expand(inode, i_size_read(inode), start_pos);
1454 if (err) {
1455 mutex_unlock(&inode->i_mutex);
1456 goto out;
1457 }
1458 }
1459
Josef Bacikd0215f32011-01-25 14:57:24 -05001460 if (unlikely(file->f_flags & O_DIRECT)) {
1461 num_written = __btrfs_direct_write(iocb, iov, nr_segs,
1462 pos, ppos, count, ocount);
1463 } else {
1464 struct iov_iter i;
1465
1466 iov_iter_init(&i, iov, nr_segs, count, num_written);
1467
1468 num_written = __btrfs_buffered_write(file, &i, pos);
1469 if (num_written > 0)
1470 *ppos = pos + num_written;
1471 }
1472
1473 mutex_unlock(&inode->i_mutex);
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001474
Chris Mason5a3f23d2009-03-31 13:27:11 -04001475 /*
1476 * we want to make sure fsync finds this change
1477 * but we haven't joined a transaction running right now.
1478 *
1479 * Later on, someone is sure to update the inode and get the
1480 * real transid recorded.
1481 *
1482 * We set last_trans now to the fs_info generation + 1,
1483 * this will either be one more than the running transaction
1484 * or the generation used for the next transaction if there isn't
1485 * one running right now.
1486 */
1487 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
Josef Bacikd0215f32011-01-25 14:57:24 -05001488 if (num_written > 0 || num_written == -EIOCBQUEUED) {
1489 err = generic_write_sync(file, pos, num_written);
1490 if (err < 0 && num_written > 0)
Chris Mason2ff3e9b2007-10-29 14:36:41 -04001491 num_written = err;
1492 }
Josef Bacikd0215f32011-01-25 14:57:24 -05001493out:
Jan Karab2b5ef52012-06-12 16:20:45 +02001494 sb_end_write(inode->i_sb);
Chris Mason39279cc2007-06-12 06:35:45 -04001495 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001496 return num_written ? num_written : err;
1497}
1498
Chris Masond3977122009-01-05 21:25:51 -05001499int btrfs_release_file(struct inode *inode, struct file *filp)
Mingminge1b81e62008-05-27 10:55:43 -04001500{
Chris Mason5a3f23d2009-03-31 13:27:11 -04001501 /*
1502 * ordered_data_close is set by settattr when we are about to truncate
1503 * a file from a non-zero size to a zero size. This tries to
1504 * flush down new bytes that may have been written if the
1505 * application were using truncate to replace a file in place.
1506 */
Josef Bacik72ac3c02012-05-23 14:13:11 -04001507 if (test_and_clear_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
1508 &BTRFS_I(inode)->runtime_flags)) {
Chris Mason5a3f23d2009-03-31 13:27:11 -04001509 btrfs_add_ordered_operation(NULL, BTRFS_I(inode)->root, inode);
1510 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1511 filemap_flush(inode->i_mapping);
1512 }
Sage Weil6bf13c02008-06-10 10:07:39 -04001513 if (filp->private_data)
1514 btrfs_ioctl_trans_end(filp);
Mingminge1b81e62008-05-27 10:55:43 -04001515 return 0;
1516}
1517
Chris Masond352ac62008-09-29 15:18:18 -04001518/*
1519 * fsync call for both files and directories. This logs the inode into
1520 * the tree log instead of forcing full commits whenever possible.
1521 *
1522 * It needs to call filemap_fdatawait so that all ordered extent updates are
1523 * in the metadata btree are up to date for copying to the log.
1524 *
1525 * It drops the inode mutex before doing the tree log commit. This is an
1526 * important optimization for directories because holding the mutex prevents
1527 * new operations on the dir while we write to disk.
1528 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001529int btrfs_sync_file(struct file *file, loff_t start, loff_t end, int datasync)
Chris Mason39279cc2007-06-12 06:35:45 -04001530{
Christoph Hellwig7ea80852010-05-26 17:53:25 +02001531 struct dentry *dentry = file->f_path.dentry;
Chris Mason39279cc2007-06-12 06:35:45 -04001532 struct inode *inode = dentry->d_inode;
1533 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001534 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001535 struct btrfs_trans_handle *trans;
1536
liubo1abe9b82011-03-24 11:18:59 +00001537 trace_btrfs_sync_file(file, datasync);
Chris Mason257c62e2009-10-13 13:21:08 -04001538
Josef Bacik02c24a82011-07-16 20:44:56 -04001539 mutex_lock(&inode->i_mutex);
1540
Josef Bacik0885ef52012-04-23 15:09:39 -04001541 /*
1542 * we wait first, since the writeback may change the inode, also wait
1543 * ordered range does a filemape_write_and_wait_range which is why we
1544 * don't do it above like other file systems.
1545 */
Chris Mason257c62e2009-10-13 13:21:08 -04001546 root->log_batch++;
Josef Bacik0885ef52012-04-23 15:09:39 -04001547 btrfs_wait_ordered_range(inode, start, end);
Chris Mason257c62e2009-10-13 13:21:08 -04001548 root->log_batch++;
1549
Chris Mason39279cc2007-06-12 06:35:45 -04001550 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001551 * check the transaction that last modified this inode
1552 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -04001553 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001554 if (!BTRFS_I(inode)->last_trans) {
1555 mutex_unlock(&inode->i_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001556 goto out;
Josef Bacik02c24a82011-07-16 20:44:56 -04001557 }
Chris Masona2135012008-06-25 16:01:30 -04001558
Chris Mason257c62e2009-10-13 13:21:08 -04001559 /*
1560 * if the last transaction that changed this file was before
1561 * the current transaction, we can bail out now without any
1562 * syncing
1563 */
Josef Bacika4abeea2011-04-11 17:25:13 -04001564 smp_mb();
Josef Bacik22ee6982012-05-29 16:57:49 -04001565 if (btrfs_inode_in_log(inode, root->fs_info->generation) ||
1566 BTRFS_I(inode)->last_trans <=
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001567 root->fs_info->last_trans_committed) {
1568 BTRFS_I(inode)->last_trans = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -04001569
1570 /*
1571 * We'v had everything committed since the last time we were
1572 * modified so clear this flag in case it was set for whatever
1573 * reason, it's no longer relevant.
1574 */
1575 clear_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
1576 &BTRFS_I(inode)->runtime_flags);
Josef Bacik02c24a82011-07-16 20:44:56 -04001577 mutex_unlock(&inode->i_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001578 goto out;
1579 }
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001580
1581 /*
Chris Masona52d9a82007-08-27 16:49:44 -04001582 * ok we haven't committed the transaction yet, lets do a commit
1583 */
Dan Carpenter6f902af2010-05-29 09:49:07 +00001584 if (file->private_data)
Sage Weil6bf13c02008-06-10 10:07:39 -04001585 btrfs_ioctl_trans_end(file);
1586
Yan, Zhenga22285a2010-05-16 10:48:46 -04001587 trans = btrfs_start_transaction(root, 0);
1588 if (IS_ERR(trans)) {
1589 ret = PTR_ERR(trans);
Josef Bacik02c24a82011-07-16 20:44:56 -04001590 mutex_unlock(&inode->i_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001591 goto out;
1592 }
Chris Masone02119d2008-09-05 16:13:11 -04001593
Chris Mason2cfbd502009-02-20 10:55:10 -05001594 ret = btrfs_log_dentry_safe(trans, root, dentry);
Josef Bacik02c24a82011-07-16 20:44:56 -04001595 if (ret < 0) {
1596 mutex_unlock(&inode->i_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001597 goto out;
Josef Bacik02c24a82011-07-16 20:44:56 -04001598 }
Chris Mason49eb7e42008-09-11 15:53:12 -04001599
1600 /* we've logged all the items and now have a consistent
1601 * version of the file in the log. It is possible that
1602 * someone will come in and modify the file, but that's
1603 * fine because the log is consistent on disk, and we
1604 * have references to all of the file's extents
1605 *
1606 * It is possible that someone will come in and log the
1607 * file again, but that will end up using the synchronization
1608 * inside btrfs_sync_log to keep things safe.
1609 */
Josef Bacik02c24a82011-07-16 20:44:56 -04001610 mutex_unlock(&inode->i_mutex);
Chris Mason49eb7e42008-09-11 15:53:12 -04001611
Chris Mason257c62e2009-10-13 13:21:08 -04001612 if (ret != BTRFS_NO_LOG_SYNC) {
1613 if (ret > 0) {
Chris Mason12fcfd22009-03-24 10:24:20 -04001614 ret = btrfs_commit_transaction(trans, root);
Chris Mason257c62e2009-10-13 13:21:08 -04001615 } else {
1616 ret = btrfs_sync_log(trans, root);
1617 if (ret == 0)
1618 ret = btrfs_end_transaction(trans, root);
1619 else
1620 ret = btrfs_commit_transaction(trans, root);
1621 }
1622 } else {
1623 ret = btrfs_end_transaction(trans, root);
Chris Masone02119d2008-09-05 16:13:11 -04001624 }
Chris Mason39279cc2007-06-12 06:35:45 -04001625out:
Roel Kluin014e4ac2010-01-29 10:42:11 +00001626 return ret > 0 ? -EIO : ret;
Chris Mason39279cc2007-06-12 06:35:45 -04001627}
1628
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04001629static const struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -04001630 .fault = filemap_fault,
Chris Mason9ebefb182007-06-15 13:50:00 -04001631 .page_mkwrite = btrfs_page_mkwrite,
1632};
1633
1634static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1635{
Miao Xie058a4572010-05-20 07:21:50 +00001636 struct address_space *mapping = filp->f_mapping;
1637
1638 if (!mapping->a_ops->readpage)
1639 return -ENOEXEC;
1640
Chris Mason9ebefb182007-06-15 13:50:00 -04001641 file_accessed(filp);
Miao Xie058a4572010-05-20 07:21:50 +00001642 vma->vm_ops = &btrfs_file_vm_ops;
1643 vma->vm_flags |= VM_CAN_NONLINEAR;
1644
Chris Mason9ebefb182007-06-15 13:50:00 -04001645 return 0;
1646}
1647
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001648static long btrfs_fallocate(struct file *file, int mode,
1649 loff_t offset, loff_t len)
1650{
1651 struct inode *inode = file->f_path.dentry->d_inode;
1652 struct extent_state *cached_state = NULL;
1653 u64 cur_offset;
1654 u64 last_byte;
1655 u64 alloc_start;
1656 u64 alloc_end;
1657 u64 alloc_hint = 0;
1658 u64 locked_end;
1659 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
1660 struct extent_map *em;
1661 int ret;
1662
1663 alloc_start = offset & ~mask;
1664 alloc_end = (offset + len + mask) & ~mask;
1665
1666 /* We only support the FALLOC_FL_KEEP_SIZE mode */
1667 if (mode & ~FALLOC_FL_KEEP_SIZE)
1668 return -EOPNOTSUPP;
1669
1670 /*
Chris Masond98456f2012-01-31 20:27:41 -05001671 * Make sure we have enough space before we do the
1672 * allocation.
1673 */
1674 ret = btrfs_check_data_free_space(inode, len);
1675 if (ret)
1676 return ret;
1677
1678 /*
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001679 * wait for ordered IO before we have any locks. We'll loop again
1680 * below with the locks held.
1681 */
1682 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
1683
1684 mutex_lock(&inode->i_mutex);
1685 ret = inode_newsize_ok(inode, alloc_end);
1686 if (ret)
1687 goto out;
1688
1689 if (alloc_start > inode->i_size) {
Josef Bacika41ad392011-01-31 15:30:16 -05001690 ret = btrfs_cont_expand(inode, i_size_read(inode),
1691 alloc_start);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001692 if (ret)
1693 goto out;
1694 }
1695
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001696 locked_end = alloc_end - 1;
1697 while (1) {
1698 struct btrfs_ordered_extent *ordered;
1699
1700 /* the extent lock is ordered inside the running
1701 * transaction
1702 */
1703 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001704 locked_end, 0, &cached_state);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001705 ordered = btrfs_lookup_first_ordered_extent(inode,
1706 alloc_end - 1);
1707 if (ordered &&
1708 ordered->file_offset + ordered->len > alloc_start &&
1709 ordered->file_offset < alloc_end) {
1710 btrfs_put_ordered_extent(ordered);
1711 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1712 alloc_start, locked_end,
1713 &cached_state, GFP_NOFS);
1714 /*
1715 * we can't wait on the range with the transaction
1716 * running or with the extent lock held
1717 */
1718 btrfs_wait_ordered_range(inode, alloc_start,
1719 alloc_end - alloc_start);
1720 } else {
1721 if (ordered)
1722 btrfs_put_ordered_extent(ordered);
1723 break;
1724 }
1725 }
1726
1727 cur_offset = alloc_start;
1728 while (1) {
Josef Bacikf1e490a2011-08-18 10:36:39 -04001729 u64 actual_end;
1730
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001731 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
1732 alloc_end - cur_offset, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001733 if (IS_ERR_OR_NULL(em)) {
1734 if (!em)
1735 ret = -ENOMEM;
1736 else
1737 ret = PTR_ERR(em);
1738 break;
1739 }
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001740 last_byte = min(extent_map_end(em), alloc_end);
Josef Bacikf1e490a2011-08-18 10:36:39 -04001741 actual_end = min_t(u64, extent_map_end(em), offset + len);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001742 last_byte = (last_byte + mask) & ~mask;
Josef Bacikf1e490a2011-08-18 10:36:39 -04001743
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001744 if (em->block_start == EXTENT_MAP_HOLE ||
1745 (cur_offset >= inode->i_size &&
1746 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
1747 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
1748 last_byte - cur_offset,
1749 1 << inode->i_blkbits,
1750 offset + len,
1751 &alloc_hint);
Josef Bacik1b9c3322011-08-17 10:19:52 -04001752
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001753 if (ret < 0) {
1754 free_extent_map(em);
1755 break;
1756 }
Josef Bacikf1e490a2011-08-18 10:36:39 -04001757 } else if (actual_end > inode->i_size &&
1758 !(mode & FALLOC_FL_KEEP_SIZE)) {
1759 /*
1760 * We didn't need to allocate any more space, but we
1761 * still extended the size of the file so we need to
1762 * update i_size.
1763 */
1764 inode->i_ctime = CURRENT_TIME;
1765 i_size_write(inode, actual_end);
1766 btrfs_ordered_update_i_size(inode, actual_end, NULL);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001767 }
1768 free_extent_map(em);
1769
1770 cur_offset = last_byte;
1771 if (cur_offset >= alloc_end) {
1772 ret = 0;
1773 break;
1774 }
1775 }
1776 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
1777 &cached_state, GFP_NOFS);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001778out:
1779 mutex_unlock(&inode->i_mutex);
Chris Masond98456f2012-01-31 20:27:41 -05001780 /* Let go of our reservation. */
1781 btrfs_free_reserved_data_space(inode, len);
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001782 return ret;
1783}
1784
Josef Bacikb2675152011-07-18 13:21:36 -04001785static int find_desired_extent(struct inode *inode, loff_t *offset, int origin)
1786{
1787 struct btrfs_root *root = BTRFS_I(inode)->root;
1788 struct extent_map *em;
1789 struct extent_state *cached_state = NULL;
1790 u64 lockstart = *offset;
1791 u64 lockend = i_size_read(inode);
1792 u64 start = *offset;
1793 u64 orig_start = *offset;
1794 u64 len = i_size_read(inode);
1795 u64 last_end = 0;
1796 int ret = 0;
1797
1798 lockend = max_t(u64, root->sectorsize, lockend);
1799 if (lockend <= lockstart)
1800 lockend = lockstart + root->sectorsize;
1801
1802 len = lockend - lockstart + 1;
1803
1804 len = max_t(u64, len, root->sectorsize);
1805 if (inode->i_size == 0)
1806 return -ENXIO;
1807
1808 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend, 0,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001809 &cached_state);
Josef Bacikb2675152011-07-18 13:21:36 -04001810
1811 /*
1812 * Delalloc is such a pain. If we have a hole and we have pending
1813 * delalloc for a portion of the hole we will get back a hole that
1814 * exists for the entire range since it hasn't been actually written
1815 * yet. So to take care of this case we need to look for an extent just
1816 * before the position we want in case there is outstanding delalloc
1817 * going on here.
1818 */
1819 if (origin == SEEK_HOLE && start != 0) {
1820 if (start <= root->sectorsize)
1821 em = btrfs_get_extent_fiemap(inode, NULL, 0, 0,
1822 root->sectorsize, 0);
1823 else
1824 em = btrfs_get_extent_fiemap(inode, NULL, 0,
1825 start - root->sectorsize,
1826 root->sectorsize, 0);
1827 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08001828 ret = PTR_ERR(em);
Josef Bacikb2675152011-07-18 13:21:36 -04001829 goto out;
1830 }
1831 last_end = em->start + em->len;
1832 if (em->block_start == EXTENT_MAP_DELALLOC)
1833 last_end = min_t(u64, last_end, inode->i_size);
1834 free_extent_map(em);
1835 }
1836
1837 while (1) {
1838 em = btrfs_get_extent_fiemap(inode, NULL, 0, start, len, 0);
1839 if (IS_ERR(em)) {
Jeff Liu6af021d2012-02-09 14:25:50 +08001840 ret = PTR_ERR(em);
Josef Bacikb2675152011-07-18 13:21:36 -04001841 break;
1842 }
1843
1844 if (em->block_start == EXTENT_MAP_HOLE) {
1845 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
1846 if (last_end <= orig_start) {
1847 free_extent_map(em);
1848 ret = -ENXIO;
1849 break;
1850 }
1851 }
1852
1853 if (origin == SEEK_HOLE) {
1854 *offset = start;
1855 free_extent_map(em);
1856 break;
1857 }
1858 } else {
1859 if (origin == SEEK_DATA) {
1860 if (em->block_start == EXTENT_MAP_DELALLOC) {
1861 if (start >= inode->i_size) {
1862 free_extent_map(em);
1863 ret = -ENXIO;
1864 break;
1865 }
1866 }
1867
1868 *offset = start;
1869 free_extent_map(em);
1870 break;
1871 }
1872 }
1873
1874 start = em->start + em->len;
1875 last_end = em->start + em->len;
1876
1877 if (em->block_start == EXTENT_MAP_DELALLOC)
1878 last_end = min_t(u64, last_end, inode->i_size);
1879
1880 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
1881 free_extent_map(em);
1882 ret = -ENXIO;
1883 break;
1884 }
1885 free_extent_map(em);
1886 cond_resched();
1887 }
1888 if (!ret)
1889 *offset = min(*offset, inode->i_size);
1890out:
1891 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
1892 &cached_state, GFP_NOFS);
1893 return ret;
1894}
1895
1896static loff_t btrfs_file_llseek(struct file *file, loff_t offset, int origin)
1897{
1898 struct inode *inode = file->f_mapping->host;
1899 int ret;
1900
1901 mutex_lock(&inode->i_mutex);
1902 switch (origin) {
1903 case SEEK_END:
1904 case SEEK_CUR:
Andi Kleenef3d0fd2011-09-15 16:06:48 -07001905 offset = generic_file_llseek(file, offset, origin);
Josef Bacikb2675152011-07-18 13:21:36 -04001906 goto out;
1907 case SEEK_DATA:
1908 case SEEK_HOLE:
Jeff Liu48802c82011-09-18 10:34:02 -04001909 if (offset >= i_size_read(inode)) {
1910 mutex_unlock(&inode->i_mutex);
1911 return -ENXIO;
1912 }
1913
Josef Bacikb2675152011-07-18 13:21:36 -04001914 ret = find_desired_extent(inode, &offset, origin);
1915 if (ret) {
1916 mutex_unlock(&inode->i_mutex);
1917 return ret;
1918 }
1919 }
1920
Dan Carpenter9a4327c2011-08-18 10:16:05 -04001921 if (offset < 0 && !(file->f_mode & FMODE_UNSIGNED_OFFSET)) {
Jeff Liu48802c82011-09-18 10:34:02 -04001922 offset = -EINVAL;
Dan Carpenter9a4327c2011-08-18 10:16:05 -04001923 goto out;
1924 }
1925 if (offset > inode->i_sb->s_maxbytes) {
Jeff Liu48802c82011-09-18 10:34:02 -04001926 offset = -EINVAL;
Dan Carpenter9a4327c2011-08-18 10:16:05 -04001927 goto out;
1928 }
Josef Bacikb2675152011-07-18 13:21:36 -04001929
1930 /* Special lock needed here? */
1931 if (offset != file->f_pos) {
1932 file->f_pos = offset;
1933 file->f_version = 0;
1934 }
1935out:
1936 mutex_unlock(&inode->i_mutex);
1937 return offset;
1938}
1939
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001940const struct file_operations btrfs_file_operations = {
Josef Bacikb2675152011-07-18 13:21:36 -04001941 .llseek = btrfs_file_llseek,
Chris Mason39279cc2007-06-12 06:35:45 -04001942 .read = do_sync_read,
Miao Xie4a0010712010-06-07 03:38:51 +00001943 .write = do_sync_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001944 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -05001945 .splice_read = generic_file_splice_read,
Josef Bacik11c65dc2010-05-23 11:07:21 -04001946 .aio_write = btrfs_file_aio_write,
Chris Mason9ebefb182007-06-15 13:50:00 -04001947 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -04001948 .open = generic_file_open,
Mingminge1b81e62008-05-27 10:55:43 -04001949 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04001950 .fsync = btrfs_sync_file,
Christoph Hellwig2fe17c12011-01-14 13:07:43 +01001951 .fallocate = btrfs_fallocate,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001952 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001953#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04001954 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04001955#endif
1956};