]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/btrfs/file.c
Btrfs: if we've already started a trans handle, use that one
[mirror_ubuntu-bionic-kernel.git] / fs / btrfs / file.c
CommitLineData
6cbd5570
CM
1/*
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
39279cc3
CM
19#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>
39279cc3
CM
25#include <linux/backing-dev.h>
26#include <linux/mpage.h>
2fe17c10 27#include <linux/falloc.h>
39279cc3
CM
28#include <linux/swap.h>
29#include <linux/writeback.h>
30#include <linux/statfs.h>
31#include <linux/compat.h>
5a0e3ad6 32#include <linux/slab.h>
39279cc3
CM
33#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"
e02119d5
CM
39#include "tree-log.h"
40#include "locking.h"
12fa8ec6 41#include "compat.h"
39279cc3
CM
42
43
d352ac68
CM
44/* simple helper to fault in pages and copy. This should go away
45 * and be replaced with calls into generic code.
46 */
d397712b 47static noinline int btrfs_copy_from_user(loff_t pos, int num_pages,
d0215f3e 48 size_t write_bytes,
a1b32a59 49 struct page **prepared_pages,
11c65dcc 50 struct iov_iter *i)
39279cc3 51{
914ee295 52 size_t copied = 0;
d0215f3e 53 size_t total_copied = 0;
11c65dcc 54 int pg = 0;
39279cc3
CM
55 int offset = pos & (PAGE_CACHE_SIZE - 1);
56
11c65dcc 57 while (write_bytes > 0) {
39279cc3
CM
58 size_t count = min_t(size_t,
59 PAGE_CACHE_SIZE - offset, write_bytes);
11c65dcc 60 struct page *page = prepared_pages[pg];
914ee295
XZ
61 /*
62 * Copy data from userspace to the current page
63 *
64 * Disable pagefault to avoid recursive lock since
65 * the pages are already locked
66 */
67 pagefault_disable();
68 copied = iov_iter_copy_from_user_atomic(page, i, offset, count);
69 pagefault_enable();
11c65dcc 70
39279cc3
CM
71 /* Flush processor's dcache for this page */
72 flush_dcache_page(page);
31339acd
CM
73
74 /*
75 * if we get a partial write, we can end up with
76 * partially up to date pages. These add
77 * a lot of complexity, so make sure they don't
78 * happen by forcing this copy to be retried.
79 *
80 * The rest of the btrfs_file_write code will fall
81 * back to page at a time copies after we return 0.
82 */
83 if (!PageUptodate(page) && copied < count)
84 copied = 0;
85
11c65dcc
JB
86 iov_iter_advance(i, copied);
87 write_bytes -= copied;
914ee295 88 total_copied += copied;
39279cc3 89
914ee295 90 /* Return to btrfs_file_aio_write to fault page */
9f570b8d 91 if (unlikely(copied == 0))
914ee295 92 break;
11c65dcc
JB
93
94 if (unlikely(copied < PAGE_CACHE_SIZE - offset)) {
95 offset += copied;
96 } else {
97 pg++;
98 offset = 0;
99 }
39279cc3 100 }
914ee295 101 return total_copied;
39279cc3
CM
102}
103
d352ac68
CM
104/*
105 * unlocks pages after btrfs_file_write is done with them
106 */
be1a12a0 107void btrfs_drop_pages(struct page **pages, size_t num_pages)
39279cc3
CM
108{
109 size_t i;
110 for (i = 0; i < num_pages; i++) {
d352ac68
CM
111 /* page checked is some magic around finding pages that
112 * have been modified without going through btrfs_set_page_dirty
113 * clear it here
114 */
4a096752 115 ClearPageChecked(pages[i]);
39279cc3
CM
116 unlock_page(pages[i]);
117 mark_page_accessed(pages[i]);
118 page_cache_release(pages[i]);
119 }
120}
121
d352ac68
CM
122/*
123 * after copy_from_user, pages need to be dirtied and we need to make
124 * sure holes are created between the current EOF and the start of
125 * any next extents (if required).
126 *
127 * this also makes the decision about creating an inline extent vs
128 * doing real data extents, marking pages dirty and delalloc as required.
129 */
be1a12a0
JB
130int btrfs_dirty_pages(struct btrfs_root *root, struct inode *inode,
131 struct page **pages, size_t num_pages,
132 loff_t pos, size_t write_bytes,
133 struct extent_state **cached)
39279cc3 134{
39279cc3 135 int err = 0;
a52d9a80 136 int i;
db94535d 137 u64 num_bytes;
a52d9a80
CM
138 u64 start_pos;
139 u64 end_of_last_block;
140 u64 end_pos = pos + write_bytes;
141 loff_t isize = i_size_read(inode);
39279cc3 142
5f39d397 143 start_pos = pos & ~((u64)root->sectorsize - 1);
db94535d
CM
144 num_bytes = (write_bytes + pos - start_pos +
145 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
39279cc3 146
db94535d 147 end_of_last_block = start_pos + num_bytes - 1;
2ac55d41 148 err = btrfs_set_extent_delalloc(inode, start_pos, end_of_last_block,
be1a12a0 149 cached);
d0215f3e
JB
150 if (err)
151 return err;
9ed74f2d 152
c8b97818
CM
153 for (i = 0; i < num_pages; i++) {
154 struct page *p = pages[i];
155 SetPageUptodate(p);
156 ClearPageChecked(p);
157 set_page_dirty(p);
a52d9a80 158 }
9f570b8d
JB
159
160 /*
161 * we've only changed i_size in ram, and we haven't updated
162 * the disk i_size. There is no need to log the inode
163 * at this time.
164 */
165 if (end_pos > isize)
a52d9a80 166 i_size_write(inode, end_pos);
a22285a6 167 return 0;
39279cc3
CM
168}
169
d352ac68
CM
170/*
171 * this drops all the extents in the cache that intersect the range
172 * [start, end]. Existing extents are split as required.
173 */
5b21f2ed
ZY
174int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end,
175 int skip_pinned)
a52d9a80
CM
176{
177 struct extent_map *em;
3b951516
CM
178 struct extent_map *split = NULL;
179 struct extent_map *split2 = NULL;
a52d9a80 180 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
39b5637f 181 u64 len = end - start + 1;
3b951516
CM
182 int ret;
183 int testend = 1;
5b21f2ed 184 unsigned long flags;
c8b97818 185 int compressed = 0;
a52d9a80 186
e6dcd2dc 187 WARN_ON(end < start);
3b951516 188 if (end == (u64)-1) {
39b5637f 189 len = (u64)-1;
3b951516
CM
190 testend = 0;
191 }
d397712b 192 while (1) {
3b951516
CM
193 if (!split)
194 split = alloc_extent_map(GFP_NOFS);
195 if (!split2)
196 split2 = alloc_extent_map(GFP_NOFS);
c26a9203 197 BUG_ON(!split || !split2);
3b951516 198
890871be 199 write_lock(&em_tree->lock);
39b5637f 200 em = lookup_extent_mapping(em_tree, start, len);
d1310b2e 201 if (!em) {
890871be 202 write_unlock(&em_tree->lock);
a52d9a80 203 break;
d1310b2e 204 }
5b21f2ed
ZY
205 flags = em->flags;
206 if (skip_pinned && test_bit(EXTENT_FLAG_PINNED, &em->flags)) {
55ef6899 207 if (testend && em->start + em->len >= start + len) {
5b21f2ed 208 free_extent_map(em);
a1ed835e 209 write_unlock(&em_tree->lock);
5b21f2ed
ZY
210 break;
211 }
55ef6899
YZ
212 start = em->start + em->len;
213 if (testend)
5b21f2ed 214 len = start + len - (em->start + em->len);
5b21f2ed 215 free_extent_map(em);
a1ed835e 216 write_unlock(&em_tree->lock);
5b21f2ed
ZY
217 continue;
218 }
c8b97818 219 compressed = test_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
3ce7e67a 220 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
a52d9a80 221 remove_extent_mapping(em_tree, em);
3b951516
CM
222
223 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
224 em->start < start) {
225 split->start = em->start;
226 split->len = start - em->start;
ff5b7ee3 227 split->orig_start = em->orig_start;
3b951516 228 split->block_start = em->block_start;
c8b97818
CM
229
230 if (compressed)
231 split->block_len = em->block_len;
232 else
233 split->block_len = split->len;
234
3b951516 235 split->bdev = em->bdev;
5b21f2ed 236 split->flags = flags;
261507a0 237 split->compress_type = em->compress_type;
3b951516
CM
238 ret = add_extent_mapping(em_tree, split);
239 BUG_ON(ret);
240 free_extent_map(split);
241 split = split2;
242 split2 = NULL;
243 }
244 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
245 testend && em->start + em->len > start + len) {
246 u64 diff = start + len - em->start;
247
248 split->start = start + len;
249 split->len = em->start + em->len - (start + len);
250 split->bdev = em->bdev;
5b21f2ed 251 split->flags = flags;
261507a0 252 split->compress_type = em->compress_type;
3b951516 253
c8b97818
CM
254 if (compressed) {
255 split->block_len = em->block_len;
256 split->block_start = em->block_start;
445a6944 257 split->orig_start = em->orig_start;
c8b97818
CM
258 } else {
259 split->block_len = split->len;
260 split->block_start = em->block_start + diff;
445a6944 261 split->orig_start = split->start;
c8b97818 262 }
3b951516
CM
263
264 ret = add_extent_mapping(em_tree, split);
265 BUG_ON(ret);
266 free_extent_map(split);
267 split = NULL;
268 }
890871be 269 write_unlock(&em_tree->lock);
d1310b2e 270
a52d9a80
CM
271 /* once for us */
272 free_extent_map(em);
273 /* once for the tree*/
274 free_extent_map(em);
275 }
3b951516
CM
276 if (split)
277 free_extent_map(split);
278 if (split2)
279 free_extent_map(split2);
a52d9a80
CM
280 return 0;
281}
282
39279cc3
CM
283/*
284 * this is very complex, but the basic idea is to drop all extents
285 * in the range start - end. hint_block is filled in with a block number
286 * that would be a good hint to the block allocator for this file.
287 *
288 * If an extent intersects the range but is not entirely inside the range
289 * it is either truncated or split. Anything entirely inside the range
290 * is deleted from the tree.
291 */
920bbbfb
YZ
292int btrfs_drop_extents(struct btrfs_trans_handle *trans, struct inode *inode,
293 u64 start, u64 end, u64 *hint_byte, int drop_cache)
39279cc3 294{
920bbbfb 295 struct btrfs_root *root = BTRFS_I(inode)->root;
5f39d397 296 struct extent_buffer *leaf;
920bbbfb 297 struct btrfs_file_extent_item *fi;
39279cc3 298 struct btrfs_path *path;
00f5c795 299 struct btrfs_key key;
920bbbfb
YZ
300 struct btrfs_key new_key;
301 u64 search_start = start;
302 u64 disk_bytenr = 0;
303 u64 num_bytes = 0;
304 u64 extent_offset = 0;
305 u64 extent_end = 0;
306 int del_nr = 0;
307 int del_slot = 0;
308 int extent_type;
ccd467d6 309 int recow;
00f5c795 310 int ret;
39279cc3 311
a1ed835e
CM
312 if (drop_cache)
313 btrfs_drop_extent_cache(inode, start, end - 1, 0);
a52d9a80 314
39279cc3
CM
315 path = btrfs_alloc_path();
316 if (!path)
317 return -ENOMEM;
920bbbfb 318
d397712b 319 while (1) {
ccd467d6 320 recow = 0;
39279cc3
CM
321 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
322 search_start, -1);
323 if (ret < 0)
920bbbfb
YZ
324 break;
325 if (ret > 0 && path->slots[0] > 0 && search_start == start) {
326 leaf = path->nodes[0];
327 btrfs_item_key_to_cpu(leaf, &key, path->slots[0] - 1);
328 if (key.objectid == inode->i_ino &&
329 key.type == BTRFS_EXTENT_DATA_KEY)
330 path->slots[0]--;
39279cc3 331 }
920bbbfb 332 ret = 0;
8c2383c3 333next_slot:
5f39d397 334 leaf = path->nodes[0];
920bbbfb
YZ
335 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
336 BUG_ON(del_nr > 0);
337 ret = btrfs_next_leaf(root, path);
338 if (ret < 0)
339 break;
340 if (ret > 0) {
341 ret = 0;
342 break;
8c2383c3 343 }
920bbbfb
YZ
344 leaf = path->nodes[0];
345 recow = 1;
346 }
347
348 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
349 if (key.objectid > inode->i_ino ||
350 key.type > BTRFS_EXTENT_DATA_KEY || key.offset >= end)
351 break;
352
353 fi = btrfs_item_ptr(leaf, path->slots[0],
354 struct btrfs_file_extent_item);
355 extent_type = btrfs_file_extent_type(leaf, fi);
356
357 if (extent_type == BTRFS_FILE_EXTENT_REG ||
358 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
359 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
360 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
361 extent_offset = btrfs_file_extent_offset(leaf, fi);
362 extent_end = key.offset +
363 btrfs_file_extent_num_bytes(leaf, fi);
364 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
365 extent_end = key.offset +
366 btrfs_file_extent_inline_len(leaf, fi);
8c2383c3 367 } else {
920bbbfb 368 WARN_ON(1);
8c2383c3 369 extent_end = search_start;
39279cc3
CM
370 }
371
920bbbfb
YZ
372 if (extent_end <= search_start) {
373 path->slots[0]++;
8c2383c3 374 goto next_slot;
39279cc3
CM
375 }
376
920bbbfb
YZ
377 search_start = max(key.offset, start);
378 if (recow) {
379 btrfs_release_path(root, path);
380 continue;
39279cc3 381 }
6643558d 382
920bbbfb
YZ
383 /*
384 * | - range to drop - |
385 * | -------- extent -------- |
386 */
387 if (start > key.offset && end < extent_end) {
388 BUG_ON(del_nr > 0);
389 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
390
391 memcpy(&new_key, &key, sizeof(new_key));
392 new_key.offset = start;
393 ret = btrfs_duplicate_item(trans, root, path,
394 &new_key);
395 if (ret == -EAGAIN) {
396 btrfs_release_path(root, path);
397 continue;
6643558d 398 }
920bbbfb
YZ
399 if (ret < 0)
400 break;
401
402 leaf = path->nodes[0];
403 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
404 struct btrfs_file_extent_item);
405 btrfs_set_file_extent_num_bytes(leaf, fi,
406 start - key.offset);
407
408 fi = btrfs_item_ptr(leaf, path->slots[0],
409 struct btrfs_file_extent_item);
410
411 extent_offset += start - key.offset;
412 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
413 btrfs_set_file_extent_num_bytes(leaf, fi,
414 extent_end - start);
415 btrfs_mark_buffer_dirty(leaf);
416
417 if (disk_bytenr > 0) {
771ed689 418 ret = btrfs_inc_extent_ref(trans, root,
920bbbfb
YZ
419 disk_bytenr, num_bytes, 0,
420 root->root_key.objectid,
421 new_key.objectid,
422 start - extent_offset);
771ed689 423 BUG_ON(ret);
920bbbfb 424 *hint_byte = disk_bytenr;
771ed689 425 }
920bbbfb 426 key.offset = start;
6643558d 427 }
920bbbfb
YZ
428 /*
429 * | ---- range to drop ----- |
430 * | -------- extent -------- |
431 */
432 if (start <= key.offset && end < extent_end) {
433 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
6643558d 434
920bbbfb
YZ
435 memcpy(&new_key, &key, sizeof(new_key));
436 new_key.offset = end;
437 btrfs_set_item_key_safe(trans, root, path, &new_key);
6643558d 438
920bbbfb
YZ
439 extent_offset += end - key.offset;
440 btrfs_set_file_extent_offset(leaf, fi, extent_offset);
441 btrfs_set_file_extent_num_bytes(leaf, fi,
442 extent_end - end);
443 btrfs_mark_buffer_dirty(leaf);
444 if (disk_bytenr > 0) {
445 inode_sub_bytes(inode, end - key.offset);
446 *hint_byte = disk_bytenr;
39279cc3 447 }
920bbbfb 448 break;
39279cc3 449 }
771ed689 450
920bbbfb
YZ
451 search_start = extent_end;
452 /*
453 * | ---- range to drop ----- |
454 * | -------- extent -------- |
455 */
456 if (start > key.offset && end >= extent_end) {
457 BUG_ON(del_nr > 0);
458 BUG_ON(extent_type == BTRFS_FILE_EXTENT_INLINE);
8c2383c3 459
920bbbfb
YZ
460 btrfs_set_file_extent_num_bytes(leaf, fi,
461 start - key.offset);
462 btrfs_mark_buffer_dirty(leaf);
463 if (disk_bytenr > 0) {
464 inode_sub_bytes(inode, extent_end - start);
465 *hint_byte = disk_bytenr;
466 }
467 if (end == extent_end)
468 break;
c8b97818 469
920bbbfb
YZ
470 path->slots[0]++;
471 goto next_slot;
31840ae1
ZY
472 }
473
920bbbfb
YZ
474 /*
475 * | ---- range to drop ----- |
476 * | ------ extent ------ |
477 */
478 if (start <= key.offset && end >= extent_end) {
479 if (del_nr == 0) {
480 del_slot = path->slots[0];
481 del_nr = 1;
482 } else {
483 BUG_ON(del_slot + del_nr != path->slots[0]);
484 del_nr++;
485 }
31840ae1 486
920bbbfb 487 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
a76a3cd4 488 inode_sub_bytes(inode,
920bbbfb
YZ
489 extent_end - key.offset);
490 extent_end = ALIGN(extent_end,
491 root->sectorsize);
492 } else if (disk_bytenr > 0) {
31840ae1 493 ret = btrfs_free_extent(trans, root,
920bbbfb
YZ
494 disk_bytenr, num_bytes, 0,
495 root->root_key.objectid,
5d4f98a2 496 key.objectid, key.offset -
920bbbfb 497 extent_offset);
31840ae1 498 BUG_ON(ret);
920bbbfb
YZ
499 inode_sub_bytes(inode,
500 extent_end - key.offset);
501 *hint_byte = disk_bytenr;
31840ae1 502 }
31840ae1 503
920bbbfb
YZ
504 if (end == extent_end)
505 break;
506
507 if (path->slots[0] + 1 < btrfs_header_nritems(leaf)) {
508 path->slots[0]++;
509 goto next_slot;
510 }
511
512 ret = btrfs_del_items(trans, root, path, del_slot,
513 del_nr);
514 BUG_ON(ret);
515
516 del_nr = 0;
517 del_slot = 0;
518
519 btrfs_release_path(root, path);
520 continue;
39279cc3 521 }
920bbbfb
YZ
522
523 BUG_ON(1);
39279cc3 524 }
920bbbfb
YZ
525
526 if (del_nr > 0) {
527 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
528 BUG_ON(ret);
6643558d 529 }
920bbbfb
YZ
530
531 btrfs_free_path(path);
39279cc3
CM
532 return ret;
533}
534
d899e052 535static int extent_mergeable(struct extent_buffer *leaf, int slot,
6c7d54ac
YZ
536 u64 objectid, u64 bytenr, u64 orig_offset,
537 u64 *start, u64 *end)
d899e052
YZ
538{
539 struct btrfs_file_extent_item *fi;
540 struct btrfs_key key;
541 u64 extent_end;
542
543 if (slot < 0 || slot >= btrfs_header_nritems(leaf))
544 return 0;
545
546 btrfs_item_key_to_cpu(leaf, &key, slot);
547 if (key.objectid != objectid || key.type != BTRFS_EXTENT_DATA_KEY)
548 return 0;
549
550 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
551 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG ||
552 btrfs_file_extent_disk_bytenr(leaf, fi) != bytenr ||
6c7d54ac 553 btrfs_file_extent_offset(leaf, fi) != key.offset - orig_offset ||
d899e052
YZ
554 btrfs_file_extent_compression(leaf, fi) ||
555 btrfs_file_extent_encryption(leaf, fi) ||
556 btrfs_file_extent_other_encoding(leaf, fi))
557 return 0;
558
559 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
560 if ((*start && *start != key.offset) || (*end && *end != extent_end))
561 return 0;
562
563 *start = key.offset;
564 *end = extent_end;
565 return 1;
566}
567
568/*
569 * Mark extent in the range start - end as written.
570 *
571 * This changes extent type from 'pre-allocated' to 'regular'. If only
572 * part of extent is marked as written, the extent will be split into
573 * two or three.
574 */
575int btrfs_mark_extent_written(struct btrfs_trans_handle *trans,
d899e052
YZ
576 struct inode *inode, u64 start, u64 end)
577{
920bbbfb 578 struct btrfs_root *root = BTRFS_I(inode)->root;
d899e052
YZ
579 struct extent_buffer *leaf;
580 struct btrfs_path *path;
581 struct btrfs_file_extent_item *fi;
582 struct btrfs_key key;
920bbbfb 583 struct btrfs_key new_key;
d899e052
YZ
584 u64 bytenr;
585 u64 num_bytes;
586 u64 extent_end;
5d4f98a2 587 u64 orig_offset;
d899e052
YZ
588 u64 other_start;
589 u64 other_end;
920bbbfb
YZ
590 u64 split;
591 int del_nr = 0;
592 int del_slot = 0;
6c7d54ac 593 int recow;
d899e052
YZ
594 int ret;
595
596 btrfs_drop_extent_cache(inode, start, end - 1, 0);
597
598 path = btrfs_alloc_path();
599 BUG_ON(!path);
600again:
6c7d54ac 601 recow = 0;
920bbbfb 602 split = start;
d899e052
YZ
603 key.objectid = inode->i_ino;
604 key.type = BTRFS_EXTENT_DATA_KEY;
920bbbfb 605 key.offset = split;
d899e052
YZ
606
607 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
41415730
JB
608 if (ret < 0)
609 goto out;
d899e052
YZ
610 if (ret > 0 && path->slots[0] > 0)
611 path->slots[0]--;
612
613 leaf = path->nodes[0];
614 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
615 BUG_ON(key.objectid != inode->i_ino ||
616 key.type != BTRFS_EXTENT_DATA_KEY);
617 fi = btrfs_item_ptr(leaf, path->slots[0],
618 struct btrfs_file_extent_item);
920bbbfb
YZ
619 BUG_ON(btrfs_file_extent_type(leaf, fi) !=
620 BTRFS_FILE_EXTENT_PREALLOC);
d899e052
YZ
621 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
622 BUG_ON(key.offset > start || extent_end < end);
623
624 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
625 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
5d4f98a2 626 orig_offset = key.offset - btrfs_file_extent_offset(leaf, fi);
6c7d54ac
YZ
627 memcpy(&new_key, &key, sizeof(new_key));
628
629 if (start == key.offset && end < extent_end) {
630 other_start = 0;
631 other_end = start;
632 if (extent_mergeable(leaf, path->slots[0] - 1,
633 inode->i_ino, bytenr, orig_offset,
634 &other_start, &other_end)) {
635 new_key.offset = end;
636 btrfs_set_item_key_safe(trans, root, path, &new_key);
637 fi = btrfs_item_ptr(leaf, path->slots[0],
638 struct btrfs_file_extent_item);
639 btrfs_set_file_extent_num_bytes(leaf, fi,
640 extent_end - end);
641 btrfs_set_file_extent_offset(leaf, fi,
642 end - orig_offset);
643 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
644 struct btrfs_file_extent_item);
645 btrfs_set_file_extent_num_bytes(leaf, fi,
646 end - other_start);
647 btrfs_mark_buffer_dirty(leaf);
648 goto out;
649 }
650 }
651
652 if (start > key.offset && end == extent_end) {
653 other_start = end;
654 other_end = 0;
655 if (extent_mergeable(leaf, path->slots[0] + 1,
656 inode->i_ino, bytenr, orig_offset,
657 &other_start, &other_end)) {
658 fi = btrfs_item_ptr(leaf, path->slots[0],
659 struct btrfs_file_extent_item);
660 btrfs_set_file_extent_num_bytes(leaf, fi,
661 start - key.offset);
662 path->slots[0]++;
663 new_key.offset = start;
664 btrfs_set_item_key_safe(trans, root, path, &new_key);
665
666 fi = btrfs_item_ptr(leaf, path->slots[0],
667 struct btrfs_file_extent_item);
668 btrfs_set_file_extent_num_bytes(leaf, fi,
669 other_end - start);
670 btrfs_set_file_extent_offset(leaf, fi,
671 start - orig_offset);
672 btrfs_mark_buffer_dirty(leaf);
673 goto out;
674 }
675 }
d899e052 676
920bbbfb
YZ
677 while (start > key.offset || end < extent_end) {
678 if (key.offset == start)
679 split = end;
680
920bbbfb
YZ
681 new_key.offset = split;
682 ret = btrfs_duplicate_item(trans, root, path, &new_key);
683 if (ret == -EAGAIN) {
684 btrfs_release_path(root, path);
685 goto again;
d899e052 686 }
920bbbfb 687 BUG_ON(ret < 0);
d899e052 688
920bbbfb
YZ
689 leaf = path->nodes[0];
690 fi = btrfs_item_ptr(leaf, path->slots[0] - 1,
d899e052 691 struct btrfs_file_extent_item);
d899e052 692 btrfs_set_file_extent_num_bytes(leaf, fi,
920bbbfb
YZ
693 split - key.offset);
694
695 fi = btrfs_item_ptr(leaf, path->slots[0],
696 struct btrfs_file_extent_item);
697
698 btrfs_set_file_extent_offset(leaf, fi, split - orig_offset);
699 btrfs_set_file_extent_num_bytes(leaf, fi,
700 extent_end - split);
d899e052
YZ
701 btrfs_mark_buffer_dirty(leaf);
702
920bbbfb
YZ
703 ret = btrfs_inc_extent_ref(trans, root, bytenr, num_bytes, 0,
704 root->root_key.objectid,
705 inode->i_ino, orig_offset);
d899e052 706 BUG_ON(ret);
d899e052 707
920bbbfb
YZ
708 if (split == start) {
709 key.offset = start;
710 } else {
711 BUG_ON(start != key.offset);
d899e052 712 path->slots[0]--;
920bbbfb 713 extent_end = end;
d899e052 714 }
6c7d54ac 715 recow = 1;
d899e052
YZ
716 }
717
920bbbfb
YZ
718 other_start = end;
719 other_end = 0;
6c7d54ac
YZ
720 if (extent_mergeable(leaf, path->slots[0] + 1,
721 inode->i_ino, bytenr, orig_offset,
722 &other_start, &other_end)) {
723 if (recow) {
724 btrfs_release_path(root, path);
725 goto again;
726 }
920bbbfb
YZ
727 extent_end = other_end;
728 del_slot = path->slots[0] + 1;
729 del_nr++;
730 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
731 0, root->root_key.objectid,
732 inode->i_ino, orig_offset);
733 BUG_ON(ret);
d899e052 734 }
920bbbfb
YZ
735 other_start = 0;
736 other_end = start;
6c7d54ac
YZ
737 if (extent_mergeable(leaf, path->slots[0] - 1,
738 inode->i_ino, bytenr, orig_offset,
739 &other_start, &other_end)) {
740 if (recow) {
741 btrfs_release_path(root, path);
742 goto again;
743 }
920bbbfb
YZ
744 key.offset = other_start;
745 del_slot = path->slots[0];
746 del_nr++;
747 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
748 0, root->root_key.objectid,
749 inode->i_ino, orig_offset);
750 BUG_ON(ret);
751 }
752 if (del_nr == 0) {
3f6fae95
SL
753 fi = btrfs_item_ptr(leaf, path->slots[0],
754 struct btrfs_file_extent_item);
920bbbfb
YZ
755 btrfs_set_file_extent_type(leaf, fi,
756 BTRFS_FILE_EXTENT_REG);
757 btrfs_mark_buffer_dirty(leaf);
6c7d54ac 758 } else {
3f6fae95
SL
759 fi = btrfs_item_ptr(leaf, del_slot - 1,
760 struct btrfs_file_extent_item);
6c7d54ac
YZ
761 btrfs_set_file_extent_type(leaf, fi,
762 BTRFS_FILE_EXTENT_REG);
763 btrfs_set_file_extent_num_bytes(leaf, fi,
764 extent_end - key.offset);
765 btrfs_mark_buffer_dirty(leaf);
920bbbfb 766
6c7d54ac
YZ
767 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
768 BUG_ON(ret);
769 }
920bbbfb 770out:
d899e052
YZ
771 btrfs_free_path(path);
772 return 0;
773}
774
b1bf862e
CM
775/*
776 * on error we return an unlocked page and the error value
777 * on success we return a locked page and 0
778 */
779static int prepare_uptodate_page(struct page *page, u64 pos)
780{
781 int ret = 0;
782
783 if ((pos & (PAGE_CACHE_SIZE - 1)) && !PageUptodate(page)) {
784 ret = btrfs_readpage(NULL, page);
785 if (ret)
786 return ret;
787 lock_page(page);
788 if (!PageUptodate(page)) {
789 unlock_page(page);
790 return -EIO;
791 }
792 }
793 return 0;
794}
795
39279cc3 796/*
d352ac68
CM
797 * this gets pages into the page cache and locks them down, it also properly
798 * waits for data=ordered extents to finish before allowing the pages to be
799 * modified.
39279cc3 800 */
d397712b 801static noinline int prepare_pages(struct btrfs_root *root, struct file *file,
98ed5174
CM
802 struct page **pages, size_t num_pages,
803 loff_t pos, unsigned long first_index,
804 unsigned long last_index, size_t write_bytes)
39279cc3 805{
2ac55d41 806 struct extent_state *cached_state = NULL;
39279cc3
CM
807 int i;
808 unsigned long index = pos >> PAGE_CACHE_SHIFT;
6da6abae 809 struct inode *inode = fdentry(file)->d_inode;
39279cc3 810 int err = 0;
b1bf862e 811 int faili = 0;
8c2383c3 812 u64 start_pos;
e6dcd2dc 813 u64 last_pos;
8c2383c3 814
5f39d397 815 start_pos = pos & ~((u64)root->sectorsize - 1);
e6dcd2dc 816 last_pos = ((u64)index + num_pages) << PAGE_CACHE_SHIFT;
39279cc3 817
9036c102 818 if (start_pos > inode->i_size) {
a41ad394 819 err = btrfs_cont_expand(inode, i_size_read(inode), start_pos);
9036c102
YZ
820 if (err)
821 return err;
822 }
823
e6dcd2dc 824again:
39279cc3
CM
825 for (i = 0; i < num_pages; i++) {
826 pages[i] = grab_cache_page(inode->i_mapping, index + i);
827 if (!pages[i]) {
b1bf862e
CM
828 faili = i - 1;
829 err = -ENOMEM;
830 goto fail;
831 }
832
833 if (i == 0)
834 err = prepare_uptodate_page(pages[i], pos);
835 if (i == num_pages - 1)
836 err = prepare_uptodate_page(pages[i],
837 pos + write_bytes);
838 if (err) {
839 page_cache_release(pages[i]);
840 faili = i - 1;
841 goto fail;
39279cc3 842 }
ccd467d6 843 wait_on_page_writeback(pages[i]);
39279cc3 844 }
b1bf862e 845 err = 0;
0762704b 846 if (start_pos < inode->i_size) {
e6dcd2dc 847 struct btrfs_ordered_extent *ordered;
2ac55d41
JB
848 lock_extent_bits(&BTRFS_I(inode)->io_tree,
849 start_pos, last_pos - 1, 0, &cached_state,
850 GFP_NOFS);
d397712b
CM
851 ordered = btrfs_lookup_first_ordered_extent(inode,
852 last_pos - 1);
e6dcd2dc
CM
853 if (ordered &&
854 ordered->file_offset + ordered->len > start_pos &&
855 ordered->file_offset < last_pos) {
856 btrfs_put_ordered_extent(ordered);
2ac55d41
JB
857 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
858 start_pos, last_pos - 1,
859 &cached_state, GFP_NOFS);
e6dcd2dc
CM
860 for (i = 0; i < num_pages; i++) {
861 unlock_page(pages[i]);
862 page_cache_release(pages[i]);
863 }
864 btrfs_wait_ordered_range(inode, start_pos,
865 last_pos - start_pos);
866 goto again;
867 }
868 if (ordered)
869 btrfs_put_ordered_extent(ordered);
870
2ac55d41 871 clear_extent_bit(&BTRFS_I(inode)->io_tree, start_pos,
32c00aff 872 last_pos - 1, EXTENT_DIRTY | EXTENT_DELALLOC |
2ac55d41 873 EXTENT_DO_ACCOUNTING, 0, 0, &cached_state,
0762704b 874 GFP_NOFS);
2ac55d41
JB
875 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
876 start_pos, last_pos - 1, &cached_state,
877 GFP_NOFS);
0762704b 878 }
e6dcd2dc 879 for (i = 0; i < num_pages; i++) {
f87f057b 880 clear_page_dirty_for_io(pages[i]);
e6dcd2dc
CM
881 set_page_extent_mapped(pages[i]);
882 WARN_ON(!PageLocked(pages[i]));
883 }
39279cc3 884 return 0;
b1bf862e
CM
885fail:
886 while (faili >= 0) {
887 unlock_page(pages[faili]);
888 page_cache_release(pages[faili]);
889 faili--;
890 }
891 return err;
892
39279cc3
CM
893}
894
d0215f3e
JB
895static noinline ssize_t __btrfs_buffered_write(struct file *file,
896 struct iov_iter *i,
897 loff_t pos)
4b46fce2 898{
11c65dcc
JB
899 struct inode *inode = fdentry(file)->d_inode;
900 struct btrfs_root *root = BTRFS_I(inode)->root;
11c65dcc 901 struct page **pages = NULL;
39279cc3
CM
902 unsigned long first_index;
903 unsigned long last_index;
d0215f3e
JB
904 size_t num_written = 0;
905 int nrptrs;
c9149235 906 int ret = 0;
4b46fce2 907
d0215f3e 908 nrptrs = min((iov_iter_count(i) + PAGE_CACHE_SIZE - 1) /
11c65dcc
JB
909 PAGE_CACHE_SIZE, PAGE_CACHE_SIZE /
910 (sizeof(struct page *)));
8c2383c3 911 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
d0215f3e
JB
912 if (!pages)
913 return -ENOMEM;
ab93dbec 914
39279cc3 915 first_index = pos >> PAGE_CACHE_SHIFT;
d0215f3e 916 last_index = (pos + iov_iter_count(i)) >> PAGE_CACHE_SHIFT;
39279cc3 917
d0215f3e 918 while (iov_iter_count(i) > 0) {
39279cc3 919 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
d0215f3e 920 size_t write_bytes = min(iov_iter_count(i),
11c65dcc 921 nrptrs * (size_t)PAGE_CACHE_SIZE -
8c2383c3 922 offset);
3a90983d
YZ
923 size_t num_pages = (write_bytes + offset +
924 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
d0215f3e
JB
925 size_t dirty_pages;
926 size_t copied;
39279cc3 927
8c2383c3 928 WARN_ON(num_pages > nrptrs);
1832a6d5 929
914ee295
XZ
930 /*
931 * Fault pages before locking them in prepare_pages
932 * to avoid recursive lock
933 */
d0215f3e 934 if (unlikely(iov_iter_fault_in_readable(i, write_bytes))) {
914ee295 935 ret = -EFAULT;
d0215f3e 936 break;
914ee295
XZ
937 }
938
939 ret = btrfs_delalloc_reserve_space(inode,
940 num_pages << PAGE_CACHE_SHIFT);
1832a6d5 941 if (ret)
d0215f3e 942 break;
1832a6d5 943
4a64001f
JB
944 /*
945 * This is going to setup the pages array with the number of
946 * pages we want, so we don't really need to worry about the
947 * contents of pages from loop to loop
948 */
39279cc3
CM
949 ret = prepare_pages(root, file, pages, num_pages,
950 pos, first_index, last_index,
8c2383c3 951 write_bytes);
6a63209f 952 if (ret) {
914ee295
XZ
953 btrfs_delalloc_release_space(inode,
954 num_pages << PAGE_CACHE_SHIFT);
d0215f3e 955 break;
6a63209f 956 }
39279cc3 957
914ee295 958 copied = btrfs_copy_from_user(pos, num_pages,
d0215f3e 959 write_bytes, pages, i);
b1bf862e
CM
960
961 /*
962 * if we have trouble faulting in the pages, fall
963 * back to one page at a time
964 */
965 if (copied < write_bytes)
966 nrptrs = 1;
967
968 if (copied == 0)
969 dirty_pages = 0;
970 else
971 dirty_pages = (copied + offset +
972 PAGE_CACHE_SIZE - 1) >>
973 PAGE_CACHE_SHIFT;
914ee295 974
d0215f3e
JB
975 /*
976 * If we had a short copy we need to release the excess delaloc
977 * bytes we reserved. We need to increment outstanding_extents
978 * because btrfs_delalloc_release_space will decrement it, but
979 * we still have an outstanding extent for the chunk we actually
980 * managed to copy.
981 */
914ee295
XZ
982 if (num_pages > dirty_pages) {
983 if (copied > 0)
984 atomic_inc(
985 &BTRFS_I(inode)->outstanding_extents);
986 btrfs_delalloc_release_space(inode,
987 (num_pages - dirty_pages) <<
988 PAGE_CACHE_SHIFT);
989 }
990
991 if (copied > 0) {
be1a12a0
JB
992 ret = btrfs_dirty_pages(root, inode, pages,
993 dirty_pages, pos, copied,
994 NULL);
d0215f3e
JB
995 if (ret) {
996 btrfs_delalloc_release_space(inode,
997 dirty_pages << PAGE_CACHE_SHIFT);
998 btrfs_drop_pages(pages, num_pages);
999 break;
1000 }
54aa1f4d 1001 }
39279cc3 1002
39279cc3
CM
1003 btrfs_drop_pages(pages, num_pages);
1004
d0215f3e
JB
1005 cond_resched();
1006
1007 balance_dirty_pages_ratelimited_nr(inode->i_mapping,
1008 dirty_pages);
1009 if (dirty_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
1010 btrfs_btree_balance_dirty(root, 1);
1011 btrfs_throttle(root);
cb843a6f 1012
914ee295
XZ
1013 pos += copied;
1014 num_written += copied;
d0215f3e 1015 }
39279cc3 1016
d0215f3e
JB
1017 kfree(pages);
1018
1019 return num_written ? num_written : ret;
1020}
1021
1022static ssize_t __btrfs_direct_write(struct kiocb *iocb,
1023 const struct iovec *iov,
1024 unsigned long nr_segs, loff_t pos,
1025 loff_t *ppos, size_t count, size_t ocount)
1026{
1027 struct file *file = iocb->ki_filp;
1028 struct inode *inode = fdentry(file)->d_inode;
1029 struct iov_iter i;
1030 ssize_t written;
1031 ssize_t written_buffered;
1032 loff_t endbyte;
1033 int err;
1034
1035 written = generic_file_direct_write(iocb, iov, &nr_segs, pos, ppos,
1036 count, ocount);
1037
1038 /*
1039 * the generic O_DIRECT will update in-memory i_size after the
1040 * DIOs are done. But our endio handlers that update the on
1041 * disk i_size never update past the in memory i_size. So we
1042 * need one more update here to catch any additions to the
1043 * file
1044 */
1045 if (inode->i_size != BTRFS_I(inode)->disk_i_size) {
1046 btrfs_ordered_update_i_size(inode, inode->i_size, NULL);
1047 mark_inode_dirty(inode);
1048 }
1049
1050 if (written < 0 || written == count)
1051 return written;
1052
1053 pos += written;
1054 count -= written;
1055 iov_iter_init(&i, iov, nr_segs, count, written);
1056 written_buffered = __btrfs_buffered_write(file, &i, pos);
1057 if (written_buffered < 0) {
1058 err = written_buffered;
1059 goto out;
39279cc3 1060 }
d0215f3e
JB
1061 endbyte = pos + written_buffered - 1;
1062 err = filemap_write_and_wait_range(file->f_mapping, pos, endbyte);
1063 if (err)
1064 goto out;
1065 written += written_buffered;
1066 *ppos = pos + written_buffered;
1067 invalidate_mapping_pages(file->f_mapping, pos >> PAGE_CACHE_SHIFT,
1068 endbyte >> PAGE_CACHE_SHIFT);
39279cc3 1069out:
d0215f3e
JB
1070 return written ? written : err;
1071}
5b92ee72 1072
d0215f3e
JB
1073static ssize_t btrfs_file_aio_write(struct kiocb *iocb,
1074 const struct iovec *iov,
1075 unsigned long nr_segs, loff_t pos)
1076{
1077 struct file *file = iocb->ki_filp;
1078 struct inode *inode = fdentry(file)->d_inode;
1079 struct btrfs_root *root = BTRFS_I(inode)->root;
1080 loff_t *ppos = &iocb->ki_pos;
1081 ssize_t num_written = 0;
1082 ssize_t err = 0;
1083 size_t count, ocount;
1084
1085 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
1086
1087 mutex_lock(&inode->i_mutex);
1088
1089 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
1090 if (err) {
1091 mutex_unlock(&inode->i_mutex);
1092 goto out;
1093 }
1094 count = ocount;
1095
1096 current->backing_dev_info = inode->i_mapping->backing_dev_info;
1097 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
1098 if (err) {
1099 mutex_unlock(&inode->i_mutex);
1100 goto out;
1101 }
1102
1103 if (count == 0) {
1104 mutex_unlock(&inode->i_mutex);
1105 goto out;
1106 }
1107
1108 err = file_remove_suid(file);
1109 if (err) {
1110 mutex_unlock(&inode->i_mutex);
1111 goto out;
1112 }
1113
1114 /*
1115 * If BTRFS flips readonly due to some impossible error
1116 * (fs_info->fs_state now has BTRFS_SUPER_FLAG_ERROR),
1117 * although we have opened a file as writable, we have
1118 * to stop this write operation to ensure FS consistency.
1119 */
1120 if (root->fs_info->fs_state & BTRFS_SUPER_FLAG_ERROR) {
1121 mutex_unlock(&inode->i_mutex);
1122 err = -EROFS;
1123 goto out;
1124 }
1125
1126 file_update_time(file);
1127 BTRFS_I(inode)->sequence++;
1128
1129 if (unlikely(file->f_flags & O_DIRECT)) {
1130 num_written = __btrfs_direct_write(iocb, iov, nr_segs,
1131 pos, ppos, count, ocount);
1132 } else {
1133 struct iov_iter i;
1134
1135 iov_iter_init(&i, iov, nr_segs, count, num_written);
1136
1137 num_written = __btrfs_buffered_write(file, &i, pos);
1138 if (num_written > 0)
1139 *ppos = pos + num_written;
1140 }
1141
1142 mutex_unlock(&inode->i_mutex);
2ff3e9b6 1143
5a3f23d5
CM
1144 /*
1145 * we want to make sure fsync finds this change
1146 * but we haven't joined a transaction running right now.
1147 *
1148 * Later on, someone is sure to update the inode and get the
1149 * real transid recorded.
1150 *
1151 * We set last_trans now to the fs_info generation + 1,
1152 * this will either be one more than the running transaction
1153 * or the generation used for the next transaction if there isn't
1154 * one running right now.
1155 */
1156 BTRFS_I(inode)->last_trans = root->fs_info->generation + 1;
d0215f3e
JB
1157 if (num_written > 0 || num_written == -EIOCBQUEUED) {
1158 err = generic_write_sync(file, pos, num_written);
1159 if (err < 0 && num_written > 0)
2ff3e9b6
CM
1160 num_written = err;
1161 }
d0215f3e 1162out:
39279cc3 1163 current->backing_dev_info = NULL;
39279cc3
CM
1164 return num_written ? num_written : err;
1165}
1166
d397712b 1167int btrfs_release_file(struct inode *inode, struct file *filp)
e1b81e67 1168{
5a3f23d5
CM
1169 /*
1170 * ordered_data_close is set by settattr when we are about to truncate
1171 * a file from a non-zero size to a zero size. This tries to
1172 * flush down new bytes that may have been written if the
1173 * application were using truncate to replace a file in place.
1174 */
1175 if (BTRFS_I(inode)->ordered_data_close) {
1176 BTRFS_I(inode)->ordered_data_close = 0;
1177 btrfs_add_ordered_operation(NULL, BTRFS_I(inode)->root, inode);
1178 if (inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
1179 filemap_flush(inode->i_mapping);
1180 }
6bf13c0c
SW
1181 if (filp->private_data)
1182 btrfs_ioctl_trans_end(filp);
e1b81e67
M
1183 return 0;
1184}
1185
d352ac68
CM
1186/*
1187 * fsync call for both files and directories. This logs the inode into
1188 * the tree log instead of forcing full commits whenever possible.
1189 *
1190 * It needs to call filemap_fdatawait so that all ordered extent updates are
1191 * in the metadata btree are up to date for copying to the log.
1192 *
1193 * It drops the inode mutex before doing the tree log commit. This is an
1194 * important optimization for directories because holding the mutex prevents
1195 * new operations on the dir while we write to disk.
1196 */
7ea80859 1197int btrfs_sync_file(struct file *file, int datasync)
39279cc3 1198{
7ea80859 1199 struct dentry *dentry = file->f_path.dentry;
39279cc3
CM
1200 struct inode *inode = dentry->d_inode;
1201 struct btrfs_root *root = BTRFS_I(inode)->root;
15ee9bc7 1202 int ret = 0;
39279cc3
CM
1203 struct btrfs_trans_handle *trans;
1204
1abe9b8a 1205 trace_btrfs_sync_file(file, datasync);
257c62e1
CM
1206
1207 /* we wait first, since the writeback may change the inode */
1208 root->log_batch++;
1209 /* the VFS called filemap_fdatawrite for us */
1210 btrfs_wait_ordered_range(inode, 0, (u64)-1);
1211 root->log_batch++;
1212
39279cc3 1213 /*
15ee9bc7
JB
1214 * check the transaction that last modified this inode
1215 * and see if its already been committed
39279cc3 1216 */
15ee9bc7
JB
1217 if (!BTRFS_I(inode)->last_trans)
1218 goto out;
a2135011 1219
257c62e1
CM
1220 /*
1221 * if the last transaction that changed this file was before
1222 * the current transaction, we can bail out now without any
1223 * syncing
1224 */
15ee9bc7
JB
1225 mutex_lock(&root->fs_info->trans_mutex);
1226 if (BTRFS_I(inode)->last_trans <=
1227 root->fs_info->last_trans_committed) {
1228 BTRFS_I(inode)->last_trans = 0;
1229 mutex_unlock(&root->fs_info->trans_mutex);
1230 goto out;
1231 }
1232 mutex_unlock(&root->fs_info->trans_mutex);
1233
1234 /*
a52d9a80
CM
1235 * ok we haven't committed the transaction yet, lets do a commit
1236 */
6f902af4 1237 if (file->private_data)
6bf13c0c
SW
1238 btrfs_ioctl_trans_end(file);
1239
a22285a6
YZ
1240 trans = btrfs_start_transaction(root, 0);
1241 if (IS_ERR(trans)) {
1242 ret = PTR_ERR(trans);
39279cc3
CM
1243 goto out;
1244 }
e02119d5 1245
2cfbd50b 1246 ret = btrfs_log_dentry_safe(trans, root, dentry);
d397712b 1247 if (ret < 0)
e02119d5 1248 goto out;
49eb7e46
CM
1249
1250 /* we've logged all the items and now have a consistent
1251 * version of the file in the log. It is possible that
1252 * someone will come in and modify the file, but that's
1253 * fine because the log is consistent on disk, and we
1254 * have references to all of the file's extents
1255 *
1256 * It is possible that someone will come in and log the
1257 * file again, but that will end up using the synchronization
1258 * inside btrfs_sync_log to keep things safe.
1259 */
2cfbd50b 1260 mutex_unlock(&dentry->d_inode->i_mutex);
49eb7e46 1261
257c62e1
CM
1262 if (ret != BTRFS_NO_LOG_SYNC) {
1263 if (ret > 0) {
12fcfd22 1264 ret = btrfs_commit_transaction(trans, root);
257c62e1
CM
1265 } else {
1266 ret = btrfs_sync_log(trans, root);
1267 if (ret == 0)
1268 ret = btrfs_end_transaction(trans, root);
1269 else
1270 ret = btrfs_commit_transaction(trans, root);
1271 }
1272 } else {
1273 ret = btrfs_end_transaction(trans, root);
e02119d5 1274 }
2cfbd50b 1275 mutex_lock(&dentry->d_inode->i_mutex);
39279cc3 1276out:
014e4ac4 1277 return ret > 0 ? -EIO : ret;
39279cc3
CM
1278}
1279
f0f37e2f 1280static const struct vm_operations_struct btrfs_file_vm_ops = {
92fee66d 1281 .fault = filemap_fault,
9ebefb18
CM
1282 .page_mkwrite = btrfs_page_mkwrite,
1283};
1284
1285static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
1286{
058a457e
MX
1287 struct address_space *mapping = filp->f_mapping;
1288
1289 if (!mapping->a_ops->readpage)
1290 return -ENOEXEC;
1291
9ebefb18 1292 file_accessed(filp);
058a457e
MX
1293 vma->vm_ops = &btrfs_file_vm_ops;
1294 vma->vm_flags |= VM_CAN_NONLINEAR;
1295
9ebefb18
CM
1296 return 0;
1297}
1298
2fe17c10
CH
1299static long btrfs_fallocate(struct file *file, int mode,
1300 loff_t offset, loff_t len)
1301{
1302 struct inode *inode = file->f_path.dentry->d_inode;
1303 struct extent_state *cached_state = NULL;
1304 u64 cur_offset;
1305 u64 last_byte;
1306 u64 alloc_start;
1307 u64 alloc_end;
1308 u64 alloc_hint = 0;
1309 u64 locked_end;
1310 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
1311 struct extent_map *em;
1312 int ret;
1313
1314 alloc_start = offset & ~mask;
1315 alloc_end = (offset + len + mask) & ~mask;
1316
1317 /* We only support the FALLOC_FL_KEEP_SIZE mode */
1318 if (mode & ~FALLOC_FL_KEEP_SIZE)
1319 return -EOPNOTSUPP;
1320
1321 /*
1322 * wait for ordered IO before we have any locks. We'll loop again
1323 * below with the locks held.
1324 */
1325 btrfs_wait_ordered_range(inode, alloc_start, alloc_end - alloc_start);
1326
1327 mutex_lock(&inode->i_mutex);
1328 ret = inode_newsize_ok(inode, alloc_end);
1329 if (ret)
1330 goto out;
1331
1332 if (alloc_start > inode->i_size) {
a41ad394
JB
1333 ret = btrfs_cont_expand(inode, i_size_read(inode),
1334 alloc_start);
2fe17c10
CH
1335 if (ret)
1336 goto out;
1337 }
1338
1339 ret = btrfs_check_data_free_space(inode, alloc_end - alloc_start);
1340 if (ret)
1341 goto out;
1342
1343 locked_end = alloc_end - 1;
1344 while (1) {
1345 struct btrfs_ordered_extent *ordered;
1346
1347 /* the extent lock is ordered inside the running
1348 * transaction
1349 */
1350 lock_extent_bits(&BTRFS_I(inode)->io_tree, alloc_start,
1351 locked_end, 0, &cached_state, GFP_NOFS);
1352 ordered = btrfs_lookup_first_ordered_extent(inode,
1353 alloc_end - 1);
1354 if (ordered &&
1355 ordered->file_offset + ordered->len > alloc_start &&
1356 ordered->file_offset < alloc_end) {
1357 btrfs_put_ordered_extent(ordered);
1358 unlock_extent_cached(&BTRFS_I(inode)->io_tree,
1359 alloc_start, locked_end,
1360 &cached_state, GFP_NOFS);
1361 /*
1362 * we can't wait on the range with the transaction
1363 * running or with the extent lock held
1364 */
1365 btrfs_wait_ordered_range(inode, alloc_start,
1366 alloc_end - alloc_start);
1367 } else {
1368 if (ordered)
1369 btrfs_put_ordered_extent(ordered);
1370 break;
1371 }
1372 }
1373
1374 cur_offset = alloc_start;
1375 while (1) {
1376 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
1377 alloc_end - cur_offset, 0);
1378 BUG_ON(IS_ERR(em) || !em);
1379 last_byte = min(extent_map_end(em), alloc_end);
1380 last_byte = (last_byte + mask) & ~mask;
1381 if (em->block_start == EXTENT_MAP_HOLE ||
1382 (cur_offset >= inode->i_size &&
1383 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
1384 ret = btrfs_prealloc_file_range(inode, mode, cur_offset,
1385 last_byte - cur_offset,
1386 1 << inode->i_blkbits,
1387 offset + len,
1388 &alloc_hint);
1389 if (ret < 0) {
1390 free_extent_map(em);
1391 break;
1392 }
1393 }
1394 free_extent_map(em);
1395
1396 cur_offset = last_byte;
1397 if (cur_offset >= alloc_end) {
1398 ret = 0;
1399 break;
1400 }
1401 }
1402 unlock_extent_cached(&BTRFS_I(inode)->io_tree, alloc_start, locked_end,
1403 &cached_state, GFP_NOFS);
1404
1405 btrfs_free_reserved_data_space(inode, alloc_end - alloc_start);
1406out:
1407 mutex_unlock(&inode->i_mutex);
1408 return ret;
1409}
1410
828c0950 1411const struct file_operations btrfs_file_operations = {
39279cc3
CM
1412 .llseek = generic_file_llseek,
1413 .read = do_sync_read,
4a001071 1414 .write = do_sync_write,
9ebefb18 1415 .aio_read = generic_file_aio_read,
e9906a98 1416 .splice_read = generic_file_splice_read,
11c65dcc 1417 .aio_write = btrfs_file_aio_write,
9ebefb18 1418 .mmap = btrfs_file_mmap,
39279cc3 1419 .open = generic_file_open,
e1b81e67 1420 .release = btrfs_release_file,
39279cc3 1421 .fsync = btrfs_sync_file,
2fe17c10 1422 .fallocate = btrfs_fallocate,
34287aa3 1423 .unlocked_ioctl = btrfs_ioctl,
39279cc3 1424#ifdef CONFIG_COMPAT
34287aa3 1425 .compat_ioctl = btrfs_ioctl,
39279cc3
CM
1426#endif
1427};