Btrfs: fix double free in find_lock_delalloc_range
[linux-2.6-block.git] / fs / btrfs / inode.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
8f18cf13 19#include <linux/kernel.h>
065631f6 20#include <linux/bio.h>
39279cc3 21#include <linux/buffer_head.h>
f2eb0a24 22#include <linux/file.h>
39279cc3
CM
23#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
39279cc3
CM
29#include <linux/backing-dev.h>
30#include <linux/mpage.h>
31#include <linux/swap.h>
32#include <linux/writeback.h>
33#include <linux/statfs.h>
34#include <linux/compat.h>
a27bb332 35#include <linux/aio.h>
9ebefb18 36#include <linux/bit_spinlock.h>
5103e947 37#include <linux/xattr.h>
33268eaf 38#include <linux/posix_acl.h>
d899e052 39#include <linux/falloc.h>
5a0e3ad6 40#include <linux/slab.h>
7a36ddec 41#include <linux/ratelimit.h>
22c44fe6 42#include <linux/mount.h>
55e301fd 43#include <linux/btrfs.h>
53b381b3 44#include <linux/blkdev.h>
f23b5a59 45#include <linux/posix_acl_xattr.h>
39279cc3
CM
46#include "ctree.h"
47#include "disk-io.h"
48#include "transaction.h"
49#include "btrfs_inode.h"
39279cc3 50#include "print-tree.h"
e6dcd2dc 51#include "ordered-data.h"
95819c05 52#include "xattr.h"
e02119d5 53#include "tree-log.h"
4a54c8c1 54#include "volumes.h"
c8b97818 55#include "compression.h"
b4ce94de 56#include "locking.h"
dc89e982 57#include "free-space-cache.h"
581bb050 58#include "inode-map.h"
38c227d8 59#include "backref.h"
f23b5a59 60#include "hash.h"
63541927 61#include "props.h"
39279cc3
CM
62
63struct btrfs_iget_args {
90d3e592 64 struct btrfs_key *location;
39279cc3
CM
65 struct btrfs_root *root;
66};
67
6e1d5dcc
AD
68static const struct inode_operations btrfs_dir_inode_operations;
69static const struct inode_operations btrfs_symlink_inode_operations;
70static const struct inode_operations btrfs_dir_ro_inode_operations;
71static const struct inode_operations btrfs_special_inode_operations;
72static const struct inode_operations btrfs_file_inode_operations;
7f09410b
AD
73static const struct address_space_operations btrfs_aops;
74static const struct address_space_operations btrfs_symlink_aops;
828c0950 75static const struct file_operations btrfs_dir_file_operations;
d1310b2e 76static struct extent_io_ops btrfs_extent_io_ops;
39279cc3
CM
77
78static struct kmem_cache *btrfs_inode_cachep;
8ccf6f19 79static struct kmem_cache *btrfs_delalloc_work_cachep;
39279cc3
CM
80struct kmem_cache *btrfs_trans_handle_cachep;
81struct kmem_cache *btrfs_transaction_cachep;
39279cc3 82struct kmem_cache *btrfs_path_cachep;
dc89e982 83struct kmem_cache *btrfs_free_space_cachep;
39279cc3
CM
84
85#define S_SHIFT 12
86static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
87 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
88 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
89 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
90 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
91 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
92 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
93 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
94};
95
3972f260 96static int btrfs_setsize(struct inode *inode, struct iattr *attr);
a41ad394 97static int btrfs_truncate(struct inode *inode);
5fd02043 98static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent);
771ed689
CM
99static noinline int cow_file_range(struct inode *inode,
100 struct page *locked_page,
101 u64 start, u64 end, int *page_started,
102 unsigned long *nr_written, int unlock);
70c8a91c
JB
103static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
104 u64 len, u64 orig_start,
105 u64 block_start, u64 block_len,
cc95bef6
JB
106 u64 orig_block_len, u64 ram_bytes,
107 int type);
7b128766 108
48a3b636 109static int btrfs_dirty_inode(struct inode *inode);
7b128766 110
f34f57a3 111static int btrfs_init_inode_security(struct btrfs_trans_handle *trans,
2a7dba39
EP
112 struct inode *inode, struct inode *dir,
113 const struct qstr *qstr)
0279b4cd
JO
114{
115 int err;
116
f34f57a3 117 err = btrfs_init_acl(trans, inode, dir);
0279b4cd 118 if (!err)
2a7dba39 119 err = btrfs_xattr_security_init(trans, inode, dir, qstr);
0279b4cd
JO
120 return err;
121}
122
c8b97818
CM
123/*
124 * this does all the hard work for inserting an inline extent into
125 * the btree. The caller should have done a btrfs_drop_extents so that
126 * no overlapping inline items exist in the btree
127 */
d397712b 128static noinline int insert_inline_extent(struct btrfs_trans_handle *trans,
1acae57b 129 struct btrfs_path *path, int extent_inserted,
c8b97818
CM
130 struct btrfs_root *root, struct inode *inode,
131 u64 start, size_t size, size_t compressed_size,
fe3f566c 132 int compress_type,
c8b97818
CM
133 struct page **compressed_pages)
134{
c8b97818
CM
135 struct extent_buffer *leaf;
136 struct page *page = NULL;
137 char *kaddr;
138 unsigned long ptr;
139 struct btrfs_file_extent_item *ei;
140 int err = 0;
141 int ret;
142 size_t cur_size = size;
c8b97818 143 unsigned long offset;
c8b97818 144
fe3f566c 145 if (compressed_size && compressed_pages)
c8b97818 146 cur_size = compressed_size;
c8b97818 147
1acae57b 148 inode_add_bytes(inode, size);
c8b97818 149
1acae57b
FDBM
150 if (!extent_inserted) {
151 struct btrfs_key key;
152 size_t datasize;
c8b97818 153
1acae57b
FDBM
154 key.objectid = btrfs_ino(inode);
155 key.offset = start;
156 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
c8b97818 157
1acae57b
FDBM
158 datasize = btrfs_file_extent_calc_inline_size(cur_size);
159 path->leave_spinning = 1;
160 ret = btrfs_insert_empty_item(trans, root, path, &key,
161 datasize);
162 if (ret) {
163 err = ret;
164 goto fail;
165 }
c8b97818
CM
166 }
167 leaf = path->nodes[0];
168 ei = btrfs_item_ptr(leaf, path->slots[0],
169 struct btrfs_file_extent_item);
170 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
171 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
172 btrfs_set_file_extent_encryption(leaf, ei, 0);
173 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
174 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
175 ptr = btrfs_file_extent_inline_start(ei);
176
261507a0 177 if (compress_type != BTRFS_COMPRESS_NONE) {
c8b97818
CM
178 struct page *cpage;
179 int i = 0;
d397712b 180 while (compressed_size > 0) {
c8b97818 181 cpage = compressed_pages[i];
5b050f04 182 cur_size = min_t(unsigned long, compressed_size,
c8b97818
CM
183 PAGE_CACHE_SIZE);
184
7ac687d9 185 kaddr = kmap_atomic(cpage);
c8b97818 186 write_extent_buffer(leaf, kaddr, ptr, cur_size);
7ac687d9 187 kunmap_atomic(kaddr);
c8b97818
CM
188
189 i++;
190 ptr += cur_size;
191 compressed_size -= cur_size;
192 }
193 btrfs_set_file_extent_compression(leaf, ei,
261507a0 194 compress_type);
c8b97818
CM
195 } else {
196 page = find_get_page(inode->i_mapping,
197 start >> PAGE_CACHE_SHIFT);
198 btrfs_set_file_extent_compression(leaf, ei, 0);
7ac687d9 199 kaddr = kmap_atomic(page);
c8b97818
CM
200 offset = start & (PAGE_CACHE_SIZE - 1);
201 write_extent_buffer(leaf, kaddr + offset, ptr, size);
7ac687d9 202 kunmap_atomic(kaddr);
c8b97818
CM
203 page_cache_release(page);
204 }
205 btrfs_mark_buffer_dirty(leaf);
1acae57b 206 btrfs_release_path(path);
c8b97818 207
c2167754
YZ
208 /*
209 * we're an inline extent, so nobody can
210 * extend the file past i_size without locking
211 * a page we already have locked.
212 *
213 * We must do any isize and inode updates
214 * before we unlock the pages. Otherwise we
215 * could end up racing with unlink.
216 */
c8b97818 217 BTRFS_I(inode)->disk_i_size = inode->i_size;
79787eaa 218 ret = btrfs_update_inode(trans, root, inode);
c2167754 219
79787eaa 220 return ret;
c8b97818 221fail:
c8b97818
CM
222 return err;
223}
224
225
226/*
227 * conditionally insert an inline extent into the file. This
228 * does the checks required to make sure the data is small enough
229 * to fit as an inline extent.
230 */
00361589
JB
231static noinline int cow_file_range_inline(struct btrfs_root *root,
232 struct inode *inode, u64 start,
233 u64 end, size_t compressed_size,
234 int compress_type,
235 struct page **compressed_pages)
c8b97818 236{
00361589 237 struct btrfs_trans_handle *trans;
c8b97818
CM
238 u64 isize = i_size_read(inode);
239 u64 actual_end = min(end + 1, isize);
240 u64 inline_len = actual_end - start;
fda2832f 241 u64 aligned_end = ALIGN(end, root->sectorsize);
c8b97818
CM
242 u64 data_len = inline_len;
243 int ret;
1acae57b
FDBM
244 struct btrfs_path *path;
245 int extent_inserted = 0;
246 u32 extent_item_size;
c8b97818
CM
247
248 if (compressed_size)
249 data_len = compressed_size;
250
251 if (start > 0 ||
70b99e69 252 actual_end >= PAGE_CACHE_SIZE ||
c8b97818
CM
253 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
254 (!compressed_size &&
255 (actual_end & (root->sectorsize - 1)) == 0) ||
256 end + 1 < isize ||
257 data_len > root->fs_info->max_inline) {
258 return 1;
259 }
260
1acae57b
FDBM
261 path = btrfs_alloc_path();
262 if (!path)
263 return -ENOMEM;
264
00361589 265 trans = btrfs_join_transaction(root);
1acae57b
FDBM
266 if (IS_ERR(trans)) {
267 btrfs_free_path(path);
00361589 268 return PTR_ERR(trans);
1acae57b 269 }
00361589
JB
270 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
271
1acae57b
FDBM
272 if (compressed_size && compressed_pages)
273 extent_item_size = btrfs_file_extent_calc_inline_size(
274 compressed_size);
275 else
276 extent_item_size = btrfs_file_extent_calc_inline_size(
277 inline_len);
278
279 ret = __btrfs_drop_extents(trans, root, inode, path,
280 start, aligned_end, NULL,
281 1, 1, extent_item_size, &extent_inserted);
00361589
JB
282 if (ret) {
283 btrfs_abort_transaction(trans, root, ret);
284 goto out;
285 }
c8b97818
CM
286
287 if (isize > actual_end)
288 inline_len = min_t(u64, isize, actual_end);
1acae57b
FDBM
289 ret = insert_inline_extent(trans, path, extent_inserted,
290 root, inode, start,
c8b97818 291 inline_len, compressed_size,
fe3f566c 292 compress_type, compressed_pages);
2adcac1a 293 if (ret && ret != -ENOSPC) {
79787eaa 294 btrfs_abort_transaction(trans, root, ret);
00361589 295 goto out;
2adcac1a 296 } else if (ret == -ENOSPC) {
00361589
JB
297 ret = 1;
298 goto out;
79787eaa 299 }
2adcac1a 300
bdc20e67 301 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
0ca1f7ce 302 btrfs_delalloc_release_metadata(inode, end + 1 - start);
a1ed835e 303 btrfs_drop_extent_cache(inode, start, aligned_end - 1, 0);
00361589 304out:
1acae57b 305 btrfs_free_path(path);
00361589
JB
306 btrfs_end_transaction(trans, root);
307 return ret;
c8b97818
CM
308}
309
771ed689
CM
310struct async_extent {
311 u64 start;
312 u64 ram_size;
313 u64 compressed_size;
314 struct page **pages;
315 unsigned long nr_pages;
261507a0 316 int compress_type;
771ed689
CM
317 struct list_head list;
318};
319
320struct async_cow {
321 struct inode *inode;
322 struct btrfs_root *root;
323 struct page *locked_page;
324 u64 start;
325 u64 end;
326 struct list_head extents;
327 struct btrfs_work work;
328};
329
330static noinline int add_async_extent(struct async_cow *cow,
331 u64 start, u64 ram_size,
332 u64 compressed_size,
333 struct page **pages,
261507a0
LZ
334 unsigned long nr_pages,
335 int compress_type)
771ed689
CM
336{
337 struct async_extent *async_extent;
338
339 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
79787eaa 340 BUG_ON(!async_extent); /* -ENOMEM */
771ed689
CM
341 async_extent->start = start;
342 async_extent->ram_size = ram_size;
343 async_extent->compressed_size = compressed_size;
344 async_extent->pages = pages;
345 async_extent->nr_pages = nr_pages;
261507a0 346 async_extent->compress_type = compress_type;
771ed689
CM
347 list_add_tail(&async_extent->list, &cow->extents);
348 return 0;
349}
350
d352ac68 351/*
771ed689
CM
352 * we create compressed extents in two phases. The first
353 * phase compresses a range of pages that have already been
354 * locked (both pages and state bits are locked).
c8b97818 355 *
771ed689
CM
356 * This is done inside an ordered work queue, and the compression
357 * is spread across many cpus. The actual IO submission is step
358 * two, and the ordered work queue takes care of making sure that
359 * happens in the same order things were put onto the queue by
360 * writepages and friends.
c8b97818 361 *
771ed689
CM
362 * If this code finds it can't get good compression, it puts an
363 * entry onto the work queue to write the uncompressed bytes. This
364 * makes sure that both compressed inodes and uncompressed inodes
b2570314
AB
365 * are written in the same order that the flusher thread sent them
366 * down.
d352ac68 367 */
771ed689
CM
368static noinline int compress_file_range(struct inode *inode,
369 struct page *locked_page,
370 u64 start, u64 end,
371 struct async_cow *async_cow,
372 int *num_added)
b888db2b
CM
373{
374 struct btrfs_root *root = BTRFS_I(inode)->root;
db94535d 375 u64 num_bytes;
db94535d 376 u64 blocksize = root->sectorsize;
c8b97818 377 u64 actual_end;
42dc7bab 378 u64 isize = i_size_read(inode);
e6dcd2dc 379 int ret = 0;
c8b97818
CM
380 struct page **pages = NULL;
381 unsigned long nr_pages;
382 unsigned long nr_pages_ret = 0;
383 unsigned long total_compressed = 0;
384 unsigned long total_in = 0;
385 unsigned long max_compressed = 128 * 1024;
771ed689 386 unsigned long max_uncompressed = 128 * 1024;
c8b97818
CM
387 int i;
388 int will_compress;
261507a0 389 int compress_type = root->fs_info->compress_type;
4adaa611 390 int redirty = 0;
b888db2b 391
4cb13e5d
LB
392 /* if this is a small write inside eof, kick off a defrag */
393 if ((end - start + 1) < 16 * 1024 &&
394 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
4cb5300b
CM
395 btrfs_add_inode_defrag(NULL, inode);
396
68bb462d
WS
397 /*
398 * skip compression for a small file range(<=blocksize) that
399 * isn't an inline extent, since it dosen't save disk space at all.
400 */
401 if ((end - start + 1) <= blocksize &&
402 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
403 goto cleanup_and_bail_uncompressed;
404
42dc7bab 405 actual_end = min_t(u64, isize, end + 1);
c8b97818
CM
406again:
407 will_compress = 0;
408 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
409 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
be20aa9d 410
f03d9301
CM
411 /*
412 * we don't want to send crud past the end of i_size through
413 * compression, that's just a waste of CPU time. So, if the
414 * end of the file is before the start of our current
415 * requested range of bytes, we bail out to the uncompressed
416 * cleanup code that can deal with all of this.
417 *
418 * It isn't really the fastest way to fix things, but this is a
419 * very uncommon corner.
420 */
421 if (actual_end <= start)
422 goto cleanup_and_bail_uncompressed;
423
c8b97818
CM
424 total_compressed = actual_end - start;
425
426 /* we want to make sure that amount of ram required to uncompress
427 * an extent is reasonable, so we limit the total size in ram
771ed689
CM
428 * of a compressed extent to 128k. This is a crucial number
429 * because it also controls how easily we can spread reads across
430 * cpus for decompression.
431 *
432 * We also want to make sure the amount of IO required to do
433 * a random read is reasonably small, so we limit the size of
434 * a compressed extent to 128k.
c8b97818
CM
435 */
436 total_compressed = min(total_compressed, max_uncompressed);
fda2832f 437 num_bytes = ALIGN(end - start + 1, blocksize);
be20aa9d 438 num_bytes = max(blocksize, num_bytes);
c8b97818
CM
439 total_in = 0;
440 ret = 0;
db94535d 441
771ed689
CM
442 /*
443 * we do compression for mount -o compress and when the
444 * inode has not been flagged as nocompress. This flag can
445 * change at any time if we discover bad compression ratios.
c8b97818 446 */
6cbff00f 447 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS) &&
1e701a32 448 (btrfs_test_opt(root, COMPRESS) ||
75e7cb7f
LB
449 (BTRFS_I(inode)->force_compress) ||
450 (BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS))) {
c8b97818 451 WARN_ON(pages);
cfbc246e 452 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
560f7d75
LZ
453 if (!pages) {
454 /* just bail out to the uncompressed code */
455 goto cont;
456 }
c8b97818 457
261507a0
LZ
458 if (BTRFS_I(inode)->force_compress)
459 compress_type = BTRFS_I(inode)->force_compress;
460
4adaa611
CM
461 /*
462 * we need to call clear_page_dirty_for_io on each
463 * page in the range. Otherwise applications with the file
464 * mmap'd can wander in and change the page contents while
465 * we are compressing them.
466 *
467 * If the compression fails for any reason, we set the pages
468 * dirty again later on.
469 */
470 extent_range_clear_dirty_for_io(inode, start, end);
471 redirty = 1;
261507a0
LZ
472 ret = btrfs_compress_pages(compress_type,
473 inode->i_mapping, start,
474 total_compressed, pages,
475 nr_pages, &nr_pages_ret,
476 &total_in,
477 &total_compressed,
478 max_compressed);
c8b97818
CM
479
480 if (!ret) {
481 unsigned long offset = total_compressed &
482 (PAGE_CACHE_SIZE - 1);
483 struct page *page = pages[nr_pages_ret - 1];
484 char *kaddr;
485
486 /* zero the tail end of the last page, we might be
487 * sending it down to disk
488 */
489 if (offset) {
7ac687d9 490 kaddr = kmap_atomic(page);
c8b97818
CM
491 memset(kaddr + offset, 0,
492 PAGE_CACHE_SIZE - offset);
7ac687d9 493 kunmap_atomic(kaddr);
c8b97818
CM
494 }
495 will_compress = 1;
496 }
497 }
560f7d75 498cont:
c8b97818
CM
499 if (start == 0) {
500 /* lets try to make an inline extent */
771ed689 501 if (ret || total_in < (actual_end - start)) {
c8b97818 502 /* we didn't compress the entire range, try
771ed689 503 * to make an uncompressed inline extent.
c8b97818 504 */
00361589
JB
505 ret = cow_file_range_inline(root, inode, start, end,
506 0, 0, NULL);
c8b97818 507 } else {
771ed689 508 /* try making a compressed inline extent */
00361589 509 ret = cow_file_range_inline(root, inode, start, end,
fe3f566c
LZ
510 total_compressed,
511 compress_type, pages);
c8b97818 512 }
79787eaa 513 if (ret <= 0) {
151a41bc
JB
514 unsigned long clear_flags = EXTENT_DELALLOC |
515 EXTENT_DEFRAG;
516 clear_flags |= (ret < 0) ? EXTENT_DO_ACCOUNTING : 0;
517
771ed689 518 /*
79787eaa
JM
519 * inline extent creation worked or returned error,
520 * we don't need to create any more async work items.
521 * Unlock and free up our temp pages.
771ed689 522 */
c2790a2e 523 extent_clear_unlock_delalloc(inode, start, end, NULL,
151a41bc 524 clear_flags, PAGE_UNLOCK |
c2790a2e
JB
525 PAGE_CLEAR_DIRTY |
526 PAGE_SET_WRITEBACK |
527 PAGE_END_WRITEBACK);
c8b97818
CM
528 goto free_pages_out;
529 }
530 }
531
532 if (will_compress) {
533 /*
534 * we aren't doing an inline extent round the compressed size
535 * up to a block size boundary so the allocator does sane
536 * things
537 */
fda2832f 538 total_compressed = ALIGN(total_compressed, blocksize);
c8b97818
CM
539
540 /*
541 * one last check to make sure the compression is really a
542 * win, compare the page count read with the blocks on disk
543 */
fda2832f 544 total_in = ALIGN(total_in, PAGE_CACHE_SIZE);
c8b97818
CM
545 if (total_compressed >= total_in) {
546 will_compress = 0;
547 } else {
c8b97818
CM
548 num_bytes = total_in;
549 }
550 }
551 if (!will_compress && pages) {
552 /*
553 * the compression code ran but failed to make things smaller,
554 * free any pages it allocated and our page pointer array
555 */
556 for (i = 0; i < nr_pages_ret; i++) {
70b99e69 557 WARN_ON(pages[i]->mapping);
c8b97818
CM
558 page_cache_release(pages[i]);
559 }
560 kfree(pages);
561 pages = NULL;
562 total_compressed = 0;
563 nr_pages_ret = 0;
564
565 /* flag the file so we don't compress in the future */
1e701a32
CM
566 if (!btrfs_test_opt(root, FORCE_COMPRESS) &&
567 !(BTRFS_I(inode)->force_compress)) {
a555f810 568 BTRFS_I(inode)->flags |= BTRFS_INODE_NOCOMPRESS;
1e701a32 569 }
c8b97818 570 }
771ed689
CM
571 if (will_compress) {
572 *num_added += 1;
c8b97818 573
771ed689
CM
574 /* the async work queues will take care of doing actual
575 * allocation on disk for these compressed pages,
576 * and will submit them to the elevator.
577 */
578 add_async_extent(async_cow, start, num_bytes,
261507a0
LZ
579 total_compressed, pages, nr_pages_ret,
580 compress_type);
179e29e4 581
24ae6365 582 if (start + num_bytes < end) {
771ed689
CM
583 start += num_bytes;
584 pages = NULL;
585 cond_resched();
586 goto again;
587 }
588 } else {
f03d9301 589cleanup_and_bail_uncompressed:
771ed689
CM
590 /*
591 * No compression, but we still need to write the pages in
592 * the file we've been given so far. redirty the locked
593 * page if it corresponds to our extent and set things up
594 * for the async work queue to run cow_file_range to do
595 * the normal delalloc dance
596 */
597 if (page_offset(locked_page) >= start &&
598 page_offset(locked_page) <= end) {
599 __set_page_dirty_nobuffers(locked_page);
600 /* unlocked later on in the async handlers */
601 }
4adaa611
CM
602 if (redirty)
603 extent_range_redirty_for_io(inode, start, end);
261507a0
LZ
604 add_async_extent(async_cow, start, end - start + 1,
605 0, NULL, 0, BTRFS_COMPRESS_NONE);
771ed689
CM
606 *num_added += 1;
607 }
3b951516 608
771ed689 609out:
79787eaa 610 return ret;
771ed689
CM
611
612free_pages_out:
613 for (i = 0; i < nr_pages_ret; i++) {
614 WARN_ON(pages[i]->mapping);
615 page_cache_release(pages[i]);
616 }
d397712b 617 kfree(pages);
771ed689
CM
618
619 goto out;
620}
621
622/*
623 * phase two of compressed writeback. This is the ordered portion
624 * of the code, which only gets called in the order the work was
625 * queued. We walk all the async extents created by compress_file_range
626 * and send them down to the disk.
627 */
628static noinline int submit_compressed_extents(struct inode *inode,
629 struct async_cow *async_cow)
630{
631 struct async_extent *async_extent;
632 u64 alloc_hint = 0;
771ed689
CM
633 struct btrfs_key ins;
634 struct extent_map *em;
635 struct btrfs_root *root = BTRFS_I(inode)->root;
636 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
637 struct extent_io_tree *io_tree;
f5a84ee3 638 int ret = 0;
771ed689
CM
639
640 if (list_empty(&async_cow->extents))
641 return 0;
642
3e04e7f1 643again:
d397712b 644 while (!list_empty(&async_cow->extents)) {
771ed689
CM
645 async_extent = list_entry(async_cow->extents.next,
646 struct async_extent, list);
647 list_del(&async_extent->list);
c8b97818 648
771ed689
CM
649 io_tree = &BTRFS_I(inode)->io_tree;
650
f5a84ee3 651retry:
771ed689
CM
652 /* did the compression code fall back to uncompressed IO? */
653 if (!async_extent->pages) {
654 int page_started = 0;
655 unsigned long nr_written = 0;
656
657 lock_extent(io_tree, async_extent->start,
2ac55d41 658 async_extent->start +
d0082371 659 async_extent->ram_size - 1);
771ed689
CM
660
661 /* allocate blocks */
f5a84ee3
JB
662 ret = cow_file_range(inode, async_cow->locked_page,
663 async_extent->start,
664 async_extent->start +
665 async_extent->ram_size - 1,
666 &page_started, &nr_written, 0);
771ed689 667
79787eaa
JM
668 /* JDM XXX */
669
771ed689
CM
670 /*
671 * if page_started, cow_file_range inserted an
672 * inline extent and took care of all the unlocking
673 * and IO for us. Otherwise, we need to submit
674 * all those pages down to the drive.
675 */
f5a84ee3 676 if (!page_started && !ret)
771ed689
CM
677 extent_write_locked_range(io_tree,
678 inode, async_extent->start,
d397712b 679 async_extent->start +
771ed689
CM
680 async_extent->ram_size - 1,
681 btrfs_get_extent,
682 WB_SYNC_ALL);
3e04e7f1
JB
683 else if (ret)
684 unlock_page(async_cow->locked_page);
771ed689
CM
685 kfree(async_extent);
686 cond_resched();
687 continue;
688 }
689
690 lock_extent(io_tree, async_extent->start,
d0082371 691 async_extent->start + async_extent->ram_size - 1);
771ed689 692
00361589 693 ret = btrfs_reserve_extent(root,
771ed689
CM
694 async_extent->compressed_size,
695 async_extent->compressed_size,
81c9ad23 696 0, alloc_hint, &ins, 1);
f5a84ee3
JB
697 if (ret) {
698 int i;
3e04e7f1 699
f5a84ee3
JB
700 for (i = 0; i < async_extent->nr_pages; i++) {
701 WARN_ON(async_extent->pages[i]->mapping);
702 page_cache_release(async_extent->pages[i]);
703 }
704 kfree(async_extent->pages);
705 async_extent->nr_pages = 0;
706 async_extent->pages = NULL;
3e04e7f1 707
fdf8e2ea
JB
708 if (ret == -ENOSPC) {
709 unlock_extent(io_tree, async_extent->start,
710 async_extent->start +
711 async_extent->ram_size - 1);
79787eaa 712 goto retry;
fdf8e2ea 713 }
3e04e7f1 714 goto out_free;
f5a84ee3
JB
715 }
716
c2167754
YZ
717 /*
718 * here we're doing allocation and writeback of the
719 * compressed pages
720 */
721 btrfs_drop_extent_cache(inode, async_extent->start,
722 async_extent->start +
723 async_extent->ram_size - 1, 0);
724
172ddd60 725 em = alloc_extent_map();
b9aa55be
LB
726 if (!em) {
727 ret = -ENOMEM;
3e04e7f1 728 goto out_free_reserve;
b9aa55be 729 }
771ed689
CM
730 em->start = async_extent->start;
731 em->len = async_extent->ram_size;
445a6944 732 em->orig_start = em->start;
2ab28f32
JB
733 em->mod_start = em->start;
734 em->mod_len = em->len;
c8b97818 735
771ed689
CM
736 em->block_start = ins.objectid;
737 em->block_len = ins.offset;
b4939680 738 em->orig_block_len = ins.offset;
cc95bef6 739 em->ram_bytes = async_extent->ram_size;
771ed689 740 em->bdev = root->fs_info->fs_devices->latest_bdev;
261507a0 741 em->compress_type = async_extent->compress_type;
771ed689
CM
742 set_bit(EXTENT_FLAG_PINNED, &em->flags);
743 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
70c8a91c 744 em->generation = -1;
771ed689 745
d397712b 746 while (1) {
890871be 747 write_lock(&em_tree->lock);
09a2a8f9 748 ret = add_extent_mapping(em_tree, em, 1);
890871be 749 write_unlock(&em_tree->lock);
771ed689
CM
750 if (ret != -EEXIST) {
751 free_extent_map(em);
752 break;
753 }
754 btrfs_drop_extent_cache(inode, async_extent->start,
755 async_extent->start +
756 async_extent->ram_size - 1, 0);
757 }
758
3e04e7f1
JB
759 if (ret)
760 goto out_free_reserve;
761
261507a0
LZ
762 ret = btrfs_add_ordered_extent_compress(inode,
763 async_extent->start,
764 ins.objectid,
765 async_extent->ram_size,
766 ins.offset,
767 BTRFS_ORDERED_COMPRESSED,
768 async_extent->compress_type);
3e04e7f1
JB
769 if (ret)
770 goto out_free_reserve;
771ed689 771
771ed689
CM
772 /*
773 * clear dirty, set writeback and unlock the pages.
774 */
c2790a2e 775 extent_clear_unlock_delalloc(inode, async_extent->start,
a791e35e
CM
776 async_extent->start +
777 async_extent->ram_size - 1,
151a41bc
JB
778 NULL, EXTENT_LOCKED | EXTENT_DELALLOC,
779 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
c2790a2e 780 PAGE_SET_WRITEBACK);
771ed689 781 ret = btrfs_submit_compressed_write(inode,
d397712b
CM
782 async_extent->start,
783 async_extent->ram_size,
784 ins.objectid,
785 ins.offset, async_extent->pages,
786 async_extent->nr_pages);
771ed689
CM
787 alloc_hint = ins.objectid + ins.offset;
788 kfree(async_extent);
3e04e7f1
JB
789 if (ret)
790 goto out;
771ed689
CM
791 cond_resched();
792 }
79787eaa
JM
793 ret = 0;
794out:
795 return ret;
3e04e7f1
JB
796out_free_reserve:
797 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
79787eaa 798out_free:
c2790a2e 799 extent_clear_unlock_delalloc(inode, async_extent->start,
3e04e7f1
JB
800 async_extent->start +
801 async_extent->ram_size - 1,
c2790a2e 802 NULL, EXTENT_LOCKED | EXTENT_DELALLOC |
151a41bc
JB
803 EXTENT_DEFRAG | EXTENT_DO_ACCOUNTING,
804 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
805 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK);
79787eaa 806 kfree(async_extent);
3e04e7f1 807 goto again;
771ed689
CM
808}
809
4b46fce2
JB
810static u64 get_extent_allocation_hint(struct inode *inode, u64 start,
811 u64 num_bytes)
812{
813 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
814 struct extent_map *em;
815 u64 alloc_hint = 0;
816
817 read_lock(&em_tree->lock);
818 em = search_extent_mapping(em_tree, start, num_bytes);
819 if (em) {
820 /*
821 * if block start isn't an actual block number then find the
822 * first block in this inode and use that as a hint. If that
823 * block is also bogus then just don't worry about it.
824 */
825 if (em->block_start >= EXTENT_MAP_LAST_BYTE) {
826 free_extent_map(em);
827 em = search_extent_mapping(em_tree, 0, 0);
828 if (em && em->block_start < EXTENT_MAP_LAST_BYTE)
829 alloc_hint = em->block_start;
830 if (em)
831 free_extent_map(em);
832 } else {
833 alloc_hint = em->block_start;
834 free_extent_map(em);
835 }
836 }
837 read_unlock(&em_tree->lock);
838
839 return alloc_hint;
840}
841
771ed689
CM
842/*
843 * when extent_io.c finds a delayed allocation range in the file,
844 * the call backs end up in this code. The basic idea is to
845 * allocate extents on disk for the range, and create ordered data structs
846 * in ram to track those extents.
847 *
848 * locked_page is the page that writepage had locked already. We use
849 * it to make sure we don't do extra locks or unlocks.
850 *
851 * *page_started is set to one if we unlock locked_page and do everything
852 * required to start IO on it. It may be clean and already done with
853 * IO when we return.
854 */
00361589
JB
855static noinline int cow_file_range(struct inode *inode,
856 struct page *locked_page,
857 u64 start, u64 end, int *page_started,
858 unsigned long *nr_written,
859 int unlock)
771ed689 860{
00361589 861 struct btrfs_root *root = BTRFS_I(inode)->root;
771ed689
CM
862 u64 alloc_hint = 0;
863 u64 num_bytes;
864 unsigned long ram_size;
865 u64 disk_num_bytes;
866 u64 cur_alloc_size;
867 u64 blocksize = root->sectorsize;
771ed689
CM
868 struct btrfs_key ins;
869 struct extent_map *em;
870 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
871 int ret = 0;
872
02ecd2c2
JB
873 if (btrfs_is_free_space_inode(inode)) {
874 WARN_ON_ONCE(1);
29bce2f3
JB
875 ret = -EINVAL;
876 goto out_unlock;
02ecd2c2 877 }
771ed689 878
fda2832f 879 num_bytes = ALIGN(end - start + 1, blocksize);
771ed689
CM
880 num_bytes = max(blocksize, num_bytes);
881 disk_num_bytes = num_bytes;
771ed689 882
4cb5300b 883 /* if this is a small write inside eof, kick off defrag */
4cb13e5d
LB
884 if (num_bytes < 64 * 1024 &&
885 (start > 0 || end + 1 < BTRFS_I(inode)->disk_i_size))
00361589 886 btrfs_add_inode_defrag(NULL, inode);
4cb5300b 887
771ed689
CM
888 if (start == 0) {
889 /* lets try to make an inline extent */
00361589
JB
890 ret = cow_file_range_inline(root, inode, start, end, 0, 0,
891 NULL);
771ed689 892 if (ret == 0) {
c2790a2e
JB
893 extent_clear_unlock_delalloc(inode, start, end, NULL,
894 EXTENT_LOCKED | EXTENT_DELALLOC |
151a41bc 895 EXTENT_DEFRAG, PAGE_UNLOCK |
c2790a2e
JB
896 PAGE_CLEAR_DIRTY | PAGE_SET_WRITEBACK |
897 PAGE_END_WRITEBACK);
c2167754 898
771ed689
CM
899 *nr_written = *nr_written +
900 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
901 *page_started = 1;
771ed689 902 goto out;
79787eaa 903 } else if (ret < 0) {
79787eaa 904 goto out_unlock;
771ed689
CM
905 }
906 }
907
908 BUG_ON(disk_num_bytes >
6c41761f 909 btrfs_super_total_bytes(root->fs_info->super_copy));
771ed689 910
4b46fce2 911 alloc_hint = get_extent_allocation_hint(inode, start, num_bytes);
771ed689
CM
912 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
913
d397712b 914 while (disk_num_bytes > 0) {
a791e35e
CM
915 unsigned long op;
916
287a0ab9 917 cur_alloc_size = disk_num_bytes;
00361589 918 ret = btrfs_reserve_extent(root, cur_alloc_size,
771ed689 919 root->sectorsize, 0, alloc_hint,
81c9ad23 920 &ins, 1);
00361589 921 if (ret < 0)
79787eaa 922 goto out_unlock;
d397712b 923
172ddd60 924 em = alloc_extent_map();
b9aa55be
LB
925 if (!em) {
926 ret = -ENOMEM;
ace68bac 927 goto out_reserve;
b9aa55be 928 }
e6dcd2dc 929 em->start = start;
445a6944 930 em->orig_start = em->start;
771ed689
CM
931 ram_size = ins.offset;
932 em->len = ins.offset;
2ab28f32
JB
933 em->mod_start = em->start;
934 em->mod_len = em->len;
c8b97818 935
e6dcd2dc 936 em->block_start = ins.objectid;
c8b97818 937 em->block_len = ins.offset;
b4939680 938 em->orig_block_len = ins.offset;
cc95bef6 939 em->ram_bytes = ram_size;
e6dcd2dc 940 em->bdev = root->fs_info->fs_devices->latest_bdev;
7f3c74fb 941 set_bit(EXTENT_FLAG_PINNED, &em->flags);
70c8a91c 942 em->generation = -1;
c8b97818 943
d397712b 944 while (1) {
890871be 945 write_lock(&em_tree->lock);
09a2a8f9 946 ret = add_extent_mapping(em_tree, em, 1);
890871be 947 write_unlock(&em_tree->lock);
e6dcd2dc
CM
948 if (ret != -EEXIST) {
949 free_extent_map(em);
950 break;
951 }
952 btrfs_drop_extent_cache(inode, start,
c8b97818 953 start + ram_size - 1, 0);
e6dcd2dc 954 }
ace68bac
LB
955 if (ret)
956 goto out_reserve;
e6dcd2dc 957
98d20f67 958 cur_alloc_size = ins.offset;
e6dcd2dc 959 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
771ed689 960 ram_size, cur_alloc_size, 0);
ace68bac
LB
961 if (ret)
962 goto out_reserve;
c8b97818 963
17d217fe
YZ
964 if (root->root_key.objectid ==
965 BTRFS_DATA_RELOC_TREE_OBJECTID) {
966 ret = btrfs_reloc_clone_csums(inode, start,
967 cur_alloc_size);
00361589 968 if (ret)
ace68bac 969 goto out_reserve;
17d217fe
YZ
970 }
971
d397712b 972 if (disk_num_bytes < cur_alloc_size)
3b951516 973 break;
d397712b 974
c8b97818
CM
975 /* we're not doing compressed IO, don't unlock the first
976 * page (which the caller expects to stay locked), don't
977 * clear any dirty bits and don't set any writeback bits
8b62b72b
CM
978 *
979 * Do set the Private2 bit so we know this page was properly
980 * setup for writepage
c8b97818 981 */
c2790a2e
JB
982 op = unlock ? PAGE_UNLOCK : 0;
983 op |= PAGE_SET_PRIVATE2;
a791e35e 984
c2790a2e
JB
985 extent_clear_unlock_delalloc(inode, start,
986 start + ram_size - 1, locked_page,
987 EXTENT_LOCKED | EXTENT_DELALLOC,
988 op);
c8b97818 989 disk_num_bytes -= cur_alloc_size;
c59f8951
CM
990 num_bytes -= cur_alloc_size;
991 alloc_hint = ins.objectid + ins.offset;
992 start += cur_alloc_size;
b888db2b 993 }
79787eaa 994out:
be20aa9d 995 return ret;
b7d5b0a8 996
ace68bac
LB
997out_reserve:
998 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
79787eaa 999out_unlock:
c2790a2e 1000 extent_clear_unlock_delalloc(inode, start, end, locked_page,
151a41bc
JB
1001 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
1002 EXTENT_DELALLOC | EXTENT_DEFRAG,
1003 PAGE_UNLOCK | PAGE_CLEAR_DIRTY |
1004 PAGE_SET_WRITEBACK | PAGE_END_WRITEBACK);
79787eaa 1005 goto out;
771ed689 1006}
c8b97818 1007
771ed689
CM
1008/*
1009 * work queue call back to started compression on a file and pages
1010 */
1011static noinline void async_cow_start(struct btrfs_work *work)
1012{
1013 struct async_cow *async_cow;
1014 int num_added = 0;
1015 async_cow = container_of(work, struct async_cow, work);
1016
1017 compress_file_range(async_cow->inode, async_cow->locked_page,
1018 async_cow->start, async_cow->end, async_cow,
1019 &num_added);
8180ef88 1020 if (num_added == 0) {
cb77fcd8 1021 btrfs_add_delayed_iput(async_cow->inode);
771ed689 1022 async_cow->inode = NULL;
8180ef88 1023 }
771ed689
CM
1024}
1025
1026/*
1027 * work queue call back to submit previously compressed pages
1028 */
1029static noinline void async_cow_submit(struct btrfs_work *work)
1030{
1031 struct async_cow *async_cow;
1032 struct btrfs_root *root;
1033 unsigned long nr_pages;
1034
1035 async_cow = container_of(work, struct async_cow, work);
1036
1037 root = async_cow->root;
1038 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
1039 PAGE_CACHE_SHIFT;
1040
66657b31 1041 if (atomic_sub_return(nr_pages, &root->fs_info->async_delalloc_pages) <
287082b0 1042 5 * 1024 * 1024 &&
771ed689
CM
1043 waitqueue_active(&root->fs_info->async_submit_wait))
1044 wake_up(&root->fs_info->async_submit_wait);
1045
d397712b 1046 if (async_cow->inode)
771ed689 1047 submit_compressed_extents(async_cow->inode, async_cow);
771ed689 1048}
c8b97818 1049
771ed689
CM
1050static noinline void async_cow_free(struct btrfs_work *work)
1051{
1052 struct async_cow *async_cow;
1053 async_cow = container_of(work, struct async_cow, work);
8180ef88 1054 if (async_cow->inode)
cb77fcd8 1055 btrfs_add_delayed_iput(async_cow->inode);
771ed689
CM
1056 kfree(async_cow);
1057}
1058
1059static int cow_file_range_async(struct inode *inode, struct page *locked_page,
1060 u64 start, u64 end, int *page_started,
1061 unsigned long *nr_written)
1062{
1063 struct async_cow *async_cow;
1064 struct btrfs_root *root = BTRFS_I(inode)->root;
1065 unsigned long nr_pages;
1066 u64 cur_end;
287082b0 1067 int limit = 10 * 1024 * 1024;
771ed689 1068
a3429ab7
CM
1069 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED,
1070 1, 0, NULL, GFP_NOFS);
d397712b 1071 while (start < end) {
771ed689 1072 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
79787eaa 1073 BUG_ON(!async_cow); /* -ENOMEM */
8180ef88 1074 async_cow->inode = igrab(inode);
771ed689
CM
1075 async_cow->root = root;
1076 async_cow->locked_page = locked_page;
1077 async_cow->start = start;
1078
6cbff00f 1079 if (BTRFS_I(inode)->flags & BTRFS_INODE_NOCOMPRESS)
771ed689
CM
1080 cur_end = end;
1081 else
1082 cur_end = min(end, start + 512 * 1024 - 1);
1083
1084 async_cow->end = cur_end;
1085 INIT_LIST_HEAD(&async_cow->extents);
1086
afe3d242
QW
1087 btrfs_init_work(&async_cow->work, async_cow_start,
1088 async_cow_submit, async_cow_free);
771ed689 1089
771ed689
CM
1090 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
1091 PAGE_CACHE_SHIFT;
1092 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
1093
afe3d242
QW
1094 btrfs_queue_work(root->fs_info->delalloc_workers,
1095 &async_cow->work);
771ed689
CM
1096
1097 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
1098 wait_event(root->fs_info->async_submit_wait,
1099 (atomic_read(&root->fs_info->async_delalloc_pages) <
1100 limit));
1101 }
1102
d397712b 1103 while (atomic_read(&root->fs_info->async_submit_draining) &&
771ed689
CM
1104 atomic_read(&root->fs_info->async_delalloc_pages)) {
1105 wait_event(root->fs_info->async_submit_wait,
1106 (atomic_read(&root->fs_info->async_delalloc_pages) ==
1107 0));
1108 }
1109
1110 *nr_written += nr_pages;
1111 start = cur_end + 1;
1112 }
1113 *page_started = 1;
1114 return 0;
be20aa9d
CM
1115}
1116
d397712b 1117static noinline int csum_exist_in_range(struct btrfs_root *root,
17d217fe
YZ
1118 u64 bytenr, u64 num_bytes)
1119{
1120 int ret;
1121 struct btrfs_ordered_sum *sums;
1122 LIST_HEAD(list);
1123
07d400a6 1124 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, bytenr,
a2de733c 1125 bytenr + num_bytes - 1, &list, 0);
17d217fe
YZ
1126 if (ret == 0 && list_empty(&list))
1127 return 0;
1128
1129 while (!list_empty(&list)) {
1130 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
1131 list_del(&sums->list);
1132 kfree(sums);
1133 }
1134 return 1;
1135}
1136
d352ac68
CM
1137/*
1138 * when nowcow writeback call back. This checks for snapshots or COW copies
1139 * of the extents that exist in the file, and COWs the file as required.
1140 *
1141 * If no cow copies or snapshots exist, we write directly to the existing
1142 * blocks on disk
1143 */
7f366cfe
CM
1144static noinline int run_delalloc_nocow(struct inode *inode,
1145 struct page *locked_page,
771ed689
CM
1146 u64 start, u64 end, int *page_started, int force,
1147 unsigned long *nr_written)
be20aa9d 1148{
be20aa9d 1149 struct btrfs_root *root = BTRFS_I(inode)->root;
7ea394f1 1150 struct btrfs_trans_handle *trans;
be20aa9d 1151 struct extent_buffer *leaf;
be20aa9d 1152 struct btrfs_path *path;
80ff3856 1153 struct btrfs_file_extent_item *fi;
be20aa9d 1154 struct btrfs_key found_key;
80ff3856
YZ
1155 u64 cow_start;
1156 u64 cur_offset;
1157 u64 extent_end;
5d4f98a2 1158 u64 extent_offset;
80ff3856
YZ
1159 u64 disk_bytenr;
1160 u64 num_bytes;
b4939680 1161 u64 disk_num_bytes;
cc95bef6 1162 u64 ram_bytes;
80ff3856 1163 int extent_type;
79787eaa 1164 int ret, err;
d899e052 1165 int type;
80ff3856
YZ
1166 int nocow;
1167 int check_prev = 1;
82d5902d 1168 bool nolock;
33345d01 1169 u64 ino = btrfs_ino(inode);
be20aa9d
CM
1170
1171 path = btrfs_alloc_path();
17ca04af 1172 if (!path) {
c2790a2e
JB
1173 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1174 EXTENT_LOCKED | EXTENT_DELALLOC |
151a41bc
JB
1175 EXTENT_DO_ACCOUNTING |
1176 EXTENT_DEFRAG, PAGE_UNLOCK |
c2790a2e
JB
1177 PAGE_CLEAR_DIRTY |
1178 PAGE_SET_WRITEBACK |
1179 PAGE_END_WRITEBACK);
d8926bb3 1180 return -ENOMEM;
17ca04af 1181 }
82d5902d 1182
83eea1f1 1183 nolock = btrfs_is_free_space_inode(inode);
82d5902d
LZ
1184
1185 if (nolock)
7a7eaa40 1186 trans = btrfs_join_transaction_nolock(root);
82d5902d 1187 else
7a7eaa40 1188 trans = btrfs_join_transaction(root);
ff5714cc 1189
79787eaa 1190 if (IS_ERR(trans)) {
c2790a2e
JB
1191 extent_clear_unlock_delalloc(inode, start, end, locked_page,
1192 EXTENT_LOCKED | EXTENT_DELALLOC |
151a41bc
JB
1193 EXTENT_DO_ACCOUNTING |
1194 EXTENT_DEFRAG, PAGE_UNLOCK |
c2790a2e
JB
1195 PAGE_CLEAR_DIRTY |
1196 PAGE_SET_WRITEBACK |
1197 PAGE_END_WRITEBACK);
79787eaa
JM
1198 btrfs_free_path(path);
1199 return PTR_ERR(trans);
1200 }
1201
74b21075 1202 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
be20aa9d 1203
80ff3856
YZ
1204 cow_start = (u64)-1;
1205 cur_offset = start;
1206 while (1) {
33345d01 1207 ret = btrfs_lookup_file_extent(trans, root, path, ino,
80ff3856 1208 cur_offset, 0);
d788a349 1209 if (ret < 0)
79787eaa 1210 goto error;
80ff3856
YZ
1211 if (ret > 0 && path->slots[0] > 0 && check_prev) {
1212 leaf = path->nodes[0];
1213 btrfs_item_key_to_cpu(leaf, &found_key,
1214 path->slots[0] - 1);
33345d01 1215 if (found_key.objectid == ino &&
80ff3856
YZ
1216 found_key.type == BTRFS_EXTENT_DATA_KEY)
1217 path->slots[0]--;
1218 }
1219 check_prev = 0;
1220next_slot:
1221 leaf = path->nodes[0];
1222 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1223 ret = btrfs_next_leaf(root, path);
d788a349 1224 if (ret < 0)
79787eaa 1225 goto error;
80ff3856
YZ
1226 if (ret > 0)
1227 break;
1228 leaf = path->nodes[0];
1229 }
be20aa9d 1230
80ff3856
YZ
1231 nocow = 0;
1232 disk_bytenr = 0;
17d217fe 1233 num_bytes = 0;
80ff3856
YZ
1234 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1235
33345d01 1236 if (found_key.objectid > ino ||
80ff3856
YZ
1237 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1238 found_key.offset > end)
1239 break;
1240
1241 if (found_key.offset > cur_offset) {
1242 extent_end = found_key.offset;
e9061e21 1243 extent_type = 0;
80ff3856
YZ
1244 goto out_check;
1245 }
1246
1247 fi = btrfs_item_ptr(leaf, path->slots[0],
1248 struct btrfs_file_extent_item);
1249 extent_type = btrfs_file_extent_type(leaf, fi);
1250
cc95bef6 1251 ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
d899e052
YZ
1252 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1253 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
80ff3856 1254 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5d4f98a2 1255 extent_offset = btrfs_file_extent_offset(leaf, fi);
80ff3856
YZ
1256 extent_end = found_key.offset +
1257 btrfs_file_extent_num_bytes(leaf, fi);
b4939680
JB
1258 disk_num_bytes =
1259 btrfs_file_extent_disk_num_bytes(leaf, fi);
80ff3856
YZ
1260 if (extent_end <= start) {
1261 path->slots[0]++;
1262 goto next_slot;
1263 }
17d217fe
YZ
1264 if (disk_bytenr == 0)
1265 goto out_check;
80ff3856
YZ
1266 if (btrfs_file_extent_compression(leaf, fi) ||
1267 btrfs_file_extent_encryption(leaf, fi) ||
1268 btrfs_file_extent_other_encoding(leaf, fi))
1269 goto out_check;
d899e052
YZ
1270 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1271 goto out_check;
d2fb3437 1272 if (btrfs_extent_readonly(root, disk_bytenr))
80ff3856 1273 goto out_check;
33345d01 1274 if (btrfs_cross_ref_exist(trans, root, ino,
5d4f98a2
YZ
1275 found_key.offset -
1276 extent_offset, disk_bytenr))
17d217fe 1277 goto out_check;
5d4f98a2 1278 disk_bytenr += extent_offset;
17d217fe
YZ
1279 disk_bytenr += cur_offset - found_key.offset;
1280 num_bytes = min(end + 1, extent_end) - cur_offset;
e9894fd3
WS
1281 /*
1282 * if there are pending snapshots for this root,
1283 * we fall into common COW way.
1284 */
1285 if (!nolock) {
1286 err = btrfs_start_nocow_write(root);
1287 if (!err)
1288 goto out_check;
1289 }
17d217fe
YZ
1290 /*
1291 * force cow if csum exists in the range.
1292 * this ensure that csum for a given extent are
1293 * either valid or do not exist.
1294 */
1295 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1296 goto out_check;
80ff3856
YZ
1297 nocow = 1;
1298 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1299 extent_end = found_key.offset +
514ac8ad
CM
1300 btrfs_file_extent_inline_len(leaf,
1301 path->slots[0], fi);
80ff3856
YZ
1302 extent_end = ALIGN(extent_end, root->sectorsize);
1303 } else {
1304 BUG_ON(1);
1305 }
1306out_check:
1307 if (extent_end <= start) {
1308 path->slots[0]++;
e9894fd3
WS
1309 if (!nolock && nocow)
1310 btrfs_end_nocow_write(root);
80ff3856
YZ
1311 goto next_slot;
1312 }
1313 if (!nocow) {
1314 if (cow_start == (u64)-1)
1315 cow_start = cur_offset;
1316 cur_offset = extent_end;
1317 if (cur_offset > end)
1318 break;
1319 path->slots[0]++;
1320 goto next_slot;
7ea394f1
YZ
1321 }
1322
b3b4aa74 1323 btrfs_release_path(path);
80ff3856 1324 if (cow_start != (u64)-1) {
00361589
JB
1325 ret = cow_file_range(inode, locked_page,
1326 cow_start, found_key.offset - 1,
1327 page_started, nr_written, 1);
e9894fd3
WS
1328 if (ret) {
1329 if (!nolock && nocow)
1330 btrfs_end_nocow_write(root);
79787eaa 1331 goto error;
e9894fd3 1332 }
80ff3856 1333 cow_start = (u64)-1;
7ea394f1 1334 }
80ff3856 1335
d899e052
YZ
1336 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1337 struct extent_map *em;
1338 struct extent_map_tree *em_tree;
1339 em_tree = &BTRFS_I(inode)->extent_tree;
172ddd60 1340 em = alloc_extent_map();
79787eaa 1341 BUG_ON(!em); /* -ENOMEM */
d899e052 1342 em->start = cur_offset;
70c8a91c 1343 em->orig_start = found_key.offset - extent_offset;
d899e052
YZ
1344 em->len = num_bytes;
1345 em->block_len = num_bytes;
1346 em->block_start = disk_bytenr;
b4939680 1347 em->orig_block_len = disk_num_bytes;
cc95bef6 1348 em->ram_bytes = ram_bytes;
d899e052 1349 em->bdev = root->fs_info->fs_devices->latest_bdev;
2ab28f32
JB
1350 em->mod_start = em->start;
1351 em->mod_len = em->len;
d899e052 1352 set_bit(EXTENT_FLAG_PINNED, &em->flags);
b11e234d 1353 set_bit(EXTENT_FLAG_FILLING, &em->flags);
70c8a91c 1354 em->generation = -1;
d899e052 1355 while (1) {
890871be 1356 write_lock(&em_tree->lock);
09a2a8f9 1357 ret = add_extent_mapping(em_tree, em, 1);
890871be 1358 write_unlock(&em_tree->lock);
d899e052
YZ
1359 if (ret != -EEXIST) {
1360 free_extent_map(em);
1361 break;
1362 }
1363 btrfs_drop_extent_cache(inode, em->start,
1364 em->start + em->len - 1, 0);
1365 }
1366 type = BTRFS_ORDERED_PREALLOC;
1367 } else {
1368 type = BTRFS_ORDERED_NOCOW;
1369 }
80ff3856
YZ
1370
1371 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
d899e052 1372 num_bytes, num_bytes, type);
79787eaa 1373 BUG_ON(ret); /* -ENOMEM */
771ed689 1374
efa56464
YZ
1375 if (root->root_key.objectid ==
1376 BTRFS_DATA_RELOC_TREE_OBJECTID) {
1377 ret = btrfs_reloc_clone_csums(inode, cur_offset,
1378 num_bytes);
e9894fd3
WS
1379 if (ret) {
1380 if (!nolock && nocow)
1381 btrfs_end_nocow_write(root);
79787eaa 1382 goto error;
e9894fd3 1383 }
efa56464
YZ
1384 }
1385
c2790a2e
JB
1386 extent_clear_unlock_delalloc(inode, cur_offset,
1387 cur_offset + num_bytes - 1,
1388 locked_page, EXTENT_LOCKED |
1389 EXTENT_DELALLOC, PAGE_UNLOCK |
1390 PAGE_SET_PRIVATE2);
e9894fd3
WS
1391 if (!nolock && nocow)
1392 btrfs_end_nocow_write(root);
80ff3856
YZ
1393 cur_offset = extent_end;
1394 if (cur_offset > end)
1395 break;
be20aa9d 1396 }
b3b4aa74 1397 btrfs_release_path(path);
80ff3856 1398
17ca04af 1399 if (cur_offset <= end && cow_start == (u64)-1) {
80ff3856 1400 cow_start = cur_offset;
17ca04af
JB
1401 cur_offset = end;
1402 }
1403
80ff3856 1404 if (cow_start != (u64)-1) {
00361589
JB
1405 ret = cow_file_range(inode, locked_page, cow_start, end,
1406 page_started, nr_written, 1);
d788a349 1407 if (ret)
79787eaa 1408 goto error;
80ff3856
YZ
1409 }
1410
79787eaa 1411error:
a698d075 1412 err = btrfs_end_transaction(trans, root);
79787eaa
JM
1413 if (!ret)
1414 ret = err;
1415
17ca04af 1416 if (ret && cur_offset < end)
c2790a2e
JB
1417 extent_clear_unlock_delalloc(inode, cur_offset, end,
1418 locked_page, EXTENT_LOCKED |
151a41bc
JB
1419 EXTENT_DELALLOC | EXTENT_DEFRAG |
1420 EXTENT_DO_ACCOUNTING, PAGE_UNLOCK |
1421 PAGE_CLEAR_DIRTY |
c2790a2e
JB
1422 PAGE_SET_WRITEBACK |
1423 PAGE_END_WRITEBACK);
7ea394f1 1424 btrfs_free_path(path);
79787eaa 1425 return ret;
be20aa9d
CM
1426}
1427
d352ac68
CM
1428/*
1429 * extent_io.c call back to do delayed allocation processing
1430 */
c8b97818 1431static int run_delalloc_range(struct inode *inode, struct page *locked_page,
771ed689
CM
1432 u64 start, u64 end, int *page_started,
1433 unsigned long *nr_written)
be20aa9d 1434{
be20aa9d 1435 int ret;
7f366cfe 1436 struct btrfs_root *root = BTRFS_I(inode)->root;
a2135011 1437
7ddf5a42 1438 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) {
c8b97818 1439 ret = run_delalloc_nocow(inode, locked_page, start, end,
d397712b 1440 page_started, 1, nr_written);
7ddf5a42 1441 } else if (BTRFS_I(inode)->flags & BTRFS_INODE_PREALLOC) {
d899e052 1442 ret = run_delalloc_nocow(inode, locked_page, start, end,
d397712b 1443 page_started, 0, nr_written);
7ddf5a42
JB
1444 } else if (!btrfs_test_opt(root, COMPRESS) &&
1445 !(BTRFS_I(inode)->force_compress) &&
1446 !(BTRFS_I(inode)->flags & BTRFS_INODE_COMPRESS)) {
7f366cfe
CM
1447 ret = cow_file_range(inode, locked_page, start, end,
1448 page_started, nr_written, 1);
7ddf5a42
JB
1449 } else {
1450 set_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
1451 &BTRFS_I(inode)->runtime_flags);
771ed689 1452 ret = cow_file_range_async(inode, locked_page, start, end,
d397712b 1453 page_started, nr_written);
7ddf5a42 1454 }
b888db2b
CM
1455 return ret;
1456}
1457
1bf85046
JM
1458static void btrfs_split_extent_hook(struct inode *inode,
1459 struct extent_state *orig, u64 split)
9ed74f2d 1460{
0ca1f7ce 1461 /* not delalloc, ignore it */
9ed74f2d 1462 if (!(orig->state & EXTENT_DELALLOC))
1bf85046 1463 return;
9ed74f2d 1464
9e0baf60
JB
1465 spin_lock(&BTRFS_I(inode)->lock);
1466 BTRFS_I(inode)->outstanding_extents++;
1467 spin_unlock(&BTRFS_I(inode)->lock);
9ed74f2d
JB
1468}
1469
1470/*
1471 * extent_io.c merge_extent_hook, used to track merged delayed allocation
1472 * extents so we can keep track of new extents that are just merged onto old
1473 * extents, such as when we are doing sequential writes, so we can properly
1474 * account for the metadata space we'll need.
1475 */
1bf85046
JM
1476static void btrfs_merge_extent_hook(struct inode *inode,
1477 struct extent_state *new,
1478 struct extent_state *other)
9ed74f2d 1479{
9ed74f2d
JB
1480 /* not delalloc, ignore it */
1481 if (!(other->state & EXTENT_DELALLOC))
1bf85046 1482 return;
9ed74f2d 1483
9e0baf60
JB
1484 spin_lock(&BTRFS_I(inode)->lock);
1485 BTRFS_I(inode)->outstanding_extents--;
1486 spin_unlock(&BTRFS_I(inode)->lock);
9ed74f2d
JB
1487}
1488
eb73c1b7
MX
1489static void btrfs_add_delalloc_inodes(struct btrfs_root *root,
1490 struct inode *inode)
1491{
1492 spin_lock(&root->delalloc_lock);
1493 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1494 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1495 &root->delalloc_inodes);
1496 set_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1497 &BTRFS_I(inode)->runtime_flags);
1498 root->nr_delalloc_inodes++;
1499 if (root->nr_delalloc_inodes == 1) {
1500 spin_lock(&root->fs_info->delalloc_root_lock);
1501 BUG_ON(!list_empty(&root->delalloc_root));
1502 list_add_tail(&root->delalloc_root,
1503 &root->fs_info->delalloc_roots);
1504 spin_unlock(&root->fs_info->delalloc_root_lock);
1505 }
1506 }
1507 spin_unlock(&root->delalloc_lock);
1508}
1509
1510static void btrfs_del_delalloc_inode(struct btrfs_root *root,
1511 struct inode *inode)
1512{
1513 spin_lock(&root->delalloc_lock);
1514 if (!list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1515 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1516 clear_bit(BTRFS_INODE_IN_DELALLOC_LIST,
1517 &BTRFS_I(inode)->runtime_flags);
1518 root->nr_delalloc_inodes--;
1519 if (!root->nr_delalloc_inodes) {
1520 spin_lock(&root->fs_info->delalloc_root_lock);
1521 BUG_ON(list_empty(&root->delalloc_root));
1522 list_del_init(&root->delalloc_root);
1523 spin_unlock(&root->fs_info->delalloc_root_lock);
1524 }
1525 }
1526 spin_unlock(&root->delalloc_lock);
1527}
1528
d352ac68
CM
1529/*
1530 * extent_io.c set_bit_hook, used to track delayed allocation
1531 * bytes in this file, and to maintain the list of inodes that
1532 * have pending delalloc work to be done.
1533 */
1bf85046 1534static void btrfs_set_bit_hook(struct inode *inode,
41074888 1535 struct extent_state *state, unsigned long *bits)
291d673e 1536{
9ed74f2d 1537
75eff68e
CM
1538 /*
1539 * set_bit and clear bit hooks normally require _irqsave/restore
27160b6b 1540 * but in this case, we are only testing for the DELALLOC
75eff68e
CM
1541 * bit, which is only set or cleared with irqs on
1542 */
0ca1f7ce 1543 if (!(state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
291d673e 1544 struct btrfs_root *root = BTRFS_I(inode)->root;
0ca1f7ce 1545 u64 len = state->end + 1 - state->start;
83eea1f1 1546 bool do_list = !btrfs_is_free_space_inode(inode);
9ed74f2d 1547
9e0baf60 1548 if (*bits & EXTENT_FIRST_DELALLOC) {
0ca1f7ce 1549 *bits &= ~EXTENT_FIRST_DELALLOC;
9e0baf60
JB
1550 } else {
1551 spin_lock(&BTRFS_I(inode)->lock);
1552 BTRFS_I(inode)->outstanding_extents++;
1553 spin_unlock(&BTRFS_I(inode)->lock);
1554 }
287a0ab9 1555
963d678b
MX
1556 __percpu_counter_add(&root->fs_info->delalloc_bytes, len,
1557 root->fs_info->delalloc_batch);
df0af1a5 1558 spin_lock(&BTRFS_I(inode)->lock);
0ca1f7ce 1559 BTRFS_I(inode)->delalloc_bytes += len;
df0af1a5 1560 if (do_list && !test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
eb73c1b7
MX
1561 &BTRFS_I(inode)->runtime_flags))
1562 btrfs_add_delalloc_inodes(root, inode);
df0af1a5 1563 spin_unlock(&BTRFS_I(inode)->lock);
291d673e 1564 }
291d673e
CM
1565}
1566
d352ac68
CM
1567/*
1568 * extent_io.c clear_bit_hook, see set_bit_hook for why
1569 */
1bf85046 1570static void btrfs_clear_bit_hook(struct inode *inode,
41074888
DS
1571 struct extent_state *state,
1572 unsigned long *bits)
291d673e 1573{
75eff68e
CM
1574 /*
1575 * set_bit and clear bit hooks normally require _irqsave/restore
27160b6b 1576 * but in this case, we are only testing for the DELALLOC
75eff68e
CM
1577 * bit, which is only set or cleared with irqs on
1578 */
0ca1f7ce 1579 if ((state->state & EXTENT_DELALLOC) && (*bits & EXTENT_DELALLOC)) {
291d673e 1580 struct btrfs_root *root = BTRFS_I(inode)->root;
0ca1f7ce 1581 u64 len = state->end + 1 - state->start;
83eea1f1 1582 bool do_list = !btrfs_is_free_space_inode(inode);
bcbfce8a 1583
9e0baf60 1584 if (*bits & EXTENT_FIRST_DELALLOC) {
0ca1f7ce 1585 *bits &= ~EXTENT_FIRST_DELALLOC;
9e0baf60
JB
1586 } else if (!(*bits & EXTENT_DO_ACCOUNTING)) {
1587 spin_lock(&BTRFS_I(inode)->lock);
1588 BTRFS_I(inode)->outstanding_extents--;
1589 spin_unlock(&BTRFS_I(inode)->lock);
1590 }
0ca1f7ce 1591
b6d08f06
JB
1592 /*
1593 * We don't reserve metadata space for space cache inodes so we
1594 * don't need to call dellalloc_release_metadata if there is an
1595 * error.
1596 */
1597 if (*bits & EXTENT_DO_ACCOUNTING &&
1598 root != root->fs_info->tree_root)
0ca1f7ce
YZ
1599 btrfs_delalloc_release_metadata(inode, len);
1600
0cb59c99 1601 if (root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID
7ee9e440 1602 && do_list && !(state->state & EXTENT_NORESERVE))
0ca1f7ce 1603 btrfs_free_reserved_data_space(inode, len);
9ed74f2d 1604
963d678b
MX
1605 __percpu_counter_add(&root->fs_info->delalloc_bytes, -len,
1606 root->fs_info->delalloc_batch);
df0af1a5 1607 spin_lock(&BTRFS_I(inode)->lock);
0ca1f7ce 1608 BTRFS_I(inode)->delalloc_bytes -= len;
0cb59c99 1609 if (do_list && BTRFS_I(inode)->delalloc_bytes == 0 &&
df0af1a5 1610 test_bit(BTRFS_INODE_IN_DELALLOC_LIST,
eb73c1b7
MX
1611 &BTRFS_I(inode)->runtime_flags))
1612 btrfs_del_delalloc_inode(root, inode);
df0af1a5 1613 spin_unlock(&BTRFS_I(inode)->lock);
291d673e 1614 }
291d673e
CM
1615}
1616
d352ac68
CM
1617/*
1618 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1619 * we don't create bios that span stripes or chunks
1620 */
64a16701 1621int btrfs_merge_bio_hook(int rw, struct page *page, unsigned long offset,
c8b97818
CM
1622 size_t size, struct bio *bio,
1623 unsigned long bio_flags)
239b14b3
CM
1624{
1625 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
4f024f37 1626 u64 logical = (u64)bio->bi_iter.bi_sector << 9;
239b14b3
CM
1627 u64 length = 0;
1628 u64 map_length;
239b14b3
CM
1629 int ret;
1630
771ed689
CM
1631 if (bio_flags & EXTENT_BIO_COMPRESSED)
1632 return 0;
1633
4f024f37 1634 length = bio->bi_iter.bi_size;
239b14b3 1635 map_length = length;
64a16701 1636 ret = btrfs_map_block(root->fs_info, rw, logical,
f188591e 1637 &map_length, NULL, 0);
3ec706c8 1638 /* Will always return 0 with map_multi == NULL */
3444a972 1639 BUG_ON(ret < 0);
d397712b 1640 if (map_length < length + size)
239b14b3 1641 return 1;
3444a972 1642 return 0;
239b14b3
CM
1643}
1644
d352ac68
CM
1645/*
1646 * in order to insert checksums into the metadata in large chunks,
1647 * we wait until bio submission time. All the pages in the bio are
1648 * checksummed and sums are attached onto the ordered extent record.
1649 *
1650 * At IO completion time the cums attached on the ordered extent record
1651 * are inserted into the btree
1652 */
d397712b
CM
1653static int __btrfs_submit_bio_start(struct inode *inode, int rw,
1654 struct bio *bio, int mirror_num,
eaf25d93
CM
1655 unsigned long bio_flags,
1656 u64 bio_offset)
065631f6 1657{
065631f6 1658 struct btrfs_root *root = BTRFS_I(inode)->root;
065631f6 1659 int ret = 0;
e015640f 1660
d20f7043 1661 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
79787eaa 1662 BUG_ON(ret); /* -ENOMEM */
4a69a410
CM
1663 return 0;
1664}
e015640f 1665
4a69a410
CM
1666/*
1667 * in order to insert checksums into the metadata in large chunks,
1668 * we wait until bio submission time. All the pages in the bio are
1669 * checksummed and sums are attached onto the ordered extent record.
1670 *
1671 * At IO completion time the cums attached on the ordered extent record
1672 * are inserted into the btree
1673 */
b2950863 1674static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
eaf25d93
CM
1675 int mirror_num, unsigned long bio_flags,
1676 u64 bio_offset)
4a69a410
CM
1677{
1678 struct btrfs_root *root = BTRFS_I(inode)->root;
61891923
SB
1679 int ret;
1680
1681 ret = btrfs_map_bio(root, rw, bio, mirror_num, 1);
1682 if (ret)
1683 bio_endio(bio, ret);
1684 return ret;
44b8bd7e
CM
1685}
1686
d352ac68 1687/*
cad321ad
CM
1688 * extent_io.c submission hook. This does the right thing for csum calculation
1689 * on write, or reading the csums from the tree before a read
d352ac68 1690 */
b2950863 1691static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
eaf25d93
CM
1692 int mirror_num, unsigned long bio_flags,
1693 u64 bio_offset)
44b8bd7e
CM
1694{
1695 struct btrfs_root *root = BTRFS_I(inode)->root;
1696 int ret = 0;
19b9bdb0 1697 int skip_sum;
0417341e 1698 int metadata = 0;
b812ce28 1699 int async = !atomic_read(&BTRFS_I(inode)->sync_writers);
44b8bd7e 1700
6cbff00f 1701 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
cad321ad 1702
83eea1f1 1703 if (btrfs_is_free_space_inode(inode))
0417341e
JM
1704 metadata = 2;
1705
7b6d91da 1706 if (!(rw & REQ_WRITE)) {
5fd02043
JB
1707 ret = btrfs_bio_wq_end_io(root->fs_info, bio, metadata);
1708 if (ret)
61891923 1709 goto out;
5fd02043 1710
d20f7043 1711 if (bio_flags & EXTENT_BIO_COMPRESSED) {
61891923
SB
1712 ret = btrfs_submit_compressed_read(inode, bio,
1713 mirror_num,
1714 bio_flags);
1715 goto out;
c2db1073
TI
1716 } else if (!skip_sum) {
1717 ret = btrfs_lookup_bio_sums(root, inode, bio, NULL);
1718 if (ret)
61891923 1719 goto out;
c2db1073 1720 }
4d1b5fb4 1721 goto mapit;
b812ce28 1722 } else if (async && !skip_sum) {
17d217fe
YZ
1723 /* csum items have already been cloned */
1724 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1725 goto mapit;
19b9bdb0 1726 /* we're doing a write, do the async checksumming */
61891923 1727 ret = btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
44b8bd7e 1728 inode, rw, bio, mirror_num,
eaf25d93
CM
1729 bio_flags, bio_offset,
1730 __btrfs_submit_bio_start,
4a69a410 1731 __btrfs_submit_bio_done);
61891923 1732 goto out;
b812ce28
JB
1733 } else if (!skip_sum) {
1734 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
1735 if (ret)
1736 goto out;
19b9bdb0
CM
1737 }
1738
0b86a832 1739mapit:
61891923
SB
1740 ret = btrfs_map_bio(root, rw, bio, mirror_num, 0);
1741
1742out:
1743 if (ret < 0)
1744 bio_endio(bio, ret);
1745 return ret;
065631f6 1746}
6885f308 1747
d352ac68
CM
1748/*
1749 * given a list of ordered sums record them in the inode. This happens
1750 * at IO completion time based on sums calculated at bio submission time.
1751 */
ba1da2f4 1752static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
e6dcd2dc
CM
1753 struct inode *inode, u64 file_offset,
1754 struct list_head *list)
1755{
e6dcd2dc
CM
1756 struct btrfs_ordered_sum *sum;
1757
c6e30871 1758 list_for_each_entry(sum, list, list) {
39847c4d 1759 trans->adding_csums = 1;
d20f7043
CM
1760 btrfs_csum_file_blocks(trans,
1761 BTRFS_I(inode)->root->fs_info->csum_root, sum);
39847c4d 1762 trans->adding_csums = 0;
e6dcd2dc
CM
1763 }
1764 return 0;
1765}
1766
2ac55d41
JB
1767int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end,
1768 struct extent_state **cached_state)
ea8c2819 1769{
6c1500f2 1770 WARN_ON((end & (PAGE_CACHE_SIZE - 1)) == 0);
ea8c2819 1771 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
2ac55d41 1772 cached_state, GFP_NOFS);
ea8c2819
CM
1773}
1774
d352ac68 1775/* see btrfs_writepage_start_hook for details on why this is required */
247e743c
CM
1776struct btrfs_writepage_fixup {
1777 struct page *page;
1778 struct btrfs_work work;
1779};
1780
b2950863 1781static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
247e743c
CM
1782{
1783 struct btrfs_writepage_fixup *fixup;
1784 struct btrfs_ordered_extent *ordered;
2ac55d41 1785 struct extent_state *cached_state = NULL;
247e743c
CM
1786 struct page *page;
1787 struct inode *inode;
1788 u64 page_start;
1789 u64 page_end;
87826df0 1790 int ret;
247e743c
CM
1791
1792 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1793 page = fixup->page;
4a096752 1794again:
247e743c
CM
1795 lock_page(page);
1796 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1797 ClearPageChecked(page);
1798 goto out_page;
1799 }
1800
1801 inode = page->mapping->host;
1802 page_start = page_offset(page);
1803 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1804
2ac55d41 1805 lock_extent_bits(&BTRFS_I(inode)->io_tree, page_start, page_end, 0,
d0082371 1806 &cached_state);
4a096752
CM
1807
1808 /* already ordered? We're done */
8b62b72b 1809 if (PagePrivate2(page))
247e743c 1810 goto out;
4a096752
CM
1811
1812 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1813 if (ordered) {
2ac55d41
JB
1814 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start,
1815 page_end, &cached_state, GFP_NOFS);
4a096752
CM
1816 unlock_page(page);
1817 btrfs_start_ordered_extent(inode, ordered, 1);
87826df0 1818 btrfs_put_ordered_extent(ordered);
4a096752
CM
1819 goto again;
1820 }
247e743c 1821
87826df0
JM
1822 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
1823 if (ret) {
1824 mapping_set_error(page->mapping, ret);
1825 end_extent_writepage(page, ret, page_start, page_end);
1826 ClearPageChecked(page);
1827 goto out;
1828 }
1829
2ac55d41 1830 btrfs_set_extent_delalloc(inode, page_start, page_end, &cached_state);
247e743c 1831 ClearPageChecked(page);
87826df0 1832 set_page_dirty(page);
247e743c 1833out:
2ac55d41
JB
1834 unlock_extent_cached(&BTRFS_I(inode)->io_tree, page_start, page_end,
1835 &cached_state, GFP_NOFS);
247e743c
CM
1836out_page:
1837 unlock_page(page);
1838 page_cache_release(page);
b897abec 1839 kfree(fixup);
247e743c
CM
1840}
1841
1842/*
1843 * There are a few paths in the higher layers of the kernel that directly
1844 * set the page dirty bit without asking the filesystem if it is a
1845 * good idea. This causes problems because we want to make sure COW
1846 * properly happens and the data=ordered rules are followed.
1847 *
c8b97818 1848 * In our case any range that doesn't have the ORDERED bit set
247e743c
CM
1849 * hasn't been properly setup for IO. We kick off an async process
1850 * to fix it up. The async helper will wait for ordered extents, set
1851 * the delalloc bit and make it safe to write the page.
1852 */
b2950863 1853static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
247e743c
CM
1854{
1855 struct inode *inode = page->mapping->host;
1856 struct btrfs_writepage_fixup *fixup;
1857 struct btrfs_root *root = BTRFS_I(inode)->root;
247e743c 1858
8b62b72b
CM
1859 /* this page is properly in the ordered list */
1860 if (TestClearPagePrivate2(page))
247e743c
CM
1861 return 0;
1862
1863 if (PageChecked(page))
1864 return -EAGAIN;
1865
1866 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1867 if (!fixup)
1868 return -EAGAIN;
f421950f 1869
247e743c
CM
1870 SetPageChecked(page);
1871 page_cache_get(page);
dc6e3209 1872 btrfs_init_work(&fixup->work, btrfs_writepage_fixup_worker, NULL, NULL);
247e743c 1873 fixup->page = page;
dc6e3209 1874 btrfs_queue_work(root->fs_info->fixup_workers, &fixup->work);
87826df0 1875 return -EBUSY;
247e743c
CM
1876}
1877
d899e052
YZ
1878static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1879 struct inode *inode, u64 file_pos,
1880 u64 disk_bytenr, u64 disk_num_bytes,
1881 u64 num_bytes, u64 ram_bytes,
1882 u8 compression, u8 encryption,
1883 u16 other_encoding, int extent_type)
1884{
1885 struct btrfs_root *root = BTRFS_I(inode)->root;
1886 struct btrfs_file_extent_item *fi;
1887 struct btrfs_path *path;
1888 struct extent_buffer *leaf;
1889 struct btrfs_key ins;
1acae57b 1890 int extent_inserted = 0;
d899e052
YZ
1891 int ret;
1892
1893 path = btrfs_alloc_path();
d8926bb3
MF
1894 if (!path)
1895 return -ENOMEM;
d899e052 1896
a1ed835e
CM
1897 /*
1898 * we may be replacing one extent in the tree with another.
1899 * The new extent is pinned in the extent map, and we don't want
1900 * to drop it from the cache until it is completely in the btree.
1901 *
1902 * So, tell btrfs_drop_extents to leave this extent in the cache.
1903 * the caller is expected to unpin it and allow it to be merged
1904 * with the others.
1905 */
1acae57b
FDBM
1906 ret = __btrfs_drop_extents(trans, root, inode, path, file_pos,
1907 file_pos + num_bytes, NULL, 0,
1908 1, sizeof(*fi), &extent_inserted);
79787eaa
JM
1909 if (ret)
1910 goto out;
d899e052 1911
1acae57b
FDBM
1912 if (!extent_inserted) {
1913 ins.objectid = btrfs_ino(inode);
1914 ins.offset = file_pos;
1915 ins.type = BTRFS_EXTENT_DATA_KEY;
1916
1917 path->leave_spinning = 1;
1918 ret = btrfs_insert_empty_item(trans, root, path, &ins,
1919 sizeof(*fi));
1920 if (ret)
1921 goto out;
1922 }
d899e052
YZ
1923 leaf = path->nodes[0];
1924 fi = btrfs_item_ptr(leaf, path->slots[0],
1925 struct btrfs_file_extent_item);
1926 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1927 btrfs_set_file_extent_type(leaf, fi, extent_type);
1928 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1929 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1930 btrfs_set_file_extent_offset(leaf, fi, 0);
1931 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1932 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1933 btrfs_set_file_extent_compression(leaf, fi, compression);
1934 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1935 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
b9473439 1936
d899e052 1937 btrfs_mark_buffer_dirty(leaf);
ce195332 1938 btrfs_release_path(path);
d899e052
YZ
1939
1940 inode_add_bytes(inode, num_bytes);
d899e052
YZ
1941
1942 ins.objectid = disk_bytenr;
1943 ins.offset = disk_num_bytes;
1944 ins.type = BTRFS_EXTENT_ITEM_KEY;
5d4f98a2
YZ
1945 ret = btrfs_alloc_reserved_file_extent(trans, root,
1946 root->root_key.objectid,
33345d01 1947 btrfs_ino(inode), file_pos, &ins);
79787eaa 1948out:
d899e052 1949 btrfs_free_path(path);
b9473439 1950
79787eaa 1951 return ret;
d899e052
YZ
1952}
1953
38c227d8
LB
1954/* snapshot-aware defrag */
1955struct sa_defrag_extent_backref {
1956 struct rb_node node;
1957 struct old_sa_defrag_extent *old;
1958 u64 root_id;
1959 u64 inum;
1960 u64 file_pos;
1961 u64 extent_offset;
1962 u64 num_bytes;
1963 u64 generation;
1964};
1965
1966struct old_sa_defrag_extent {
1967 struct list_head list;
1968 struct new_sa_defrag_extent *new;
1969
1970 u64 extent_offset;
1971 u64 bytenr;
1972 u64 offset;
1973 u64 len;
1974 int count;
1975};
1976
1977struct new_sa_defrag_extent {
1978 struct rb_root root;
1979 struct list_head head;
1980 struct btrfs_path *path;
1981 struct inode *inode;
1982 u64 file_pos;
1983 u64 len;
1984 u64 bytenr;
1985 u64 disk_len;
1986 u8 compress_type;
1987};
1988
1989static int backref_comp(struct sa_defrag_extent_backref *b1,
1990 struct sa_defrag_extent_backref *b2)
1991{
1992 if (b1->root_id < b2->root_id)
1993 return -1;
1994 else if (b1->root_id > b2->root_id)
1995 return 1;
1996
1997 if (b1->inum < b2->inum)
1998 return -1;
1999 else if (b1->inum > b2->inum)
2000 return 1;
2001
2002 if (b1->file_pos < b2->file_pos)
2003 return -1;
2004 else if (b1->file_pos > b2->file_pos)
2005 return 1;
2006
2007 /*
2008 * [------------------------------] ===> (a range of space)
2009 * |<--->| |<---->| =============> (fs/file tree A)
2010 * |<---------------------------->| ===> (fs/file tree B)
2011 *
2012 * A range of space can refer to two file extents in one tree while
2013 * refer to only one file extent in another tree.
2014 *
2015 * So we may process a disk offset more than one time(two extents in A)
2016 * and locate at the same extent(one extent in B), then insert two same
2017 * backrefs(both refer to the extent in B).
2018 */
2019 return 0;
2020}
2021
2022static void backref_insert(struct rb_root *root,
2023 struct sa_defrag_extent_backref *backref)
2024{
2025 struct rb_node **p = &root->rb_node;
2026 struct rb_node *parent = NULL;
2027 struct sa_defrag_extent_backref *entry;
2028 int ret;
2029
2030 while (*p) {
2031 parent = *p;
2032 entry = rb_entry(parent, struct sa_defrag_extent_backref, node);
2033
2034 ret = backref_comp(backref, entry);
2035 if (ret < 0)
2036 p = &(*p)->rb_left;
2037 else
2038 p = &(*p)->rb_right;
2039 }
2040
2041 rb_link_node(&backref->node, parent, p);
2042 rb_insert_color(&backref->node, root);
2043}
2044
2045/*
2046 * Note the backref might has changed, and in this case we just return 0.
2047 */
2048static noinline int record_one_backref(u64 inum, u64 offset, u64 root_id,
2049 void *ctx)
2050{
2051 struct btrfs_file_extent_item *extent;
2052 struct btrfs_fs_info *fs_info;
2053 struct old_sa_defrag_extent *old = ctx;
2054 struct new_sa_defrag_extent *new = old->new;
2055 struct btrfs_path *path = new->path;
2056 struct btrfs_key key;
2057 struct btrfs_root *root;
2058 struct sa_defrag_extent_backref *backref;
2059 struct extent_buffer *leaf;
2060 struct inode *inode = new->inode;
2061 int slot;
2062 int ret;
2063 u64 extent_offset;
2064 u64 num_bytes;
2065
2066 if (BTRFS_I(inode)->root->root_key.objectid == root_id &&
2067 inum == btrfs_ino(inode))
2068 return 0;
2069
2070 key.objectid = root_id;
2071 key.type = BTRFS_ROOT_ITEM_KEY;
2072 key.offset = (u64)-1;
2073
2074 fs_info = BTRFS_I(inode)->root->fs_info;
2075 root = btrfs_read_fs_root_no_name(fs_info, &key);
2076 if (IS_ERR(root)) {
2077 if (PTR_ERR(root) == -ENOENT)
2078 return 0;
2079 WARN_ON(1);
2080 pr_debug("inum=%llu, offset=%llu, root_id=%llu\n",
2081 inum, offset, root_id);
2082 return PTR_ERR(root);
2083 }
2084
2085 key.objectid = inum;
2086 key.type = BTRFS_EXTENT_DATA_KEY;
2087 if (offset > (u64)-1 << 32)
2088 key.offset = 0;
2089 else
2090 key.offset = offset;
2091
2092 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
fae7f21c 2093 if (WARN_ON(ret < 0))
38c227d8 2094 return ret;
50f1319c 2095 ret = 0;
38c227d8
LB
2096
2097 while (1) {
2098 cond_resched();
2099
2100 leaf = path->nodes[0];
2101 slot = path->slots[0];
2102
2103 if (slot >= btrfs_header_nritems(leaf)) {
2104 ret = btrfs_next_leaf(root, path);
2105 if (ret < 0) {
2106 goto out;
2107 } else if (ret > 0) {
2108 ret = 0;
2109 goto out;
2110 }
2111 continue;
2112 }
2113
2114 path->slots[0]++;
2115
2116 btrfs_item_key_to_cpu(leaf, &key, slot);
2117
2118 if (key.objectid > inum)
2119 goto out;
2120
2121 if (key.objectid < inum || key.type != BTRFS_EXTENT_DATA_KEY)
2122 continue;
2123
2124 extent = btrfs_item_ptr(leaf, slot,
2125 struct btrfs_file_extent_item);
2126
2127 if (btrfs_file_extent_disk_bytenr(leaf, extent) != old->bytenr)
2128 continue;
2129
e68afa49
LB
2130 /*
2131 * 'offset' refers to the exact key.offset,
2132 * NOT the 'offset' field in btrfs_extent_data_ref, ie.
2133 * (key.offset - extent_offset).
2134 */
2135 if (key.offset != offset)
38c227d8
LB
2136 continue;
2137
e68afa49 2138 extent_offset = btrfs_file_extent_offset(leaf, extent);
38c227d8 2139 num_bytes = btrfs_file_extent_num_bytes(leaf, extent);
e68afa49 2140
38c227d8
LB
2141 if (extent_offset >= old->extent_offset + old->offset +
2142 old->len || extent_offset + num_bytes <=
2143 old->extent_offset + old->offset)
2144 continue;
38c227d8
LB
2145 break;
2146 }
2147
2148 backref = kmalloc(sizeof(*backref), GFP_NOFS);
2149 if (!backref) {
2150 ret = -ENOENT;
2151 goto out;
2152 }
2153
2154 backref->root_id = root_id;
2155 backref->inum = inum;
e68afa49 2156 backref->file_pos = offset;
38c227d8
LB
2157 backref->num_bytes = num_bytes;
2158 backref->extent_offset = extent_offset;
2159 backref->generation = btrfs_file_extent_generation(leaf, extent);
2160 backref->old = old;
2161 backref_insert(&new->root, backref);
2162 old->count++;
2163out:
2164 btrfs_release_path(path);
2165 WARN_ON(ret);
2166 return ret;
2167}
2168
2169static noinline bool record_extent_backrefs(struct btrfs_path *path,
2170 struct new_sa_defrag_extent *new)
2171{
2172 struct btrfs_fs_info *fs_info = BTRFS_I(new->inode)->root->fs_info;
2173 struct old_sa_defrag_extent *old, *tmp;
2174 int ret;
2175
2176 new->path = path;
2177
2178 list_for_each_entry_safe(old, tmp, &new->head, list) {
e68afa49
LB
2179 ret = iterate_inodes_from_logical(old->bytenr +
2180 old->extent_offset, fs_info,
38c227d8
LB
2181 path, record_one_backref,
2182 old);
4724b106
JB
2183 if (ret < 0 && ret != -ENOENT)
2184 return false;
38c227d8
LB
2185
2186 /* no backref to be processed for this extent */
2187 if (!old->count) {
2188 list_del(&old->list);
2189 kfree(old);
2190 }
2191 }
2192
2193 if (list_empty(&new->head))
2194 return false;
2195
2196 return true;
2197}
2198
2199static int relink_is_mergable(struct extent_buffer *leaf,
2200 struct btrfs_file_extent_item *fi,
116e0024 2201 struct new_sa_defrag_extent *new)
38c227d8 2202{
116e0024 2203 if (btrfs_file_extent_disk_bytenr(leaf, fi) != new->bytenr)
38c227d8
LB
2204 return 0;
2205
2206 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2207 return 0;
2208
116e0024
LB
2209 if (btrfs_file_extent_compression(leaf, fi) != new->compress_type)
2210 return 0;
2211
2212 if (btrfs_file_extent_encryption(leaf, fi) ||
38c227d8
LB
2213 btrfs_file_extent_other_encoding(leaf, fi))
2214 return 0;
2215
2216 return 1;
2217}
2218
2219/*
2220 * Note the backref might has changed, and in this case we just return 0.
2221 */
2222static noinline int relink_extent_backref(struct btrfs_path *path,
2223 struct sa_defrag_extent_backref *prev,
2224 struct sa_defrag_extent_backref *backref)
2225{
2226 struct btrfs_file_extent_item *extent;
2227 struct btrfs_file_extent_item *item;
2228 struct btrfs_ordered_extent *ordered;
2229 struct btrfs_trans_handle *trans;
2230 struct btrfs_fs_info *fs_info;
2231 struct btrfs_root *root;
2232 struct btrfs_key key;
2233 struct extent_buffer *leaf;
2234 struct old_sa_defrag_extent *old = backref->old;
2235 struct new_sa_defrag_extent *new = old->new;
2236 struct inode *src_inode = new->inode;
2237 struct inode *inode;
2238 struct extent_state *cached = NULL;
2239 int ret = 0;
2240 u64 start;
2241 u64 len;
2242 u64 lock_start;
2243 u64 lock_end;
2244 bool merge = false;
2245 int index;
2246
2247 if (prev && prev->root_id == backref->root_id &&
2248 prev->inum == backref->inum &&
2249 prev->file_pos + prev->num_bytes == backref->file_pos)
2250 merge = true;
2251
2252 /* step 1: get root */
2253 key.objectid = backref->root_id;
2254 key.type = BTRFS_ROOT_ITEM_KEY;
2255 key.offset = (u64)-1;
2256
2257 fs_info = BTRFS_I(src_inode)->root->fs_info;
2258 index = srcu_read_lock(&fs_info->subvol_srcu);
2259
2260 root = btrfs_read_fs_root_no_name(fs_info, &key);
2261 if (IS_ERR(root)) {
2262 srcu_read_unlock(&fs_info->subvol_srcu, index);
2263 if (PTR_ERR(root) == -ENOENT)
2264 return 0;
2265 return PTR_ERR(root);
2266 }
38c227d8 2267
bcbba5e6
WS
2268 if (btrfs_root_readonly(root)) {
2269 srcu_read_unlock(&fs_info->subvol_srcu, index);
2270 return 0;
2271 }
2272
38c227d8
LB
2273 /* step 2: get inode */
2274 key.objectid = backref->inum;
2275 key.type = BTRFS_INODE_ITEM_KEY;
2276 key.offset = 0;
2277
2278 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
2279 if (IS_ERR(inode)) {
2280 srcu_read_unlock(&fs_info->subvol_srcu, index);
2281 return 0;
2282 }
2283
2284 srcu_read_unlock(&fs_info->subvol_srcu, index);
2285
2286 /* step 3: relink backref */
2287 lock_start = backref->file_pos;
2288 lock_end = backref->file_pos + backref->num_bytes - 1;
2289 lock_extent_bits(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2290 0, &cached);
2291
2292 ordered = btrfs_lookup_first_ordered_extent(inode, lock_end);
2293 if (ordered) {
2294 btrfs_put_ordered_extent(ordered);
2295 goto out_unlock;
2296 }
2297
2298 trans = btrfs_join_transaction(root);
2299 if (IS_ERR(trans)) {
2300 ret = PTR_ERR(trans);
2301 goto out_unlock;
2302 }
2303
2304 key.objectid = backref->inum;
2305 key.type = BTRFS_EXTENT_DATA_KEY;
2306 key.offset = backref->file_pos;
2307
2308 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2309 if (ret < 0) {
2310 goto out_free_path;
2311 } else if (ret > 0) {
2312 ret = 0;
2313 goto out_free_path;
2314 }
2315
2316 extent = btrfs_item_ptr(path->nodes[0], path->slots[0],
2317 struct btrfs_file_extent_item);
2318
2319 if (btrfs_file_extent_generation(path->nodes[0], extent) !=
2320 backref->generation)
2321 goto out_free_path;
2322
2323 btrfs_release_path(path);
2324
2325 start = backref->file_pos;
2326 if (backref->extent_offset < old->extent_offset + old->offset)
2327 start += old->extent_offset + old->offset -
2328 backref->extent_offset;
2329
2330 len = min(backref->extent_offset + backref->num_bytes,
2331 old->extent_offset + old->offset + old->len);
2332 len -= max(backref->extent_offset, old->extent_offset + old->offset);
2333
2334 ret = btrfs_drop_extents(trans, root, inode, start,
2335 start + len, 1);
2336 if (ret)
2337 goto out_free_path;
2338again:
2339 key.objectid = btrfs_ino(inode);
2340 key.type = BTRFS_EXTENT_DATA_KEY;
2341 key.offset = start;
2342
a09a0a70 2343 path->leave_spinning = 1;
38c227d8
LB
2344 if (merge) {
2345 struct btrfs_file_extent_item *fi;
2346 u64 extent_len;
2347 struct btrfs_key found_key;
2348
3c9665df 2349 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
38c227d8
LB
2350 if (ret < 0)
2351 goto out_free_path;
2352
2353 path->slots[0]--;
2354 leaf = path->nodes[0];
2355 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2356
2357 fi = btrfs_item_ptr(leaf, path->slots[0],
2358 struct btrfs_file_extent_item);
2359 extent_len = btrfs_file_extent_num_bytes(leaf, fi);
2360
116e0024
LB
2361 if (extent_len + found_key.offset == start &&
2362 relink_is_mergable(leaf, fi, new)) {
38c227d8
LB
2363 btrfs_set_file_extent_num_bytes(leaf, fi,
2364 extent_len + len);
2365 btrfs_mark_buffer_dirty(leaf);
2366 inode_add_bytes(inode, len);
2367
2368 ret = 1;
2369 goto out_free_path;
2370 } else {
2371 merge = false;
2372 btrfs_release_path(path);
2373 goto again;
2374 }
2375 }
2376
2377 ret = btrfs_insert_empty_item(trans, root, path, &key,
2378 sizeof(*extent));
2379 if (ret) {
2380 btrfs_abort_transaction(trans, root, ret);
2381 goto out_free_path;
2382 }
2383
2384 leaf = path->nodes[0];
2385 item = btrfs_item_ptr(leaf, path->slots[0],
2386 struct btrfs_file_extent_item);
2387 btrfs_set_file_extent_disk_bytenr(leaf, item, new->bytenr);
2388 btrfs_set_file_extent_disk_num_bytes(leaf, item, new->disk_len);
2389 btrfs_set_file_extent_offset(leaf, item, start - new->file_pos);
2390 btrfs_set_file_extent_num_bytes(leaf, item, len);
2391 btrfs_set_file_extent_ram_bytes(leaf, item, new->len);
2392 btrfs_set_file_extent_generation(leaf, item, trans->transid);
2393 btrfs_set_file_extent_type(leaf, item, BTRFS_FILE_EXTENT_REG);
2394 btrfs_set_file_extent_compression(leaf, item, new->compress_type);
2395 btrfs_set_file_extent_encryption(leaf, item, 0);
2396 btrfs_set_file_extent_other_encoding(leaf, item, 0);
2397
2398 btrfs_mark_buffer_dirty(leaf);
2399 inode_add_bytes(inode, len);
a09a0a70 2400 btrfs_release_path(path);
38c227d8
LB
2401
2402 ret = btrfs_inc_extent_ref(trans, root, new->bytenr,
2403 new->disk_len, 0,
2404 backref->root_id, backref->inum,
2405 new->file_pos, 0); /* start - extent_offset */
2406 if (ret) {
2407 btrfs_abort_transaction(trans, root, ret);
2408 goto out_free_path;
2409 }
2410
2411 ret = 1;
2412out_free_path:
2413 btrfs_release_path(path);
a09a0a70 2414 path->leave_spinning = 0;
38c227d8
LB
2415 btrfs_end_transaction(trans, root);
2416out_unlock:
2417 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lock_start, lock_end,
2418 &cached, GFP_NOFS);
2419 iput(inode);
2420 return ret;
2421}
2422
6f519564
LB
2423static void free_sa_defrag_extent(struct new_sa_defrag_extent *new)
2424{
2425 struct old_sa_defrag_extent *old, *tmp;
2426
2427 if (!new)
2428 return;
2429
2430 list_for_each_entry_safe(old, tmp, &new->head, list) {
2431 list_del(&old->list);
2432 kfree(old);
2433 }
2434 kfree(new);
2435}
2436
38c227d8
LB
2437static void relink_file_extents(struct new_sa_defrag_extent *new)
2438{
2439 struct btrfs_path *path;
38c227d8
LB
2440 struct sa_defrag_extent_backref *backref;
2441 struct sa_defrag_extent_backref *prev = NULL;
2442 struct inode *inode;
2443 struct btrfs_root *root;
2444 struct rb_node *node;
2445 int ret;
2446
2447 inode = new->inode;
2448 root = BTRFS_I(inode)->root;
2449
2450 path = btrfs_alloc_path();
2451 if (!path)
2452 return;
2453
2454 if (!record_extent_backrefs(path, new)) {
2455 btrfs_free_path(path);
2456 goto out;
2457 }
2458 btrfs_release_path(path);
2459
2460 while (1) {
2461 node = rb_first(&new->root);
2462 if (!node)
2463 break;
2464 rb_erase(node, &new->root);
2465
2466 backref = rb_entry(node, struct sa_defrag_extent_backref, node);
2467
2468 ret = relink_extent_backref(path, prev, backref);
2469 WARN_ON(ret < 0);
2470
2471 kfree(prev);
2472
2473 if (ret == 1)
2474 prev = backref;
2475 else
2476 prev = NULL;
2477 cond_resched();
2478 }
2479 kfree(prev);
2480
2481 btrfs_free_path(path);
38c227d8 2482out:
6f519564
LB
2483 free_sa_defrag_extent(new);
2484
38c227d8
LB
2485 atomic_dec(&root->fs_info->defrag_running);
2486 wake_up(&root->fs_info->transaction_wait);
38c227d8
LB
2487}
2488
2489static struct new_sa_defrag_extent *
2490record_old_file_extents(struct inode *inode,
2491 struct btrfs_ordered_extent *ordered)
2492{
2493 struct btrfs_root *root = BTRFS_I(inode)->root;
2494 struct btrfs_path *path;
2495 struct btrfs_key key;
6f519564 2496 struct old_sa_defrag_extent *old;
38c227d8
LB
2497 struct new_sa_defrag_extent *new;
2498 int ret;
2499
2500 new = kmalloc(sizeof(*new), GFP_NOFS);
2501 if (!new)
2502 return NULL;
2503
2504 new->inode = inode;
2505 new->file_pos = ordered->file_offset;
2506 new->len = ordered->len;
2507 new->bytenr = ordered->start;
2508 new->disk_len = ordered->disk_len;
2509 new->compress_type = ordered->compress_type;
2510 new->root = RB_ROOT;
2511 INIT_LIST_HEAD(&new->head);
2512
2513 path = btrfs_alloc_path();
2514 if (!path)
2515 goto out_kfree;
2516
2517 key.objectid = btrfs_ino(inode);
2518 key.type = BTRFS_EXTENT_DATA_KEY;
2519 key.offset = new->file_pos;
2520
2521 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2522 if (ret < 0)
2523 goto out_free_path;
2524 if (ret > 0 && path->slots[0] > 0)
2525 path->slots[0]--;
2526
2527 /* find out all the old extents for the file range */
2528 while (1) {
2529 struct btrfs_file_extent_item *extent;
2530 struct extent_buffer *l;
2531 int slot;
2532 u64 num_bytes;
2533 u64 offset;
2534 u64 end;
2535 u64 disk_bytenr;
2536 u64 extent_offset;
2537
2538 l = path->nodes[0];
2539 slot = path->slots[0];
2540
2541 if (slot >= btrfs_header_nritems(l)) {
2542 ret = btrfs_next_leaf(root, path);
2543 if (ret < 0)
6f519564 2544 goto out_free_path;
38c227d8
LB
2545 else if (ret > 0)
2546 break;
2547 continue;
2548 }
2549
2550 btrfs_item_key_to_cpu(l, &key, slot);
2551
2552 if (key.objectid != btrfs_ino(inode))
2553 break;
2554 if (key.type != BTRFS_EXTENT_DATA_KEY)
2555 break;
2556 if (key.offset >= new->file_pos + new->len)
2557 break;
2558
2559 extent = btrfs_item_ptr(l, slot, struct btrfs_file_extent_item);
2560
2561 num_bytes = btrfs_file_extent_num_bytes(l, extent);
2562 if (key.offset + num_bytes < new->file_pos)
2563 goto next;
2564
2565 disk_bytenr = btrfs_file_extent_disk_bytenr(l, extent);
2566 if (!disk_bytenr)
2567 goto next;
2568
2569 extent_offset = btrfs_file_extent_offset(l, extent);
2570
2571 old = kmalloc(sizeof(*old), GFP_NOFS);
2572 if (!old)
6f519564 2573 goto out_free_path;
38c227d8
LB
2574
2575 offset = max(new->file_pos, key.offset);
2576 end = min(new->file_pos + new->len, key.offset + num_bytes);
2577
2578 old->bytenr = disk_bytenr;
2579 old->extent_offset = extent_offset;
2580 old->offset = offset - key.offset;
2581 old->len = end - offset;
2582 old->new = new;
2583 old->count = 0;
2584 list_add_tail(&old->list, &new->head);
2585next:
2586 path->slots[0]++;
2587 cond_resched();
2588 }
2589
2590 btrfs_free_path(path);
2591 atomic_inc(&root->fs_info->defrag_running);
2592
2593 return new;
2594
38c227d8
LB
2595out_free_path:
2596 btrfs_free_path(path);
2597out_kfree:
6f519564 2598 free_sa_defrag_extent(new);
38c227d8
LB
2599 return NULL;
2600}
2601
d352ac68
CM
2602/* as ordered data IO finishes, this gets called so we can finish
2603 * an ordered extent if the range of bytes in the file it covers are
2604 * fully written.
2605 */
5fd02043 2606static int btrfs_finish_ordered_io(struct btrfs_ordered_extent *ordered_extent)
e6dcd2dc 2607{
5fd02043 2608 struct inode *inode = ordered_extent->inode;
e6dcd2dc 2609 struct btrfs_root *root = BTRFS_I(inode)->root;
0ca1f7ce 2610 struct btrfs_trans_handle *trans = NULL;
e6dcd2dc 2611 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2ac55d41 2612 struct extent_state *cached_state = NULL;
38c227d8 2613 struct new_sa_defrag_extent *new = NULL;
261507a0 2614 int compress_type = 0;
77cef2ec
JB
2615 int ret = 0;
2616 u64 logical_len = ordered_extent->len;
82d5902d 2617 bool nolock;
77cef2ec 2618 bool truncated = false;
e6dcd2dc 2619
83eea1f1 2620 nolock = btrfs_is_free_space_inode(inode);
0cb59c99 2621
5fd02043
JB
2622 if (test_bit(BTRFS_ORDERED_IOERR, &ordered_extent->flags)) {
2623 ret = -EIO;
2624 goto out;
2625 }
2626
77cef2ec
JB
2627 if (test_bit(BTRFS_ORDERED_TRUNCATED, &ordered_extent->flags)) {
2628 truncated = true;
2629 logical_len = ordered_extent->truncated_len;
2630 /* Truncated the entire extent, don't bother adding */
2631 if (!logical_len)
2632 goto out;
2633 }
2634
c2167754 2635 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
79787eaa 2636 BUG_ON(!list_empty(&ordered_extent->list)); /* Logic error */
6c760c07
JB
2637 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2638 if (nolock)
2639 trans = btrfs_join_transaction_nolock(root);
2640 else
2641 trans = btrfs_join_transaction(root);
2642 if (IS_ERR(trans)) {
2643 ret = PTR_ERR(trans);
2644 trans = NULL;
2645 goto out;
c2167754 2646 }
6c760c07
JB
2647 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
2648 ret = btrfs_update_inode_fallback(trans, root, inode);
2649 if (ret) /* -ENOMEM or corruption */
2650 btrfs_abort_transaction(trans, root, ret);
c2167754
YZ
2651 goto out;
2652 }
e6dcd2dc 2653
2ac55d41
JB
2654 lock_extent_bits(io_tree, ordered_extent->file_offset,
2655 ordered_extent->file_offset + ordered_extent->len - 1,
d0082371 2656 0, &cached_state);
e6dcd2dc 2657
38c227d8
LB
2658 ret = test_range_bit(io_tree, ordered_extent->file_offset,
2659 ordered_extent->file_offset + ordered_extent->len - 1,
2660 EXTENT_DEFRAG, 1, cached_state);
2661 if (ret) {
2662 u64 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
8101c8db 2663 if (0 && last_snapshot >= BTRFS_I(inode)->generation)
38c227d8
LB
2664 /* the inode is shared */
2665 new = record_old_file_extents(inode, ordered_extent);
2666
2667 clear_extent_bit(io_tree, ordered_extent->file_offset,
2668 ordered_extent->file_offset + ordered_extent->len - 1,
2669 EXTENT_DEFRAG, 0, 0, &cached_state, GFP_NOFS);
2670 }
2671
0cb59c99 2672 if (nolock)
7a7eaa40 2673 trans = btrfs_join_transaction_nolock(root);
0cb59c99 2674 else
7a7eaa40 2675 trans = btrfs_join_transaction(root);
79787eaa
JM
2676 if (IS_ERR(trans)) {
2677 ret = PTR_ERR(trans);
2678 trans = NULL;
2679 goto out_unlock;
2680 }
0ca1f7ce 2681 trans->block_rsv = &root->fs_info->delalloc_block_rsv;
c2167754 2682
c8b97818 2683 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
261507a0 2684 compress_type = ordered_extent->compress_type;
d899e052 2685 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
261507a0 2686 BUG_ON(compress_type);
920bbbfb 2687 ret = btrfs_mark_extent_written(trans, inode,
d899e052
YZ
2688 ordered_extent->file_offset,
2689 ordered_extent->file_offset +
77cef2ec 2690 logical_len);
d899e052 2691 } else {
0af3d00b 2692 BUG_ON(root == root->fs_info->tree_root);
d899e052
YZ
2693 ret = insert_reserved_file_extent(trans, inode,
2694 ordered_extent->file_offset,
2695 ordered_extent->start,
2696 ordered_extent->disk_len,
77cef2ec 2697 logical_len, logical_len,
261507a0 2698 compress_type, 0, 0,
d899e052 2699 BTRFS_FILE_EXTENT_REG);
d899e052 2700 }
5dc562c5
JB
2701 unpin_extent_cache(&BTRFS_I(inode)->extent_tree,
2702 ordered_extent->file_offset, ordered_extent->len,
2703 trans->transid);
79787eaa
JM
2704 if (ret < 0) {
2705 btrfs_abort_transaction(trans, root, ret);
5fd02043 2706 goto out_unlock;
79787eaa 2707 }
2ac55d41 2708
e6dcd2dc
CM
2709 add_pending_csums(trans, inode, ordered_extent->file_offset,
2710 &ordered_extent->list);
2711
6c760c07
JB
2712 btrfs_ordered_update_i_size(inode, 0, ordered_extent);
2713 ret = btrfs_update_inode_fallback(trans, root, inode);
2714 if (ret) { /* -ENOMEM or corruption */
2715 btrfs_abort_transaction(trans, root, ret);
2716 goto out_unlock;
1ef30be1
JB
2717 }
2718 ret = 0;
5fd02043
JB
2719out_unlock:
2720 unlock_extent_cached(io_tree, ordered_extent->file_offset,
2721 ordered_extent->file_offset +
2722 ordered_extent->len - 1, &cached_state, GFP_NOFS);
c2167754 2723out:
5b0e95bf 2724 if (root != root->fs_info->tree_root)
0cb59c99 2725 btrfs_delalloc_release_metadata(inode, ordered_extent->len);
a698d075
MX
2726 if (trans)
2727 btrfs_end_transaction(trans, root);
0cb59c99 2728
77cef2ec
JB
2729 if (ret || truncated) {
2730 u64 start, end;
2731
2732 if (truncated)
2733 start = ordered_extent->file_offset + logical_len;
2734 else
2735 start = ordered_extent->file_offset;
2736 end = ordered_extent->file_offset + ordered_extent->len - 1;
2737 clear_extent_uptodate(io_tree, start, end, NULL, GFP_NOFS);
2738
2739 /* Drop the cache for the part of the extent we didn't write. */
2740 btrfs_drop_extent_cache(inode, start, end, 0);
5fd02043 2741
0bec9ef5
JB
2742 /*
2743 * If the ordered extent had an IOERR or something else went
2744 * wrong we need to return the space for this ordered extent
77cef2ec
JB
2745 * back to the allocator. We only free the extent in the
2746 * truncated case if we didn't write out the extent at all.
0bec9ef5 2747 */
77cef2ec
JB
2748 if ((ret || !logical_len) &&
2749 !test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags) &&
0bec9ef5
JB
2750 !test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags))
2751 btrfs_free_reserved_extent(root, ordered_extent->start,
2752 ordered_extent->disk_len);
2753 }
2754
2755
5fd02043 2756 /*
8bad3c02
LB
2757 * This needs to be done to make sure anybody waiting knows we are done
2758 * updating everything for this ordered extent.
5fd02043
JB
2759 */
2760 btrfs_remove_ordered_extent(inode, ordered_extent);
2761
38c227d8 2762 /* for snapshot-aware defrag */
6f519564
LB
2763 if (new) {
2764 if (ret) {
2765 free_sa_defrag_extent(new);
2766 atomic_dec(&root->fs_info->defrag_running);
2767 } else {
2768 relink_file_extents(new);
2769 }
2770 }
38c227d8 2771
e6dcd2dc
CM
2772 /* once for us */
2773 btrfs_put_ordered_extent(ordered_extent);
2774 /* once for the tree */
2775 btrfs_put_ordered_extent(ordered_extent);
2776
5fd02043
JB
2777 return ret;
2778}
2779
2780static void finish_ordered_fn(struct btrfs_work *work)
2781{
2782 struct btrfs_ordered_extent *ordered_extent;
2783 ordered_extent = container_of(work, struct btrfs_ordered_extent, work);
2784 btrfs_finish_ordered_io(ordered_extent);
e6dcd2dc
CM
2785}
2786
b2950863 2787static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
211f90e6
CM
2788 struct extent_state *state, int uptodate)
2789{
5fd02043
JB
2790 struct inode *inode = page->mapping->host;
2791 struct btrfs_root *root = BTRFS_I(inode)->root;
2792 struct btrfs_ordered_extent *ordered_extent = NULL;
d458b054 2793 struct btrfs_workqueue *workers;
5fd02043 2794
1abe9b8a 2795 trace_btrfs_writepage_end_io_hook(page, start, end, uptodate);
2796
8b62b72b 2797 ClearPagePrivate2(page);
5fd02043
JB
2798 if (!btrfs_dec_test_ordered_pending(inode, &ordered_extent, start,
2799 end - start + 1, uptodate))
2800 return 0;
2801
fccb5d86 2802 btrfs_init_work(&ordered_extent->work, finish_ordered_fn, NULL, NULL);
5fd02043 2803
83eea1f1 2804 if (btrfs_is_free_space_inode(inode))
fccb5d86 2805 workers = root->fs_info->endio_freespace_worker;
5fd02043 2806 else
fccb5d86
QW
2807 workers = root->fs_info->endio_write_workers;
2808 btrfs_queue_work(workers, &ordered_extent->work);
5fd02043
JB
2809
2810 return 0;
211f90e6
CM
2811}
2812
d352ac68
CM
2813/*
2814 * when reads are done, we need to check csums to verify the data is correct
4a54c8c1
JS
2815 * if there's a match, we allow the bio to finish. If not, the code in
2816 * extent_io.c will try to find good copies for us.
d352ac68 2817 */
facc8a22
MX
2818static int btrfs_readpage_end_io_hook(struct btrfs_io_bio *io_bio,
2819 u64 phy_offset, struct page *page,
2820 u64 start, u64 end, int mirror)
07157aac 2821{
4eee4fa4 2822 size_t offset = start - page_offset(page);
07157aac 2823 struct inode *inode = page->mapping->host;
d1310b2e 2824 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
07157aac 2825 char *kaddr;
ff79f819 2826 struct btrfs_root *root = BTRFS_I(inode)->root;
facc8a22 2827 u32 csum_expected;
ff79f819 2828 u32 csum = ~(u32)0;
c2cf52eb
SK
2829 static DEFINE_RATELIMIT_STATE(_rs, DEFAULT_RATELIMIT_INTERVAL,
2830 DEFAULT_RATELIMIT_BURST);
d1310b2e 2831
d20f7043
CM
2832 if (PageChecked(page)) {
2833 ClearPageChecked(page);
2834 goto good;
2835 }
6cbff00f
CH
2836
2837 if (BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)
08d2f347 2838 goto good;
17d217fe
YZ
2839
2840 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
9655d298 2841 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1, NULL)) {
17d217fe
YZ
2842 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
2843 GFP_NOFS);
b6cda9bc 2844 return 0;
17d217fe 2845 }
d20f7043 2846
facc8a22
MX
2847 phy_offset >>= inode->i_sb->s_blocksize_bits;
2848 csum_expected = *(((u32 *)io_bio->csum) + phy_offset);
d397712b 2849
facc8a22 2850 kaddr = kmap_atomic(page);
b0496686 2851 csum = btrfs_csum_data(kaddr + offset, csum, end - start + 1);
ff79f819 2852 btrfs_csum_final(csum, (char *)&csum);
facc8a22 2853 if (csum != csum_expected)
07157aac 2854 goto zeroit;
d397712b 2855
7ac687d9 2856 kunmap_atomic(kaddr);
d20f7043 2857good:
07157aac
CM
2858 return 0;
2859
2860zeroit:
c2cf52eb 2861 if (__ratelimit(&_rs))
facc8a22 2862 btrfs_info(root->fs_info, "csum failed ino %llu off %llu csum %u expected csum %u",
c1c9ff7c 2863 btrfs_ino(page->mapping->host), start, csum, csum_expected);
db94535d
CM
2864 memset(kaddr + offset, 1, end - start + 1);
2865 flush_dcache_page(page);
7ac687d9 2866 kunmap_atomic(kaddr);
facc8a22 2867 if (csum_expected == 0)
3b951516 2868 return 0;
7e38326f 2869 return -EIO;
07157aac 2870}
b888db2b 2871
24bbcf04
YZ
2872struct delayed_iput {
2873 struct list_head list;
2874 struct inode *inode;
2875};
2876
79787eaa
JM
2877/* JDM: If this is fs-wide, why can't we add a pointer to
2878 * btrfs_inode instead and avoid the allocation? */
24bbcf04
YZ
2879void btrfs_add_delayed_iput(struct inode *inode)
2880{
2881 struct btrfs_fs_info *fs_info = BTRFS_I(inode)->root->fs_info;
2882 struct delayed_iput *delayed;
2883
2884 if (atomic_add_unless(&inode->i_count, -1, 1))
2885 return;
2886
2887 delayed = kmalloc(sizeof(*delayed), GFP_NOFS | __GFP_NOFAIL);
2888 delayed->inode = inode;
2889
2890 spin_lock(&fs_info->delayed_iput_lock);
2891 list_add_tail(&delayed->list, &fs_info->delayed_iputs);
2892 spin_unlock(&fs_info->delayed_iput_lock);
2893}
2894
2895void btrfs_run_delayed_iputs(struct btrfs_root *root)
2896{
2897 LIST_HEAD(list);
2898 struct btrfs_fs_info *fs_info = root->fs_info;
2899 struct delayed_iput *delayed;
2900 int empty;
2901
2902 spin_lock(&fs_info->delayed_iput_lock);
2903 empty = list_empty(&fs_info->delayed_iputs);
2904 spin_unlock(&fs_info->delayed_iput_lock);
2905 if (empty)
2906 return;
2907
24bbcf04
YZ
2908 spin_lock(&fs_info->delayed_iput_lock);
2909 list_splice_init(&fs_info->delayed_iputs, &list);
2910 spin_unlock(&fs_info->delayed_iput_lock);
2911
2912 while (!list_empty(&list)) {
2913 delayed = list_entry(list.next, struct delayed_iput, list);
2914 list_del(&delayed->list);
2915 iput(delayed->inode);
2916 kfree(delayed);
2917 }
24bbcf04
YZ
2918}
2919
d68fc57b 2920/*
42b2aa86 2921 * This is called in transaction commit time. If there are no orphan
d68fc57b
YZ
2922 * files in the subvolume, it removes orphan item and frees block_rsv
2923 * structure.
2924 */
2925void btrfs_orphan_commit_root(struct btrfs_trans_handle *trans,
2926 struct btrfs_root *root)
2927{
90290e19 2928 struct btrfs_block_rsv *block_rsv;
d68fc57b
YZ
2929 int ret;
2930
8a35d95f 2931 if (atomic_read(&root->orphan_inodes) ||
d68fc57b
YZ
2932 root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE)
2933 return;
2934
90290e19 2935 spin_lock(&root->orphan_lock);
8a35d95f 2936 if (atomic_read(&root->orphan_inodes)) {
90290e19
JB
2937 spin_unlock(&root->orphan_lock);
2938 return;
2939 }
2940
2941 if (root->orphan_cleanup_state != ORPHAN_CLEANUP_DONE) {
2942 spin_unlock(&root->orphan_lock);
2943 return;
2944 }
2945
2946 block_rsv = root->orphan_block_rsv;
2947 root->orphan_block_rsv = NULL;
2948 spin_unlock(&root->orphan_lock);
2949
27cdeb70 2950 if (test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state) &&
d68fc57b
YZ
2951 btrfs_root_refs(&root->root_item) > 0) {
2952 ret = btrfs_del_orphan_item(trans, root->fs_info->tree_root,
2953 root->root_key.objectid);
4ef31a45
JB
2954 if (ret)
2955 btrfs_abort_transaction(trans, root, ret);
2956 else
27cdeb70
MX
2957 clear_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
2958 &root->state);
d68fc57b
YZ
2959 }
2960
90290e19
JB
2961 if (block_rsv) {
2962 WARN_ON(block_rsv->size > 0);
2963 btrfs_free_block_rsv(root, block_rsv);
d68fc57b
YZ
2964 }
2965}
2966
7b128766
JB
2967/*
2968 * This creates an orphan entry for the given inode in case something goes
2969 * wrong in the middle of an unlink/truncate.
d68fc57b
YZ
2970 *
2971 * NOTE: caller of this function should reserve 5 units of metadata for
2972 * this function.
7b128766
JB
2973 */
2974int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
2975{
2976 struct btrfs_root *root = BTRFS_I(inode)->root;
d68fc57b
YZ
2977 struct btrfs_block_rsv *block_rsv = NULL;
2978 int reserve = 0;
2979 int insert = 0;
2980 int ret;
7b128766 2981
d68fc57b 2982 if (!root->orphan_block_rsv) {
66d8f3dd 2983 block_rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
b532402e
TI
2984 if (!block_rsv)
2985 return -ENOMEM;
d68fc57b 2986 }
7b128766 2987
d68fc57b
YZ
2988 spin_lock(&root->orphan_lock);
2989 if (!root->orphan_block_rsv) {
2990 root->orphan_block_rsv = block_rsv;
2991 } else if (block_rsv) {
2992 btrfs_free_block_rsv(root, block_rsv);
2993 block_rsv = NULL;
7b128766 2994 }
7b128766 2995
8a35d95f
JB
2996 if (!test_and_set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
2997 &BTRFS_I(inode)->runtime_flags)) {
d68fc57b
YZ
2998#if 0
2999 /*
3000 * For proper ENOSPC handling, we should do orphan
3001 * cleanup when mounting. But this introduces backward
3002 * compatibility issue.
3003 */
3004 if (!xchg(&root->orphan_item_inserted, 1))
3005 insert = 2;
3006 else
3007 insert = 1;
3008#endif
3009 insert = 1;
321f0e70 3010 atomic_inc(&root->orphan_inodes);
7b128766
JB
3011 }
3012
72ac3c0d
JB
3013 if (!test_and_set_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3014 &BTRFS_I(inode)->runtime_flags))
d68fc57b 3015 reserve = 1;
d68fc57b 3016 spin_unlock(&root->orphan_lock);
7b128766 3017
d68fc57b
YZ
3018 /* grab metadata reservation from transaction handle */
3019 if (reserve) {
3020 ret = btrfs_orphan_reserve_metadata(trans, inode);
79787eaa 3021 BUG_ON(ret); /* -ENOSPC in reservation; Logic error? JDM */
d68fc57b 3022 }
7b128766 3023
d68fc57b
YZ
3024 /* insert an orphan item to track this unlinked/truncated file */
3025 if (insert >= 1) {
33345d01 3026 ret = btrfs_insert_orphan_item(trans, root, btrfs_ino(inode));
4ef31a45 3027 if (ret) {
703c88e0 3028 atomic_dec(&root->orphan_inodes);
4ef31a45
JB
3029 if (reserve) {
3030 clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3031 &BTRFS_I(inode)->runtime_flags);
3032 btrfs_orphan_release_metadata(inode);
3033 }
3034 if (ret != -EEXIST) {
e8e7cff6
JB
3035 clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3036 &BTRFS_I(inode)->runtime_flags);
4ef31a45
JB
3037 btrfs_abort_transaction(trans, root, ret);
3038 return ret;
3039 }
79787eaa
JM
3040 }
3041 ret = 0;
d68fc57b
YZ
3042 }
3043
3044 /* insert an orphan item to track subvolume contains orphan files */
3045 if (insert >= 2) {
3046 ret = btrfs_insert_orphan_item(trans, root->fs_info->tree_root,
3047 root->root_key.objectid);
79787eaa
JM
3048 if (ret && ret != -EEXIST) {
3049 btrfs_abort_transaction(trans, root, ret);
3050 return ret;
3051 }
d68fc57b
YZ
3052 }
3053 return 0;
7b128766
JB
3054}
3055
3056/*
3057 * We have done the truncate/delete so we can go ahead and remove the orphan
3058 * item for this particular inode.
3059 */
48a3b636
ES
3060static int btrfs_orphan_del(struct btrfs_trans_handle *trans,
3061 struct inode *inode)
7b128766
JB
3062{
3063 struct btrfs_root *root = BTRFS_I(inode)->root;
d68fc57b
YZ
3064 int delete_item = 0;
3065 int release_rsv = 0;
7b128766
JB
3066 int ret = 0;
3067
d68fc57b 3068 spin_lock(&root->orphan_lock);
8a35d95f
JB
3069 if (test_and_clear_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3070 &BTRFS_I(inode)->runtime_flags))
d68fc57b 3071 delete_item = 1;
7b128766 3072
72ac3c0d
JB
3073 if (test_and_clear_bit(BTRFS_INODE_ORPHAN_META_RESERVED,
3074 &BTRFS_I(inode)->runtime_flags))
d68fc57b 3075 release_rsv = 1;
d68fc57b 3076 spin_unlock(&root->orphan_lock);
7b128766 3077
703c88e0 3078 if (delete_item) {
8a35d95f 3079 atomic_dec(&root->orphan_inodes);
703c88e0
FDBM
3080 if (trans)
3081 ret = btrfs_del_orphan_item(trans, root,
3082 btrfs_ino(inode));
8a35d95f 3083 }
7b128766 3084
703c88e0
FDBM
3085 if (release_rsv)
3086 btrfs_orphan_release_metadata(inode);
3087
4ef31a45 3088 return ret;
7b128766
JB
3089}
3090
3091/*
3092 * this cleans up any orphans that may be left on the list from the last use
3093 * of this root.
3094 */
66b4ffd1 3095int btrfs_orphan_cleanup(struct btrfs_root *root)
7b128766
JB
3096{
3097 struct btrfs_path *path;
3098 struct extent_buffer *leaf;
7b128766
JB
3099 struct btrfs_key key, found_key;
3100 struct btrfs_trans_handle *trans;
3101 struct inode *inode;
8f6d7f4f 3102 u64 last_objectid = 0;
7b128766
JB
3103 int ret = 0, nr_unlink = 0, nr_truncate = 0;
3104
d68fc57b 3105 if (cmpxchg(&root->orphan_cleanup_state, 0, ORPHAN_CLEANUP_STARTED))
66b4ffd1 3106 return 0;
c71bf099
YZ
3107
3108 path = btrfs_alloc_path();
66b4ffd1
JB
3109 if (!path) {
3110 ret = -ENOMEM;
3111 goto out;
3112 }
7b128766
JB
3113 path->reada = -1;
3114
3115 key.objectid = BTRFS_ORPHAN_OBJECTID;
3116 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
3117 key.offset = (u64)-1;
3118
7b128766
JB
3119 while (1) {
3120 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
66b4ffd1
JB
3121 if (ret < 0)
3122 goto out;
7b128766
JB
3123
3124 /*
3125 * if ret == 0 means we found what we were searching for, which
25985edc 3126 * is weird, but possible, so only screw with path if we didn't
7b128766
JB
3127 * find the key and see if we have stuff that matches
3128 */
3129 if (ret > 0) {
66b4ffd1 3130 ret = 0;
7b128766
JB
3131 if (path->slots[0] == 0)
3132 break;
3133 path->slots[0]--;
3134 }
3135
3136 /* pull out the item */
3137 leaf = path->nodes[0];
7b128766
JB
3138 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3139
3140 /* make sure the item matches what we want */
3141 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
3142 break;
3143 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
3144 break;
3145
3146 /* release the path since we're done with it */
b3b4aa74 3147 btrfs_release_path(path);
7b128766
JB
3148
3149 /*
3150 * this is where we are basically btrfs_lookup, without the
3151 * crossing root thing. we store the inode number in the
3152 * offset of the orphan item.
3153 */
8f6d7f4f
JB
3154
3155 if (found_key.offset == last_objectid) {
c2cf52eb
SK
3156 btrfs_err(root->fs_info,
3157 "Error removing orphan entry, stopping orphan cleanup");
8f6d7f4f
JB
3158 ret = -EINVAL;
3159 goto out;
3160 }
3161
3162 last_objectid = found_key.offset;
3163
5d4f98a2
YZ
3164 found_key.objectid = found_key.offset;
3165 found_key.type = BTRFS_INODE_ITEM_KEY;
3166 found_key.offset = 0;
73f73415 3167 inode = btrfs_iget(root->fs_info->sb, &found_key, root, NULL);
8c6ffba0 3168 ret = PTR_ERR_OR_ZERO(inode);
a8c9e576 3169 if (ret && ret != -ESTALE)
66b4ffd1 3170 goto out;
7b128766 3171
f8e9e0b0
AJ
3172 if (ret == -ESTALE && root == root->fs_info->tree_root) {
3173 struct btrfs_root *dead_root;
3174 struct btrfs_fs_info *fs_info = root->fs_info;
3175 int is_dead_root = 0;
3176
3177 /*
3178 * this is an orphan in the tree root. Currently these
3179 * could come from 2 sources:
3180 * a) a snapshot deletion in progress
3181 * b) a free space cache inode
3182 * We need to distinguish those two, as the snapshot
3183 * orphan must not get deleted.
3184 * find_dead_roots already ran before us, so if this
3185 * is a snapshot deletion, we should find the root
3186 * in the dead_roots list
3187 */
3188 spin_lock(&fs_info->trans_lock);
3189 list_for_each_entry(dead_root, &fs_info->dead_roots,
3190 root_list) {
3191 if (dead_root->root_key.objectid ==
3192 found_key.objectid) {
3193 is_dead_root = 1;
3194 break;
3195 }
3196 }
3197 spin_unlock(&fs_info->trans_lock);
3198 if (is_dead_root) {
3199 /* prevent this orphan from being found again */
3200 key.offset = found_key.objectid - 1;
3201 continue;
3202 }
3203 }
7b128766 3204 /*
a8c9e576
JB
3205 * Inode is already gone but the orphan item is still there,
3206 * kill the orphan item.
7b128766 3207 */
a8c9e576
JB
3208 if (ret == -ESTALE) {
3209 trans = btrfs_start_transaction(root, 1);
66b4ffd1
JB
3210 if (IS_ERR(trans)) {
3211 ret = PTR_ERR(trans);
3212 goto out;
3213 }
c2cf52eb
SK
3214 btrfs_debug(root->fs_info, "auto deleting %Lu",
3215 found_key.objectid);
a8c9e576
JB
3216 ret = btrfs_del_orphan_item(trans, root,
3217 found_key.objectid);
5b21f2ed 3218 btrfs_end_transaction(trans, root);
4ef31a45
JB
3219 if (ret)
3220 goto out;
7b128766
JB
3221 continue;
3222 }
3223
a8c9e576
JB
3224 /*
3225 * add this inode to the orphan list so btrfs_orphan_del does
3226 * the proper thing when we hit it
3227 */
8a35d95f
JB
3228 set_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
3229 &BTRFS_I(inode)->runtime_flags);
925396ec 3230 atomic_inc(&root->orphan_inodes);
a8c9e576 3231
7b128766
JB
3232 /* if we have links, this was a truncate, lets do that */
3233 if (inode->i_nlink) {
fae7f21c 3234 if (WARN_ON(!S_ISREG(inode->i_mode))) {
a41ad394
JB
3235 iput(inode);
3236 continue;
3237 }
7b128766 3238 nr_truncate++;
f3fe820c
JB
3239
3240 /* 1 for the orphan item deletion. */
3241 trans = btrfs_start_transaction(root, 1);
3242 if (IS_ERR(trans)) {
c69b26b0 3243 iput(inode);
f3fe820c
JB
3244 ret = PTR_ERR(trans);
3245 goto out;
3246 }
3247 ret = btrfs_orphan_add(trans, inode);
3248 btrfs_end_transaction(trans, root);
c69b26b0
JB
3249 if (ret) {
3250 iput(inode);
f3fe820c 3251 goto out;
c69b26b0 3252 }
f3fe820c 3253
66b4ffd1 3254 ret = btrfs_truncate(inode);
4a7d0f68
JB
3255 if (ret)
3256 btrfs_orphan_del(NULL, inode);
7b128766
JB
3257 } else {
3258 nr_unlink++;
3259 }
3260
3261 /* this will do delete_inode and everything for us */
3262 iput(inode);
66b4ffd1
JB
3263 if (ret)
3264 goto out;
7b128766 3265 }
3254c876
MX
3266 /* release the path since we're done with it */
3267 btrfs_release_path(path);
3268
d68fc57b
YZ
3269 root->orphan_cleanup_state = ORPHAN_CLEANUP_DONE;
3270
3271 if (root->orphan_block_rsv)
3272 btrfs_block_rsv_release(root, root->orphan_block_rsv,
3273 (u64)-1);
3274
27cdeb70
MX
3275 if (root->orphan_block_rsv ||
3276 test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state)) {
7a7eaa40 3277 trans = btrfs_join_transaction(root);
66b4ffd1
JB
3278 if (!IS_ERR(trans))
3279 btrfs_end_transaction(trans, root);
d68fc57b 3280 }
7b128766
JB
3281
3282 if (nr_unlink)
4884b476 3283 btrfs_debug(root->fs_info, "unlinked %d orphans", nr_unlink);
7b128766 3284 if (nr_truncate)
4884b476 3285 btrfs_debug(root->fs_info, "truncated %d orphans", nr_truncate);
66b4ffd1
JB
3286
3287out:
3288 if (ret)
c2cf52eb
SK
3289 btrfs_crit(root->fs_info,
3290 "could not do orphan cleanup %d", ret);
66b4ffd1
JB
3291 btrfs_free_path(path);
3292 return ret;
7b128766
JB
3293}
3294
46a53cca
CM
3295/*
3296 * very simple check to peek ahead in the leaf looking for xattrs. If we
3297 * don't find any xattrs, we know there can't be any acls.
3298 *
3299 * slot is the slot the inode is in, objectid is the objectid of the inode
3300 */
3301static noinline int acls_after_inode_item(struct extent_buffer *leaf,
63541927
FDBM
3302 int slot, u64 objectid,
3303 int *first_xattr_slot)
46a53cca
CM
3304{
3305 u32 nritems = btrfs_header_nritems(leaf);
3306 struct btrfs_key found_key;
f23b5a59
JB
3307 static u64 xattr_access = 0;
3308 static u64 xattr_default = 0;
46a53cca
CM
3309 int scanned = 0;
3310
f23b5a59
JB
3311 if (!xattr_access) {
3312 xattr_access = btrfs_name_hash(POSIX_ACL_XATTR_ACCESS,
3313 strlen(POSIX_ACL_XATTR_ACCESS));
3314 xattr_default = btrfs_name_hash(POSIX_ACL_XATTR_DEFAULT,
3315 strlen(POSIX_ACL_XATTR_DEFAULT));
3316 }
3317
46a53cca 3318 slot++;
63541927 3319 *first_xattr_slot = -1;
46a53cca
CM
3320 while (slot < nritems) {
3321 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3322
3323 /* we found a different objectid, there must not be acls */
3324 if (found_key.objectid != objectid)
3325 return 0;
3326
3327 /* we found an xattr, assume we've got an acl */
f23b5a59 3328 if (found_key.type == BTRFS_XATTR_ITEM_KEY) {
63541927
FDBM
3329 if (*first_xattr_slot == -1)
3330 *first_xattr_slot = slot;
f23b5a59
JB
3331 if (found_key.offset == xattr_access ||
3332 found_key.offset == xattr_default)
3333 return 1;
3334 }
46a53cca
CM
3335
3336 /*
3337 * we found a key greater than an xattr key, there can't
3338 * be any acls later on
3339 */
3340 if (found_key.type > BTRFS_XATTR_ITEM_KEY)
3341 return 0;
3342
3343 slot++;
3344 scanned++;
3345
3346 /*
3347 * it goes inode, inode backrefs, xattrs, extents,
3348 * so if there are a ton of hard links to an inode there can
3349 * be a lot of backrefs. Don't waste time searching too hard,
3350 * this is just an optimization
3351 */
3352 if (scanned >= 8)
3353 break;
3354 }
3355 /* we hit the end of the leaf before we found an xattr or
3356 * something larger than an xattr. We have to assume the inode
3357 * has acls
3358 */
63541927
FDBM
3359 if (*first_xattr_slot == -1)
3360 *first_xattr_slot = slot;
46a53cca
CM
3361 return 1;
3362}
3363
d352ac68
CM
3364/*
3365 * read an inode from the btree into the in-memory inode
3366 */
5d4f98a2 3367static void btrfs_read_locked_inode(struct inode *inode)
39279cc3
CM
3368{
3369 struct btrfs_path *path;
5f39d397 3370 struct extent_buffer *leaf;
39279cc3 3371 struct btrfs_inode_item *inode_item;
0b86a832 3372 struct btrfs_timespec *tspec;
39279cc3
CM
3373 struct btrfs_root *root = BTRFS_I(inode)->root;
3374 struct btrfs_key location;
67de1176 3375 unsigned long ptr;
46a53cca 3376 int maybe_acls;
618e21d5 3377 u32 rdev;
39279cc3 3378 int ret;
2f7e33d4 3379 bool filled = false;
63541927 3380 int first_xattr_slot;
2f7e33d4
MX
3381
3382 ret = btrfs_fill_inode(inode, &rdev);
3383 if (!ret)
3384 filled = true;
39279cc3
CM
3385
3386 path = btrfs_alloc_path();
1748f843
MF
3387 if (!path)
3388 goto make_bad;
3389
39279cc3 3390 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
dc17ff8f 3391
39279cc3 3392 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
5f39d397 3393 if (ret)
39279cc3 3394 goto make_bad;
39279cc3 3395
5f39d397 3396 leaf = path->nodes[0];
2f7e33d4
MX
3397
3398 if (filled)
67de1176 3399 goto cache_index;
2f7e33d4 3400
5f39d397
CM
3401 inode_item = btrfs_item_ptr(leaf, path->slots[0],
3402 struct btrfs_inode_item);
5f39d397 3403 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
bfe86848 3404 set_nlink(inode, btrfs_inode_nlink(leaf, inode_item));
2f2f43d3
EB
3405 i_uid_write(inode, btrfs_inode_uid(leaf, inode_item));
3406 i_gid_write(inode, btrfs_inode_gid(leaf, inode_item));
dbe674a9 3407 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
5f39d397
CM
3408
3409 tspec = btrfs_inode_atime(inode_item);
3410 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3411 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3412
3413 tspec = btrfs_inode_mtime(inode_item);
3414 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3415 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3416
3417 tspec = btrfs_inode_ctime(inode_item);
3418 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
3419 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
3420
a76a3cd4 3421 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
e02119d5 3422 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
5dc562c5
JB
3423 BTRFS_I(inode)->last_trans = btrfs_inode_transid(leaf, inode_item);
3424
3425 /*
3426 * If we were modified in the current generation and evicted from memory
3427 * and then re-read we need to do a full sync since we don't have any
3428 * idea about which extents were modified before we were evicted from
3429 * cache.
3430 */
3431 if (BTRFS_I(inode)->last_trans == root->fs_info->generation)
3432 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
3433 &BTRFS_I(inode)->runtime_flags);
3434
0c4d2d95 3435 inode->i_version = btrfs_inode_sequence(leaf, inode_item);
e02119d5 3436 inode->i_generation = BTRFS_I(inode)->generation;
618e21d5 3437 inode->i_rdev = 0;
5f39d397
CM
3438 rdev = btrfs_inode_rdev(leaf, inode_item);
3439
aec7477b 3440 BTRFS_I(inode)->index_cnt = (u64)-1;
d2fb3437 3441 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
67de1176
MX
3442
3443cache_index:
3444 path->slots[0]++;
3445 if (inode->i_nlink != 1 ||
3446 path->slots[0] >= btrfs_header_nritems(leaf))
3447 goto cache_acl;
3448
3449 btrfs_item_key_to_cpu(leaf, &location, path->slots[0]);
3450 if (location.objectid != btrfs_ino(inode))
3451 goto cache_acl;
3452
3453 ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
3454 if (location.type == BTRFS_INODE_REF_KEY) {
3455 struct btrfs_inode_ref *ref;
3456
3457 ref = (struct btrfs_inode_ref *)ptr;
3458 BTRFS_I(inode)->dir_index = btrfs_inode_ref_index(leaf, ref);
3459 } else if (location.type == BTRFS_INODE_EXTREF_KEY) {
3460 struct btrfs_inode_extref *extref;
3461
3462 extref = (struct btrfs_inode_extref *)ptr;
3463 BTRFS_I(inode)->dir_index = btrfs_inode_extref_index(leaf,
3464 extref);
3465 }
2f7e33d4 3466cache_acl:
46a53cca
CM
3467 /*
3468 * try to precache a NULL acl entry for files that don't have
3469 * any xattrs or acls
3470 */
33345d01 3471 maybe_acls = acls_after_inode_item(leaf, path->slots[0],
63541927
FDBM
3472 btrfs_ino(inode), &first_xattr_slot);
3473 if (first_xattr_slot != -1) {
3474 path->slots[0] = first_xattr_slot;
3475 ret = btrfs_load_inode_props(inode, path);
3476 if (ret)
3477 btrfs_err(root->fs_info,
3478 "error loading props for ino %llu (root %llu): %d\n",
3479 btrfs_ino(inode),
3480 root->root_key.objectid, ret);
3481 }
3482 btrfs_free_path(path);
3483
72c04902
AV
3484 if (!maybe_acls)
3485 cache_no_acl(inode);
46a53cca 3486
39279cc3 3487 switch (inode->i_mode & S_IFMT) {
39279cc3
CM
3488 case S_IFREG:
3489 inode->i_mapping->a_ops = &btrfs_aops;
04160088 3490 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
d1310b2e 3491 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
39279cc3
CM
3492 inode->i_fop = &btrfs_file_operations;
3493 inode->i_op = &btrfs_file_inode_operations;
3494 break;
3495 case S_IFDIR:
3496 inode->i_fop = &btrfs_dir_file_operations;
3497 if (root == root->fs_info->tree_root)
3498 inode->i_op = &btrfs_dir_ro_inode_operations;
3499 else
3500 inode->i_op = &btrfs_dir_inode_operations;
3501 break;
3502 case S_IFLNK:
3503 inode->i_op = &btrfs_symlink_inode_operations;
3504 inode->i_mapping->a_ops = &btrfs_symlink_aops;
04160088 3505 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
39279cc3 3506 break;
618e21d5 3507 default:
0279b4cd 3508 inode->i_op = &btrfs_special_inode_operations;
618e21d5
JB
3509 init_special_inode(inode, inode->i_mode, rdev);
3510 break;
39279cc3 3511 }
6cbff00f
CH
3512
3513 btrfs_update_iflags(inode);
39279cc3
CM
3514 return;
3515
3516make_bad:
39279cc3 3517 btrfs_free_path(path);
39279cc3
CM
3518 make_bad_inode(inode);
3519}
3520
d352ac68
CM
3521/*
3522 * given a leaf and an inode, copy the inode fields into the leaf
3523 */
e02119d5
CM
3524static void fill_inode_item(struct btrfs_trans_handle *trans,
3525 struct extent_buffer *leaf,
5f39d397 3526 struct btrfs_inode_item *item,
39279cc3
CM
3527 struct inode *inode)
3528{
51fab693
LB
3529 struct btrfs_map_token token;
3530
3531 btrfs_init_map_token(&token);
5f39d397 3532
51fab693
LB
3533 btrfs_set_token_inode_uid(leaf, item, i_uid_read(inode), &token);
3534 btrfs_set_token_inode_gid(leaf, item, i_gid_read(inode), &token);
3535 btrfs_set_token_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size,
3536 &token);
3537 btrfs_set_token_inode_mode(leaf, item, inode->i_mode, &token);
3538 btrfs_set_token_inode_nlink(leaf, item, inode->i_nlink, &token);
5f39d397 3539
51fab693
LB
3540 btrfs_set_token_timespec_sec(leaf, btrfs_inode_atime(item),
3541 inode->i_atime.tv_sec, &token);
3542 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_atime(item),
3543 inode->i_atime.tv_nsec, &token);
5f39d397 3544
51fab693
LB
3545 btrfs_set_token_timespec_sec(leaf, btrfs_inode_mtime(item),
3546 inode->i_mtime.tv_sec, &token);
3547 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_mtime(item),
3548 inode->i_mtime.tv_nsec, &token);
5f39d397 3549
51fab693
LB
3550 btrfs_set_token_timespec_sec(leaf, btrfs_inode_ctime(item),
3551 inode->i_ctime.tv_sec, &token);
3552 btrfs_set_token_timespec_nsec(leaf, btrfs_inode_ctime(item),
3553 inode->i_ctime.tv_nsec, &token);
5f39d397 3554
51fab693
LB
3555 btrfs_set_token_inode_nbytes(leaf, item, inode_get_bytes(inode),
3556 &token);
3557 btrfs_set_token_inode_generation(leaf, item, BTRFS_I(inode)->generation,
3558 &token);
3559 btrfs_set_token_inode_sequence(leaf, item, inode->i_version, &token);
3560 btrfs_set_token_inode_transid(leaf, item, trans->transid, &token);
3561 btrfs_set_token_inode_rdev(leaf, item, inode->i_rdev, &token);
3562 btrfs_set_token_inode_flags(leaf, item, BTRFS_I(inode)->flags, &token);
3563 btrfs_set_token_inode_block_group(leaf, item, 0, &token);
39279cc3
CM
3564}
3565
d352ac68
CM
3566/*
3567 * copy everything in the in-memory inode into the btree.
3568 */
2115133f 3569static noinline int btrfs_update_inode_item(struct btrfs_trans_handle *trans,
d397712b 3570 struct btrfs_root *root, struct inode *inode)
39279cc3
CM
3571{
3572 struct btrfs_inode_item *inode_item;
3573 struct btrfs_path *path;
5f39d397 3574 struct extent_buffer *leaf;
39279cc3
CM
3575 int ret;
3576
3577 path = btrfs_alloc_path();
16cdcec7
MX
3578 if (!path)
3579 return -ENOMEM;
3580
b9473439 3581 path->leave_spinning = 1;
16cdcec7
MX
3582 ret = btrfs_lookup_inode(trans, root, path, &BTRFS_I(inode)->location,
3583 1);
39279cc3
CM
3584 if (ret) {
3585 if (ret > 0)
3586 ret = -ENOENT;
3587 goto failed;
3588 }
3589
5f39d397
CM
3590 leaf = path->nodes[0];
3591 inode_item = btrfs_item_ptr(leaf, path->slots[0],
16cdcec7 3592 struct btrfs_inode_item);
39279cc3 3593
e02119d5 3594 fill_inode_item(trans, leaf, inode_item, inode);
5f39d397 3595 btrfs_mark_buffer_dirty(leaf);
15ee9bc7 3596 btrfs_set_inode_last_trans(trans, inode);
39279cc3
CM
3597 ret = 0;
3598failed:
39279cc3
CM
3599 btrfs_free_path(path);
3600 return ret;
3601}
3602
2115133f
CM
3603/*
3604 * copy everything in the in-memory inode into the btree.
3605 */
3606noinline int btrfs_update_inode(struct btrfs_trans_handle *trans,
3607 struct btrfs_root *root, struct inode *inode)
3608{
3609 int ret;
3610
3611 /*
3612 * If the inode is a free space inode, we can deadlock during commit
3613 * if we put it into the delayed code.
3614 *
3615 * The data relocation inode should also be directly updated
3616 * without delay
3617 */
83eea1f1 3618 if (!btrfs_is_free_space_inode(inode)
2115133f 3619 && root->root_key.objectid != BTRFS_DATA_RELOC_TREE_OBJECTID) {
8ea05e3a
AB
3620 btrfs_update_root_times(trans, root);
3621
2115133f
CM
3622 ret = btrfs_delayed_update_inode(trans, root, inode);
3623 if (!ret)
3624 btrfs_set_inode_last_trans(trans, inode);
3625 return ret;
3626 }
3627
3628 return btrfs_update_inode_item(trans, root, inode);
3629}
3630
be6aef60
JB
3631noinline int btrfs_update_inode_fallback(struct btrfs_trans_handle *trans,
3632 struct btrfs_root *root,
3633 struct inode *inode)
2115133f
CM
3634{
3635 int ret;
3636
3637 ret = btrfs_update_inode(trans, root, inode);
3638 if (ret == -ENOSPC)
3639 return btrfs_update_inode_item(trans, root, inode);
3640 return ret;
3641}
3642
d352ac68
CM
3643/*
3644 * unlink helper that gets used here in inode.c and in the tree logging
3645 * recovery code. It remove a link in a directory with a given name, and
3646 * also drops the back refs in the inode to the directory
3647 */
92986796
AV
3648static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3649 struct btrfs_root *root,
3650 struct inode *dir, struct inode *inode,
3651 const char *name, int name_len)
39279cc3
CM
3652{
3653 struct btrfs_path *path;
39279cc3 3654 int ret = 0;
5f39d397 3655 struct extent_buffer *leaf;
39279cc3 3656 struct btrfs_dir_item *di;
5f39d397 3657 struct btrfs_key key;
aec7477b 3658 u64 index;
33345d01
LZ
3659 u64 ino = btrfs_ino(inode);
3660 u64 dir_ino = btrfs_ino(dir);
39279cc3
CM
3661
3662 path = btrfs_alloc_path();
54aa1f4d
CM
3663 if (!path) {
3664 ret = -ENOMEM;
554233a6 3665 goto out;
54aa1f4d
CM
3666 }
3667
b9473439 3668 path->leave_spinning = 1;
33345d01 3669 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
39279cc3
CM
3670 name, name_len, -1);
3671 if (IS_ERR(di)) {
3672 ret = PTR_ERR(di);
3673 goto err;
3674 }
3675 if (!di) {
3676 ret = -ENOENT;
3677 goto err;
3678 }
5f39d397
CM
3679 leaf = path->nodes[0];
3680 btrfs_dir_item_key_to_cpu(leaf, di, &key);
39279cc3 3681 ret = btrfs_delete_one_dir_name(trans, root, path, di);
54aa1f4d
CM
3682 if (ret)
3683 goto err;
b3b4aa74 3684 btrfs_release_path(path);
39279cc3 3685
67de1176
MX
3686 /*
3687 * If we don't have dir index, we have to get it by looking up
3688 * the inode ref, since we get the inode ref, remove it directly,
3689 * it is unnecessary to do delayed deletion.
3690 *
3691 * But if we have dir index, needn't search inode ref to get it.
3692 * Since the inode ref is close to the inode item, it is better
3693 * that we delay to delete it, and just do this deletion when
3694 * we update the inode item.
3695 */
3696 if (BTRFS_I(inode)->dir_index) {
3697 ret = btrfs_delayed_delete_inode_ref(inode);
3698 if (!ret) {
3699 index = BTRFS_I(inode)->dir_index;
3700 goto skip_backref;
3701 }
3702 }
3703
33345d01
LZ
3704 ret = btrfs_del_inode_ref(trans, root, name, name_len, ino,
3705 dir_ino, &index);
aec7477b 3706 if (ret) {
c2cf52eb
SK
3707 btrfs_info(root->fs_info,
3708 "failed to delete reference to %.*s, inode %llu parent %llu",
c1c9ff7c 3709 name_len, name, ino, dir_ino);
79787eaa 3710 btrfs_abort_transaction(trans, root, ret);
aec7477b
JB
3711 goto err;
3712 }
67de1176 3713skip_backref:
16cdcec7 3714 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
79787eaa
JM
3715 if (ret) {
3716 btrfs_abort_transaction(trans, root, ret);
39279cc3 3717 goto err;
79787eaa 3718 }
39279cc3 3719
e02119d5 3720 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
33345d01 3721 inode, dir_ino);
79787eaa
JM
3722 if (ret != 0 && ret != -ENOENT) {
3723 btrfs_abort_transaction(trans, root, ret);
3724 goto err;
3725 }
e02119d5
CM
3726
3727 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
3728 dir, index);
6418c961
CM
3729 if (ret == -ENOENT)
3730 ret = 0;
d4e3991b
ZB
3731 else if (ret)
3732 btrfs_abort_transaction(trans, root, ret);
39279cc3
CM
3733err:
3734 btrfs_free_path(path);
e02119d5
CM
3735 if (ret)
3736 goto out;
3737
3738 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
0c4d2d95
JB
3739 inode_inc_iversion(inode);
3740 inode_inc_iversion(dir);
e02119d5 3741 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
b9959295 3742 ret = btrfs_update_inode(trans, root, dir);
e02119d5 3743out:
39279cc3
CM
3744 return ret;
3745}
3746
92986796
AV
3747int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
3748 struct btrfs_root *root,
3749 struct inode *dir, struct inode *inode,
3750 const char *name, int name_len)
3751{
3752 int ret;
3753 ret = __btrfs_unlink_inode(trans, root, dir, inode, name, name_len);
3754 if (!ret) {
8b558c5f 3755 drop_nlink(inode);
92986796
AV
3756 ret = btrfs_update_inode(trans, root, inode);
3757 }
3758 return ret;
3759}
39279cc3 3760
a22285a6
YZ
3761/*
3762 * helper to start transaction for unlink and rmdir.
3763 *
d52be818
JB
3764 * unlink and rmdir are special in btrfs, they do not always free space, so
3765 * if we cannot make our reservations the normal way try and see if there is
3766 * plenty of slack room in the global reserve to migrate, otherwise we cannot
3767 * allow the unlink to occur.
a22285a6 3768 */
d52be818 3769static struct btrfs_trans_handle *__unlink_start_trans(struct inode *dir)
4df27c4d 3770{
39279cc3 3771 struct btrfs_trans_handle *trans;
a22285a6 3772 struct btrfs_root *root = BTRFS_I(dir)->root;
4df27c4d
YZ
3773 int ret;
3774
e70bea5f
JB
3775 /*
3776 * 1 for the possible orphan item
3777 * 1 for the dir item
3778 * 1 for the dir index
3779 * 1 for the inode ref
e70bea5f
JB
3780 * 1 for the inode
3781 */
6e137ed3 3782 trans = btrfs_start_transaction(root, 5);
a22285a6
YZ
3783 if (!IS_ERR(trans) || PTR_ERR(trans) != -ENOSPC)
3784 return trans;
4df27c4d 3785
d52be818
JB
3786 if (PTR_ERR(trans) == -ENOSPC) {
3787 u64 num_bytes = btrfs_calc_trans_metadata_size(root, 5);
4df27c4d 3788
d52be818
JB
3789 trans = btrfs_start_transaction(root, 0);
3790 if (IS_ERR(trans))
3791 return trans;
3792 ret = btrfs_cond_migrate_bytes(root->fs_info,
3793 &root->fs_info->trans_block_rsv,
3794 num_bytes, 5);
3795 if (ret) {
3796 btrfs_end_transaction(trans, root);
3797 return ERR_PTR(ret);
a22285a6 3798 }
5a77d76c 3799 trans->block_rsv = &root->fs_info->trans_block_rsv;
d52be818 3800 trans->bytes_reserved = num_bytes;
a22285a6 3801 }
d52be818 3802 return trans;
a22285a6
YZ
3803}
3804
3805static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
3806{
3807 struct btrfs_root *root = BTRFS_I(dir)->root;
3808 struct btrfs_trans_handle *trans;
3809 struct inode *inode = dentry->d_inode;
3810 int ret;
a22285a6 3811
d52be818 3812 trans = __unlink_start_trans(dir);
a22285a6
YZ
3813 if (IS_ERR(trans))
3814 return PTR_ERR(trans);
5f39d397 3815
12fcfd22
CM
3816 btrfs_record_unlink_dir(trans, dir, dentry->d_inode, 0);
3817
e02119d5
CM
3818 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3819 dentry->d_name.name, dentry->d_name.len);
b532402e
TI
3820 if (ret)
3821 goto out;
7b128766 3822
a22285a6 3823 if (inode->i_nlink == 0) {
7b128766 3824 ret = btrfs_orphan_add(trans, inode);
b532402e
TI
3825 if (ret)
3826 goto out;
a22285a6 3827 }
7b128766 3828
b532402e 3829out:
d52be818 3830 btrfs_end_transaction(trans, root);
b53d3f5d 3831 btrfs_btree_balance_dirty(root);
39279cc3
CM
3832 return ret;
3833}
3834
4df27c4d
YZ
3835int btrfs_unlink_subvol(struct btrfs_trans_handle *trans,
3836 struct btrfs_root *root,
3837 struct inode *dir, u64 objectid,
3838 const char *name, int name_len)
3839{
3840 struct btrfs_path *path;
3841 struct extent_buffer *leaf;
3842 struct btrfs_dir_item *di;
3843 struct btrfs_key key;
3844 u64 index;
3845 int ret;
33345d01 3846 u64 dir_ino = btrfs_ino(dir);
4df27c4d
YZ
3847
3848 path = btrfs_alloc_path();
3849 if (!path)
3850 return -ENOMEM;
3851
33345d01 3852 di = btrfs_lookup_dir_item(trans, root, path, dir_ino,
4df27c4d 3853 name, name_len, -1);
79787eaa
JM
3854 if (IS_ERR_OR_NULL(di)) {
3855 if (!di)
3856 ret = -ENOENT;
3857 else
3858 ret = PTR_ERR(di);
3859 goto out;
3860 }
4df27c4d
YZ
3861
3862 leaf = path->nodes[0];
3863 btrfs_dir_item_key_to_cpu(leaf, di, &key);
3864 WARN_ON(key.type != BTRFS_ROOT_ITEM_KEY || key.objectid != objectid);
3865 ret = btrfs_delete_one_dir_name(trans, root, path, di);
79787eaa
JM
3866 if (ret) {
3867 btrfs_abort_transaction(trans, root, ret);
3868 goto out;
3869 }
b3b4aa74 3870 btrfs_release_path(path);
4df27c4d
YZ
3871
3872 ret = btrfs_del_root_ref(trans, root->fs_info->tree_root,
3873 objectid, root->root_key.objectid,
33345d01 3874 dir_ino, &index, name, name_len);
4df27c4d 3875 if (ret < 0) {
79787eaa
JM
3876 if (ret != -ENOENT) {
3877 btrfs_abort_transaction(trans, root, ret);
3878 goto out;
3879 }
33345d01 3880 di = btrfs_search_dir_index_item(root, path, dir_ino,
4df27c4d 3881 name, name_len);
79787eaa
JM
3882 if (IS_ERR_OR_NULL(di)) {
3883 if (!di)
3884 ret = -ENOENT;
3885 else
3886 ret = PTR_ERR(di);
3887 btrfs_abort_transaction(trans, root, ret);
3888 goto out;
3889 }
4df27c4d
YZ
3890
3891 leaf = path->nodes[0];
3892 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
b3b4aa74 3893 btrfs_release_path(path);
4df27c4d
YZ
3894 index = key.offset;
3895 }
945d8962 3896 btrfs_release_path(path);
4df27c4d 3897
16cdcec7 3898 ret = btrfs_delete_delayed_dir_index(trans, root, dir, index);
79787eaa
JM
3899 if (ret) {
3900 btrfs_abort_transaction(trans, root, ret);
3901 goto out;
3902 }
4df27c4d
YZ
3903
3904 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
0c4d2d95 3905 inode_inc_iversion(dir);
4df27c4d 3906 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
5a24e84c 3907 ret = btrfs_update_inode_fallback(trans, root, dir);
79787eaa
JM
3908 if (ret)
3909 btrfs_abort_transaction(trans, root, ret);
3910out:
71d7aed0 3911 btrfs_free_path(path);
79787eaa 3912 return ret;
4df27c4d
YZ
3913}
3914
39279cc3
CM
3915static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
3916{
3917 struct inode *inode = dentry->d_inode;
1832a6d5 3918 int err = 0;
39279cc3 3919 struct btrfs_root *root = BTRFS_I(dir)->root;
39279cc3 3920 struct btrfs_trans_handle *trans;
39279cc3 3921
b3ae244e 3922 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
134d4512 3923 return -ENOTEMPTY;
b3ae244e
DS
3924 if (btrfs_ino(inode) == BTRFS_FIRST_FREE_OBJECTID)
3925 return -EPERM;
134d4512 3926
d52be818 3927 trans = __unlink_start_trans(dir);
a22285a6 3928 if (IS_ERR(trans))
5df6a9f6 3929 return PTR_ERR(trans);
5df6a9f6 3930
33345d01 3931 if (unlikely(btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
4df27c4d
YZ
3932 err = btrfs_unlink_subvol(trans, root, dir,
3933 BTRFS_I(inode)->location.objectid,
3934 dentry->d_name.name,
3935 dentry->d_name.len);
3936 goto out;
3937 }
3938
7b128766
JB
3939 err = btrfs_orphan_add(trans, inode);
3940 if (err)
4df27c4d 3941 goto out;
7b128766 3942
39279cc3 3943 /* now the directory is empty */
e02119d5
CM
3944 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
3945 dentry->d_name.name, dentry->d_name.len);
d397712b 3946 if (!err)
dbe674a9 3947 btrfs_i_size_write(inode, 0);
4df27c4d 3948out:
d52be818 3949 btrfs_end_transaction(trans, root);
b53d3f5d 3950 btrfs_btree_balance_dirty(root);
3954401f 3951
39279cc3
CM
3952 return err;
3953}
3954
39279cc3
CM
3955/*
3956 * this can truncate away extent items, csum items and directory items.
3957 * It starts at a high offset and removes keys until it can't find
d352ac68 3958 * any higher than new_size
39279cc3
CM
3959 *
3960 * csum items that cross the new i_size are truncated to the new size
3961 * as well.
7b128766
JB
3962 *
3963 * min_type is the minimum key type to truncate down to. If set to 0, this
3964 * will kill all the items on this inode, including the INODE_ITEM_KEY.
39279cc3 3965 */
8082510e
YZ
3966int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
3967 struct btrfs_root *root,
3968 struct inode *inode,
3969 u64 new_size, u32 min_type)
39279cc3 3970{
39279cc3 3971 struct btrfs_path *path;
5f39d397 3972 struct extent_buffer *leaf;
39279cc3 3973 struct btrfs_file_extent_item *fi;
8082510e
YZ
3974 struct btrfs_key key;
3975 struct btrfs_key found_key;
39279cc3 3976 u64 extent_start = 0;
db94535d 3977 u64 extent_num_bytes = 0;
5d4f98a2 3978 u64 extent_offset = 0;
39279cc3 3979 u64 item_end = 0;
7f4f6e0a 3980 u64 last_size = (u64)-1;
8082510e 3981 u32 found_type = (u8)-1;
39279cc3
CM
3982 int found_extent;
3983 int del_item;
85e21bac
CM
3984 int pending_del_nr = 0;
3985 int pending_del_slot = 0;
179e29e4 3986 int extent_type = -1;
8082510e
YZ
3987 int ret;
3988 int err = 0;
33345d01 3989 u64 ino = btrfs_ino(inode);
8082510e
YZ
3990
3991 BUG_ON(new_size > 0 && min_type != BTRFS_EXTENT_DATA_KEY);
39279cc3 3992
0eb0e19c
MF
3993 path = btrfs_alloc_path();
3994 if (!path)
3995 return -ENOMEM;
3996 path->reada = -1;
3997
5dc562c5
JB
3998 /*
3999 * We want to drop from the next block forward in case this new size is
4000 * not block aligned since we will be keeping the last block of the
4001 * extent just the way it is.
4002 */
27cdeb70
MX
4003 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
4004 root == root->fs_info->tree_root)
fda2832f
QW
4005 btrfs_drop_extent_cache(inode, ALIGN(new_size,
4006 root->sectorsize), (u64)-1, 0);
8082510e 4007
16cdcec7
MX
4008 /*
4009 * This function is also used to drop the items in the log tree before
4010 * we relog the inode, so if root != BTRFS_I(inode)->root, it means
4011 * it is used to drop the loged items. So we shouldn't kill the delayed
4012 * items.
4013 */
4014 if (min_type == 0 && root == BTRFS_I(inode)->root)
4015 btrfs_kill_delayed_inode_items(inode);
4016
33345d01 4017 key.objectid = ino;
39279cc3 4018 key.offset = (u64)-1;
5f39d397
CM
4019 key.type = (u8)-1;
4020
85e21bac 4021search_again:
b9473439 4022 path->leave_spinning = 1;
85e21bac 4023 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
8082510e
YZ
4024 if (ret < 0) {
4025 err = ret;
4026 goto out;
4027 }
d397712b 4028
85e21bac 4029 if (ret > 0) {
e02119d5
CM
4030 /* there are no items in the tree for us to truncate, we're
4031 * done
4032 */
8082510e
YZ
4033 if (path->slots[0] == 0)
4034 goto out;
85e21bac
CM
4035 path->slots[0]--;
4036 }
4037
d397712b 4038 while (1) {
39279cc3 4039 fi = NULL;
5f39d397
CM
4040 leaf = path->nodes[0];
4041 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
4042 found_type = btrfs_key_type(&found_key);
39279cc3 4043
33345d01 4044 if (found_key.objectid != ino)
39279cc3 4045 break;
5f39d397 4046
85e21bac 4047 if (found_type < min_type)
39279cc3
CM
4048 break;
4049
5f39d397 4050 item_end = found_key.offset;
39279cc3 4051 if (found_type == BTRFS_EXTENT_DATA_KEY) {
5f39d397 4052 fi = btrfs_item_ptr(leaf, path->slots[0],
39279cc3 4053 struct btrfs_file_extent_item);
179e29e4
CM
4054 extent_type = btrfs_file_extent_type(leaf, fi);
4055 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
5f39d397 4056 item_end +=
db94535d 4057 btrfs_file_extent_num_bytes(leaf, fi);
179e29e4 4058 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
179e29e4 4059 item_end += btrfs_file_extent_inline_len(leaf,
514ac8ad 4060 path->slots[0], fi);
39279cc3 4061 }
008630c1 4062 item_end--;
39279cc3 4063 }
8082510e
YZ
4064 if (found_type > min_type) {
4065 del_item = 1;
4066 } else {
4067 if (item_end < new_size)
b888db2b 4068 break;
8082510e
YZ
4069 if (found_key.offset >= new_size)
4070 del_item = 1;
4071 else
4072 del_item = 0;
39279cc3 4073 }
39279cc3 4074 found_extent = 0;
39279cc3 4075 /* FIXME, shrink the extent if the ref count is only 1 */
179e29e4
CM
4076 if (found_type != BTRFS_EXTENT_DATA_KEY)
4077 goto delete;
4078
7f4f6e0a
JB
4079 if (del_item)
4080 last_size = found_key.offset;
4081 else
4082 last_size = new_size;
4083
179e29e4 4084 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
39279cc3 4085 u64 num_dec;
db94535d 4086 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
f70a9a6b 4087 if (!del_item) {
db94535d
CM
4088 u64 orig_num_bytes =
4089 btrfs_file_extent_num_bytes(leaf, fi);
fda2832f
QW
4090 extent_num_bytes = ALIGN(new_size -
4091 found_key.offset,
4092 root->sectorsize);
db94535d
CM
4093 btrfs_set_file_extent_num_bytes(leaf, fi,
4094 extent_num_bytes);
4095 num_dec = (orig_num_bytes -
9069218d 4096 extent_num_bytes);
27cdeb70
MX
4097 if (test_bit(BTRFS_ROOT_REF_COWS,
4098 &root->state) &&
4099 extent_start != 0)
a76a3cd4 4100 inode_sub_bytes(inode, num_dec);
5f39d397 4101 btrfs_mark_buffer_dirty(leaf);
39279cc3 4102 } else {
db94535d
CM
4103 extent_num_bytes =
4104 btrfs_file_extent_disk_num_bytes(leaf,
4105 fi);
5d4f98a2
YZ
4106 extent_offset = found_key.offset -
4107 btrfs_file_extent_offset(leaf, fi);
4108
39279cc3 4109 /* FIXME blocksize != 4096 */
9069218d 4110 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
39279cc3
CM
4111 if (extent_start != 0) {
4112 found_extent = 1;
27cdeb70
MX
4113 if (test_bit(BTRFS_ROOT_REF_COWS,
4114 &root->state))
a76a3cd4 4115 inode_sub_bytes(inode, num_dec);
e02119d5 4116 }
39279cc3 4117 }
9069218d 4118 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
c8b97818
CM
4119 /*
4120 * we can't truncate inline items that have had
4121 * special encodings
4122 */
4123 if (!del_item &&
4124 btrfs_file_extent_compression(leaf, fi) == 0 &&
4125 btrfs_file_extent_encryption(leaf, fi) == 0 &&
4126 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
e02119d5
CM
4127 u32 size = new_size - found_key.offset;
4128
27cdeb70 4129 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state))
a76a3cd4
YZ
4130 inode_sub_bytes(inode, item_end + 1 -
4131 new_size);
514ac8ad
CM
4132
4133 /*
4134 * update the ram bytes to properly reflect
4135 * the new size of our item
4136 */
4137 btrfs_set_file_extent_ram_bytes(leaf, fi, size);
e02119d5
CM
4138 size =
4139 btrfs_file_extent_calc_inline_size(size);
afe5fea7 4140 btrfs_truncate_item(root, path, size, 1);
27cdeb70
MX
4141 } else if (test_bit(BTRFS_ROOT_REF_COWS,
4142 &root->state)) {
a76a3cd4
YZ
4143 inode_sub_bytes(inode, item_end + 1 -
4144 found_key.offset);
9069218d 4145 }
39279cc3 4146 }
179e29e4 4147delete:
39279cc3 4148 if (del_item) {
85e21bac
CM
4149 if (!pending_del_nr) {
4150 /* no pending yet, add ourselves */
4151 pending_del_slot = path->slots[0];
4152 pending_del_nr = 1;
4153 } else if (pending_del_nr &&
4154 path->slots[0] + 1 == pending_del_slot) {
4155 /* hop on the pending chunk */
4156 pending_del_nr++;
4157 pending_del_slot = path->slots[0];
4158 } else {
d397712b 4159 BUG();
85e21bac 4160 }
39279cc3
CM
4161 } else {
4162 break;
4163 }
27cdeb70
MX
4164 if (found_extent &&
4165 (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
4166 root == root->fs_info->tree_root)) {
b9473439 4167 btrfs_set_path_blocking(path);
39279cc3 4168 ret = btrfs_free_extent(trans, root, extent_start,
5d4f98a2
YZ
4169 extent_num_bytes, 0,
4170 btrfs_header_owner(leaf),
66d7e7f0 4171 ino, extent_offset, 0);
39279cc3
CM
4172 BUG_ON(ret);
4173 }
85e21bac 4174
8082510e
YZ
4175 if (found_type == BTRFS_INODE_ITEM_KEY)
4176 break;
4177
4178 if (path->slots[0] == 0 ||
4179 path->slots[0] != pending_del_slot) {
8082510e
YZ
4180 if (pending_del_nr) {
4181 ret = btrfs_del_items(trans, root, path,
4182 pending_del_slot,
4183 pending_del_nr);
79787eaa
JM
4184 if (ret) {
4185 btrfs_abort_transaction(trans,
4186 root, ret);
4187 goto error;
4188 }
8082510e
YZ
4189 pending_del_nr = 0;
4190 }
b3b4aa74 4191 btrfs_release_path(path);
85e21bac 4192 goto search_again;
8082510e
YZ
4193 } else {
4194 path->slots[0]--;
85e21bac 4195 }
39279cc3 4196 }
8082510e 4197out:
85e21bac
CM
4198 if (pending_del_nr) {
4199 ret = btrfs_del_items(trans, root, path, pending_del_slot,
4200 pending_del_nr);
79787eaa
JM
4201 if (ret)
4202 btrfs_abort_transaction(trans, root, ret);
85e21bac 4203 }
79787eaa 4204error:
7f4f6e0a
JB
4205 if (last_size != (u64)-1)
4206 btrfs_ordered_update_i_size(inode, last_size, NULL);
39279cc3 4207 btrfs_free_path(path);
8082510e 4208 return err;
39279cc3
CM
4209}
4210
4211/*
2aaa6655
JB
4212 * btrfs_truncate_page - read, zero a chunk and write a page
4213 * @inode - inode that we're zeroing
4214 * @from - the offset to start zeroing
4215 * @len - the length to zero, 0 to zero the entire range respective to the
4216 * offset
4217 * @front - zero up to the offset instead of from the offset on
4218 *
4219 * This will find the page for the "from" offset and cow the page and zero the
4220 * part we want to zero. This is used with truncate and hole punching.
39279cc3 4221 */
2aaa6655
JB
4222int btrfs_truncate_page(struct inode *inode, loff_t from, loff_t len,
4223 int front)
39279cc3 4224{
2aaa6655 4225 struct address_space *mapping = inode->i_mapping;
db94535d 4226 struct btrfs_root *root = BTRFS_I(inode)->root;
e6dcd2dc
CM
4227 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4228 struct btrfs_ordered_extent *ordered;
2ac55d41 4229 struct extent_state *cached_state = NULL;
e6dcd2dc 4230 char *kaddr;
db94535d 4231 u32 blocksize = root->sectorsize;
39279cc3
CM
4232 pgoff_t index = from >> PAGE_CACHE_SHIFT;
4233 unsigned offset = from & (PAGE_CACHE_SIZE-1);
4234 struct page *page;
3b16a4e3 4235 gfp_t mask = btrfs_alloc_write_mask(mapping);
39279cc3 4236 int ret = 0;
a52d9a80 4237 u64 page_start;
e6dcd2dc 4238 u64 page_end;
39279cc3 4239
2aaa6655
JB
4240 if ((offset & (blocksize - 1)) == 0 &&
4241 (!len || ((len & (blocksize - 1)) == 0)))
39279cc3 4242 goto out;
0ca1f7ce 4243 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
5d5e103a
JB
4244 if (ret)
4245 goto out;
39279cc3 4246
211c17f5 4247again:
3b16a4e3 4248 page = find_or_create_page(mapping, index, mask);
5d5e103a 4249 if (!page) {
0ca1f7ce 4250 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
ac6a2b36 4251 ret = -ENOMEM;
39279cc3 4252 goto out;
5d5e103a 4253 }
e6dcd2dc
CM
4254
4255 page_start = page_offset(page);
4256 page_end = page_start + PAGE_CACHE_SIZE - 1;
4257
39279cc3 4258 if (!PageUptodate(page)) {
9ebefb18 4259 ret = btrfs_readpage(NULL, page);
39279cc3 4260 lock_page(page);
211c17f5
CM
4261 if (page->mapping != mapping) {
4262 unlock_page(page);
4263 page_cache_release(page);
4264 goto again;
4265 }
39279cc3
CM
4266 if (!PageUptodate(page)) {
4267 ret = -EIO;
89642229 4268 goto out_unlock;
39279cc3
CM
4269 }
4270 }
211c17f5 4271 wait_on_page_writeback(page);
e6dcd2dc 4272
d0082371 4273 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
e6dcd2dc
CM
4274 set_page_extent_mapped(page);
4275
4276 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4277 if (ordered) {
2ac55d41
JB
4278 unlock_extent_cached(io_tree, page_start, page_end,
4279 &cached_state, GFP_NOFS);
e6dcd2dc
CM
4280 unlock_page(page);
4281 page_cache_release(page);
eb84ae03 4282 btrfs_start_ordered_extent(inode, ordered, 1);
e6dcd2dc
CM
4283 btrfs_put_ordered_extent(ordered);
4284 goto again;
4285 }
4286
2ac55d41 4287 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
9e8a4a8b
LB
4288 EXTENT_DIRTY | EXTENT_DELALLOC |
4289 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
2ac55d41 4290 0, 0, &cached_state, GFP_NOFS);
5d5e103a 4291
2ac55d41
JB
4292 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
4293 &cached_state);
9ed74f2d 4294 if (ret) {
2ac55d41
JB
4295 unlock_extent_cached(io_tree, page_start, page_end,
4296 &cached_state, GFP_NOFS);
9ed74f2d
JB
4297 goto out_unlock;
4298 }
4299
e6dcd2dc 4300 if (offset != PAGE_CACHE_SIZE) {
2aaa6655
JB
4301 if (!len)
4302 len = PAGE_CACHE_SIZE - offset;
e6dcd2dc 4303 kaddr = kmap(page);
2aaa6655
JB
4304 if (front)
4305 memset(kaddr, 0, offset);
4306 else
4307 memset(kaddr + offset, 0, len);
e6dcd2dc
CM
4308 flush_dcache_page(page);
4309 kunmap(page);
4310 }
247e743c 4311 ClearPageChecked(page);
e6dcd2dc 4312 set_page_dirty(page);
2ac55d41
JB
4313 unlock_extent_cached(io_tree, page_start, page_end, &cached_state,
4314 GFP_NOFS);
39279cc3 4315
89642229 4316out_unlock:
5d5e103a 4317 if (ret)
0ca1f7ce 4318 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
39279cc3
CM
4319 unlock_page(page);
4320 page_cache_release(page);
4321out:
4322 return ret;
4323}
4324
16e7549f
JB
4325static int maybe_insert_hole(struct btrfs_root *root, struct inode *inode,
4326 u64 offset, u64 len)
4327{
4328 struct btrfs_trans_handle *trans;
4329 int ret;
4330
4331 /*
4332 * Still need to make sure the inode looks like it's been updated so
4333 * that any holes get logged if we fsync.
4334 */
4335 if (btrfs_fs_incompat(root->fs_info, NO_HOLES)) {
4336 BTRFS_I(inode)->last_trans = root->fs_info->generation;
4337 BTRFS_I(inode)->last_sub_trans = root->log_transid;
4338 BTRFS_I(inode)->last_log_commit = root->last_log_commit;
4339 return 0;
4340 }
4341
4342 /*
4343 * 1 - for the one we're dropping
4344 * 1 - for the one we're adding
4345 * 1 - for updating the inode.
4346 */
4347 trans = btrfs_start_transaction(root, 3);
4348 if (IS_ERR(trans))
4349 return PTR_ERR(trans);
4350
4351 ret = btrfs_drop_extents(trans, root, inode, offset, offset + len, 1);
4352 if (ret) {
4353 btrfs_abort_transaction(trans, root, ret);
4354 btrfs_end_transaction(trans, root);
4355 return ret;
4356 }
4357
4358 ret = btrfs_insert_file_extent(trans, root, btrfs_ino(inode), offset,
4359 0, 0, len, 0, len, 0, 0, 0);
4360 if (ret)
4361 btrfs_abort_transaction(trans, root, ret);
4362 else
4363 btrfs_update_inode(trans, root, inode);
4364 btrfs_end_transaction(trans, root);
4365 return ret;
4366}
4367
695a0d0d
JB
4368/*
4369 * This function puts in dummy file extents for the area we're creating a hole
4370 * for. So if we are truncating this file to a larger size we need to insert
4371 * these file extents so that btrfs_get_extent will return a EXTENT_MAP_HOLE for
4372 * the range between oldsize and size
4373 */
a41ad394 4374int btrfs_cont_expand(struct inode *inode, loff_t oldsize, loff_t size)
39279cc3 4375{
9036c102
YZ
4376 struct btrfs_root *root = BTRFS_I(inode)->root;
4377 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
a22285a6 4378 struct extent_map *em = NULL;
2ac55d41 4379 struct extent_state *cached_state = NULL;
5dc562c5 4380 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
fda2832f
QW
4381 u64 hole_start = ALIGN(oldsize, root->sectorsize);
4382 u64 block_end = ALIGN(size, root->sectorsize);
9036c102
YZ
4383 u64 last_byte;
4384 u64 cur_offset;
4385 u64 hole_size;
9ed74f2d 4386 int err = 0;
39279cc3 4387
a71754fc
JB
4388 /*
4389 * If our size started in the middle of a page we need to zero out the
4390 * rest of the page before we expand the i_size, otherwise we could
4391 * expose stale data.
4392 */
4393 err = btrfs_truncate_page(inode, oldsize, 0, 0);
4394 if (err)
4395 return err;
4396
9036c102
YZ
4397 if (size <= hole_start)
4398 return 0;
4399
9036c102
YZ
4400 while (1) {
4401 struct btrfs_ordered_extent *ordered;
fa7c1494 4402
2ac55d41 4403 lock_extent_bits(io_tree, hole_start, block_end - 1, 0,
d0082371 4404 &cached_state);
fa7c1494
MX
4405 ordered = btrfs_lookup_ordered_range(inode, hole_start,
4406 block_end - hole_start);
9036c102
YZ
4407 if (!ordered)
4408 break;
2ac55d41
JB
4409 unlock_extent_cached(io_tree, hole_start, block_end - 1,
4410 &cached_state, GFP_NOFS);
fa7c1494 4411 btrfs_start_ordered_extent(inode, ordered, 1);
9036c102
YZ
4412 btrfs_put_ordered_extent(ordered);
4413 }
39279cc3 4414
9036c102
YZ
4415 cur_offset = hole_start;
4416 while (1) {
4417 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4418 block_end - cur_offset, 0);
79787eaa
JM
4419 if (IS_ERR(em)) {
4420 err = PTR_ERR(em);
f2767956 4421 em = NULL;
79787eaa
JM
4422 break;
4423 }
9036c102 4424 last_byte = min(extent_map_end(em), block_end);
fda2832f 4425 last_byte = ALIGN(last_byte , root->sectorsize);
8082510e 4426 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags)) {
5dc562c5 4427 struct extent_map *hole_em;
9036c102 4428 hole_size = last_byte - cur_offset;
9ed74f2d 4429
16e7549f
JB
4430 err = maybe_insert_hole(root, inode, cur_offset,
4431 hole_size);
4432 if (err)
3893e33b 4433 break;
5dc562c5
JB
4434 btrfs_drop_extent_cache(inode, cur_offset,
4435 cur_offset + hole_size - 1, 0);
4436 hole_em = alloc_extent_map();
4437 if (!hole_em) {
4438 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
4439 &BTRFS_I(inode)->runtime_flags);
4440 goto next;
4441 }
4442 hole_em->start = cur_offset;
4443 hole_em->len = hole_size;
4444 hole_em->orig_start = cur_offset;
8082510e 4445
5dc562c5
JB
4446 hole_em->block_start = EXTENT_MAP_HOLE;
4447 hole_em->block_len = 0;
b4939680 4448 hole_em->orig_block_len = 0;
cc95bef6 4449 hole_em->ram_bytes = hole_size;
5dc562c5
JB
4450 hole_em->bdev = root->fs_info->fs_devices->latest_bdev;
4451 hole_em->compress_type = BTRFS_COMPRESS_NONE;
16e7549f 4452 hole_em->generation = root->fs_info->generation;
8082510e 4453
5dc562c5
JB
4454 while (1) {
4455 write_lock(&em_tree->lock);
09a2a8f9 4456 err = add_extent_mapping(em_tree, hole_em, 1);
5dc562c5
JB
4457 write_unlock(&em_tree->lock);
4458 if (err != -EEXIST)
4459 break;
4460 btrfs_drop_extent_cache(inode, cur_offset,
4461 cur_offset +
4462 hole_size - 1, 0);
4463 }
4464 free_extent_map(hole_em);
9036c102 4465 }
16e7549f 4466next:
9036c102 4467 free_extent_map(em);
a22285a6 4468 em = NULL;
9036c102 4469 cur_offset = last_byte;
8082510e 4470 if (cur_offset >= block_end)
9036c102
YZ
4471 break;
4472 }
a22285a6 4473 free_extent_map(em);
2ac55d41
JB
4474 unlock_extent_cached(io_tree, hole_start, block_end - 1, &cached_state,
4475 GFP_NOFS);
9036c102
YZ
4476 return err;
4477}
39279cc3 4478
3972f260 4479static int btrfs_setsize(struct inode *inode, struct iattr *attr)
8082510e 4480{
f4a2f4c5
MX
4481 struct btrfs_root *root = BTRFS_I(inode)->root;
4482 struct btrfs_trans_handle *trans;
a41ad394 4483 loff_t oldsize = i_size_read(inode);
3972f260
ES
4484 loff_t newsize = attr->ia_size;
4485 int mask = attr->ia_valid;
8082510e
YZ
4486 int ret;
4487
3972f260
ES
4488 /*
4489 * The regular truncate() case without ATTR_CTIME and ATTR_MTIME is a
4490 * special case where we need to update the times despite not having
4491 * these flags set. For all other operations the VFS set these flags
4492 * explicitly if it wants a timestamp update.
4493 */
dff6efc3
CH
4494 if (newsize != oldsize) {
4495 inode_inc_iversion(inode);
4496 if (!(mask & (ATTR_CTIME | ATTR_MTIME)))
4497 inode->i_ctime = inode->i_mtime =
4498 current_fs_time(inode->i_sb);
4499 }
3972f260 4500
a41ad394 4501 if (newsize > oldsize) {
7caef267 4502 truncate_pagecache(inode, newsize);
a41ad394 4503 ret = btrfs_cont_expand(inode, oldsize, newsize);
f4a2f4c5 4504 if (ret)
8082510e 4505 return ret;
8082510e 4506
f4a2f4c5
MX
4507 trans = btrfs_start_transaction(root, 1);
4508 if (IS_ERR(trans))
4509 return PTR_ERR(trans);
4510
4511 i_size_write(inode, newsize);
4512 btrfs_ordered_update_i_size(inode, i_size_read(inode), NULL);
4513 ret = btrfs_update_inode(trans, root, inode);
7ad85bb7 4514 btrfs_end_transaction(trans, root);
a41ad394 4515 } else {
8082510e 4516
a41ad394
JB
4517 /*
4518 * We're truncating a file that used to have good data down to
4519 * zero. Make sure it gets into the ordered flush list so that
4520 * any new writes get down to disk quickly.
4521 */
4522 if (newsize == 0)
72ac3c0d
JB
4523 set_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
4524 &BTRFS_I(inode)->runtime_flags);
8082510e 4525
f3fe820c
JB
4526 /*
4527 * 1 for the orphan item we're going to add
4528 * 1 for the orphan item deletion.
4529 */
4530 trans = btrfs_start_transaction(root, 2);
4531 if (IS_ERR(trans))
4532 return PTR_ERR(trans);
4533
4534 /*
4535 * We need to do this in case we fail at _any_ point during the
4536 * actual truncate. Once we do the truncate_setsize we could
4537 * invalidate pages which forces any outstanding ordered io to
4538 * be instantly completed which will give us extents that need
4539 * to be truncated. If we fail to get an orphan inode down we
4540 * could have left over extents that were never meant to live,
4541 * so we need to garuntee from this point on that everything
4542 * will be consistent.
4543 */
4544 ret = btrfs_orphan_add(trans, inode);
4545 btrfs_end_transaction(trans, root);
4546 if (ret)
4547 return ret;
4548
a41ad394
JB
4549 /* we don't support swapfiles, so vmtruncate shouldn't fail */
4550 truncate_setsize(inode, newsize);
2e60a51e
MX
4551
4552 /* Disable nonlocked read DIO to avoid the end less truncate */
4553 btrfs_inode_block_unlocked_dio(inode);
4554 inode_dio_wait(inode);
4555 btrfs_inode_resume_unlocked_dio(inode);
4556
a41ad394 4557 ret = btrfs_truncate(inode);
7f4f6e0a
JB
4558 if (ret && inode->i_nlink) {
4559 int err;
4560
4561 /*
4562 * failed to truncate, disk_i_size is only adjusted down
4563 * as we remove extents, so it should represent the true
4564 * size of the inode, so reset the in memory size and
4565 * delete our orphan entry.
4566 */
4567 trans = btrfs_join_transaction(root);
4568 if (IS_ERR(trans)) {
4569 btrfs_orphan_del(NULL, inode);
4570 return ret;
4571 }
4572 i_size_write(inode, BTRFS_I(inode)->disk_i_size);
4573 err = btrfs_orphan_del(trans, inode);
4574 if (err)
4575 btrfs_abort_transaction(trans, root, err);
4576 btrfs_end_transaction(trans, root);
4577 }
8082510e
YZ
4578 }
4579
a41ad394 4580 return ret;
8082510e
YZ
4581}
4582
9036c102
YZ
4583static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
4584{
4585 struct inode *inode = dentry->d_inode;
b83cc969 4586 struct btrfs_root *root = BTRFS_I(inode)->root;
9036c102 4587 int err;
39279cc3 4588
b83cc969
LZ
4589 if (btrfs_root_readonly(root))
4590 return -EROFS;
4591
9036c102
YZ
4592 err = inode_change_ok(inode, attr);
4593 if (err)
4594 return err;
2bf5a725 4595
5a3f23d5 4596 if (S_ISREG(inode->i_mode) && (attr->ia_valid & ATTR_SIZE)) {
3972f260 4597 err = btrfs_setsize(inode, attr);
8082510e
YZ
4598 if (err)
4599 return err;
39279cc3 4600 }
9036c102 4601
1025774c
CH
4602 if (attr->ia_valid) {
4603 setattr_copy(inode, attr);
0c4d2d95 4604 inode_inc_iversion(inode);
22c44fe6 4605 err = btrfs_dirty_inode(inode);
1025774c 4606
22c44fe6 4607 if (!err && attr->ia_valid & ATTR_MODE)
996a710d 4608 err = posix_acl_chmod(inode, inode->i_mode);
1025774c 4609 }
33268eaf 4610
39279cc3
CM
4611 return err;
4612}
61295eb8 4613
131e404a
FDBM
4614/*
4615 * While truncating the inode pages during eviction, we get the VFS calling
4616 * btrfs_invalidatepage() against each page of the inode. This is slow because
4617 * the calls to btrfs_invalidatepage() result in a huge amount of calls to
4618 * lock_extent_bits() and clear_extent_bit(), which keep merging and splitting
4619 * extent_state structures over and over, wasting lots of time.
4620 *
4621 * Therefore if the inode is being evicted, let btrfs_invalidatepage() skip all
4622 * those expensive operations on a per page basis and do only the ordered io
4623 * finishing, while we release here the extent_map and extent_state structures,
4624 * without the excessive merging and splitting.
4625 */
4626static void evict_inode_truncate_pages(struct inode *inode)
4627{
4628 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4629 struct extent_map_tree *map_tree = &BTRFS_I(inode)->extent_tree;
4630 struct rb_node *node;
4631
4632 ASSERT(inode->i_state & I_FREEING);
91b0abe3 4633 truncate_inode_pages_final(&inode->i_data);
131e404a
FDBM
4634
4635 write_lock(&map_tree->lock);
4636 while (!RB_EMPTY_ROOT(&map_tree->map)) {
4637 struct extent_map *em;
4638
4639 node = rb_first(&map_tree->map);
4640 em = rb_entry(node, struct extent_map, rb_node);
180589ef
WS
4641 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
4642 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
131e404a
FDBM
4643 remove_extent_mapping(map_tree, em);
4644 free_extent_map(em);
4645 }
4646 write_unlock(&map_tree->lock);
4647
4648 spin_lock(&io_tree->lock);
4649 while (!RB_EMPTY_ROOT(&io_tree->state)) {
4650 struct extent_state *state;
4651 struct extent_state *cached_state = NULL;
4652
4653 node = rb_first(&io_tree->state);
4654 state = rb_entry(node, struct extent_state, rb_node);
4655 atomic_inc(&state->refs);
4656 spin_unlock(&io_tree->lock);
4657
4658 lock_extent_bits(io_tree, state->start, state->end,
4659 0, &cached_state);
4660 clear_extent_bit(io_tree, state->start, state->end,
4661 EXTENT_LOCKED | EXTENT_DIRTY |
4662 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
4663 EXTENT_DEFRAG, 1, 1,
4664 &cached_state, GFP_NOFS);
4665 free_extent_state(state);
4666
4667 spin_lock(&io_tree->lock);
4668 }
4669 spin_unlock(&io_tree->lock);
4670}
4671
bd555975 4672void btrfs_evict_inode(struct inode *inode)
39279cc3
CM
4673{
4674 struct btrfs_trans_handle *trans;
4675 struct btrfs_root *root = BTRFS_I(inode)->root;
726c35fa 4676 struct btrfs_block_rsv *rsv, *global_rsv;
07127184 4677 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
39279cc3
CM
4678 int ret;
4679
1abe9b8a 4680 trace_btrfs_inode_evict(inode);
4681
131e404a
FDBM
4682 evict_inode_truncate_pages(inode);
4683
69e9c6c6
SB
4684 if (inode->i_nlink &&
4685 ((btrfs_root_refs(&root->root_item) != 0 &&
4686 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID) ||
4687 btrfs_is_free_space_inode(inode)))
bd555975
AV
4688 goto no_delete;
4689
39279cc3 4690 if (is_bad_inode(inode)) {
7b128766 4691 btrfs_orphan_del(NULL, inode);
39279cc3
CM
4692 goto no_delete;
4693 }
bd555975 4694 /* do we really want it for ->i_nlink > 0 and zero btrfs_root_refs? */
4a096752 4695 btrfs_wait_ordered_range(inode, 0, (u64)-1);
5f39d397 4696
c71bf099 4697 if (root->fs_info->log_root_recovering) {
6bf02314 4698 BUG_ON(test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
8a35d95f 4699 &BTRFS_I(inode)->runtime_flags));
c71bf099
YZ
4700 goto no_delete;
4701 }
4702
76dda93c 4703 if (inode->i_nlink > 0) {
69e9c6c6
SB
4704 BUG_ON(btrfs_root_refs(&root->root_item) != 0 &&
4705 root->root_key.objectid != BTRFS_ROOT_TREE_OBJECTID);
76dda93c
YZ
4706 goto no_delete;
4707 }
4708
0e8c36a9
MX
4709 ret = btrfs_commit_inode_delayed_inode(inode);
4710 if (ret) {
4711 btrfs_orphan_del(NULL, inode);
4712 goto no_delete;
4713 }
4714
66d8f3dd 4715 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
4289a667
JB
4716 if (!rsv) {
4717 btrfs_orphan_del(NULL, inode);
4718 goto no_delete;
4719 }
4a338542 4720 rsv->size = min_size;
ca7e70f5 4721 rsv->failfast = 1;
726c35fa 4722 global_rsv = &root->fs_info->global_block_rsv;
4289a667 4723
dbe674a9 4724 btrfs_i_size_write(inode, 0);
5f39d397 4725
4289a667 4726 /*
8407aa46
MX
4727 * This is a bit simpler than btrfs_truncate since we've already
4728 * reserved our space for our orphan item in the unlink, so we just
4729 * need to reserve some slack space in case we add bytes and update
4730 * inode item when doing the truncate.
4289a667 4731 */
8082510e 4732 while (1) {
08e007d2
MX
4733 ret = btrfs_block_rsv_refill(root, rsv, min_size,
4734 BTRFS_RESERVE_FLUSH_LIMIT);
726c35fa
JB
4735
4736 /*
4737 * Try and steal from the global reserve since we will
4738 * likely not use this space anyway, we want to try as
4739 * hard as possible to get this to work.
4740 */
4741 if (ret)
4742 ret = btrfs_block_rsv_migrate(global_rsv, rsv, min_size);
d68fc57b 4743
d68fc57b 4744 if (ret) {
c2cf52eb
SK
4745 btrfs_warn(root->fs_info,
4746 "Could not get space for a delete, will truncate on mount %d",
4747 ret);
4289a667
JB
4748 btrfs_orphan_del(NULL, inode);
4749 btrfs_free_block_rsv(root, rsv);
4750 goto no_delete;
d68fc57b 4751 }
7b128766 4752
0e8c36a9 4753 trans = btrfs_join_transaction(root);
4289a667
JB
4754 if (IS_ERR(trans)) {
4755 btrfs_orphan_del(NULL, inode);
4756 btrfs_free_block_rsv(root, rsv);
4757 goto no_delete;
d68fc57b 4758 }
7b128766 4759
4289a667
JB
4760 trans->block_rsv = rsv;
4761
d68fc57b 4762 ret = btrfs_truncate_inode_items(trans, root, inode, 0, 0);
ca7e70f5 4763 if (ret != -ENOSPC)
8082510e 4764 break;
85e21bac 4765
8407aa46 4766 trans->block_rsv = &root->fs_info->trans_block_rsv;
8082510e
YZ
4767 btrfs_end_transaction(trans, root);
4768 trans = NULL;
b53d3f5d 4769 btrfs_btree_balance_dirty(root);
8082510e 4770 }
5f39d397 4771
4289a667
JB
4772 btrfs_free_block_rsv(root, rsv);
4773
4ef31a45
JB
4774 /*
4775 * Errors here aren't a big deal, it just means we leave orphan items
4776 * in the tree. They will be cleaned up on the next mount.
4777 */
8082510e 4778 if (ret == 0) {
4289a667 4779 trans->block_rsv = root->orphan_block_rsv;
4ef31a45
JB
4780 btrfs_orphan_del(trans, inode);
4781 } else {
4782 btrfs_orphan_del(NULL, inode);
8082510e 4783 }
54aa1f4d 4784
4289a667 4785 trans->block_rsv = &root->fs_info->trans_block_rsv;
581bb050
LZ
4786 if (!(root == root->fs_info->tree_root ||
4787 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID))
33345d01 4788 btrfs_return_ino(root, btrfs_ino(inode));
581bb050 4789
54aa1f4d 4790 btrfs_end_transaction(trans, root);
b53d3f5d 4791 btrfs_btree_balance_dirty(root);
39279cc3 4792no_delete:
89042e5a 4793 btrfs_remove_delayed_node(inode);
dbd5768f 4794 clear_inode(inode);
8082510e 4795 return;
39279cc3
CM
4796}
4797
4798/*
4799 * this returns the key found in the dir entry in the location pointer.
4800 * If no dir entries were found, location->objectid is 0.
4801 */
4802static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
4803 struct btrfs_key *location)
4804{
4805 const char *name = dentry->d_name.name;
4806 int namelen = dentry->d_name.len;
4807 struct btrfs_dir_item *di;
4808 struct btrfs_path *path;
4809 struct btrfs_root *root = BTRFS_I(dir)->root;
0d9f7f3e 4810 int ret = 0;
39279cc3
CM
4811
4812 path = btrfs_alloc_path();
d8926bb3
MF
4813 if (!path)
4814 return -ENOMEM;
3954401f 4815
33345d01 4816 di = btrfs_lookup_dir_item(NULL, root, path, btrfs_ino(dir), name,
39279cc3 4817 namelen, 0);
0d9f7f3e
Y
4818 if (IS_ERR(di))
4819 ret = PTR_ERR(di);
d397712b 4820
c704005d 4821 if (IS_ERR_OR_NULL(di))
3954401f 4822 goto out_err;
d397712b 4823
5f39d397 4824 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
39279cc3 4825out:
39279cc3
CM
4826 btrfs_free_path(path);
4827 return ret;
3954401f
CM
4828out_err:
4829 location->objectid = 0;
4830 goto out;
39279cc3
CM
4831}
4832
4833/*
4834 * when we hit a tree root in a directory, the btrfs part of the inode
4835 * needs to be changed to reflect the root directory of the tree root. This
4836 * is kind of like crossing a mount point.
4837 */
4838static int fixup_tree_root_location(struct btrfs_root *root,
4df27c4d
YZ
4839 struct inode *dir,
4840 struct dentry *dentry,
4841 struct btrfs_key *location,
4842 struct btrfs_root **sub_root)
39279cc3 4843{
4df27c4d
YZ
4844 struct btrfs_path *path;
4845 struct btrfs_root *new_root;
4846 struct btrfs_root_ref *ref;
4847 struct extent_buffer *leaf;
4848 int ret;
4849 int err = 0;
39279cc3 4850
4df27c4d
YZ
4851 path = btrfs_alloc_path();
4852 if (!path) {
4853 err = -ENOMEM;
4854 goto out;
4855 }
39279cc3 4856
4df27c4d 4857 err = -ENOENT;
75ac2dd9
KN
4858 ret = btrfs_find_item(root->fs_info->tree_root, path,
4859 BTRFS_I(dir)->root->root_key.objectid,
4860 location->objectid, BTRFS_ROOT_REF_KEY, NULL);
4df27c4d
YZ
4861 if (ret) {
4862 if (ret < 0)
4863 err = ret;
4864 goto out;
4865 }
39279cc3 4866
4df27c4d
YZ
4867 leaf = path->nodes[0];
4868 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
33345d01 4869 if (btrfs_root_ref_dirid(leaf, ref) != btrfs_ino(dir) ||
4df27c4d
YZ
4870 btrfs_root_ref_name_len(leaf, ref) != dentry->d_name.len)
4871 goto out;
39279cc3 4872
4df27c4d
YZ
4873 ret = memcmp_extent_buffer(leaf, dentry->d_name.name,
4874 (unsigned long)(ref + 1),
4875 dentry->d_name.len);
4876 if (ret)
4877 goto out;
4878
b3b4aa74 4879 btrfs_release_path(path);
4df27c4d
YZ
4880
4881 new_root = btrfs_read_fs_root_no_name(root->fs_info, location);
4882 if (IS_ERR(new_root)) {
4883 err = PTR_ERR(new_root);
4884 goto out;
4885 }
4886
4df27c4d
YZ
4887 *sub_root = new_root;
4888 location->objectid = btrfs_root_dirid(&new_root->root_item);
4889 location->type = BTRFS_INODE_ITEM_KEY;
4890 location->offset = 0;
4891 err = 0;
4892out:
4893 btrfs_free_path(path);
4894 return err;
39279cc3
CM
4895}
4896
5d4f98a2
YZ
4897static void inode_tree_add(struct inode *inode)
4898{
4899 struct btrfs_root *root = BTRFS_I(inode)->root;
4900 struct btrfs_inode *entry;
03e860bd
FNP
4901 struct rb_node **p;
4902 struct rb_node *parent;
cef21937 4903 struct rb_node *new = &BTRFS_I(inode)->rb_node;
33345d01 4904 u64 ino = btrfs_ino(inode);
5d4f98a2 4905
1d3382cb 4906 if (inode_unhashed(inode))
76dda93c 4907 return;
e1409cef 4908 parent = NULL;
5d4f98a2 4909 spin_lock(&root->inode_lock);
e1409cef 4910 p = &root->inode_tree.rb_node;
5d4f98a2
YZ
4911 while (*p) {
4912 parent = *p;
4913 entry = rb_entry(parent, struct btrfs_inode, rb_node);
4914
33345d01 4915 if (ino < btrfs_ino(&entry->vfs_inode))
03e860bd 4916 p = &parent->rb_left;
33345d01 4917 else if (ino > btrfs_ino(&entry->vfs_inode))
03e860bd 4918 p = &parent->rb_right;
5d4f98a2
YZ
4919 else {
4920 WARN_ON(!(entry->vfs_inode.i_state &
a4ffdde6 4921 (I_WILL_FREE | I_FREEING)));
cef21937 4922 rb_replace_node(parent, new, &root->inode_tree);
03e860bd
FNP
4923 RB_CLEAR_NODE(parent);
4924 spin_unlock(&root->inode_lock);
cef21937 4925 return;
5d4f98a2
YZ
4926 }
4927 }
cef21937
FDBM
4928 rb_link_node(new, parent, p);
4929 rb_insert_color(new, &root->inode_tree);
5d4f98a2
YZ
4930 spin_unlock(&root->inode_lock);
4931}
4932
4933static void inode_tree_del(struct inode *inode)
4934{
4935 struct btrfs_root *root = BTRFS_I(inode)->root;
76dda93c 4936 int empty = 0;
5d4f98a2 4937
03e860bd 4938 spin_lock(&root->inode_lock);
5d4f98a2 4939 if (!RB_EMPTY_NODE(&BTRFS_I(inode)->rb_node)) {
5d4f98a2 4940 rb_erase(&BTRFS_I(inode)->rb_node, &root->inode_tree);
5d4f98a2 4941 RB_CLEAR_NODE(&BTRFS_I(inode)->rb_node);
76dda93c 4942 empty = RB_EMPTY_ROOT(&root->inode_tree);
5d4f98a2 4943 }
03e860bd 4944 spin_unlock(&root->inode_lock);
76dda93c 4945
69e9c6c6 4946 if (empty && btrfs_root_refs(&root->root_item) == 0) {
76dda93c
YZ
4947 synchronize_srcu(&root->fs_info->subvol_srcu);
4948 spin_lock(&root->inode_lock);
4949 empty = RB_EMPTY_ROOT(&root->inode_tree);
4950 spin_unlock(&root->inode_lock);
4951 if (empty)
4952 btrfs_add_dead_root(root);
4953 }
4954}
4955
143bede5 4956void btrfs_invalidate_inodes(struct btrfs_root *root)
76dda93c
YZ
4957{
4958 struct rb_node *node;
4959 struct rb_node *prev;
4960 struct btrfs_inode *entry;
4961 struct inode *inode;
4962 u64 objectid = 0;
4963
7813b3db
LB
4964 if (!test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state))
4965 WARN_ON(btrfs_root_refs(&root->root_item) != 0);
76dda93c
YZ
4966
4967 spin_lock(&root->inode_lock);
4968again:
4969 node = root->inode_tree.rb_node;
4970 prev = NULL;
4971 while (node) {
4972 prev = node;
4973 entry = rb_entry(node, struct btrfs_inode, rb_node);
4974
33345d01 4975 if (objectid < btrfs_ino(&entry->vfs_inode))
76dda93c 4976 node = node->rb_left;
33345d01 4977 else if (objectid > btrfs_ino(&entry->vfs_inode))
76dda93c
YZ
4978 node = node->rb_right;
4979 else
4980 break;
4981 }
4982 if (!node) {
4983 while (prev) {
4984 entry = rb_entry(prev, struct btrfs_inode, rb_node);
33345d01 4985 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
76dda93c
YZ
4986 node = prev;
4987 break;
4988 }
4989 prev = rb_next(prev);
4990 }
4991 }
4992 while (node) {
4993 entry = rb_entry(node, struct btrfs_inode, rb_node);
33345d01 4994 objectid = btrfs_ino(&entry->vfs_inode) + 1;
76dda93c
YZ
4995 inode = igrab(&entry->vfs_inode);
4996 if (inode) {
4997 spin_unlock(&root->inode_lock);
4998 if (atomic_read(&inode->i_count) > 1)
4999 d_prune_aliases(inode);
5000 /*
45321ac5 5001 * btrfs_drop_inode will have it removed from
76dda93c
YZ
5002 * the inode cache when its usage count
5003 * hits zero.
5004 */
5005 iput(inode);
5006 cond_resched();
5007 spin_lock(&root->inode_lock);
5008 goto again;
5009 }
5010
5011 if (cond_resched_lock(&root->inode_lock))
5012 goto again;
5013
5014 node = rb_next(node);
5015 }
5016 spin_unlock(&root->inode_lock);
5d4f98a2
YZ
5017}
5018
e02119d5
CM
5019static int btrfs_init_locked_inode(struct inode *inode, void *p)
5020{
5021 struct btrfs_iget_args *args = p;
90d3e592
CM
5022 inode->i_ino = args->location->objectid;
5023 memcpy(&BTRFS_I(inode)->location, args->location,
5024 sizeof(*args->location));
e02119d5 5025 BTRFS_I(inode)->root = args->root;
39279cc3
CM
5026 return 0;
5027}
5028
5029static int btrfs_find_actor(struct inode *inode, void *opaque)
5030{
5031 struct btrfs_iget_args *args = opaque;
90d3e592 5032 return args->location->objectid == BTRFS_I(inode)->location.objectid &&
d397712b 5033 args->root == BTRFS_I(inode)->root;
39279cc3
CM
5034}
5035
5d4f98a2 5036static struct inode *btrfs_iget_locked(struct super_block *s,
90d3e592 5037 struct btrfs_key *location,
5d4f98a2 5038 struct btrfs_root *root)
39279cc3
CM
5039{
5040 struct inode *inode;
5041 struct btrfs_iget_args args;
90d3e592 5042 unsigned long hashval = btrfs_inode_hash(location->objectid, root);
778ba82b 5043
90d3e592 5044 args.location = location;
39279cc3
CM
5045 args.root = root;
5046
778ba82b 5047 inode = iget5_locked(s, hashval, btrfs_find_actor,
39279cc3
CM
5048 btrfs_init_locked_inode,
5049 (void *)&args);
5050 return inode;
5051}
5052
1a54ef8c
BR
5053/* Get an inode object given its location and corresponding root.
5054 * Returns in *is_new if the inode was read from disk
5055 */
5056struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
73f73415 5057 struct btrfs_root *root, int *new)
1a54ef8c
BR
5058{
5059 struct inode *inode;
5060
90d3e592 5061 inode = btrfs_iget_locked(s, location, root);
1a54ef8c 5062 if (!inode)
5d4f98a2 5063 return ERR_PTR(-ENOMEM);
1a54ef8c
BR
5064
5065 if (inode->i_state & I_NEW) {
1a54ef8c 5066 btrfs_read_locked_inode(inode);
1748f843
MF
5067 if (!is_bad_inode(inode)) {
5068 inode_tree_add(inode);
5069 unlock_new_inode(inode);
5070 if (new)
5071 *new = 1;
5072 } else {
e0b6d65b
ST
5073 unlock_new_inode(inode);
5074 iput(inode);
5075 inode = ERR_PTR(-ESTALE);
1748f843
MF
5076 }
5077 }
5078
1a54ef8c
BR
5079 return inode;
5080}
5081
4df27c4d
YZ
5082static struct inode *new_simple_dir(struct super_block *s,
5083 struct btrfs_key *key,
5084 struct btrfs_root *root)
5085{
5086 struct inode *inode = new_inode(s);
5087
5088 if (!inode)
5089 return ERR_PTR(-ENOMEM);
5090
4df27c4d
YZ
5091 BTRFS_I(inode)->root = root;
5092 memcpy(&BTRFS_I(inode)->location, key, sizeof(*key));
72ac3c0d 5093 set_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags);
4df27c4d
YZ
5094
5095 inode->i_ino = BTRFS_EMPTY_SUBVOL_DIR_OBJECTID;
848cce0d 5096 inode->i_op = &btrfs_dir_ro_inode_operations;
4df27c4d
YZ
5097 inode->i_fop = &simple_dir_operations;
5098 inode->i_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
5099 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
5100
5101 return inode;
5102}
5103
3de4586c 5104struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
39279cc3 5105{
d397712b 5106 struct inode *inode;
4df27c4d 5107 struct btrfs_root *root = BTRFS_I(dir)->root;
39279cc3
CM
5108 struct btrfs_root *sub_root = root;
5109 struct btrfs_key location;
76dda93c 5110 int index;
b4aff1f8 5111 int ret = 0;
39279cc3
CM
5112
5113 if (dentry->d_name.len > BTRFS_NAME_LEN)
5114 return ERR_PTR(-ENAMETOOLONG);
5f39d397 5115
39e3c955 5116 ret = btrfs_inode_by_name(dir, dentry, &location);
39279cc3
CM
5117 if (ret < 0)
5118 return ERR_PTR(ret);
5f39d397 5119
4df27c4d 5120 if (location.objectid == 0)
5662344b 5121 return ERR_PTR(-ENOENT);
4df27c4d
YZ
5122
5123 if (location.type == BTRFS_INODE_ITEM_KEY) {
73f73415 5124 inode = btrfs_iget(dir->i_sb, &location, root, NULL);
4df27c4d
YZ
5125 return inode;
5126 }
5127
5128 BUG_ON(location.type != BTRFS_ROOT_ITEM_KEY);
5129
76dda93c 5130 index = srcu_read_lock(&root->fs_info->subvol_srcu);
4df27c4d
YZ
5131 ret = fixup_tree_root_location(root, dir, dentry,
5132 &location, &sub_root);
5133 if (ret < 0) {
5134 if (ret != -ENOENT)
5135 inode = ERR_PTR(ret);
5136 else
5137 inode = new_simple_dir(dir->i_sb, &location, sub_root);
5138 } else {
73f73415 5139 inode = btrfs_iget(dir->i_sb, &location, sub_root, NULL);
39279cc3 5140 }
76dda93c
YZ
5141 srcu_read_unlock(&root->fs_info->subvol_srcu, index);
5142
34d19bad 5143 if (!IS_ERR(inode) && root != sub_root) {
c71bf099
YZ
5144 down_read(&root->fs_info->cleanup_work_sem);
5145 if (!(inode->i_sb->s_flags & MS_RDONLY))
66b4ffd1 5146 ret = btrfs_orphan_cleanup(sub_root);
c71bf099 5147 up_read(&root->fs_info->cleanup_work_sem);
01cd3367
JB
5148 if (ret) {
5149 iput(inode);
66b4ffd1 5150 inode = ERR_PTR(ret);
01cd3367 5151 }
c71bf099
YZ
5152 }
5153
3de4586c
CM
5154 return inode;
5155}
5156
fe15ce44 5157static int btrfs_dentry_delete(const struct dentry *dentry)
76dda93c
YZ
5158{
5159 struct btrfs_root *root;
848cce0d 5160 struct inode *inode = dentry->d_inode;
76dda93c 5161
848cce0d
LZ
5162 if (!inode && !IS_ROOT(dentry))
5163 inode = dentry->d_parent->d_inode;
76dda93c 5164
848cce0d
LZ
5165 if (inode) {
5166 root = BTRFS_I(inode)->root;
efefb143
YZ
5167 if (btrfs_root_refs(&root->root_item) == 0)
5168 return 1;
848cce0d
LZ
5169
5170 if (btrfs_ino(inode) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
5171 return 1;
efefb143 5172 }
76dda93c
YZ
5173 return 0;
5174}
5175
b4aff1f8
JB
5176static void btrfs_dentry_release(struct dentry *dentry)
5177{
944a4515 5178 kfree(dentry->d_fsdata);
b4aff1f8
JB
5179}
5180
3de4586c 5181static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
00cd8dd3 5182 unsigned int flags)
3de4586c 5183{
5662344b 5184 struct inode *inode;
a66e7cc6 5185
5662344b
TI
5186 inode = btrfs_lookup_dentry(dir, dentry);
5187 if (IS_ERR(inode)) {
5188 if (PTR_ERR(inode) == -ENOENT)
5189 inode = NULL;
5190 else
5191 return ERR_CAST(inode);
5192 }
5193
3a0dfa6a 5194 return d_materialise_unique(dentry, inode);
39279cc3
CM
5195}
5196
16cdcec7 5197unsigned char btrfs_filetype_table[] = {
39279cc3
CM
5198 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
5199};
5200
9cdda8d3 5201static int btrfs_real_readdir(struct file *file, struct dir_context *ctx)
39279cc3 5202{
9cdda8d3 5203 struct inode *inode = file_inode(file);
39279cc3
CM
5204 struct btrfs_root *root = BTRFS_I(inode)->root;
5205 struct btrfs_item *item;
5206 struct btrfs_dir_item *di;
5207 struct btrfs_key key;
5f39d397 5208 struct btrfs_key found_key;
39279cc3 5209 struct btrfs_path *path;
16cdcec7
MX
5210 struct list_head ins_list;
5211 struct list_head del_list;
39279cc3 5212 int ret;
5f39d397 5213 struct extent_buffer *leaf;
39279cc3 5214 int slot;
39279cc3
CM
5215 unsigned char d_type;
5216 int over = 0;
5217 u32 di_cur;
5218 u32 di_total;
5219 u32 di_len;
5220 int key_type = BTRFS_DIR_INDEX_KEY;
5f39d397
CM
5221 char tmp_name[32];
5222 char *name_ptr;
5223 int name_len;
9cdda8d3 5224 int is_curr = 0; /* ctx->pos points to the current index? */
39279cc3
CM
5225
5226 /* FIXME, use a real flag for deciding about the key type */
5227 if (root->fs_info->tree_root == root)
5228 key_type = BTRFS_DIR_ITEM_KEY;
5f39d397 5229
9cdda8d3
AV
5230 if (!dir_emit_dots(file, ctx))
5231 return 0;
5232
49593bfa 5233 path = btrfs_alloc_path();
16cdcec7
MX
5234 if (!path)
5235 return -ENOMEM;
ff5714cc 5236
026fd317 5237 path->reada = 1;
49593bfa 5238
16cdcec7
MX
5239 if (key_type == BTRFS_DIR_INDEX_KEY) {
5240 INIT_LIST_HEAD(&ins_list);
5241 INIT_LIST_HEAD(&del_list);
5242 btrfs_get_delayed_items(inode, &ins_list, &del_list);
5243 }
5244
39279cc3 5245 btrfs_set_key_type(&key, key_type);
9cdda8d3 5246 key.offset = ctx->pos;
33345d01 5247 key.objectid = btrfs_ino(inode);
5f39d397 5248
39279cc3
CM
5249 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5250 if (ret < 0)
5251 goto err;
49593bfa
DW
5252
5253 while (1) {
5f39d397 5254 leaf = path->nodes[0];
39279cc3 5255 slot = path->slots[0];
b9e03af0
LZ
5256 if (slot >= btrfs_header_nritems(leaf)) {
5257 ret = btrfs_next_leaf(root, path);
5258 if (ret < 0)
5259 goto err;
5260 else if (ret > 0)
5261 break;
5262 continue;
39279cc3 5263 }
3de4586c 5264
dd3cc16b 5265 item = btrfs_item_nr(slot);
5f39d397
CM
5266 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5267
5268 if (found_key.objectid != key.objectid)
39279cc3 5269 break;
5f39d397 5270 if (btrfs_key_type(&found_key) != key_type)
39279cc3 5271 break;
9cdda8d3 5272 if (found_key.offset < ctx->pos)
b9e03af0 5273 goto next;
16cdcec7
MX
5274 if (key_type == BTRFS_DIR_INDEX_KEY &&
5275 btrfs_should_delete_dir_index(&del_list,
5276 found_key.offset))
5277 goto next;
5f39d397 5278
9cdda8d3 5279 ctx->pos = found_key.offset;
16cdcec7 5280 is_curr = 1;
49593bfa 5281
39279cc3
CM
5282 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
5283 di_cur = 0;
5f39d397 5284 di_total = btrfs_item_size(leaf, item);
49593bfa
DW
5285
5286 while (di_cur < di_total) {
5f39d397
CM
5287 struct btrfs_key location;
5288
22a94d44
JB
5289 if (verify_dir_item(root, leaf, di))
5290 break;
5291
5f39d397 5292 name_len = btrfs_dir_name_len(leaf, di);
49593bfa 5293 if (name_len <= sizeof(tmp_name)) {
5f39d397
CM
5294 name_ptr = tmp_name;
5295 } else {
5296 name_ptr = kmalloc(name_len, GFP_NOFS);
49593bfa
DW
5297 if (!name_ptr) {
5298 ret = -ENOMEM;
5299 goto err;
5300 }
5f39d397
CM
5301 }
5302 read_extent_buffer(leaf, name_ptr,
5303 (unsigned long)(di + 1), name_len);
5304
5305 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
5306 btrfs_dir_item_key_to_cpu(leaf, di, &location);
3de4586c 5307
fede766f 5308
3de4586c 5309 /* is this a reference to our own snapshot? If so
8c9c2bf7
AJ
5310 * skip it.
5311 *
5312 * In contrast to old kernels, we insert the snapshot's
5313 * dir item and dir index after it has been created, so
5314 * we won't find a reference to our own snapshot. We
5315 * still keep the following code for backward
5316 * compatibility.
3de4586c
CM
5317 */
5318 if (location.type == BTRFS_ROOT_ITEM_KEY &&
5319 location.objectid == root->root_key.objectid) {
5320 over = 0;
5321 goto skip;
5322 }
9cdda8d3
AV
5323 over = !dir_emit(ctx, name_ptr, name_len,
5324 location.objectid, d_type);
5f39d397 5325
3de4586c 5326skip:
5f39d397
CM
5327 if (name_ptr != tmp_name)
5328 kfree(name_ptr);
5329
39279cc3
CM
5330 if (over)
5331 goto nopos;
5103e947 5332 di_len = btrfs_dir_name_len(leaf, di) +
49593bfa 5333 btrfs_dir_data_len(leaf, di) + sizeof(*di);
39279cc3
CM
5334 di_cur += di_len;
5335 di = (struct btrfs_dir_item *)((char *)di + di_len);
5336 }
b9e03af0
LZ
5337next:
5338 path->slots[0]++;
39279cc3 5339 }
49593bfa 5340
16cdcec7
MX
5341 if (key_type == BTRFS_DIR_INDEX_KEY) {
5342 if (is_curr)
9cdda8d3
AV
5343 ctx->pos++;
5344 ret = btrfs_readdir_delayed_dir_index(ctx, &ins_list);
16cdcec7
MX
5345 if (ret)
5346 goto nopos;
5347 }
5348
49593bfa 5349 /* Reached end of directory/root. Bump pos past the last item. */
db62efbb
ZB
5350 ctx->pos++;
5351
5352 /*
5353 * Stop new entries from being returned after we return the last
5354 * entry.
5355 *
5356 * New directory entries are assigned a strictly increasing
5357 * offset. This means that new entries created during readdir
5358 * are *guaranteed* to be seen in the future by that readdir.
5359 * This has broken buggy programs which operate on names as
5360 * they're returned by readdir. Until we re-use freed offsets
5361 * we have this hack to stop new entries from being returned
5362 * under the assumption that they'll never reach this huge
5363 * offset.
5364 *
5365 * This is being careful not to overflow 32bit loff_t unless the
5366 * last entry requires it because doing so has broken 32bit apps
5367 * in the past.
5368 */
5369 if (key_type == BTRFS_DIR_INDEX_KEY) {
5370 if (ctx->pos >= INT_MAX)
5371 ctx->pos = LLONG_MAX;
5372 else
5373 ctx->pos = INT_MAX;
5374 }
39279cc3
CM
5375nopos:
5376 ret = 0;
5377err:
16cdcec7
MX
5378 if (key_type == BTRFS_DIR_INDEX_KEY)
5379 btrfs_put_delayed_items(&ins_list, &del_list);
39279cc3 5380 btrfs_free_path(path);
39279cc3
CM
5381 return ret;
5382}
5383
a9185b41 5384int btrfs_write_inode(struct inode *inode, struct writeback_control *wbc)
39279cc3
CM
5385{
5386 struct btrfs_root *root = BTRFS_I(inode)->root;
5387 struct btrfs_trans_handle *trans;
5388 int ret = 0;
0af3d00b 5389 bool nolock = false;
39279cc3 5390
72ac3c0d 5391 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
4ca8b41e
CM
5392 return 0;
5393
83eea1f1 5394 if (btrfs_fs_closing(root->fs_info) && btrfs_is_free_space_inode(inode))
82d5902d 5395 nolock = true;
0af3d00b 5396
a9185b41 5397 if (wbc->sync_mode == WB_SYNC_ALL) {
0af3d00b 5398 if (nolock)
7a7eaa40 5399 trans = btrfs_join_transaction_nolock(root);
0af3d00b 5400 else
7a7eaa40 5401 trans = btrfs_join_transaction(root);
3612b495
TI
5402 if (IS_ERR(trans))
5403 return PTR_ERR(trans);
a698d075 5404 ret = btrfs_commit_transaction(trans, root);
39279cc3
CM
5405 }
5406 return ret;
5407}
5408
5409/*
54aa1f4d 5410 * This is somewhat expensive, updating the tree every time the
39279cc3
CM
5411 * inode changes. But, it is most likely to find the inode in cache.
5412 * FIXME, needs more benchmarking...there are no reasons other than performance
5413 * to keep or drop this code.
5414 */
48a3b636 5415static int btrfs_dirty_inode(struct inode *inode)
39279cc3
CM
5416{
5417 struct btrfs_root *root = BTRFS_I(inode)->root;
5418 struct btrfs_trans_handle *trans;
8929ecfa
YZ
5419 int ret;
5420
72ac3c0d 5421 if (test_bit(BTRFS_INODE_DUMMY, &BTRFS_I(inode)->runtime_flags))
22c44fe6 5422 return 0;
39279cc3 5423
7a7eaa40 5424 trans = btrfs_join_transaction(root);
22c44fe6
JB
5425 if (IS_ERR(trans))
5426 return PTR_ERR(trans);
8929ecfa
YZ
5427
5428 ret = btrfs_update_inode(trans, root, inode);
94b60442
CM
5429 if (ret && ret == -ENOSPC) {
5430 /* whoops, lets try again with the full transaction */
5431 btrfs_end_transaction(trans, root);
5432 trans = btrfs_start_transaction(root, 1);
22c44fe6
JB
5433 if (IS_ERR(trans))
5434 return PTR_ERR(trans);
8929ecfa 5435
94b60442 5436 ret = btrfs_update_inode(trans, root, inode);
94b60442 5437 }
39279cc3 5438 btrfs_end_transaction(trans, root);
16cdcec7
MX
5439 if (BTRFS_I(inode)->delayed_node)
5440 btrfs_balance_delayed_items(root);
22c44fe6
JB
5441
5442 return ret;
5443}
5444
5445/*
5446 * This is a copy of file_update_time. We need this so we can return error on
5447 * ENOSPC for updating the inode in the case of file write and mmap writes.
5448 */
e41f941a
JB
5449static int btrfs_update_time(struct inode *inode, struct timespec *now,
5450 int flags)
22c44fe6 5451{
2bc55652
AB
5452 struct btrfs_root *root = BTRFS_I(inode)->root;
5453
5454 if (btrfs_root_readonly(root))
5455 return -EROFS;
5456
e41f941a 5457 if (flags & S_VERSION)
22c44fe6 5458 inode_inc_iversion(inode);
e41f941a
JB
5459 if (flags & S_CTIME)
5460 inode->i_ctime = *now;
5461 if (flags & S_MTIME)
5462 inode->i_mtime = *now;
5463 if (flags & S_ATIME)
5464 inode->i_atime = *now;
5465 return btrfs_dirty_inode(inode);
39279cc3
CM
5466}
5467
d352ac68
CM
5468/*
5469 * find the highest existing sequence number in a directory
5470 * and then set the in-memory index_cnt variable to reflect
5471 * free sequence numbers
5472 */
aec7477b
JB
5473static int btrfs_set_inode_index_count(struct inode *inode)
5474{
5475 struct btrfs_root *root = BTRFS_I(inode)->root;
5476 struct btrfs_key key, found_key;
5477 struct btrfs_path *path;
5478 struct extent_buffer *leaf;
5479 int ret;
5480
33345d01 5481 key.objectid = btrfs_ino(inode);
aec7477b
JB
5482 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
5483 key.offset = (u64)-1;
5484
5485 path = btrfs_alloc_path();
5486 if (!path)
5487 return -ENOMEM;
5488
5489 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5490 if (ret < 0)
5491 goto out;
5492 /* FIXME: we should be able to handle this */
5493 if (ret == 0)
5494 goto out;
5495 ret = 0;
5496
5497 /*
5498 * MAGIC NUMBER EXPLANATION:
5499 * since we search a directory based on f_pos we have to start at 2
5500 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
5501 * else has to start at 2
5502 */
5503 if (path->slots[0] == 0) {
5504 BTRFS_I(inode)->index_cnt = 2;
5505 goto out;
5506 }
5507
5508 path->slots[0]--;
5509
5510 leaf = path->nodes[0];
5511 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
5512
33345d01 5513 if (found_key.objectid != btrfs_ino(inode) ||
aec7477b
JB
5514 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
5515 BTRFS_I(inode)->index_cnt = 2;
5516 goto out;
5517 }
5518
5519 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
5520out:
5521 btrfs_free_path(path);
5522 return ret;
5523}
5524
d352ac68
CM
5525/*
5526 * helper to find a free sequence number in a given directory. This current
5527 * code is very simple, later versions will do smarter things in the btree
5528 */
3de4586c 5529int btrfs_set_inode_index(struct inode *dir, u64 *index)
aec7477b
JB
5530{
5531 int ret = 0;
5532
5533 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
16cdcec7
MX
5534 ret = btrfs_inode_delayed_dir_index_count(dir);
5535 if (ret) {
5536 ret = btrfs_set_inode_index_count(dir);
5537 if (ret)
5538 return ret;
5539 }
aec7477b
JB
5540 }
5541
00e4e6b3 5542 *index = BTRFS_I(dir)->index_cnt;
aec7477b
JB
5543 BTRFS_I(dir)->index_cnt++;
5544
5545 return ret;
5546}
5547
39279cc3
CM
5548static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
5549 struct btrfs_root *root,
aec7477b 5550 struct inode *dir,
9c58309d 5551 const char *name, int name_len,
175a4eb7
AV
5552 u64 ref_objectid, u64 objectid,
5553 umode_t mode, u64 *index)
39279cc3
CM
5554{
5555 struct inode *inode;
5f39d397 5556 struct btrfs_inode_item *inode_item;
39279cc3 5557 struct btrfs_key *location;
5f39d397 5558 struct btrfs_path *path;
9c58309d
CM
5559 struct btrfs_inode_ref *ref;
5560 struct btrfs_key key[2];
5561 u32 sizes[2];
ef3b9af5 5562 int nitems = name ? 2 : 1;
9c58309d 5563 unsigned long ptr;
39279cc3 5564 int ret;
39279cc3 5565
5f39d397 5566 path = btrfs_alloc_path();
d8926bb3
MF
5567 if (!path)
5568 return ERR_PTR(-ENOMEM);
5f39d397 5569
39279cc3 5570 inode = new_inode(root->fs_info->sb);
8fb27640
YS
5571 if (!inode) {
5572 btrfs_free_path(path);
39279cc3 5573 return ERR_PTR(-ENOMEM);
8fb27640 5574 }
39279cc3 5575
581bb050
LZ
5576 /*
5577 * we have to initialize this early, so we can reclaim the inode
5578 * number if we fail afterwards in this function.
5579 */
5580 inode->i_ino = objectid;
5581
ef3b9af5 5582 if (dir && name) {
1abe9b8a 5583 trace_btrfs_inode_request(dir);
5584
3de4586c 5585 ret = btrfs_set_inode_index(dir, index);
09771430 5586 if (ret) {
8fb27640 5587 btrfs_free_path(path);
09771430 5588 iput(inode);
aec7477b 5589 return ERR_PTR(ret);
09771430 5590 }
ef3b9af5
FM
5591 } else if (dir) {
5592 *index = 0;
aec7477b
JB
5593 }
5594 /*
5595 * index_cnt is ignored for everything but a dir,
5596 * btrfs_get_inode_index_count has an explanation for the magic
5597 * number
5598 */
5599 BTRFS_I(inode)->index_cnt = 2;
67de1176 5600 BTRFS_I(inode)->dir_index = *index;
39279cc3 5601 BTRFS_I(inode)->root = root;
e02119d5 5602 BTRFS_I(inode)->generation = trans->transid;
76195853 5603 inode->i_generation = BTRFS_I(inode)->generation;
b888db2b 5604
5dc562c5
JB
5605 /*
5606 * We could have gotten an inode number from somebody who was fsynced
5607 * and then removed in this same transaction, so let's just set full
5608 * sync since it will be a full sync anyway and this will blow away the
5609 * old info in the log.
5610 */
5611 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
5612
9c58309d
CM
5613 key[0].objectid = objectid;
5614 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
5615 key[0].offset = 0;
5616
9c58309d 5617 sizes[0] = sizeof(struct btrfs_inode_item);
ef3b9af5
FM
5618
5619 if (name) {
5620 /*
5621 * Start new inodes with an inode_ref. This is slightly more
5622 * efficient for small numbers of hard links since they will
5623 * be packed into one item. Extended refs will kick in if we
5624 * add more hard links than can fit in the ref item.
5625 */
5626 key[1].objectid = objectid;
5627 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
5628 key[1].offset = ref_objectid;
5629
5630 sizes[1] = name_len + sizeof(*ref);
5631 }
9c58309d 5632
b9473439 5633 path->leave_spinning = 1;
ef3b9af5 5634 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, nitems);
9c58309d 5635 if (ret != 0)
5f39d397
CM
5636 goto fail;
5637
ecc11fab 5638 inode_init_owner(inode, dir, mode);
a76a3cd4 5639 inode_set_bytes(inode, 0);
39279cc3 5640 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
5f39d397
CM
5641 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
5642 struct btrfs_inode_item);
293f7e07
LZ
5643 memset_extent_buffer(path->nodes[0], 0, (unsigned long)inode_item,
5644 sizeof(*inode_item));
e02119d5 5645 fill_inode_item(trans, path->nodes[0], inode_item, inode);
9c58309d 5646
ef3b9af5
FM
5647 if (name) {
5648 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
5649 struct btrfs_inode_ref);
5650 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
5651 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
5652 ptr = (unsigned long)(ref + 1);
5653 write_extent_buffer(path->nodes[0], name, ptr, name_len);
5654 }
9c58309d 5655
5f39d397
CM
5656 btrfs_mark_buffer_dirty(path->nodes[0]);
5657 btrfs_free_path(path);
5658
39279cc3
CM
5659 location = &BTRFS_I(inode)->location;
5660 location->objectid = objectid;
39279cc3
CM
5661 location->offset = 0;
5662 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
5663
6cbff00f
CH
5664 btrfs_inherit_iflags(inode, dir);
5665
569254b0 5666 if (S_ISREG(mode)) {
94272164
CM
5667 if (btrfs_test_opt(root, NODATASUM))
5668 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM;
213490b3 5669 if (btrfs_test_opt(root, NODATACOW))
f2bdf9a8
JB
5670 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATACOW |
5671 BTRFS_INODE_NODATASUM;
94272164
CM
5672 }
5673
778ba82b 5674 btrfs_insert_inode_hash(inode);
5d4f98a2 5675 inode_tree_add(inode);
1abe9b8a 5676
5677 trace_btrfs_inode_new(inode);
1973f0fa 5678 btrfs_set_inode_last_trans(trans, inode);
1abe9b8a 5679
8ea05e3a
AB
5680 btrfs_update_root_times(trans, root);
5681
63541927
FDBM
5682 ret = btrfs_inode_inherit_props(trans, inode, dir);
5683 if (ret)
5684 btrfs_err(root->fs_info,
5685 "error inheriting props for ino %llu (root %llu): %d",
5686 btrfs_ino(inode), root->root_key.objectid, ret);
5687
39279cc3 5688 return inode;
5f39d397 5689fail:
ef3b9af5 5690 if (dir && name)
aec7477b 5691 BTRFS_I(dir)->index_cnt--;
5f39d397 5692 btrfs_free_path(path);
09771430 5693 iput(inode);
5f39d397 5694 return ERR_PTR(ret);
39279cc3
CM
5695}
5696
5697static inline u8 btrfs_inode_type(struct inode *inode)
5698{
5699 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
5700}
5701
d352ac68
CM
5702/*
5703 * utility function to add 'inode' into 'parent_inode' with
5704 * a give name and a given sequence number.
5705 * if 'add_backref' is true, also insert a backref from the
5706 * inode to the parent directory.
5707 */
e02119d5
CM
5708int btrfs_add_link(struct btrfs_trans_handle *trans,
5709 struct inode *parent_inode, struct inode *inode,
5710 const char *name, int name_len, int add_backref, u64 index)
39279cc3 5711{
4df27c4d 5712 int ret = 0;
39279cc3 5713 struct btrfs_key key;
e02119d5 5714 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
33345d01
LZ
5715 u64 ino = btrfs_ino(inode);
5716 u64 parent_ino = btrfs_ino(parent_inode);
5f39d397 5717
33345d01 5718 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4df27c4d
YZ
5719 memcpy(&key, &BTRFS_I(inode)->root->root_key, sizeof(key));
5720 } else {
33345d01 5721 key.objectid = ino;
4df27c4d
YZ
5722 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
5723 key.offset = 0;
5724 }
5725
33345d01 5726 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
4df27c4d
YZ
5727 ret = btrfs_add_root_ref(trans, root->fs_info->tree_root,
5728 key.objectid, root->root_key.objectid,
33345d01 5729 parent_ino, index, name, name_len);
4df27c4d 5730 } else if (add_backref) {
33345d01
LZ
5731 ret = btrfs_insert_inode_ref(trans, root, name, name_len, ino,
5732 parent_ino, index);
4df27c4d 5733 }
39279cc3 5734
79787eaa
JM
5735 /* Nothing to clean up yet */
5736 if (ret)
5737 return ret;
4df27c4d 5738
79787eaa
JM
5739 ret = btrfs_insert_dir_item(trans, root, name, name_len,
5740 parent_inode, &key,
5741 btrfs_inode_type(inode), index);
9c52057c 5742 if (ret == -EEXIST || ret == -EOVERFLOW)
79787eaa
JM
5743 goto fail_dir_item;
5744 else if (ret) {
5745 btrfs_abort_transaction(trans, root, ret);
5746 return ret;
39279cc3 5747 }
79787eaa
JM
5748
5749 btrfs_i_size_write(parent_inode, parent_inode->i_size +
5750 name_len * 2);
0c4d2d95 5751 inode_inc_iversion(parent_inode);
79787eaa
JM
5752 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
5753 ret = btrfs_update_inode(trans, root, parent_inode);
5754 if (ret)
5755 btrfs_abort_transaction(trans, root, ret);
39279cc3 5756 return ret;
fe66a05a
CM
5757
5758fail_dir_item:
5759 if (unlikely(ino == BTRFS_FIRST_FREE_OBJECTID)) {
5760 u64 local_index;
5761 int err;
5762 err = btrfs_del_root_ref(trans, root->fs_info->tree_root,
5763 key.objectid, root->root_key.objectid,
5764 parent_ino, &local_index, name, name_len);
5765
5766 } else if (add_backref) {
5767 u64 local_index;
5768 int err;
5769
5770 err = btrfs_del_inode_ref(trans, root, name, name_len,
5771 ino, parent_ino, &local_index);
5772 }
5773 return ret;
39279cc3
CM
5774}
5775
5776static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
a1b075d2
JB
5777 struct inode *dir, struct dentry *dentry,
5778 struct inode *inode, int backref, u64 index)
39279cc3 5779{
a1b075d2
JB
5780 int err = btrfs_add_link(trans, dir, inode,
5781 dentry->d_name.name, dentry->d_name.len,
5782 backref, index);
39279cc3
CM
5783 if (err > 0)
5784 err = -EEXIST;
5785 return err;
5786}
5787
618e21d5 5788static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1a67aafb 5789 umode_t mode, dev_t rdev)
618e21d5
JB
5790{
5791 struct btrfs_trans_handle *trans;
5792 struct btrfs_root *root = BTRFS_I(dir)->root;
1832a6d5 5793 struct inode *inode = NULL;
618e21d5
JB
5794 int err;
5795 int drop_inode = 0;
5796 u64 objectid;
00e4e6b3 5797 u64 index = 0;
618e21d5
JB
5798
5799 if (!new_valid_dev(rdev))
5800 return -EINVAL;
5801
9ed74f2d
JB
5802 /*
5803 * 2 for inode item and ref
5804 * 2 for dir items
5805 * 1 for xattr if selinux is on
5806 */
a22285a6
YZ
5807 trans = btrfs_start_transaction(root, 5);
5808 if (IS_ERR(trans))
5809 return PTR_ERR(trans);
1832a6d5 5810
581bb050
LZ
5811 err = btrfs_find_free_ino(root, &objectid);
5812 if (err)
5813 goto out_unlock;
5814
aec7477b 5815 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
33345d01 5816 dentry->d_name.len, btrfs_ino(dir), objectid,
d82a6f1d 5817 mode, &index);
7cf96da3
TI
5818 if (IS_ERR(inode)) {
5819 err = PTR_ERR(inode);
618e21d5 5820 goto out_unlock;
7cf96da3 5821 }
618e21d5 5822
2a7dba39 5823 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
33268eaf
JB
5824 if (err) {
5825 drop_inode = 1;
5826 goto out_unlock;
5827 }
5828
ad19db71
CS
5829 /*
5830 * If the active LSM wants to access the inode during
5831 * d_instantiate it needs these. Smack checks to see
5832 * if the filesystem supports xattrs by looking at the
5833 * ops vector.
5834 */
5835
5836 inode->i_op = &btrfs_special_inode_operations;
a1b075d2 5837 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
618e21d5
JB
5838 if (err)
5839 drop_inode = 1;
5840 else {
618e21d5 5841 init_special_inode(inode, inode->i_mode, rdev);
1b4ab1bb 5842 btrfs_update_inode(trans, root, inode);
08c422c2 5843 d_instantiate(dentry, inode);
618e21d5 5844 }
618e21d5 5845out_unlock:
7ad85bb7 5846 btrfs_end_transaction(trans, root);
c581afc8 5847 btrfs_balance_delayed_items(root);
b53d3f5d 5848 btrfs_btree_balance_dirty(root);
618e21d5
JB
5849 if (drop_inode) {
5850 inode_dec_link_count(inode);
5851 iput(inode);
5852 }
618e21d5
JB
5853 return err;
5854}
5855
39279cc3 5856static int btrfs_create(struct inode *dir, struct dentry *dentry,
ebfc3b49 5857 umode_t mode, bool excl)
39279cc3
CM
5858{
5859 struct btrfs_trans_handle *trans;
5860 struct btrfs_root *root = BTRFS_I(dir)->root;
1832a6d5 5861 struct inode *inode = NULL;
43baa579 5862 int drop_inode_on_err = 0;
a22285a6 5863 int err;
39279cc3 5864 u64 objectid;
00e4e6b3 5865 u64 index = 0;
39279cc3 5866
9ed74f2d
JB
5867 /*
5868 * 2 for inode item and ref
5869 * 2 for dir items
5870 * 1 for xattr if selinux is on
5871 */
a22285a6
YZ
5872 trans = btrfs_start_transaction(root, 5);
5873 if (IS_ERR(trans))
5874 return PTR_ERR(trans);
9ed74f2d 5875
581bb050
LZ
5876 err = btrfs_find_free_ino(root, &objectid);
5877 if (err)
5878 goto out_unlock;
5879
aec7477b 5880 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
33345d01 5881 dentry->d_name.len, btrfs_ino(dir), objectid,
d82a6f1d 5882 mode, &index);
7cf96da3
TI
5883 if (IS_ERR(inode)) {
5884 err = PTR_ERR(inode);
39279cc3 5885 goto out_unlock;
7cf96da3 5886 }
43baa579 5887 drop_inode_on_err = 1;
39279cc3 5888
2a7dba39 5889 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
43baa579 5890 if (err)
33268eaf 5891 goto out_unlock;
33268eaf 5892
9185aa58
FB
5893 err = btrfs_update_inode(trans, root, inode);
5894 if (err)
5895 goto out_unlock;
5896
ad19db71
CS
5897 /*
5898 * If the active LSM wants to access the inode during
5899 * d_instantiate it needs these. Smack checks to see
5900 * if the filesystem supports xattrs by looking at the
5901 * ops vector.
5902 */
5903 inode->i_fop = &btrfs_file_operations;
5904 inode->i_op = &btrfs_file_inode_operations;
5905
a1b075d2 5906 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
39279cc3 5907 if (err)
43baa579
FB
5908 goto out_unlock;
5909
5910 inode->i_mapping->a_ops = &btrfs_aops;
5911 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
5912 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
5913 d_instantiate(dentry, inode);
5914
39279cc3 5915out_unlock:
7ad85bb7 5916 btrfs_end_transaction(trans, root);
43baa579 5917 if (err && drop_inode_on_err) {
39279cc3
CM
5918 inode_dec_link_count(inode);
5919 iput(inode);
5920 }
c581afc8 5921 btrfs_balance_delayed_items(root);
b53d3f5d 5922 btrfs_btree_balance_dirty(root);
39279cc3
CM
5923 return err;
5924}
5925
5926static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
5927 struct dentry *dentry)
5928{
5929 struct btrfs_trans_handle *trans;
5930 struct btrfs_root *root = BTRFS_I(dir)->root;
5931 struct inode *inode = old_dentry->d_inode;
00e4e6b3 5932 u64 index;
39279cc3
CM
5933 int err;
5934 int drop_inode = 0;
5935
4a8be425
TH
5936 /* do not allow sys_link's with other subvols of the same device */
5937 if (root->objectid != BTRFS_I(inode)->root->objectid)
3ab3564f 5938 return -EXDEV;
4a8be425 5939
f186373f 5940 if (inode->i_nlink >= BTRFS_LINK_MAX)
c055e99e 5941 return -EMLINK;
4a8be425 5942
3de4586c 5943 err = btrfs_set_inode_index(dir, &index);
aec7477b
JB
5944 if (err)
5945 goto fail;
5946
a22285a6 5947 /*
7e6b6465 5948 * 2 items for inode and inode ref
a22285a6 5949 * 2 items for dir items
7e6b6465 5950 * 1 item for parent inode
a22285a6 5951 */
7e6b6465 5952 trans = btrfs_start_transaction(root, 5);
a22285a6
YZ
5953 if (IS_ERR(trans)) {
5954 err = PTR_ERR(trans);
5955 goto fail;
5956 }
5f39d397 5957
67de1176
MX
5958 /* There are several dir indexes for this inode, clear the cache. */
5959 BTRFS_I(inode)->dir_index = 0ULL;
8b558c5f 5960 inc_nlink(inode);
0c4d2d95 5961 inode_inc_iversion(inode);
3153495d 5962 inode->i_ctime = CURRENT_TIME;
7de9c6ee 5963 ihold(inode);
e9976151 5964 set_bit(BTRFS_INODE_COPY_EVERYTHING, &BTRFS_I(inode)->runtime_flags);
aec7477b 5965
a1b075d2 5966 err = btrfs_add_nondir(trans, dir, dentry, inode, 1, index);
5f39d397 5967
a5719521 5968 if (err) {
54aa1f4d 5969 drop_inode = 1;
a5719521 5970 } else {
10d9f309 5971 struct dentry *parent = dentry->d_parent;
a5719521 5972 err = btrfs_update_inode(trans, root, inode);
79787eaa
JM
5973 if (err)
5974 goto fail;
ef3b9af5
FM
5975 if (inode->i_nlink == 1) {
5976 /*
5977 * If new hard link count is 1, it's a file created
5978 * with open(2) O_TMPFILE flag.
5979 */
5980 err = btrfs_orphan_del(trans, inode);
5981 if (err)
5982 goto fail;
5983 }
08c422c2 5984 d_instantiate(dentry, inode);
6a912213 5985 btrfs_log_new_name(trans, inode, NULL, parent);
a5719521 5986 }
39279cc3 5987
7ad85bb7 5988 btrfs_end_transaction(trans, root);
c581afc8 5989 btrfs_balance_delayed_items(root);
1832a6d5 5990fail:
39279cc3
CM
5991 if (drop_inode) {
5992 inode_dec_link_count(inode);
5993 iput(inode);
5994 }
b53d3f5d 5995 btrfs_btree_balance_dirty(root);
39279cc3
CM
5996 return err;
5997}
5998
18bb1db3 5999static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
39279cc3 6000{
b9d86667 6001 struct inode *inode = NULL;
39279cc3
CM
6002 struct btrfs_trans_handle *trans;
6003 struct btrfs_root *root = BTRFS_I(dir)->root;
6004 int err = 0;
6005 int drop_on_err = 0;
b9d86667 6006 u64 objectid = 0;
00e4e6b3 6007 u64 index = 0;
39279cc3 6008
9ed74f2d
JB
6009 /*
6010 * 2 items for inode and ref
6011 * 2 items for dir items
6012 * 1 for xattr if selinux is on
6013 */
a22285a6
YZ
6014 trans = btrfs_start_transaction(root, 5);
6015 if (IS_ERR(trans))
6016 return PTR_ERR(trans);
39279cc3 6017
581bb050
LZ
6018 err = btrfs_find_free_ino(root, &objectid);
6019 if (err)
6020 goto out_fail;
6021
aec7477b 6022 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
33345d01 6023 dentry->d_name.len, btrfs_ino(dir), objectid,
d82a6f1d 6024 S_IFDIR | mode, &index);
39279cc3
CM
6025 if (IS_ERR(inode)) {
6026 err = PTR_ERR(inode);
6027 goto out_fail;
6028 }
5f39d397 6029
39279cc3 6030 drop_on_err = 1;
33268eaf 6031
2a7dba39 6032 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
33268eaf
JB
6033 if (err)
6034 goto out_fail;
6035
39279cc3
CM
6036 inode->i_op = &btrfs_dir_inode_operations;
6037 inode->i_fop = &btrfs_dir_file_operations;
39279cc3 6038
dbe674a9 6039 btrfs_i_size_write(inode, 0);
39279cc3
CM
6040 err = btrfs_update_inode(trans, root, inode);
6041 if (err)
6042 goto out_fail;
5f39d397 6043
a1b075d2
JB
6044 err = btrfs_add_link(trans, dir, inode, dentry->d_name.name,
6045 dentry->d_name.len, 0, index);
39279cc3
CM
6046 if (err)
6047 goto out_fail;
5f39d397 6048
39279cc3
CM
6049 d_instantiate(dentry, inode);
6050 drop_on_err = 0;
39279cc3
CM
6051
6052out_fail:
7ad85bb7 6053 btrfs_end_transaction(trans, root);
39279cc3
CM
6054 if (drop_on_err)
6055 iput(inode);
c581afc8 6056 btrfs_balance_delayed_items(root);
b53d3f5d 6057 btrfs_btree_balance_dirty(root);
39279cc3
CM
6058 return err;
6059}
6060
d352ac68
CM
6061/* helper for btfs_get_extent. Given an existing extent in the tree,
6062 * and an extent that you want to insert, deal with overlap and insert
6063 * the new extent into the tree.
6064 */
3b951516
CM
6065static int merge_extent_mapping(struct extent_map_tree *em_tree,
6066 struct extent_map *existing,
e6dcd2dc
CM
6067 struct extent_map *em,
6068 u64 map_start, u64 map_len)
3b951516
CM
6069{
6070 u64 start_diff;
3b951516 6071
e6dcd2dc
CM
6072 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
6073 start_diff = map_start - em->start;
6074 em->start = map_start;
6075 em->len = map_len;
c8b97818
CM
6076 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
6077 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
e6dcd2dc 6078 em->block_start += start_diff;
c8b97818
CM
6079 em->block_len -= start_diff;
6080 }
09a2a8f9 6081 return add_extent_mapping(em_tree, em, 0);
3b951516
CM
6082}
6083
c8b97818
CM
6084static noinline int uncompress_inline(struct btrfs_path *path,
6085 struct inode *inode, struct page *page,
6086 size_t pg_offset, u64 extent_offset,
6087 struct btrfs_file_extent_item *item)
6088{
6089 int ret;
6090 struct extent_buffer *leaf = path->nodes[0];
6091 char *tmp;
6092 size_t max_size;
6093 unsigned long inline_size;
6094 unsigned long ptr;
261507a0 6095 int compress_type;
c8b97818
CM
6096
6097 WARN_ON(pg_offset != 0);
261507a0 6098 compress_type = btrfs_file_extent_compression(leaf, item);
c8b97818
CM
6099 max_size = btrfs_file_extent_ram_bytes(leaf, item);
6100 inline_size = btrfs_file_extent_inline_item_len(leaf,
dd3cc16b 6101 btrfs_item_nr(path->slots[0]));
c8b97818 6102 tmp = kmalloc(inline_size, GFP_NOFS);
8d413713
TI
6103 if (!tmp)
6104 return -ENOMEM;
c8b97818
CM
6105 ptr = btrfs_file_extent_inline_start(item);
6106
6107 read_extent_buffer(leaf, tmp, ptr, inline_size);
6108
5b050f04 6109 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
261507a0
LZ
6110 ret = btrfs_decompress(compress_type, tmp, page,
6111 extent_offset, inline_size, max_size);
c8b97818 6112 kfree(tmp);
166ae5a4 6113 return ret;
c8b97818
CM
6114}
6115
d352ac68
CM
6116/*
6117 * a bit scary, this does extent mapping from logical file offset to the disk.
d397712b
CM
6118 * the ugly parts come from merging extents from the disk with the in-ram
6119 * representation. This gets more complex because of the data=ordered code,
d352ac68
CM
6120 * where the in-ram extents might be locked pending data=ordered completion.
6121 *
6122 * This also copies inline extents directly into the page.
6123 */
d397712b 6124
a52d9a80 6125struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
70dec807 6126 size_t pg_offset, u64 start, u64 len,
a52d9a80
CM
6127 int create)
6128{
6129 int ret;
6130 int err = 0;
db94535d 6131 u64 bytenr;
a52d9a80
CM
6132 u64 extent_start = 0;
6133 u64 extent_end = 0;
33345d01 6134 u64 objectid = btrfs_ino(inode);
a52d9a80 6135 u32 found_type;
f421950f 6136 struct btrfs_path *path = NULL;
a52d9a80
CM
6137 struct btrfs_root *root = BTRFS_I(inode)->root;
6138 struct btrfs_file_extent_item *item;
5f39d397
CM
6139 struct extent_buffer *leaf;
6140 struct btrfs_key found_key;
a52d9a80
CM
6141 struct extent_map *em = NULL;
6142 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
d1310b2e 6143 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
a52d9a80 6144 struct btrfs_trans_handle *trans = NULL;
261507a0 6145 int compress_type;
a52d9a80 6146
a52d9a80 6147again:
890871be 6148 read_lock(&em_tree->lock);
d1310b2e 6149 em = lookup_extent_mapping(em_tree, start, len);
a061fc8d
CM
6150 if (em)
6151 em->bdev = root->fs_info->fs_devices->latest_bdev;
890871be 6152 read_unlock(&em_tree->lock);
d1310b2e 6153
a52d9a80 6154 if (em) {
e1c4b745
CM
6155 if (em->start > start || em->start + em->len <= start)
6156 free_extent_map(em);
6157 else if (em->block_start == EXTENT_MAP_INLINE && page)
70dec807
CM
6158 free_extent_map(em);
6159 else
6160 goto out;
a52d9a80 6161 }
172ddd60 6162 em = alloc_extent_map();
a52d9a80 6163 if (!em) {
d1310b2e
CM
6164 err = -ENOMEM;
6165 goto out;
a52d9a80 6166 }
e6dcd2dc 6167 em->bdev = root->fs_info->fs_devices->latest_bdev;
d1310b2e 6168 em->start = EXTENT_MAP_HOLE;
445a6944 6169 em->orig_start = EXTENT_MAP_HOLE;
d1310b2e 6170 em->len = (u64)-1;
c8b97818 6171 em->block_len = (u64)-1;
f421950f
CM
6172
6173 if (!path) {
6174 path = btrfs_alloc_path();
026fd317
JB
6175 if (!path) {
6176 err = -ENOMEM;
6177 goto out;
6178 }
6179 /*
6180 * Chances are we'll be called again, so go ahead and do
6181 * readahead
6182 */
6183 path->reada = 1;
f421950f
CM
6184 }
6185
179e29e4
CM
6186 ret = btrfs_lookup_file_extent(trans, root, path,
6187 objectid, start, trans != NULL);
a52d9a80
CM
6188 if (ret < 0) {
6189 err = ret;
6190 goto out;
6191 }
6192
6193 if (ret != 0) {
6194 if (path->slots[0] == 0)
6195 goto not_found;
6196 path->slots[0]--;
6197 }
6198
5f39d397
CM
6199 leaf = path->nodes[0];
6200 item = btrfs_item_ptr(leaf, path->slots[0],
a52d9a80 6201 struct btrfs_file_extent_item);
a52d9a80 6202 /* are we inside the extent that was found? */
5f39d397
CM
6203 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6204 found_type = btrfs_key_type(&found_key);
6205 if (found_key.objectid != objectid ||
a52d9a80 6206 found_type != BTRFS_EXTENT_DATA_KEY) {
25a50341
JB
6207 /*
6208 * If we backup past the first extent we want to move forward
6209 * and see if there is an extent in front of us, otherwise we'll
6210 * say there is a hole for our whole search range which can
6211 * cause problems.
6212 */
6213 extent_end = start;
6214 goto next;
a52d9a80
CM
6215 }
6216
5f39d397
CM
6217 found_type = btrfs_file_extent_type(leaf, item);
6218 extent_start = found_key.offset;
261507a0 6219 compress_type = btrfs_file_extent_compression(leaf, item);
d899e052
YZ
6220 if (found_type == BTRFS_FILE_EXTENT_REG ||
6221 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
a52d9a80 6222 extent_end = extent_start +
db94535d 6223 btrfs_file_extent_num_bytes(leaf, item);
9036c102
YZ
6224 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
6225 size_t size;
514ac8ad 6226 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
fda2832f 6227 extent_end = ALIGN(extent_start + size, root->sectorsize);
9036c102 6228 }
25a50341 6229next:
9036c102
YZ
6230 if (start >= extent_end) {
6231 path->slots[0]++;
6232 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
6233 ret = btrfs_next_leaf(root, path);
6234 if (ret < 0) {
6235 err = ret;
6236 goto out;
a52d9a80 6237 }
9036c102
YZ
6238 if (ret > 0)
6239 goto not_found;
6240 leaf = path->nodes[0];
a52d9a80 6241 }
9036c102
YZ
6242 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
6243 if (found_key.objectid != objectid ||
6244 found_key.type != BTRFS_EXTENT_DATA_KEY)
6245 goto not_found;
6246 if (start + len <= found_key.offset)
6247 goto not_found;
6248 em->start = start;
70c8a91c 6249 em->orig_start = start;
9036c102
YZ
6250 em->len = found_key.offset - start;
6251 goto not_found_em;
6252 }
6253
cc95bef6 6254 em->ram_bytes = btrfs_file_extent_ram_bytes(leaf, item);
d899e052
YZ
6255 if (found_type == BTRFS_FILE_EXTENT_REG ||
6256 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
9036c102
YZ
6257 em->start = extent_start;
6258 em->len = extent_end - extent_start;
ff5b7ee3
YZ
6259 em->orig_start = extent_start -
6260 btrfs_file_extent_offset(leaf, item);
b4939680
JB
6261 em->orig_block_len = btrfs_file_extent_disk_num_bytes(leaf,
6262 item);
db94535d
CM
6263 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
6264 if (bytenr == 0) {
5f39d397 6265 em->block_start = EXTENT_MAP_HOLE;
a52d9a80
CM
6266 goto insert;
6267 }
261507a0 6268 if (compress_type != BTRFS_COMPRESS_NONE) {
c8b97818 6269 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
261507a0 6270 em->compress_type = compress_type;
c8b97818 6271 em->block_start = bytenr;
b4939680 6272 em->block_len = em->orig_block_len;
c8b97818
CM
6273 } else {
6274 bytenr += btrfs_file_extent_offset(leaf, item);
6275 em->block_start = bytenr;
6276 em->block_len = em->len;
d899e052
YZ
6277 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
6278 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
c8b97818 6279 }
a52d9a80
CM
6280 goto insert;
6281 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5f39d397 6282 unsigned long ptr;
a52d9a80 6283 char *map;
3326d1b0
CM
6284 size_t size;
6285 size_t extent_offset;
6286 size_t copy_size;
a52d9a80 6287
689f9346 6288 em->block_start = EXTENT_MAP_INLINE;
c8b97818 6289 if (!page || create) {
689f9346 6290 em->start = extent_start;
9036c102 6291 em->len = extent_end - extent_start;
689f9346
Y
6292 goto out;
6293 }
5f39d397 6294
514ac8ad 6295 size = btrfs_file_extent_inline_len(leaf, path->slots[0], item);
9036c102 6296 extent_offset = page_offset(page) + pg_offset - extent_start;
70dec807 6297 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
3326d1b0 6298 size - extent_offset);
3326d1b0 6299 em->start = extent_start + extent_offset;
fda2832f 6300 em->len = ALIGN(copy_size, root->sectorsize);
b4939680 6301 em->orig_block_len = em->len;
70c8a91c 6302 em->orig_start = em->start;
261507a0 6303 if (compress_type) {
c8b97818 6304 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
261507a0
LZ
6305 em->compress_type = compress_type;
6306 }
689f9346 6307 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
179e29e4 6308 if (create == 0 && !PageUptodate(page)) {
261507a0
LZ
6309 if (btrfs_file_extent_compression(leaf, item) !=
6310 BTRFS_COMPRESS_NONE) {
c8b97818
CM
6311 ret = uncompress_inline(path, inode, page,
6312 pg_offset,
6313 extent_offset, item);
166ae5a4
ZB
6314 if (ret) {
6315 err = ret;
6316 goto out;
6317 }
c8b97818
CM
6318 } else {
6319 map = kmap(page);
6320 read_extent_buffer(leaf, map + pg_offset, ptr,
6321 copy_size);
93c82d57
CM
6322 if (pg_offset + copy_size < PAGE_CACHE_SIZE) {
6323 memset(map + pg_offset + copy_size, 0,
6324 PAGE_CACHE_SIZE - pg_offset -
6325 copy_size);
6326 }
c8b97818
CM
6327 kunmap(page);
6328 }
179e29e4
CM
6329 flush_dcache_page(page);
6330 } else if (create && PageUptodate(page)) {
6bf7e080 6331 BUG();
179e29e4
CM
6332 if (!trans) {
6333 kunmap(page);
6334 free_extent_map(em);
6335 em = NULL;
ff5714cc 6336
b3b4aa74 6337 btrfs_release_path(path);
7a7eaa40 6338 trans = btrfs_join_transaction(root);
ff5714cc 6339
3612b495
TI
6340 if (IS_ERR(trans))
6341 return ERR_CAST(trans);
179e29e4
CM
6342 goto again;
6343 }
c8b97818 6344 map = kmap(page);
70dec807 6345 write_extent_buffer(leaf, map + pg_offset, ptr,
179e29e4 6346 copy_size);
c8b97818 6347 kunmap(page);
179e29e4 6348 btrfs_mark_buffer_dirty(leaf);
a52d9a80 6349 }
d1310b2e 6350 set_extent_uptodate(io_tree, em->start,
507903b8 6351 extent_map_end(em) - 1, NULL, GFP_NOFS);
a52d9a80
CM
6352 goto insert;
6353 } else {
31b1a2bd 6354 WARN(1, KERN_ERR "btrfs unknown found_type %d\n", found_type);
a52d9a80
CM
6355 }
6356not_found:
6357 em->start = start;
70c8a91c 6358 em->orig_start = start;
d1310b2e 6359 em->len = len;
a52d9a80 6360not_found_em:
5f39d397 6361 em->block_start = EXTENT_MAP_HOLE;
9036c102 6362 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
a52d9a80 6363insert:
b3b4aa74 6364 btrfs_release_path(path);
d1310b2e 6365 if (em->start > start || extent_map_end(em) <= start) {
c2cf52eb 6366 btrfs_err(root->fs_info, "bad extent! em: [%llu %llu] passed [%llu %llu]",
c1c9ff7c 6367 em->start, em->len, start, len);
a52d9a80
CM
6368 err = -EIO;
6369 goto out;
6370 }
d1310b2e
CM
6371
6372 err = 0;
890871be 6373 write_lock(&em_tree->lock);
09a2a8f9 6374 ret = add_extent_mapping(em_tree, em, 0);
3b951516
CM
6375 /* it is possible that someone inserted the extent into the tree
6376 * while we had the lock dropped. It is also possible that
6377 * an overlapping map exists in the tree
6378 */
a52d9a80 6379 if (ret == -EEXIST) {
3b951516 6380 struct extent_map *existing;
e6dcd2dc
CM
6381
6382 ret = 0;
6383
3b951516 6384 existing = lookup_extent_mapping(em_tree, start, len);
e1c4b745
CM
6385 if (existing && (existing->start > start ||
6386 existing->start + existing->len <= start)) {
6387 free_extent_map(existing);
6388 existing = NULL;
6389 }
3b951516
CM
6390 if (!existing) {
6391 existing = lookup_extent_mapping(em_tree, em->start,
6392 em->len);
6393 if (existing) {
6394 err = merge_extent_mapping(em_tree, existing,
e6dcd2dc
CM
6395 em, start,
6396 root->sectorsize);
3b951516
CM
6397 free_extent_map(existing);
6398 if (err) {
6399 free_extent_map(em);
6400 em = NULL;
6401 }
6402 } else {
6403 err = -EIO;
3b951516
CM
6404 free_extent_map(em);
6405 em = NULL;
6406 }
6407 } else {
6408 free_extent_map(em);
6409 em = existing;
e6dcd2dc 6410 err = 0;
a52d9a80 6411 }
a52d9a80 6412 }
890871be 6413 write_unlock(&em_tree->lock);
a52d9a80 6414out:
1abe9b8a 6415
4cd8587c 6416 trace_btrfs_get_extent(root, em);
1abe9b8a 6417
f421950f
CM
6418 if (path)
6419 btrfs_free_path(path);
a52d9a80
CM
6420 if (trans) {
6421 ret = btrfs_end_transaction(trans, root);
d397712b 6422 if (!err)
a52d9a80
CM
6423 err = ret;
6424 }
a52d9a80
CM
6425 if (err) {
6426 free_extent_map(em);
a52d9a80
CM
6427 return ERR_PTR(err);
6428 }
79787eaa 6429 BUG_ON(!em); /* Error is always set */
a52d9a80
CM
6430 return em;
6431}
6432
ec29ed5b
CM
6433struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *page,
6434 size_t pg_offset, u64 start, u64 len,
6435 int create)
6436{
6437 struct extent_map *em;
6438 struct extent_map *hole_em = NULL;
6439 u64 range_start = start;
6440 u64 end;
6441 u64 found;
6442 u64 found_end;
6443 int err = 0;
6444
6445 em = btrfs_get_extent(inode, page, pg_offset, start, len, create);
6446 if (IS_ERR(em))
6447 return em;
6448 if (em) {
6449 /*
f9e4fb53
LB
6450 * if our em maps to
6451 * - a hole or
6452 * - a pre-alloc extent,
6453 * there might actually be delalloc bytes behind it.
ec29ed5b 6454 */
f9e4fb53
LB
6455 if (em->block_start != EXTENT_MAP_HOLE &&
6456 !test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
ec29ed5b
CM
6457 return em;
6458 else
6459 hole_em = em;
6460 }
6461
6462 /* check to see if we've wrapped (len == -1 or similar) */
6463 end = start + len;
6464 if (end < start)
6465 end = (u64)-1;
6466 else
6467 end -= 1;
6468
6469 em = NULL;
6470
6471 /* ok, we didn't find anything, lets look for delalloc */
6472 found = count_range_bits(&BTRFS_I(inode)->io_tree, &range_start,
6473 end, len, EXTENT_DELALLOC, 1);
6474 found_end = range_start + found;
6475 if (found_end < range_start)
6476 found_end = (u64)-1;
6477
6478 /*
6479 * we didn't find anything useful, return
6480 * the original results from get_extent()
6481 */
6482 if (range_start > end || found_end <= start) {
6483 em = hole_em;
6484 hole_em = NULL;
6485 goto out;
6486 }
6487
6488 /* adjust the range_start to make sure it doesn't
6489 * go backwards from the start they passed in
6490 */
67871254 6491 range_start = max(start, range_start);
ec29ed5b
CM
6492 found = found_end - range_start;
6493
6494 if (found > 0) {
6495 u64 hole_start = start;
6496 u64 hole_len = len;
6497
172ddd60 6498 em = alloc_extent_map();
ec29ed5b
CM
6499 if (!em) {
6500 err = -ENOMEM;
6501 goto out;
6502 }
6503 /*
6504 * when btrfs_get_extent can't find anything it
6505 * returns one huge hole
6506 *
6507 * make sure what it found really fits our range, and
6508 * adjust to make sure it is based on the start from
6509 * the caller
6510 */
6511 if (hole_em) {
6512 u64 calc_end = extent_map_end(hole_em);
6513
6514 if (calc_end <= start || (hole_em->start > end)) {
6515 free_extent_map(hole_em);
6516 hole_em = NULL;
6517 } else {
6518 hole_start = max(hole_em->start, start);
6519 hole_len = calc_end - hole_start;
6520 }
6521 }
6522 em->bdev = NULL;
6523 if (hole_em && range_start > hole_start) {
6524 /* our hole starts before our delalloc, so we
6525 * have to return just the parts of the hole
6526 * that go until the delalloc starts
6527 */
6528 em->len = min(hole_len,
6529 range_start - hole_start);
6530 em->start = hole_start;
6531 em->orig_start = hole_start;
6532 /*
6533 * don't adjust block start at all,
6534 * it is fixed at EXTENT_MAP_HOLE
6535 */
6536 em->block_start = hole_em->block_start;
6537 em->block_len = hole_len;
f9e4fb53
LB
6538 if (test_bit(EXTENT_FLAG_PREALLOC, &hole_em->flags))
6539 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
ec29ed5b
CM
6540 } else {
6541 em->start = range_start;
6542 em->len = found;
6543 em->orig_start = range_start;
6544 em->block_start = EXTENT_MAP_DELALLOC;
6545 em->block_len = found;
6546 }
6547 } else if (hole_em) {
6548 return hole_em;
6549 }
6550out:
6551
6552 free_extent_map(hole_em);
6553 if (err) {
6554 free_extent_map(em);
6555 return ERR_PTR(err);
6556 }
6557 return em;
6558}
6559
4b46fce2
JB
6560static struct extent_map *btrfs_new_extent_direct(struct inode *inode,
6561 u64 start, u64 len)
6562{
6563 struct btrfs_root *root = BTRFS_I(inode)->root;
70c8a91c 6564 struct extent_map *em;
4b46fce2
JB
6565 struct btrfs_key ins;
6566 u64 alloc_hint;
6567 int ret;
4b46fce2 6568
4b46fce2 6569 alloc_hint = get_extent_allocation_hint(inode, start, len);
00361589 6570 ret = btrfs_reserve_extent(root, len, root->sectorsize, 0,
81c9ad23 6571 alloc_hint, &ins, 1);
00361589
JB
6572 if (ret)
6573 return ERR_PTR(ret);
4b46fce2 6574
70c8a91c 6575 em = create_pinned_em(inode, start, ins.offset, start, ins.objectid,
cc95bef6 6576 ins.offset, ins.offset, ins.offset, 0);
00361589
JB
6577 if (IS_ERR(em)) {
6578 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
6579 return em;
6580 }
4b46fce2
JB
6581
6582 ret = btrfs_add_ordered_extent_dio(inode, start, ins.objectid,
6583 ins.offset, ins.offset, 0);
6584 if (ret) {
6585 btrfs_free_reserved_extent(root, ins.objectid, ins.offset);
00361589
JB
6586 free_extent_map(em);
6587 return ERR_PTR(ret);
4b46fce2 6588 }
00361589 6589
4b46fce2
JB
6590 return em;
6591}
6592
46bfbb5c
CM
6593/*
6594 * returns 1 when the nocow is safe, < 1 on error, 0 if the
6595 * block must be cow'd
6596 */
00361589 6597noinline int can_nocow_extent(struct inode *inode, u64 offset, u64 *len,
7ee9e440
JB
6598 u64 *orig_start, u64 *orig_block_len,
6599 u64 *ram_bytes)
46bfbb5c 6600{
00361589 6601 struct btrfs_trans_handle *trans;
46bfbb5c
CM
6602 struct btrfs_path *path;
6603 int ret;
6604 struct extent_buffer *leaf;
6605 struct btrfs_root *root = BTRFS_I(inode)->root;
7b2b7085 6606 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
46bfbb5c
CM
6607 struct btrfs_file_extent_item *fi;
6608 struct btrfs_key key;
6609 u64 disk_bytenr;
6610 u64 backref_offset;
6611 u64 extent_end;
6612 u64 num_bytes;
6613 int slot;
6614 int found_type;
7ee9e440 6615 bool nocow = (BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW);
e77751aa 6616
46bfbb5c
CM
6617 path = btrfs_alloc_path();
6618 if (!path)
6619 return -ENOMEM;
6620
00361589 6621 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(inode),
46bfbb5c
CM
6622 offset, 0);
6623 if (ret < 0)
6624 goto out;
6625
6626 slot = path->slots[0];
6627 if (ret == 1) {
6628 if (slot == 0) {
6629 /* can't find the item, must cow */
6630 ret = 0;
6631 goto out;
6632 }
6633 slot--;
6634 }
6635 ret = 0;
6636 leaf = path->nodes[0];
6637 btrfs_item_key_to_cpu(leaf, &key, slot);
33345d01 6638 if (key.objectid != btrfs_ino(inode) ||
46bfbb5c
CM
6639 key.type != BTRFS_EXTENT_DATA_KEY) {
6640 /* not our file or wrong item type, must cow */
6641 goto out;
6642 }
6643
6644 if (key.offset > offset) {
6645 /* Wrong offset, must cow */
6646 goto out;
6647 }
6648
6649 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
6650 found_type = btrfs_file_extent_type(leaf, fi);
6651 if (found_type != BTRFS_FILE_EXTENT_REG &&
6652 found_type != BTRFS_FILE_EXTENT_PREALLOC) {
6653 /* not a regular extent, must cow */
6654 goto out;
6655 }
7ee9e440
JB
6656
6657 if (!nocow && found_type == BTRFS_FILE_EXTENT_REG)
6658 goto out;
6659
e77751aa
MX
6660 extent_end = key.offset + btrfs_file_extent_num_bytes(leaf, fi);
6661 if (extent_end <= offset)
6662 goto out;
6663
46bfbb5c 6664 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
7ee9e440
JB
6665 if (disk_bytenr == 0)
6666 goto out;
6667
6668 if (btrfs_file_extent_compression(leaf, fi) ||
6669 btrfs_file_extent_encryption(leaf, fi) ||
6670 btrfs_file_extent_other_encoding(leaf, fi))
6671 goto out;
6672
46bfbb5c
CM
6673 backref_offset = btrfs_file_extent_offset(leaf, fi);
6674
7ee9e440
JB
6675 if (orig_start) {
6676 *orig_start = key.offset - backref_offset;
6677 *orig_block_len = btrfs_file_extent_disk_num_bytes(leaf, fi);
6678 *ram_bytes = btrfs_file_extent_ram_bytes(leaf, fi);
6679 }
eb384b55 6680
46bfbb5c
CM
6681 if (btrfs_extent_readonly(root, disk_bytenr))
6682 goto out;
7b2b7085
MX
6683
6684 num_bytes = min(offset + *len, extent_end) - offset;
6685 if (!nocow && found_type == BTRFS_FILE_EXTENT_PREALLOC) {
6686 u64 range_end;
6687
6688 range_end = round_up(offset + num_bytes, root->sectorsize) - 1;
6689 ret = test_range_bit(io_tree, offset, range_end,
6690 EXTENT_DELALLOC, 0, NULL);
6691 if (ret) {
6692 ret = -EAGAIN;
6693 goto out;
6694 }
6695 }
6696
1bda19eb 6697 btrfs_release_path(path);
46bfbb5c
CM
6698
6699 /*
6700 * look for other files referencing this extent, if we
6701 * find any we must cow
6702 */
00361589
JB
6703 trans = btrfs_join_transaction(root);
6704 if (IS_ERR(trans)) {
6705 ret = 0;
46bfbb5c 6706 goto out;
00361589
JB
6707 }
6708
6709 ret = btrfs_cross_ref_exist(trans, root, btrfs_ino(inode),
6710 key.offset - backref_offset, disk_bytenr);
6711 btrfs_end_transaction(trans, root);
6712 if (ret) {
6713 ret = 0;
6714 goto out;
6715 }
46bfbb5c
CM
6716
6717 /*
6718 * adjust disk_bytenr and num_bytes to cover just the bytes
6719 * in this extent we are about to write. If there
6720 * are any csums in that range we have to cow in order
6721 * to keep the csums correct
6722 */
6723 disk_bytenr += backref_offset;
6724 disk_bytenr += offset - key.offset;
46bfbb5c
CM
6725 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
6726 goto out;
6727 /*
6728 * all of the above have passed, it is safe to overwrite this extent
6729 * without cow
6730 */
eb384b55 6731 *len = num_bytes;
46bfbb5c
CM
6732 ret = 1;
6733out:
6734 btrfs_free_path(path);
6735 return ret;
6736}
6737
eb838e73
JB
6738static int lock_extent_direct(struct inode *inode, u64 lockstart, u64 lockend,
6739 struct extent_state **cached_state, int writing)
6740{
6741 struct btrfs_ordered_extent *ordered;
6742 int ret = 0;
6743
6744 while (1) {
6745 lock_extent_bits(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6746 0, cached_state);
6747 /*
6748 * We're concerned with the entire range that we're going to be
6749 * doing DIO to, so we need to make sure theres no ordered
6750 * extents in this range.
6751 */
6752 ordered = btrfs_lookup_ordered_range(inode, lockstart,
6753 lockend - lockstart + 1);
6754
6755 /*
6756 * We need to make sure there are no buffered pages in this
6757 * range either, we could have raced between the invalidate in
6758 * generic_file_direct_write and locking the extent. The
6759 * invalidate needs to happen so that reads after a write do not
6760 * get stale data.
6761 */
6762 if (!ordered && (!writing ||
6763 !test_range_bit(&BTRFS_I(inode)->io_tree,
6764 lockstart, lockend, EXTENT_UPTODATE, 0,
6765 *cached_state)))
6766 break;
6767
6768 unlock_extent_cached(&BTRFS_I(inode)->io_tree, lockstart, lockend,
6769 cached_state, GFP_NOFS);
6770
6771 if (ordered) {
6772 btrfs_start_ordered_extent(inode, ordered, 1);
6773 btrfs_put_ordered_extent(ordered);
6774 } else {
6775 /* Screw you mmap */
6776 ret = filemap_write_and_wait_range(inode->i_mapping,
6777 lockstart,
6778 lockend);
6779 if (ret)
6780 break;
6781
6782 /*
6783 * If we found a page that couldn't be invalidated just
6784 * fall back to buffered.
6785 */
6786 ret = invalidate_inode_pages2_range(inode->i_mapping,
6787 lockstart >> PAGE_CACHE_SHIFT,
6788 lockend >> PAGE_CACHE_SHIFT);
6789 if (ret)
6790 break;
6791 }
6792
6793 cond_resched();
6794 }
6795
6796 return ret;
6797}
6798
69ffb543
JB
6799static struct extent_map *create_pinned_em(struct inode *inode, u64 start,
6800 u64 len, u64 orig_start,
6801 u64 block_start, u64 block_len,
cc95bef6
JB
6802 u64 orig_block_len, u64 ram_bytes,
6803 int type)
69ffb543
JB
6804{
6805 struct extent_map_tree *em_tree;
6806 struct extent_map *em;
6807 struct btrfs_root *root = BTRFS_I(inode)->root;
6808 int ret;
6809
6810 em_tree = &BTRFS_I(inode)->extent_tree;
6811 em = alloc_extent_map();
6812 if (!em)
6813 return ERR_PTR(-ENOMEM);
6814
6815 em->start = start;
6816 em->orig_start = orig_start;
2ab28f32
JB
6817 em->mod_start = start;
6818 em->mod_len = len;
69ffb543
JB
6819 em->len = len;
6820 em->block_len = block_len;
6821 em->block_start = block_start;
6822 em->bdev = root->fs_info->fs_devices->latest_bdev;
b4939680 6823 em->orig_block_len = orig_block_len;
cc95bef6 6824 em->ram_bytes = ram_bytes;
70c8a91c 6825 em->generation = -1;
69ffb543
JB
6826 set_bit(EXTENT_FLAG_PINNED, &em->flags);
6827 if (type == BTRFS_ORDERED_PREALLOC)
b11e234d 6828 set_bit(EXTENT_FLAG_FILLING, &em->flags);
69ffb543
JB
6829
6830 do {
6831 btrfs_drop_extent_cache(inode, em->start,
6832 em->start + em->len - 1, 0);
6833 write_lock(&em_tree->lock);
09a2a8f9 6834 ret = add_extent_mapping(em_tree, em, 1);
69ffb543
JB
6835 write_unlock(&em_tree->lock);
6836 } while (ret == -EEXIST);
6837
6838 if (ret) {
6839 free_extent_map(em);
6840 return ERR_PTR(ret);
6841 }
6842
6843 return em;
6844}
6845
6846
4b46fce2
JB
6847static int btrfs_get_blocks_direct(struct inode *inode, sector_t iblock,
6848 struct buffer_head *bh_result, int create)
6849{
6850 struct extent_map *em;
6851 struct btrfs_root *root = BTRFS_I(inode)->root;
eb838e73 6852 struct extent_state *cached_state = NULL;
4b46fce2 6853 u64 start = iblock << inode->i_blkbits;
eb838e73 6854 u64 lockstart, lockend;
4b46fce2 6855 u64 len = bh_result->b_size;
eb838e73 6856 int unlock_bits = EXTENT_LOCKED;
0934856d 6857 int ret = 0;
eb838e73 6858
172a5049 6859 if (create)
eb838e73 6860 unlock_bits |= EXTENT_DELALLOC | EXTENT_DIRTY;
172a5049 6861 else
c329861d 6862 len = min_t(u64, len, root->sectorsize);
eb838e73 6863
c329861d
JB
6864 lockstart = start;
6865 lockend = start + len - 1;
6866
eb838e73
JB
6867 /*
6868 * If this errors out it's because we couldn't invalidate pagecache for
6869 * this range and we need to fallback to buffered.
6870 */
6871 if (lock_extent_direct(inode, lockstart, lockend, &cached_state, create))
6872 return -ENOTBLK;
6873
4b46fce2 6874 em = btrfs_get_extent(inode, NULL, 0, start, len, 0);
eb838e73
JB
6875 if (IS_ERR(em)) {
6876 ret = PTR_ERR(em);
6877 goto unlock_err;
6878 }
4b46fce2
JB
6879
6880 /*
6881 * Ok for INLINE and COMPRESSED extents we need to fallback on buffered
6882 * io. INLINE is special, and we could probably kludge it in here, but
6883 * it's still buffered so for safety lets just fall back to the generic
6884 * buffered path.
6885 *
6886 * For COMPRESSED we _have_ to read the entire extent in so we can
6887 * decompress it, so there will be buffering required no matter what we
6888 * do, so go ahead and fallback to buffered.
6889 *
6890 * We return -ENOTBLK because thats what makes DIO go ahead and go back
6891 * to buffered IO. Don't blame me, this is the price we pay for using
6892 * the generic code.
6893 */
6894 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags) ||
6895 em->block_start == EXTENT_MAP_INLINE) {
6896 free_extent_map(em);
eb838e73
JB
6897 ret = -ENOTBLK;
6898 goto unlock_err;
4b46fce2
JB
6899 }
6900
6901 /* Just a good old fashioned hole, return */
6902 if (!create && (em->block_start == EXTENT_MAP_HOLE ||
6903 test_bit(EXTENT_FLAG_PREALLOC, &em->flags))) {
6904 free_extent_map(em);
eb838e73 6905 goto unlock_err;
4b46fce2
JB
6906 }
6907
6908 /*
6909 * We don't allocate a new extent in the following cases
6910 *
6911 * 1) The inode is marked as NODATACOW. In this case we'll just use the
6912 * existing extent.
6913 * 2) The extent is marked as PREALLOC. We're good to go here and can
6914 * just use the extent.
6915 *
6916 */
46bfbb5c 6917 if (!create) {
eb838e73
JB
6918 len = min(len, em->len - (start - em->start));
6919 lockstart = start + len;
6920 goto unlock;
46bfbb5c 6921 }
4b46fce2
JB
6922
6923 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags) ||
6924 ((BTRFS_I(inode)->flags & BTRFS_INODE_NODATACOW) &&
6925 em->block_start != EXTENT_MAP_HOLE)) {
4b46fce2
JB
6926 int type;
6927 int ret;
eb384b55 6928 u64 block_start, orig_start, orig_block_len, ram_bytes;
4b46fce2
JB
6929
6930 if (test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6931 type = BTRFS_ORDERED_PREALLOC;
6932 else
6933 type = BTRFS_ORDERED_NOCOW;
46bfbb5c 6934 len = min(len, em->len - (start - em->start));
4b46fce2 6935 block_start = em->block_start + (start - em->start);
46bfbb5c 6936
00361589 6937 if (can_nocow_extent(inode, start, &len, &orig_start,
7ee9e440 6938 &orig_block_len, &ram_bytes) == 1) {
69ffb543
JB
6939 if (type == BTRFS_ORDERED_PREALLOC) {
6940 free_extent_map(em);
6941 em = create_pinned_em(inode, start, len,
6942 orig_start,
b4939680 6943 block_start, len,
cc95bef6
JB
6944 orig_block_len,
6945 ram_bytes, type);
00361589 6946 if (IS_ERR(em))
69ffb543 6947 goto unlock_err;
69ffb543
JB
6948 }
6949
46bfbb5c
CM
6950 ret = btrfs_add_ordered_extent_dio(inode, start,
6951 block_start, len, len, type);
46bfbb5c
CM
6952 if (ret) {
6953 free_extent_map(em);
eb838e73 6954 goto unlock_err;
46bfbb5c
CM
6955 }
6956 goto unlock;
4b46fce2 6957 }
4b46fce2 6958 }
00361589 6959
46bfbb5c
CM
6960 /*
6961 * this will cow the extent, reset the len in case we changed
6962 * it above
6963 */
6964 len = bh_result->b_size;
70c8a91c
JB
6965 free_extent_map(em);
6966 em = btrfs_new_extent_direct(inode, start, len);
eb838e73
JB
6967 if (IS_ERR(em)) {
6968 ret = PTR_ERR(em);
6969 goto unlock_err;
6970 }
46bfbb5c
CM
6971 len = min(len, em->len - (start - em->start));
6972unlock:
4b46fce2
JB
6973 bh_result->b_blocknr = (em->block_start + (start - em->start)) >>
6974 inode->i_blkbits;
46bfbb5c 6975 bh_result->b_size = len;
4b46fce2
JB
6976 bh_result->b_bdev = em->bdev;
6977 set_buffer_mapped(bh_result);
c3473e83
JB
6978 if (create) {
6979 if (!test_bit(EXTENT_FLAG_PREALLOC, &em->flags))
6980 set_buffer_new(bh_result);
6981
6982 /*
6983 * Need to update the i_size under the extent lock so buffered
6984 * readers will get the updated i_size when we unlock.
6985 */
6986 if (start + len > i_size_read(inode))
6987 i_size_write(inode, start + len);
0934856d 6988
172a5049
MX
6989 spin_lock(&BTRFS_I(inode)->lock);
6990 BTRFS_I(inode)->outstanding_extents++;
6991 spin_unlock(&BTRFS_I(inode)->lock);
6992
0934856d
MX
6993 ret = set_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
6994 lockstart + len - 1, EXTENT_DELALLOC, NULL,
6995 &cached_state, GFP_NOFS);
6996 BUG_ON(ret);
c3473e83 6997 }
4b46fce2 6998
eb838e73
JB
6999 /*
7000 * In the case of write we need to clear and unlock the entire range,
7001 * in the case of read we need to unlock only the end area that we
7002 * aren't using if there is any left over space.
7003 */
24c03fa5 7004 if (lockstart < lockend) {
0934856d
MX
7005 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart,
7006 lockend, unlock_bits, 1, 0,
7007 &cached_state, GFP_NOFS);
24c03fa5 7008 } else {
eb838e73 7009 free_extent_state(cached_state);
24c03fa5 7010 }
eb838e73 7011
4b46fce2
JB
7012 free_extent_map(em);
7013
7014 return 0;
eb838e73
JB
7015
7016unlock_err:
eb838e73
JB
7017 clear_extent_bit(&BTRFS_I(inode)->io_tree, lockstart, lockend,
7018 unlock_bits, 1, 0, &cached_state, GFP_NOFS);
7019 return ret;
4b46fce2
JB
7020}
7021
4b46fce2
JB
7022static void btrfs_endio_direct_read(struct bio *bio, int err)
7023{
e65e1535 7024 struct btrfs_dio_private *dip = bio->bi_private;
2c30c71b 7025 struct bio_vec *bvec;
4b46fce2
JB
7026 struct inode *inode = dip->inode;
7027 struct btrfs_root *root = BTRFS_I(inode)->root;
9be3395b 7028 struct bio *dio_bio;
facc8a22 7029 u32 *csums = (u32 *)dip->csum;
4b46fce2 7030 u64 start;
2c30c71b 7031 int i;
4b46fce2
JB
7032
7033 start = dip->logical_offset;
2c30c71b 7034 bio_for_each_segment_all(bvec, bio, i) {
4b46fce2
JB
7035 if (!(BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM)) {
7036 struct page *page = bvec->bv_page;
7037 char *kaddr;
7038 u32 csum = ~(u32)0;
7039 unsigned long flags;
7040
7041 local_irq_save(flags);
7ac687d9 7042 kaddr = kmap_atomic(page);
b0496686 7043 csum = btrfs_csum_data(kaddr + bvec->bv_offset,
4b46fce2
JB
7044 csum, bvec->bv_len);
7045 btrfs_csum_final(csum, (char *)&csum);
7ac687d9 7046 kunmap_atomic(kaddr);
4b46fce2
JB
7047 local_irq_restore(flags);
7048
7049 flush_dcache_page(bvec->bv_page);
2c30c71b 7050 if (csum != csums[i]) {
facc8a22 7051 btrfs_err(root->fs_info, "csum failed ino %llu off %llu csum %u expected csum %u",
c1c9ff7c 7052 btrfs_ino(inode), start, csum,
2c30c71b 7053 csums[i]);
4b46fce2
JB
7054 err = -EIO;
7055 }
7056 }
7057
7058 start += bvec->bv_len;
2c30c71b 7059 }
4b46fce2
JB
7060
7061 unlock_extent(&BTRFS_I(inode)->io_tree, dip->logical_offset,
d0082371 7062 dip->logical_offset + dip->bytes - 1);
9be3395b 7063 dio_bio = dip->dio_bio;
4b46fce2 7064
4b46fce2 7065 kfree(dip);
c0da7aa1
JB
7066
7067 /* If we had a csum failure make sure to clear the uptodate flag */
7068 if (err)
9be3395b
CM
7069 clear_bit(BIO_UPTODATE, &dio_bio->bi_flags);
7070 dio_end_io(dio_bio, err);
7071 bio_put(bio);
4b46fce2
JB
7072}
7073
7074static void btrfs_endio_direct_write(struct bio *bio, int err)
7075{
7076 struct btrfs_dio_private *dip = bio->bi_private;
7077 struct inode *inode = dip->inode;
7078 struct btrfs_root *root = BTRFS_I(inode)->root;
4b46fce2 7079 struct btrfs_ordered_extent *ordered = NULL;
163cf09c
CM
7080 u64 ordered_offset = dip->logical_offset;
7081 u64 ordered_bytes = dip->bytes;
9be3395b 7082 struct bio *dio_bio;
4b46fce2
JB
7083 int ret;
7084
7085 if (err)
7086 goto out_done;
163cf09c
CM
7087again:
7088 ret = btrfs_dec_test_first_ordered_pending(inode, &ordered,
7089 &ordered_offset,
5fd02043 7090 ordered_bytes, !err);
4b46fce2 7091 if (!ret)
163cf09c 7092 goto out_test;
4b46fce2 7093
fccb5d86
QW
7094 btrfs_init_work(&ordered->work, finish_ordered_fn, NULL, NULL);
7095 btrfs_queue_work(root->fs_info->endio_write_workers,
7096 &ordered->work);
163cf09c
CM
7097out_test:
7098 /*
7099 * our bio might span multiple ordered extents. If we haven't
7100 * completed the accounting for the whole dio, go back and try again
7101 */
7102 if (ordered_offset < dip->logical_offset + dip->bytes) {
7103 ordered_bytes = dip->logical_offset + dip->bytes -
7104 ordered_offset;
5fd02043 7105 ordered = NULL;
163cf09c
CM
7106 goto again;
7107 }
4b46fce2 7108out_done:
9be3395b 7109 dio_bio = dip->dio_bio;
4b46fce2 7110
4b46fce2 7111 kfree(dip);
c0da7aa1
JB
7112
7113 /* If we had an error make sure to clear the uptodate flag */
7114 if (err)
9be3395b
CM
7115 clear_bit(BIO_UPTODATE, &dio_bio->bi_flags);
7116 dio_end_io(dio_bio, err);
7117 bio_put(bio);
4b46fce2
JB
7118}
7119
eaf25d93
CM
7120static int __btrfs_submit_bio_start_direct_io(struct inode *inode, int rw,
7121 struct bio *bio, int mirror_num,
7122 unsigned long bio_flags, u64 offset)
7123{
7124 int ret;
7125 struct btrfs_root *root = BTRFS_I(inode)->root;
7126 ret = btrfs_csum_one_bio(root, inode, bio, offset, 1);
79787eaa 7127 BUG_ON(ret); /* -ENOMEM */
eaf25d93
CM
7128 return 0;
7129}
7130
e65e1535
MX
7131static void btrfs_end_dio_bio(struct bio *bio, int err)
7132{
7133 struct btrfs_dio_private *dip = bio->bi_private;
7134
7135 if (err) {
efe120a0
FH
7136 btrfs_err(BTRFS_I(dip->inode)->root->fs_info,
7137 "direct IO failed ino %llu rw %lu sector %#Lx len %u err no %d",
c1c9ff7c 7138 btrfs_ino(dip->inode), bio->bi_rw,
4f024f37
KO
7139 (unsigned long long)bio->bi_iter.bi_sector,
7140 bio->bi_iter.bi_size, err);
e65e1535
MX
7141 dip->errors = 1;
7142
7143 /*
7144 * before atomic variable goto zero, we must make sure
7145 * dip->errors is perceived to be set.
7146 */
7147 smp_mb__before_atomic_dec();
7148 }
7149
7150 /* if there are more bios still pending for this dio, just exit */
7151 if (!atomic_dec_and_test(&dip->pending_bios))
7152 goto out;
7153
9be3395b 7154 if (dip->errors) {
e65e1535 7155 bio_io_error(dip->orig_bio);
9be3395b
CM
7156 } else {
7157 set_bit(BIO_UPTODATE, &dip->dio_bio->bi_flags);
e65e1535
MX
7158 bio_endio(dip->orig_bio, 0);
7159 }
7160out:
7161 bio_put(bio);
7162}
7163
7164static struct bio *btrfs_dio_bio_alloc(struct block_device *bdev,
7165 u64 first_sector, gfp_t gfp_flags)
7166{
7167 int nr_vecs = bio_get_nr_vecs(bdev);
7168 return btrfs_bio_alloc(bdev, first_sector, nr_vecs, gfp_flags);
7169}
7170
7171static inline int __btrfs_submit_dio_bio(struct bio *bio, struct inode *inode,
7172 int rw, u64 file_offset, int skip_sum,
c329861d 7173 int async_submit)
e65e1535 7174{
facc8a22 7175 struct btrfs_dio_private *dip = bio->bi_private;
e65e1535
MX
7176 int write = rw & REQ_WRITE;
7177 struct btrfs_root *root = BTRFS_I(inode)->root;
7178 int ret;
7179
b812ce28
JB
7180 if (async_submit)
7181 async_submit = !atomic_read(&BTRFS_I(inode)->sync_writers);
7182
e65e1535 7183 bio_get(bio);
5fd02043
JB
7184
7185 if (!write) {
7186 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
7187 if (ret)
7188 goto err;
7189 }
e65e1535 7190
1ae39938
JB
7191 if (skip_sum)
7192 goto map;
7193
7194 if (write && async_submit) {
e65e1535
MX
7195 ret = btrfs_wq_submit_bio(root->fs_info,
7196 inode, rw, bio, 0, 0,
7197 file_offset,
7198 __btrfs_submit_bio_start_direct_io,
7199 __btrfs_submit_bio_done);
7200 goto err;
1ae39938
JB
7201 } else if (write) {
7202 /*
7203 * If we aren't doing async submit, calculate the csum of the
7204 * bio now.
7205 */
7206 ret = btrfs_csum_one_bio(root, inode, bio, file_offset, 1);
7207 if (ret)
7208 goto err;
c2db1073 7209 } else if (!skip_sum) {
facc8a22
MX
7210 ret = btrfs_lookup_bio_sums_dio(root, inode, dip, bio,
7211 file_offset);
c2db1073
TI
7212 if (ret)
7213 goto err;
7214 }
e65e1535 7215
1ae39938
JB
7216map:
7217 ret = btrfs_map_bio(root, rw, bio, 0, async_submit);
e65e1535
MX
7218err:
7219 bio_put(bio);
7220 return ret;
7221}
7222
7223static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
7224 int skip_sum)
7225{
7226 struct inode *inode = dip->inode;
7227 struct btrfs_root *root = BTRFS_I(inode)->root;
e65e1535
MX
7228 struct bio *bio;
7229 struct bio *orig_bio = dip->orig_bio;
7230 struct bio_vec *bvec = orig_bio->bi_io_vec;
4f024f37 7231 u64 start_sector = orig_bio->bi_iter.bi_sector;
e65e1535
MX
7232 u64 file_offset = dip->logical_offset;
7233 u64 submit_len = 0;
7234 u64 map_length;
7235 int nr_pages = 0;
e65e1535 7236 int ret = 0;
1ae39938 7237 int async_submit = 0;
e65e1535 7238
4f024f37 7239 map_length = orig_bio->bi_iter.bi_size;
53b381b3 7240 ret = btrfs_map_block(root->fs_info, rw, start_sector << 9,
e65e1535
MX
7241 &map_length, NULL, 0);
7242 if (ret) {
64728bbb 7243 bio_put(orig_bio);
e65e1535
MX
7244 return -EIO;
7245 }
facc8a22 7246
4f024f37 7247 if (map_length >= orig_bio->bi_iter.bi_size) {
02f57c7a
JB
7248 bio = orig_bio;
7249 goto submit;
7250 }
7251
53b381b3
DW
7252 /* async crcs make it difficult to collect full stripe writes. */
7253 if (btrfs_get_alloc_profile(root, 1) &
7254 (BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6))
7255 async_submit = 0;
7256 else
7257 async_submit = 1;
7258
02f57c7a
JB
7259 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev, start_sector, GFP_NOFS);
7260 if (!bio)
7261 return -ENOMEM;
7262 bio->bi_private = dip;
7263 bio->bi_end_io = btrfs_end_dio_bio;
7264 atomic_inc(&dip->pending_bios);
7265
e65e1535
MX
7266 while (bvec <= (orig_bio->bi_io_vec + orig_bio->bi_vcnt - 1)) {
7267 if (unlikely(map_length < submit_len + bvec->bv_len ||
7268 bio_add_page(bio, bvec->bv_page, bvec->bv_len,
7269 bvec->bv_offset) < bvec->bv_len)) {
7270 /*
7271 * inc the count before we submit the bio so
7272 * we know the end IO handler won't happen before
7273 * we inc the count. Otherwise, the dip might get freed
7274 * before we're done setting it up
7275 */
7276 atomic_inc(&dip->pending_bios);
7277 ret = __btrfs_submit_dio_bio(bio, inode, rw,
7278 file_offset, skip_sum,
c329861d 7279 async_submit);
e65e1535
MX
7280 if (ret) {
7281 bio_put(bio);
7282 atomic_dec(&dip->pending_bios);
7283 goto out_err;
7284 }
7285
e65e1535
MX
7286 start_sector += submit_len >> 9;
7287 file_offset += submit_len;
7288
7289 submit_len = 0;
7290 nr_pages = 0;
7291
7292 bio = btrfs_dio_bio_alloc(orig_bio->bi_bdev,
7293 start_sector, GFP_NOFS);
7294 if (!bio)
7295 goto out_err;
7296 bio->bi_private = dip;
7297 bio->bi_end_io = btrfs_end_dio_bio;
7298
4f024f37 7299 map_length = orig_bio->bi_iter.bi_size;
53b381b3 7300 ret = btrfs_map_block(root->fs_info, rw,
3ec706c8 7301 start_sector << 9,
e65e1535
MX
7302 &map_length, NULL, 0);
7303 if (ret) {
7304 bio_put(bio);
7305 goto out_err;
7306 }
7307 } else {
7308 submit_len += bvec->bv_len;
67871254 7309 nr_pages++;
e65e1535
MX
7310 bvec++;
7311 }
7312 }
7313
02f57c7a 7314submit:
e65e1535 7315 ret = __btrfs_submit_dio_bio(bio, inode, rw, file_offset, skip_sum,
c329861d 7316 async_submit);
e65e1535
MX
7317 if (!ret)
7318 return 0;
7319
7320 bio_put(bio);
7321out_err:
7322 dip->errors = 1;
7323 /*
7324 * before atomic variable goto zero, we must
7325 * make sure dip->errors is perceived to be set.
7326 */
7327 smp_mb__before_atomic_dec();
7328 if (atomic_dec_and_test(&dip->pending_bios))
7329 bio_io_error(dip->orig_bio);
7330
7331 /* bio_end_io() will handle error, so we needn't return it */
7332 return 0;
7333}
7334
9be3395b
CM
7335static void btrfs_submit_direct(int rw, struct bio *dio_bio,
7336 struct inode *inode, loff_t file_offset)
4b46fce2
JB
7337{
7338 struct btrfs_root *root = BTRFS_I(inode)->root;
7339 struct btrfs_dio_private *dip;
9be3395b 7340 struct bio *io_bio;
4b46fce2 7341 int skip_sum;
facc8a22 7342 int sum_len;
7b6d91da 7343 int write = rw & REQ_WRITE;
4b46fce2 7344 int ret = 0;
facc8a22 7345 u16 csum_size;
4b46fce2
JB
7346
7347 skip_sum = BTRFS_I(inode)->flags & BTRFS_INODE_NODATASUM;
7348
9be3395b 7349 io_bio = btrfs_bio_clone(dio_bio, GFP_NOFS);
9be3395b
CM
7350 if (!io_bio) {
7351 ret = -ENOMEM;
7352 goto free_ordered;
7353 }
7354
facc8a22
MX
7355 if (!skip_sum && !write) {
7356 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
4f024f37
KO
7357 sum_len = dio_bio->bi_iter.bi_size >>
7358 inode->i_sb->s_blocksize_bits;
facc8a22
MX
7359 sum_len *= csum_size;
7360 } else {
7361 sum_len = 0;
7362 }
7363
7364 dip = kmalloc(sizeof(*dip) + sum_len, GFP_NOFS);
4b46fce2
JB
7365 if (!dip) {
7366 ret = -ENOMEM;
9be3395b 7367 goto free_io_bio;
4b46fce2 7368 }
4b46fce2 7369
9be3395b 7370 dip->private = dio_bio->bi_private;
4b46fce2
JB
7371 dip->inode = inode;
7372 dip->logical_offset = file_offset;
4f024f37
KO
7373 dip->bytes = dio_bio->bi_iter.bi_size;
7374 dip->disk_bytenr = (u64)dio_bio->bi_iter.bi_sector << 9;
9be3395b 7375 io_bio->bi_private = dip;
e65e1535 7376 dip->errors = 0;
9be3395b
CM
7377 dip->orig_bio = io_bio;
7378 dip->dio_bio = dio_bio;
e65e1535 7379 atomic_set(&dip->pending_bios, 0);
4b46fce2
JB
7380
7381 if (write)
9be3395b 7382 io_bio->bi_end_io = btrfs_endio_direct_write;
4b46fce2 7383 else
9be3395b 7384 io_bio->bi_end_io = btrfs_endio_direct_read;
4b46fce2 7385
e65e1535
MX
7386 ret = btrfs_submit_direct_hook(rw, dip, skip_sum);
7387 if (!ret)
eaf25d93 7388 return;
9be3395b
CM
7389
7390free_io_bio:
7391 bio_put(io_bio);
7392
4b46fce2
JB
7393free_ordered:
7394 /*
7395 * If this is a write, we need to clean up the reserved space and kill
7396 * the ordered extent.
7397 */
7398 if (write) {
7399 struct btrfs_ordered_extent *ordered;
955256f2 7400 ordered = btrfs_lookup_ordered_extent(inode, file_offset);
4b46fce2
JB
7401 if (!test_bit(BTRFS_ORDERED_PREALLOC, &ordered->flags) &&
7402 !test_bit(BTRFS_ORDERED_NOCOW, &ordered->flags))
7403 btrfs_free_reserved_extent(root, ordered->start,
7404 ordered->disk_len);
7405 btrfs_put_ordered_extent(ordered);
7406 btrfs_put_ordered_extent(ordered);
7407 }
9be3395b 7408 bio_endio(dio_bio, ret);
4b46fce2
JB
7409}
7410
5a5f79b5
CM
7411static ssize_t check_direct_IO(struct btrfs_root *root, int rw, struct kiocb *iocb,
7412 const struct iovec *iov, loff_t offset,
7413 unsigned long nr_segs)
7414{
7415 int seg;
a1b75f7d 7416 int i;
5a5f79b5
CM
7417 size_t size;
7418 unsigned long addr;
7419 unsigned blocksize_mask = root->sectorsize - 1;
7420 ssize_t retval = -EINVAL;
7421 loff_t end = offset;
7422
7423 if (offset & blocksize_mask)
7424 goto out;
7425
7426 /* Check the memory alignment. Blocks cannot straddle pages */
7427 for (seg = 0; seg < nr_segs; seg++) {
7428 addr = (unsigned long)iov[seg].iov_base;
7429 size = iov[seg].iov_len;
7430 end += size;
a1b75f7d 7431 if ((addr & blocksize_mask) || (size & blocksize_mask))
5a5f79b5 7432 goto out;
a1b75f7d
JB
7433
7434 /* If this is a write we don't need to check anymore */
7435 if (rw & WRITE)
7436 continue;
7437
7438 /*
7439 * Check to make sure we don't have duplicate iov_base's in this
7440 * iovec, if so return EINVAL, otherwise we'll get csum errors
7441 * when reading back.
7442 */
7443 for (i = seg + 1; i < nr_segs; i++) {
7444 if (iov[seg].iov_base == iov[i].iov_base)
7445 goto out;
7446 }
5a5f79b5
CM
7447 }
7448 retval = 0;
7449out:
7450 return retval;
7451}
eb838e73 7452
16432985
CM
7453static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
7454 const struct iovec *iov, loff_t offset,
7455 unsigned long nr_segs)
7456{
4b46fce2
JB
7457 struct file *file = iocb->ki_filp;
7458 struct inode *inode = file->f_mapping->host;
0934856d 7459 size_t count = 0;
2e60a51e 7460 int flags = 0;
38851cc1
MX
7461 bool wakeup = true;
7462 bool relock = false;
0934856d 7463 ssize_t ret;
4b46fce2 7464
5a5f79b5 7465 if (check_direct_IO(BTRFS_I(inode)->root, rw, iocb, iov,
eb838e73 7466 offset, nr_segs))
5a5f79b5 7467 return 0;
3f7c579c 7468
38851cc1
MX
7469 atomic_inc(&inode->i_dio_count);
7470 smp_mb__after_atomic_inc();
7471
0e267c44 7472 /*
41bd9ca4
MX
7473 * The generic stuff only does filemap_write_and_wait_range, which
7474 * isn't enough if we've written compressed pages to this area, so
7475 * we need to flush the dirty pages again to make absolutely sure
7476 * that any outstanding dirty pages are on disk.
0e267c44
JB
7477 */
7478 count = iov_length(iov, nr_segs);
41bd9ca4
MX
7479 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
7480 &BTRFS_I(inode)->runtime_flags))
7481 filemap_fdatawrite_range(inode->i_mapping, offset, count);
0e267c44 7482
0934856d 7483 if (rw & WRITE) {
38851cc1
MX
7484 /*
7485 * If the write DIO is beyond the EOF, we need update
7486 * the isize, but it is protected by i_mutex. So we can
7487 * not unlock the i_mutex at this case.
7488 */
7489 if (offset + count <= inode->i_size) {
7490 mutex_unlock(&inode->i_mutex);
7491 relock = true;
7492 }
0934856d
MX
7493 ret = btrfs_delalloc_reserve_space(inode, count);
7494 if (ret)
38851cc1
MX
7495 goto out;
7496 } else if (unlikely(test_bit(BTRFS_INODE_READDIO_NEED_LOCK,
7497 &BTRFS_I(inode)->runtime_flags))) {
7498 inode_dio_done(inode);
7499 flags = DIO_LOCKING | DIO_SKIP_HOLES;
7500 wakeup = false;
0934856d
MX
7501 }
7502
7503 ret = __blockdev_direct_IO(rw, iocb, inode,
7504 BTRFS_I(inode)->root->fs_info->fs_devices->latest_bdev,
7505 iov, offset, nr_segs, btrfs_get_blocks_direct, NULL,
2e60a51e 7506 btrfs_submit_direct, flags);
0934856d
MX
7507 if (rw & WRITE) {
7508 if (ret < 0 && ret != -EIOCBQUEUED)
7509 btrfs_delalloc_release_space(inode, count);
172a5049 7510 else if (ret >= 0 && (size_t)ret < count)
0934856d
MX
7511 btrfs_delalloc_release_space(inode,
7512 count - (size_t)ret);
172a5049
MX
7513 else
7514 btrfs_delalloc_release_metadata(inode, 0);
0934856d 7515 }
38851cc1 7516out:
2e60a51e
MX
7517 if (wakeup)
7518 inode_dio_done(inode);
38851cc1
MX
7519 if (relock)
7520 mutex_lock(&inode->i_mutex);
0934856d
MX
7521
7522 return ret;
16432985
CM
7523}
7524
05dadc09
TI
7525#define BTRFS_FIEMAP_FLAGS (FIEMAP_FLAG_SYNC)
7526
1506fcc8
YS
7527static int btrfs_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
7528 __u64 start, __u64 len)
7529{
05dadc09
TI
7530 int ret;
7531
7532 ret = fiemap_check_flags(fieinfo, BTRFS_FIEMAP_FLAGS);
7533 if (ret)
7534 return ret;
7535
ec29ed5b 7536 return extent_fiemap(inode, fieinfo, start, len, btrfs_get_extent_fiemap);
1506fcc8
YS
7537}
7538
a52d9a80 7539int btrfs_readpage(struct file *file, struct page *page)
9ebefb18 7540{
d1310b2e
CM
7541 struct extent_io_tree *tree;
7542 tree = &BTRFS_I(page->mapping->host)->io_tree;
8ddc7d9c 7543 return extent_read_full_page(tree, page, btrfs_get_extent, 0);
9ebefb18 7544}
1832a6d5 7545
a52d9a80 7546static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
39279cc3 7547{
d1310b2e 7548 struct extent_io_tree *tree;
b888db2b
CM
7549
7550
7551 if (current->flags & PF_MEMALLOC) {
7552 redirty_page_for_writepage(wbc, page);
7553 unlock_page(page);
7554 return 0;
7555 }
d1310b2e 7556 tree = &BTRFS_I(page->mapping->host)->io_tree;
a52d9a80 7557 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
9ebefb18
CM
7558}
7559
48a3b636
ES
7560static int btrfs_writepages(struct address_space *mapping,
7561 struct writeback_control *wbc)
b293f02e 7562{
d1310b2e 7563 struct extent_io_tree *tree;
771ed689 7564
d1310b2e 7565 tree = &BTRFS_I(mapping->host)->io_tree;
b293f02e
CM
7566 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
7567}
7568
3ab2fb5a
CM
7569static int
7570btrfs_readpages(struct file *file, struct address_space *mapping,
7571 struct list_head *pages, unsigned nr_pages)
7572{
d1310b2e
CM
7573 struct extent_io_tree *tree;
7574 tree = &BTRFS_I(mapping->host)->io_tree;
3ab2fb5a
CM
7575 return extent_readpages(tree, mapping, pages, nr_pages,
7576 btrfs_get_extent);
7577}
e6dcd2dc 7578static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
9ebefb18 7579{
d1310b2e
CM
7580 struct extent_io_tree *tree;
7581 struct extent_map_tree *map;
a52d9a80 7582 int ret;
8c2383c3 7583
d1310b2e
CM
7584 tree = &BTRFS_I(page->mapping->host)->io_tree;
7585 map = &BTRFS_I(page->mapping->host)->extent_tree;
70dec807 7586 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
a52d9a80
CM
7587 if (ret == 1) {
7588 ClearPagePrivate(page);
7589 set_page_private(page, 0);
7590 page_cache_release(page);
39279cc3 7591 }
a52d9a80 7592 return ret;
39279cc3
CM
7593}
7594
e6dcd2dc
CM
7595static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
7596{
98509cfc
CM
7597 if (PageWriteback(page) || PageDirty(page))
7598 return 0;
b335b003 7599 return __btrfs_releasepage(page, gfp_flags & GFP_NOFS);
e6dcd2dc
CM
7600}
7601
d47992f8
LC
7602static void btrfs_invalidatepage(struct page *page, unsigned int offset,
7603 unsigned int length)
39279cc3 7604{
5fd02043 7605 struct inode *inode = page->mapping->host;
d1310b2e 7606 struct extent_io_tree *tree;
e6dcd2dc 7607 struct btrfs_ordered_extent *ordered;
2ac55d41 7608 struct extent_state *cached_state = NULL;
e6dcd2dc
CM
7609 u64 page_start = page_offset(page);
7610 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
131e404a 7611 int inode_evicting = inode->i_state & I_FREEING;
39279cc3 7612
8b62b72b
CM
7613 /*
7614 * we have the page locked, so new writeback can't start,
7615 * and the dirty bit won't be cleared while we are here.
7616 *
7617 * Wait for IO on this page so that we can safely clear
7618 * the PagePrivate2 bit and do ordered accounting
7619 */
e6dcd2dc 7620 wait_on_page_writeback(page);
8b62b72b 7621
5fd02043 7622 tree = &BTRFS_I(inode)->io_tree;
e6dcd2dc
CM
7623 if (offset) {
7624 btrfs_releasepage(page, GFP_NOFS);
7625 return;
7626 }
131e404a
FDBM
7627
7628 if (!inode_evicting)
7629 lock_extent_bits(tree, page_start, page_end, 0, &cached_state);
7630 ordered = btrfs_lookup_ordered_extent(inode, page_start);
e6dcd2dc 7631 if (ordered) {
eb84ae03
CM
7632 /*
7633 * IO on this page will never be started, so we need
7634 * to account for any ordered extents now
7635 */
131e404a
FDBM
7636 if (!inode_evicting)
7637 clear_extent_bit(tree, page_start, page_end,
7638 EXTENT_DIRTY | EXTENT_DELALLOC |
7639 EXTENT_LOCKED | EXTENT_DO_ACCOUNTING |
7640 EXTENT_DEFRAG, 1, 0, &cached_state,
7641 GFP_NOFS);
8b62b72b
CM
7642 /*
7643 * whoever cleared the private bit is responsible
7644 * for the finish_ordered_io
7645 */
77cef2ec
JB
7646 if (TestClearPagePrivate2(page)) {
7647 struct btrfs_ordered_inode_tree *tree;
7648 u64 new_len;
7649
7650 tree = &BTRFS_I(inode)->ordered_tree;
7651
7652 spin_lock_irq(&tree->lock);
7653 set_bit(BTRFS_ORDERED_TRUNCATED, &ordered->flags);
7654 new_len = page_start - ordered->file_offset;
7655 if (new_len < ordered->truncated_len)
7656 ordered->truncated_len = new_len;
7657 spin_unlock_irq(&tree->lock);
7658
7659 if (btrfs_dec_test_ordered_pending(inode, &ordered,
7660 page_start,
7661 PAGE_CACHE_SIZE, 1))
7662 btrfs_finish_ordered_io(ordered);
8b62b72b 7663 }
e6dcd2dc 7664 btrfs_put_ordered_extent(ordered);
131e404a
FDBM
7665 if (!inode_evicting) {
7666 cached_state = NULL;
7667 lock_extent_bits(tree, page_start, page_end, 0,
7668 &cached_state);
7669 }
7670 }
7671
7672 if (!inode_evicting) {
7673 clear_extent_bit(tree, page_start, page_end,
7674 EXTENT_LOCKED | EXTENT_DIRTY |
7675 EXTENT_DELALLOC | EXTENT_DO_ACCOUNTING |
7676 EXTENT_DEFRAG, 1, 1,
7677 &cached_state, GFP_NOFS);
7678
7679 __btrfs_releasepage(page, GFP_NOFS);
e6dcd2dc 7680 }
e6dcd2dc 7681
4a096752 7682 ClearPageChecked(page);
9ad6b7bc 7683 if (PagePrivate(page)) {
9ad6b7bc
CM
7684 ClearPagePrivate(page);
7685 set_page_private(page, 0);
7686 page_cache_release(page);
7687 }
39279cc3
CM
7688}
7689
9ebefb18
CM
7690/*
7691 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
7692 * called from a page fault handler when a page is first dirtied. Hence we must
7693 * be careful to check for EOF conditions here. We set the page up correctly
7694 * for a written page which means we get ENOSPC checking when writing into
7695 * holes and correct delalloc and unwritten extent mapping on filesystems that
7696 * support these features.
7697 *
7698 * We are not allowed to take the i_mutex here so we have to play games to
7699 * protect against truncate races as the page could now be beyond EOF. Because
7700 * vmtruncate() writes the inode size before removing pages, once we have the
7701 * page lock we can determine safely if the page is beyond EOF. If it is not
7702 * beyond EOF, then the page is guaranteed safe against truncation until we
7703 * unlock the page.
7704 */
c2ec175c 7705int btrfs_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
9ebefb18 7706{
c2ec175c 7707 struct page *page = vmf->page;
496ad9aa 7708 struct inode *inode = file_inode(vma->vm_file);
1832a6d5 7709 struct btrfs_root *root = BTRFS_I(inode)->root;
e6dcd2dc
CM
7710 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
7711 struct btrfs_ordered_extent *ordered;
2ac55d41 7712 struct extent_state *cached_state = NULL;
e6dcd2dc
CM
7713 char *kaddr;
7714 unsigned long zero_start;
9ebefb18 7715 loff_t size;
1832a6d5 7716 int ret;
9998eb70 7717 int reserved = 0;
a52d9a80 7718 u64 page_start;
e6dcd2dc 7719 u64 page_end;
9ebefb18 7720
b2b5ef5c 7721 sb_start_pagefault(inode->i_sb);
0ca1f7ce 7722 ret = btrfs_delalloc_reserve_space(inode, PAGE_CACHE_SIZE);
9998eb70 7723 if (!ret) {
e41f941a 7724 ret = file_update_time(vma->vm_file);
9998eb70
CM
7725 reserved = 1;
7726 }
56a76f82
NP
7727 if (ret) {
7728 if (ret == -ENOMEM)
7729 ret = VM_FAULT_OOM;
7730 else /* -ENOSPC, -EIO, etc */
7731 ret = VM_FAULT_SIGBUS;
9998eb70
CM
7732 if (reserved)
7733 goto out;
7734 goto out_noreserve;
56a76f82 7735 }
1832a6d5 7736
56a76f82 7737 ret = VM_FAULT_NOPAGE; /* make the VM retry the fault */
e6dcd2dc 7738again:
9ebefb18 7739 lock_page(page);
9ebefb18 7740 size = i_size_read(inode);
e6dcd2dc
CM
7741 page_start = page_offset(page);
7742 page_end = page_start + PAGE_CACHE_SIZE - 1;
a52d9a80 7743
9ebefb18 7744 if ((page->mapping != inode->i_mapping) ||
e6dcd2dc 7745 (page_start >= size)) {
9ebefb18
CM
7746 /* page got truncated out from underneath us */
7747 goto out_unlock;
7748 }
e6dcd2dc
CM
7749 wait_on_page_writeback(page);
7750
d0082371 7751 lock_extent_bits(io_tree, page_start, page_end, 0, &cached_state);
e6dcd2dc
CM
7752 set_page_extent_mapped(page);
7753
eb84ae03
CM
7754 /*
7755 * we can't set the delalloc bits if there are pending ordered
7756 * extents. Drop our locks and wait for them to finish
7757 */
e6dcd2dc
CM
7758 ordered = btrfs_lookup_ordered_extent(inode, page_start);
7759 if (ordered) {
2ac55d41
JB
7760 unlock_extent_cached(io_tree, page_start, page_end,
7761 &cached_state, GFP_NOFS);
e6dcd2dc 7762 unlock_page(page);
eb84ae03 7763 btrfs_start_ordered_extent(inode, ordered, 1);
e6dcd2dc
CM
7764 btrfs_put_ordered_extent(ordered);
7765 goto again;
7766 }
7767
fbf19087
JB
7768 /*
7769 * XXX - page_mkwrite gets called every time the page is dirtied, even
7770 * if it was already dirty, so for space accounting reasons we need to
7771 * clear any delalloc bits for the range we are fixing to save. There
7772 * is probably a better way to do this, but for now keep consistent with
7773 * prepare_pages in the normal write path.
7774 */
2ac55d41 7775 clear_extent_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
9e8a4a8b
LB
7776 EXTENT_DIRTY | EXTENT_DELALLOC |
7777 EXTENT_DO_ACCOUNTING | EXTENT_DEFRAG,
2ac55d41 7778 0, 0, &cached_state, GFP_NOFS);
fbf19087 7779
2ac55d41
JB
7780 ret = btrfs_set_extent_delalloc(inode, page_start, page_end,
7781 &cached_state);
9ed74f2d 7782 if (ret) {
2ac55d41
JB
7783 unlock_extent_cached(io_tree, page_start, page_end,
7784 &cached_state, GFP_NOFS);
9ed74f2d
JB
7785 ret = VM_FAULT_SIGBUS;
7786 goto out_unlock;
7787 }
e6dcd2dc 7788 ret = 0;
9ebefb18
CM
7789
7790 /* page is wholly or partially inside EOF */
a52d9a80 7791 if (page_start + PAGE_CACHE_SIZE > size)
e6dcd2dc 7792 zero_start = size & ~PAGE_CACHE_MASK;
9ebefb18 7793 else
e6dcd2dc 7794 zero_start = PAGE_CACHE_SIZE;
9ebefb18 7795
e6dcd2dc
CM
7796 if (zero_start != PAGE_CACHE_SIZE) {
7797 kaddr = kmap(page);
7798 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
7799 flush_dcache_page(page);
7800 kunmap(page);
7801 }
247e743c 7802 ClearPageChecked(page);
e6dcd2dc 7803 set_page_dirty(page);
50a9b214 7804 SetPageUptodate(page);
5a3f23d5 7805
257c62e1
CM
7806 BTRFS_I(inode)->last_trans = root->fs_info->generation;
7807 BTRFS_I(inode)->last_sub_trans = BTRFS_I(inode)->root->log_transid;
46d8bc34 7808 BTRFS_I(inode)->last_log_commit = BTRFS_I(inode)->root->last_log_commit;
257c62e1 7809
2ac55d41 7810 unlock_extent_cached(io_tree, page_start, page_end, &cached_state, GFP_NOFS);
9ebefb18
CM
7811
7812out_unlock:
b2b5ef5c
JK
7813 if (!ret) {
7814 sb_end_pagefault(inode->i_sb);
50a9b214 7815 return VM_FAULT_LOCKED;
b2b5ef5c 7816 }
9ebefb18 7817 unlock_page(page);
1832a6d5 7818out:
ec39e180 7819 btrfs_delalloc_release_space(inode, PAGE_CACHE_SIZE);
9998eb70 7820out_noreserve:
b2b5ef5c 7821 sb_end_pagefault(inode->i_sb);
9ebefb18
CM
7822 return ret;
7823}
7824
a41ad394 7825static int btrfs_truncate(struct inode *inode)
39279cc3
CM
7826{
7827 struct btrfs_root *root = BTRFS_I(inode)->root;
fcb80c2a 7828 struct btrfs_block_rsv *rsv;
a71754fc 7829 int ret = 0;
3893e33b 7830 int err = 0;
39279cc3 7831 struct btrfs_trans_handle *trans;
dbe674a9 7832 u64 mask = root->sectorsize - 1;
07127184 7833 u64 min_size = btrfs_calc_trunc_metadata_size(root, 1);
39279cc3 7834
0ef8b726
JB
7835 ret = btrfs_wait_ordered_range(inode, inode->i_size & (~mask),
7836 (u64)-1);
7837 if (ret)
7838 return ret;
39279cc3 7839
fcb80c2a
JB
7840 /*
7841 * Yes ladies and gentelment, this is indeed ugly. The fact is we have
7842 * 3 things going on here
7843 *
7844 * 1) We need to reserve space for our orphan item and the space to
7845 * delete our orphan item. Lord knows we don't want to have a dangling
7846 * orphan item because we didn't reserve space to remove it.
7847 *
7848 * 2) We need to reserve space to update our inode.
7849 *
7850 * 3) We need to have something to cache all the space that is going to
7851 * be free'd up by the truncate operation, but also have some slack
7852 * space reserved in case it uses space during the truncate (thank you
7853 * very much snapshotting).
7854 *
7855 * And we need these to all be seperate. The fact is we can use alot of
7856 * space doing the truncate, and we have no earthly idea how much space
7857 * we will use, so we need the truncate reservation to be seperate so it
7858 * doesn't end up using space reserved for updating the inode or
7859 * removing the orphan item. We also need to be able to stop the
7860 * transaction and start a new one, which means we need to be able to
7861 * update the inode several times, and we have no idea of knowing how
7862 * many times that will be, so we can't just reserve 1 item for the
7863 * entirety of the opration, so that has to be done seperately as well.
7864 * Then there is the orphan item, which does indeed need to be held on
7865 * to for the whole operation, and we need nobody to touch this reserved
7866 * space except the orphan code.
7867 *
7868 * So that leaves us with
7869 *
7870 * 1) root->orphan_block_rsv - for the orphan deletion.
7871 * 2) rsv - for the truncate reservation, which we will steal from the
7872 * transaction reservation.
7873 * 3) fs_info->trans_block_rsv - this will have 1 items worth left for
7874 * updating the inode.
7875 */
66d8f3dd 7876 rsv = btrfs_alloc_block_rsv(root, BTRFS_BLOCK_RSV_TEMP);
fcb80c2a
JB
7877 if (!rsv)
7878 return -ENOMEM;
4a338542 7879 rsv->size = min_size;
ca7e70f5 7880 rsv->failfast = 1;
f0cd846e 7881
907cbceb 7882 /*
07127184 7883 * 1 for the truncate slack space
907cbceb
JB
7884 * 1 for updating the inode.
7885 */
f3fe820c 7886 trans = btrfs_start_transaction(root, 2);
fcb80c2a
JB
7887 if (IS_ERR(trans)) {
7888 err = PTR_ERR(trans);
7889 goto out;
7890 }
f0cd846e 7891
907cbceb
JB
7892 /* Migrate the slack space for the truncate to our reserve */
7893 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv, rsv,
7894 min_size);
fcb80c2a 7895 BUG_ON(ret);
f0cd846e 7896
5a3f23d5
CM
7897 /*
7898 * setattr is responsible for setting the ordered_data_close flag,
7899 * but that is only tested during the last file release. That
7900 * could happen well after the next commit, leaving a great big
7901 * window where new writes may get lost if someone chooses to write
7902 * to this file after truncating to zero
7903 *
7904 * The inode doesn't have any dirty data here, and so if we commit
7905 * this is a noop. If someone immediately starts writing to the inode
7906 * it is very likely we'll catch some of their writes in this
7907 * transaction, and the commit will find this file on the ordered
7908 * data list with good things to send down.
7909 *
7910 * This is a best effort solution, there is still a window where
7911 * using truncate to replace the contents of the file will
7912 * end up with a zero length file after a crash.
7913 */
72ac3c0d
JB
7914 if (inode->i_size == 0 && test_bit(BTRFS_INODE_ORDERED_DATA_CLOSE,
7915 &BTRFS_I(inode)->runtime_flags))
5a3f23d5
CM
7916 btrfs_add_ordered_operation(trans, root, inode);
7917
5dc562c5
JB
7918 /*
7919 * So if we truncate and then write and fsync we normally would just
7920 * write the extents that changed, which is a problem if we need to
7921 * first truncate that entire inode. So set this flag so we write out
7922 * all of the extents in the inode to the sync log so we're completely
7923 * safe.
7924 */
7925 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC, &BTRFS_I(inode)->runtime_flags);
ca7e70f5 7926 trans->block_rsv = rsv;
907cbceb 7927
8082510e
YZ
7928 while (1) {
7929 ret = btrfs_truncate_inode_items(trans, root, inode,
7930 inode->i_size,
7931 BTRFS_EXTENT_DATA_KEY);
ca7e70f5 7932 if (ret != -ENOSPC) {
3893e33b 7933 err = ret;
8082510e 7934 break;
3893e33b 7935 }
39279cc3 7936
fcb80c2a 7937 trans->block_rsv = &root->fs_info->trans_block_rsv;
8082510e 7938 ret = btrfs_update_inode(trans, root, inode);
3893e33b
JB
7939 if (ret) {
7940 err = ret;
7941 break;
7942 }
ca7e70f5 7943
8082510e 7944 btrfs_end_transaction(trans, root);
b53d3f5d 7945 btrfs_btree_balance_dirty(root);
ca7e70f5
JB
7946
7947 trans = btrfs_start_transaction(root, 2);
7948 if (IS_ERR(trans)) {
7949 ret = err = PTR_ERR(trans);
7950 trans = NULL;
7951 break;
7952 }
7953
7954 ret = btrfs_block_rsv_migrate(&root->fs_info->trans_block_rsv,
7955 rsv, min_size);
7956 BUG_ON(ret); /* shouldn't happen */
7957 trans->block_rsv = rsv;
8082510e
YZ
7958 }
7959
7960 if (ret == 0 && inode->i_nlink > 0) {
fcb80c2a 7961 trans->block_rsv = root->orphan_block_rsv;
8082510e 7962 ret = btrfs_orphan_del(trans, inode);
3893e33b
JB
7963 if (ret)
7964 err = ret;
8082510e
YZ
7965 }
7966
917c16b2
CM
7967 if (trans) {
7968 trans->block_rsv = &root->fs_info->trans_block_rsv;
7969 ret = btrfs_update_inode(trans, root, inode);
7970 if (ret && !err)
7971 err = ret;
7b128766 7972
7ad85bb7 7973 ret = btrfs_end_transaction(trans, root);
b53d3f5d 7974 btrfs_btree_balance_dirty(root);
917c16b2 7975 }
fcb80c2a
JB
7976
7977out:
7978 btrfs_free_block_rsv(root, rsv);
7979
3893e33b
JB
7980 if (ret && !err)
7981 err = ret;
a41ad394 7982
3893e33b 7983 return err;
39279cc3
CM
7984}
7985
d352ac68
CM
7986/*
7987 * create a new subvolume directory/inode (helper for the ioctl).
7988 */
d2fb3437 7989int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
63541927
FDBM
7990 struct btrfs_root *new_root,
7991 struct btrfs_root *parent_root,
7992 u64 new_dirid)
39279cc3 7993{
39279cc3 7994 struct inode *inode;
76dda93c 7995 int err;
00e4e6b3 7996 u64 index = 0;
39279cc3 7997
12fc9d09
FA
7998 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2,
7999 new_dirid, new_dirid,
8000 S_IFDIR | (~current_umask() & S_IRWXUGO),
8001 &index);
54aa1f4d 8002 if (IS_ERR(inode))
f46b5a66 8003 return PTR_ERR(inode);
39279cc3
CM
8004 inode->i_op = &btrfs_dir_inode_operations;
8005 inode->i_fop = &btrfs_dir_file_operations;
8006
bfe86848 8007 set_nlink(inode, 1);
dbe674a9 8008 btrfs_i_size_write(inode, 0);
3b96362c 8009
63541927
FDBM
8010 err = btrfs_subvol_inherit_props(trans, new_root, parent_root);
8011 if (err)
8012 btrfs_err(new_root->fs_info,
8013 "error inheriting subvolume %llu properties: %d\n",
8014 new_root->root_key.objectid, err);
8015
76dda93c 8016 err = btrfs_update_inode(trans, new_root, inode);
cb8e7090 8017
76dda93c 8018 iput(inode);
ce598979 8019 return err;
39279cc3
CM
8020}
8021
39279cc3
CM
8022struct inode *btrfs_alloc_inode(struct super_block *sb)
8023{
8024 struct btrfs_inode *ei;
2ead6ae7 8025 struct inode *inode;
39279cc3
CM
8026
8027 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
8028 if (!ei)
8029 return NULL;
2ead6ae7
YZ
8030
8031 ei->root = NULL;
2ead6ae7 8032 ei->generation = 0;
15ee9bc7 8033 ei->last_trans = 0;
257c62e1 8034 ei->last_sub_trans = 0;
e02119d5 8035 ei->logged_trans = 0;
2ead6ae7 8036 ei->delalloc_bytes = 0;
2ead6ae7
YZ
8037 ei->disk_i_size = 0;
8038 ei->flags = 0;
7709cde3 8039 ei->csum_bytes = 0;
2ead6ae7 8040 ei->index_cnt = (u64)-1;
67de1176 8041 ei->dir_index = 0;
2ead6ae7 8042 ei->last_unlink_trans = 0;
46d8bc34 8043 ei->last_log_commit = 0;
2ead6ae7 8044
9e0baf60
JB
8045 spin_lock_init(&ei->lock);
8046 ei->outstanding_extents = 0;
8047 ei->reserved_extents = 0;
2ead6ae7 8048
72ac3c0d 8049 ei->runtime_flags = 0;
261507a0 8050 ei->force_compress = BTRFS_COMPRESS_NONE;
2ead6ae7 8051
16cdcec7
MX
8052 ei->delayed_node = NULL;
8053
2ead6ae7 8054 inode = &ei->vfs_inode;
a8067e02 8055 extent_map_tree_init(&ei->extent_tree);
f993c883
DS
8056 extent_io_tree_init(&ei->io_tree, &inode->i_data);
8057 extent_io_tree_init(&ei->io_failure_tree, &inode->i_data);
0b32f4bb
JB
8058 ei->io_tree.track_uptodate = 1;
8059 ei->io_failure_tree.track_uptodate = 1;
b812ce28 8060 atomic_set(&ei->sync_writers, 0);
2ead6ae7 8061 mutex_init(&ei->log_mutex);
f248679e 8062 mutex_init(&ei->delalloc_mutex);
e6dcd2dc 8063 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
2ead6ae7 8064 INIT_LIST_HEAD(&ei->delalloc_inodes);
5a3f23d5 8065 INIT_LIST_HEAD(&ei->ordered_operations);
2ead6ae7
YZ
8066 RB_CLEAR_NODE(&ei->rb_node);
8067
8068 return inode;
39279cc3
CM
8069}
8070
aaedb55b
JB
8071#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
8072void btrfs_test_destroy_inode(struct inode *inode)
8073{
8074 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
8075 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
8076}
8077#endif
8078
fa0d7e3d
NP
8079static void btrfs_i_callback(struct rcu_head *head)
8080{
8081 struct inode *inode = container_of(head, struct inode, i_rcu);
fa0d7e3d
NP
8082 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
8083}
8084
39279cc3
CM
8085void btrfs_destroy_inode(struct inode *inode)
8086{
e6dcd2dc 8087 struct btrfs_ordered_extent *ordered;
5a3f23d5
CM
8088 struct btrfs_root *root = BTRFS_I(inode)->root;
8089
b3d9b7a3 8090 WARN_ON(!hlist_empty(&inode->i_dentry));
39279cc3 8091 WARN_ON(inode->i_data.nrpages);
9e0baf60
JB
8092 WARN_ON(BTRFS_I(inode)->outstanding_extents);
8093 WARN_ON(BTRFS_I(inode)->reserved_extents);
7709cde3
JB
8094 WARN_ON(BTRFS_I(inode)->delalloc_bytes);
8095 WARN_ON(BTRFS_I(inode)->csum_bytes);
39279cc3 8096
a6dbd429
JB
8097 /*
8098 * This can happen where we create an inode, but somebody else also
8099 * created the same inode and we need to destroy the one we already
8100 * created.
8101 */
8102 if (!root)
8103 goto free;
8104
5a3f23d5
CM
8105 /*
8106 * Make sure we're properly removed from the ordered operation
8107 * lists.
8108 */
8109 smp_mb();
8110 if (!list_empty(&BTRFS_I(inode)->ordered_operations)) {
199c2a9c 8111 spin_lock(&root->fs_info->ordered_root_lock);
5a3f23d5 8112 list_del_init(&BTRFS_I(inode)->ordered_operations);
199c2a9c 8113 spin_unlock(&root->fs_info->ordered_root_lock);
5a3f23d5
CM
8114 }
8115
8a35d95f
JB
8116 if (test_bit(BTRFS_INODE_HAS_ORPHAN_ITEM,
8117 &BTRFS_I(inode)->runtime_flags)) {
c2cf52eb 8118 btrfs_info(root->fs_info, "inode %llu still on the orphan list",
c1c9ff7c 8119 btrfs_ino(inode));
8a35d95f 8120 atomic_dec(&root->orphan_inodes);
7b128766 8121 }
7b128766 8122
d397712b 8123 while (1) {
e6dcd2dc
CM
8124 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
8125 if (!ordered)
8126 break;
8127 else {
c2cf52eb 8128 btrfs_err(root->fs_info, "found ordered extent %llu %llu on inode cleanup",
c1c9ff7c 8129 ordered->file_offset, ordered->len);
e6dcd2dc
CM
8130 btrfs_remove_ordered_extent(inode, ordered);
8131 btrfs_put_ordered_extent(ordered);
8132 btrfs_put_ordered_extent(ordered);
8133 }
8134 }
5d4f98a2 8135 inode_tree_del(inode);
5b21f2ed 8136 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
a6dbd429 8137free:
fa0d7e3d 8138 call_rcu(&inode->i_rcu, btrfs_i_callback);
39279cc3
CM
8139}
8140
45321ac5 8141int btrfs_drop_inode(struct inode *inode)
76dda93c
YZ
8142{
8143 struct btrfs_root *root = BTRFS_I(inode)->root;
45321ac5 8144
6379ef9f
NA
8145 if (root == NULL)
8146 return 1;
8147
fa6ac876 8148 /* the snap/subvol tree is on deleting */
69e9c6c6 8149 if (btrfs_root_refs(&root->root_item) == 0)
45321ac5 8150 return 1;
76dda93c 8151 else
45321ac5 8152 return generic_drop_inode(inode);
76dda93c
YZ
8153}
8154
0ee0fda0 8155static void init_once(void *foo)
39279cc3
CM
8156{
8157 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
8158
8159 inode_init_once(&ei->vfs_inode);
8160}
8161
8162void btrfs_destroy_cachep(void)
8163{
8c0a8537
KS
8164 /*
8165 * Make sure all delayed rcu free inodes are flushed before we
8166 * destroy cache.
8167 */
8168 rcu_barrier();
39279cc3
CM
8169 if (btrfs_inode_cachep)
8170 kmem_cache_destroy(btrfs_inode_cachep);
8171 if (btrfs_trans_handle_cachep)
8172 kmem_cache_destroy(btrfs_trans_handle_cachep);
8173 if (btrfs_transaction_cachep)
8174 kmem_cache_destroy(btrfs_transaction_cachep);
39279cc3
CM
8175 if (btrfs_path_cachep)
8176 kmem_cache_destroy(btrfs_path_cachep);
dc89e982
JB
8177 if (btrfs_free_space_cachep)
8178 kmem_cache_destroy(btrfs_free_space_cachep);
8ccf6f19
MX
8179 if (btrfs_delalloc_work_cachep)
8180 kmem_cache_destroy(btrfs_delalloc_work_cachep);
39279cc3
CM
8181}
8182
8183int btrfs_init_cachep(void)
8184{
837e1972 8185 btrfs_inode_cachep = kmem_cache_create("btrfs_inode",
9601e3f6
CH
8186 sizeof(struct btrfs_inode), 0,
8187 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, init_once);
39279cc3
CM
8188 if (!btrfs_inode_cachep)
8189 goto fail;
9601e3f6 8190
837e1972 8191 btrfs_trans_handle_cachep = kmem_cache_create("btrfs_trans_handle",
9601e3f6
CH
8192 sizeof(struct btrfs_trans_handle), 0,
8193 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
39279cc3
CM
8194 if (!btrfs_trans_handle_cachep)
8195 goto fail;
9601e3f6 8196
837e1972 8197 btrfs_transaction_cachep = kmem_cache_create("btrfs_transaction",
9601e3f6
CH
8198 sizeof(struct btrfs_transaction), 0,
8199 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
39279cc3
CM
8200 if (!btrfs_transaction_cachep)
8201 goto fail;
9601e3f6 8202
837e1972 8203 btrfs_path_cachep = kmem_cache_create("btrfs_path",
9601e3f6
CH
8204 sizeof(struct btrfs_path), 0,
8205 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
39279cc3
CM
8206 if (!btrfs_path_cachep)
8207 goto fail;
9601e3f6 8208
837e1972 8209 btrfs_free_space_cachep = kmem_cache_create("btrfs_free_space",
dc89e982
JB
8210 sizeof(struct btrfs_free_space), 0,
8211 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
8212 if (!btrfs_free_space_cachep)
8213 goto fail;
8214
8ccf6f19
MX
8215 btrfs_delalloc_work_cachep = kmem_cache_create("btrfs_delalloc_work",
8216 sizeof(struct btrfs_delalloc_work), 0,
8217 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
8218 NULL);
8219 if (!btrfs_delalloc_work_cachep)
8220 goto fail;
8221
39279cc3
CM
8222 return 0;
8223fail:
8224 btrfs_destroy_cachep();
8225 return -ENOMEM;
8226}
8227
8228static int btrfs_getattr(struct vfsmount *mnt,
8229 struct dentry *dentry, struct kstat *stat)
8230{
df0af1a5 8231 u64 delalloc_bytes;
39279cc3 8232 struct inode *inode = dentry->d_inode;
fadc0d8b
DS
8233 u32 blocksize = inode->i_sb->s_blocksize;
8234
39279cc3 8235 generic_fillattr(inode, stat);
0ee5dc67 8236 stat->dev = BTRFS_I(inode)->root->anon_dev;
d6667462 8237 stat->blksize = PAGE_CACHE_SIZE;
df0af1a5
MX
8238
8239 spin_lock(&BTRFS_I(inode)->lock);
8240 delalloc_bytes = BTRFS_I(inode)->delalloc_bytes;
8241 spin_unlock(&BTRFS_I(inode)->lock);
fadc0d8b 8242 stat->blocks = (ALIGN(inode_get_bytes(inode), blocksize) +
df0af1a5 8243 ALIGN(delalloc_bytes, blocksize)) >> 9;
39279cc3
CM
8244 return 0;
8245}
8246
d397712b
CM
8247static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
8248 struct inode *new_dir, struct dentry *new_dentry)
39279cc3
CM
8249{
8250 struct btrfs_trans_handle *trans;
8251 struct btrfs_root *root = BTRFS_I(old_dir)->root;
4df27c4d 8252 struct btrfs_root *dest = BTRFS_I(new_dir)->root;
39279cc3
CM
8253 struct inode *new_inode = new_dentry->d_inode;
8254 struct inode *old_inode = old_dentry->d_inode;
8255 struct timespec ctime = CURRENT_TIME;
00e4e6b3 8256 u64 index = 0;
4df27c4d 8257 u64 root_objectid;
39279cc3 8258 int ret;
33345d01 8259 u64 old_ino = btrfs_ino(old_inode);
39279cc3 8260
33345d01 8261 if (btrfs_ino(new_dir) == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
f679a840
YZ
8262 return -EPERM;
8263
4df27c4d 8264 /* we only allow rename subvolume link between subvolumes */
33345d01 8265 if (old_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
3394e160
CM
8266 return -EXDEV;
8267
33345d01
LZ
8268 if (old_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID ||
8269 (new_inode && btrfs_ino(new_inode) == BTRFS_FIRST_FREE_OBJECTID))
39279cc3 8270 return -ENOTEMPTY;
5f39d397 8271
4df27c4d
YZ
8272 if (S_ISDIR(old_inode->i_mode) && new_inode &&
8273 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE)
8274 return -ENOTEMPTY;
9c52057c
CM
8275
8276
8277 /* check for collisions, even if the name isn't there */
4871c158 8278 ret = btrfs_check_dir_item_collision(dest, new_dir->i_ino,
9c52057c
CM
8279 new_dentry->d_name.name,
8280 new_dentry->d_name.len);
8281
8282 if (ret) {
8283 if (ret == -EEXIST) {
8284 /* we shouldn't get
8285 * eexist without a new_inode */
fae7f21c 8286 if (WARN_ON(!new_inode)) {
9c52057c
CM
8287 return ret;
8288 }
8289 } else {
8290 /* maybe -EOVERFLOW */
8291 return ret;
8292 }
8293 }
8294 ret = 0;
8295
5a3f23d5
CM
8296 /*
8297 * we're using rename to replace one file with another.
8298 * and the replacement file is large. Start IO on it now so
8299 * we don't add too much work to the end of the transaction
8300 */
4baf8c92 8301 if (new_inode && S_ISREG(old_inode->i_mode) && new_inode->i_size &&
5a3f23d5
CM
8302 old_inode->i_size > BTRFS_ORDERED_OPERATIONS_FLUSH_LIMIT)
8303 filemap_flush(old_inode->i_mapping);
8304
76dda93c 8305 /* close the racy window with snapshot create/destroy ioctl */
33345d01 8306 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
76dda93c 8307 down_read(&root->fs_info->subvol_sem);
a22285a6
YZ
8308 /*
8309 * We want to reserve the absolute worst case amount of items. So if
8310 * both inodes are subvols and we need to unlink them then that would
8311 * require 4 item modifications, but if they are both normal inodes it
8312 * would require 5 item modifications, so we'll assume their normal
8313 * inodes. So 5 * 2 is 10, plus 1 for the new link, so 11 total items
8314 * should cover the worst case number of items we'll modify.
8315 */
6e137ed3 8316 trans = btrfs_start_transaction(root, 11);
b44c59a8
JL
8317 if (IS_ERR(trans)) {
8318 ret = PTR_ERR(trans);
8319 goto out_notrans;
8320 }
76dda93c 8321
4df27c4d
YZ
8322 if (dest != root)
8323 btrfs_record_root_in_trans(trans, dest);
5f39d397 8324
a5719521
YZ
8325 ret = btrfs_set_inode_index(new_dir, &index);
8326 if (ret)
8327 goto out_fail;
5a3f23d5 8328
67de1176 8329 BTRFS_I(old_inode)->dir_index = 0ULL;
33345d01 8330 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4df27c4d 8331 /* force full log commit if subvolume involved. */
995946dd 8332 btrfs_set_log_full_commit(root->fs_info, trans);
4df27c4d 8333 } else {
a5719521
YZ
8334 ret = btrfs_insert_inode_ref(trans, dest,
8335 new_dentry->d_name.name,
8336 new_dentry->d_name.len,
33345d01
LZ
8337 old_ino,
8338 btrfs_ino(new_dir), index);
a5719521
YZ
8339 if (ret)
8340 goto out_fail;
4df27c4d
YZ
8341 /*
8342 * this is an ugly little race, but the rename is required
8343 * to make sure that if we crash, the inode is either at the
8344 * old name or the new one. pinning the log transaction lets
8345 * us make sure we don't allow a log commit to come in after
8346 * we unlink the name but before we add the new name back in.
8347 */
8348 btrfs_pin_log_trans(root);
8349 }
5a3f23d5
CM
8350 /*
8351 * make sure the inode gets flushed if it is replacing
8352 * something.
8353 */
33345d01 8354 if (new_inode && new_inode->i_size && S_ISREG(old_inode->i_mode))
5a3f23d5 8355 btrfs_add_ordered_operation(trans, root, old_inode);
5a3f23d5 8356
0c4d2d95
JB
8357 inode_inc_iversion(old_dir);
8358 inode_inc_iversion(new_dir);
8359 inode_inc_iversion(old_inode);
39279cc3
CM
8360 old_dir->i_ctime = old_dir->i_mtime = ctime;
8361 new_dir->i_ctime = new_dir->i_mtime = ctime;
8362 old_inode->i_ctime = ctime;
5f39d397 8363
12fcfd22
CM
8364 if (old_dentry->d_parent != new_dentry->d_parent)
8365 btrfs_record_unlink_dir(trans, old_dir, old_inode, 1);
8366
33345d01 8367 if (unlikely(old_ino == BTRFS_FIRST_FREE_OBJECTID)) {
4df27c4d
YZ
8368 root_objectid = BTRFS_I(old_inode)->root->root_key.objectid;
8369 ret = btrfs_unlink_subvol(trans, root, old_dir, root_objectid,
8370 old_dentry->d_name.name,
8371 old_dentry->d_name.len);
8372 } else {
92986796
AV
8373 ret = __btrfs_unlink_inode(trans, root, old_dir,
8374 old_dentry->d_inode,
8375 old_dentry->d_name.name,
8376 old_dentry->d_name.len);
8377 if (!ret)
8378 ret = btrfs_update_inode(trans, root, old_inode);
4df27c4d 8379 }
79787eaa
JM
8380 if (ret) {
8381 btrfs_abort_transaction(trans, root, ret);
8382 goto out_fail;
8383 }
39279cc3
CM
8384
8385 if (new_inode) {
0c4d2d95 8386 inode_inc_iversion(new_inode);
39279cc3 8387 new_inode->i_ctime = CURRENT_TIME;
33345d01 8388 if (unlikely(btrfs_ino(new_inode) ==
4df27c4d
YZ
8389 BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)) {
8390 root_objectid = BTRFS_I(new_inode)->location.objectid;
8391 ret = btrfs_unlink_subvol(trans, dest, new_dir,
8392 root_objectid,
8393 new_dentry->d_name.name,
8394 new_dentry->d_name.len);
8395 BUG_ON(new_inode->i_nlink == 0);
8396 } else {
8397 ret = btrfs_unlink_inode(trans, dest, new_dir,
8398 new_dentry->d_inode,
8399 new_dentry->d_name.name,
8400 new_dentry->d_name.len);
8401 }
4ef31a45 8402 if (!ret && new_inode->i_nlink == 0)
e02119d5 8403 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
79787eaa
JM
8404 if (ret) {
8405 btrfs_abort_transaction(trans, root, ret);
8406 goto out_fail;
8407 }
39279cc3 8408 }
aec7477b 8409
4df27c4d
YZ
8410 ret = btrfs_add_link(trans, new_dir, old_inode,
8411 new_dentry->d_name.name,
a5719521 8412 new_dentry->d_name.len, 0, index);
79787eaa
JM
8413 if (ret) {
8414 btrfs_abort_transaction(trans, root, ret);
8415 goto out_fail;
8416 }
39279cc3 8417
67de1176
MX
8418 if (old_inode->i_nlink == 1)
8419 BTRFS_I(old_inode)->dir_index = index;
8420
33345d01 8421 if (old_ino != BTRFS_FIRST_FREE_OBJECTID) {
10d9f309 8422 struct dentry *parent = new_dentry->d_parent;
6a912213 8423 btrfs_log_new_name(trans, old_inode, old_dir, parent);
4df27c4d
YZ
8424 btrfs_end_log_trans(root);
8425 }
39279cc3 8426out_fail:
7ad85bb7 8427 btrfs_end_transaction(trans, root);
b44c59a8 8428out_notrans:
33345d01 8429 if (old_ino == BTRFS_FIRST_FREE_OBJECTID)
76dda93c 8430 up_read(&root->fs_info->subvol_sem);
9ed74f2d 8431
39279cc3
CM
8432 return ret;
8433}
8434
8ccf6f19
MX
8435static void btrfs_run_delalloc_work(struct btrfs_work *work)
8436{
8437 struct btrfs_delalloc_work *delalloc_work;
9f23e289 8438 struct inode *inode;
8ccf6f19
MX
8439
8440 delalloc_work = container_of(work, struct btrfs_delalloc_work,
8441 work);
9f23e289
JB
8442 inode = delalloc_work->inode;
8443 if (delalloc_work->wait) {
8444 btrfs_wait_ordered_range(inode, 0, (u64)-1);
8445 } else {
8446 filemap_flush(inode->i_mapping);
8447 if (test_bit(BTRFS_INODE_HAS_ASYNC_EXTENT,
8448 &BTRFS_I(inode)->runtime_flags))
8449 filemap_flush(inode->i_mapping);
8450 }
8ccf6f19
MX
8451
8452 if (delalloc_work->delay_iput)
9f23e289 8453 btrfs_add_delayed_iput(inode);
8ccf6f19 8454 else
9f23e289 8455 iput(inode);
8ccf6f19
MX
8456 complete(&delalloc_work->completion);
8457}
8458
8459struct btrfs_delalloc_work *btrfs_alloc_delalloc_work(struct inode *inode,
8460 int wait, int delay_iput)
8461{
8462 struct btrfs_delalloc_work *work;
8463
8464 work = kmem_cache_zalloc(btrfs_delalloc_work_cachep, GFP_NOFS);
8465 if (!work)
8466 return NULL;
8467
8468 init_completion(&work->completion);
8469 INIT_LIST_HEAD(&work->list);
8470 work->inode = inode;
8471 work->wait = wait;
8472 work->delay_iput = delay_iput;
a44903ab 8473 btrfs_init_work(&work->work, btrfs_run_delalloc_work, NULL, NULL);
8ccf6f19
MX
8474
8475 return work;
8476}
8477
8478void btrfs_wait_and_free_delalloc_work(struct btrfs_delalloc_work *work)
8479{
8480 wait_for_completion(&work->completion);
8481 kmem_cache_free(btrfs_delalloc_work_cachep, work);
8482}
8483
d352ac68
CM
8484/*
8485 * some fairly slow code that needs optimization. This walks the list
8486 * of all the inodes with pending delalloc and forces them to disk.
8487 */
6c255e67
MX
8488static int __start_delalloc_inodes(struct btrfs_root *root, int delay_iput,
8489 int nr)
ea8c2819 8490{
ea8c2819 8491 struct btrfs_inode *binode;
5b21f2ed 8492 struct inode *inode;
8ccf6f19
MX
8493 struct btrfs_delalloc_work *work, *next;
8494 struct list_head works;
1eafa6c7 8495 struct list_head splice;
8ccf6f19 8496 int ret = 0;
ea8c2819 8497
8ccf6f19 8498 INIT_LIST_HEAD(&works);
1eafa6c7 8499 INIT_LIST_HEAD(&splice);
63607cc8 8500
573bfb72 8501 mutex_lock(&root->delalloc_mutex);
eb73c1b7
MX
8502 spin_lock(&root->delalloc_lock);
8503 list_splice_init(&root->delalloc_inodes, &splice);
1eafa6c7
MX
8504 while (!list_empty(&splice)) {
8505 binode = list_entry(splice.next, struct btrfs_inode,
ea8c2819 8506 delalloc_inodes);
1eafa6c7 8507
eb73c1b7
MX
8508 list_move_tail(&binode->delalloc_inodes,
8509 &root->delalloc_inodes);
5b21f2ed 8510 inode = igrab(&binode->vfs_inode);
df0af1a5 8511 if (!inode) {
eb73c1b7 8512 cond_resched_lock(&root->delalloc_lock);
1eafa6c7 8513 continue;
df0af1a5 8514 }
eb73c1b7 8515 spin_unlock(&root->delalloc_lock);
1eafa6c7
MX
8516
8517 work = btrfs_alloc_delalloc_work(inode, 0, delay_iput);
8518 if (unlikely(!work)) {
f4ab9ea7
JB
8519 if (delay_iput)
8520 btrfs_add_delayed_iput(inode);
8521 else
8522 iput(inode);
1eafa6c7 8523 ret = -ENOMEM;
a1ecaabb 8524 goto out;
5b21f2ed 8525 }
1eafa6c7 8526 list_add_tail(&work->list, &works);
a44903ab
QW
8527 btrfs_queue_work(root->fs_info->flush_workers,
8528 &work->work);
6c255e67
MX
8529 ret++;
8530 if (nr != -1 && ret >= nr)
a1ecaabb 8531 goto out;
5b21f2ed 8532 cond_resched();
eb73c1b7 8533 spin_lock(&root->delalloc_lock);
ea8c2819 8534 }
eb73c1b7 8535 spin_unlock(&root->delalloc_lock);
8c8bee1d 8536
a1ecaabb 8537out:
eb73c1b7
MX
8538 list_for_each_entry_safe(work, next, &works, list) {
8539 list_del_init(&work->list);
8540 btrfs_wait_and_free_delalloc_work(work);
8541 }
8542
8543 if (!list_empty_careful(&splice)) {
8544 spin_lock(&root->delalloc_lock);
8545 list_splice_tail(&splice, &root->delalloc_inodes);
8546 spin_unlock(&root->delalloc_lock);
8547 }
573bfb72 8548 mutex_unlock(&root->delalloc_mutex);
eb73c1b7
MX
8549 return ret;
8550}
1eafa6c7 8551
eb73c1b7
MX
8552int btrfs_start_delalloc_inodes(struct btrfs_root *root, int delay_iput)
8553{
8554 int ret;
1eafa6c7 8555
2c21b4d7 8556 if (test_bit(BTRFS_FS_STATE_ERROR, &root->fs_info->fs_state))
eb73c1b7
MX
8557 return -EROFS;
8558
6c255e67
MX
8559 ret = __start_delalloc_inodes(root, delay_iput, -1);
8560 if (ret > 0)
8561 ret = 0;
eb73c1b7
MX
8562 /*
8563 * the filemap_flush will queue IO into the worker threads, but
8c8bee1d
CM
8564 * we have to make sure the IO is actually started and that
8565 * ordered extents get created before we return
8566 */
8567 atomic_inc(&root->fs_info->async_submit_draining);
d397712b 8568 while (atomic_read(&root->fs_info->nr_async_submits) ||
771ed689 8569 atomic_read(&root->fs_info->async_delalloc_pages)) {
8c8bee1d 8570 wait_event(root->fs_info->async_submit_wait,
771ed689
CM
8571 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
8572 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
8c8bee1d
CM
8573 }
8574 atomic_dec(&root->fs_info->async_submit_draining);
eb73c1b7
MX
8575 return ret;
8576}
8577
6c255e67
MX
8578int btrfs_start_delalloc_roots(struct btrfs_fs_info *fs_info, int delay_iput,
8579 int nr)
eb73c1b7
MX
8580{
8581 struct btrfs_root *root;
8582 struct list_head splice;
8583 int ret;
8584
2c21b4d7 8585 if (test_bit(BTRFS_FS_STATE_ERROR, &fs_info->fs_state))
eb73c1b7
MX
8586 return -EROFS;
8587
8588 INIT_LIST_HEAD(&splice);
8589
573bfb72 8590 mutex_lock(&fs_info->delalloc_root_mutex);
eb73c1b7
MX
8591 spin_lock(&fs_info->delalloc_root_lock);
8592 list_splice_init(&fs_info->delalloc_roots, &splice);
6c255e67 8593 while (!list_empty(&splice) && nr) {
eb73c1b7
MX
8594 root = list_first_entry(&splice, struct btrfs_root,
8595 delalloc_root);
8596 root = btrfs_grab_fs_root(root);
8597 BUG_ON(!root);
8598 list_move_tail(&root->delalloc_root,
8599 &fs_info->delalloc_roots);
8600 spin_unlock(&fs_info->delalloc_root_lock);
8601
6c255e67 8602 ret = __start_delalloc_inodes(root, delay_iput, nr);
eb73c1b7 8603 btrfs_put_fs_root(root);
6c255e67 8604 if (ret < 0)
eb73c1b7
MX
8605 goto out;
8606
6c255e67
MX
8607 if (nr != -1) {
8608 nr -= ret;
8609 WARN_ON(nr < 0);
8610 }
eb73c1b7 8611 spin_lock(&fs_info->delalloc_root_lock);
8ccf6f19 8612 }
eb73c1b7 8613 spin_unlock(&fs_info->delalloc_root_lock);
1eafa6c7 8614
6c255e67 8615 ret = 0;
eb73c1b7
MX
8616 atomic_inc(&fs_info->async_submit_draining);
8617 while (atomic_read(&fs_info->nr_async_submits) ||
8618 atomic_read(&fs_info->async_delalloc_pages)) {
8619 wait_event(fs_info->async_submit_wait,
8620 (atomic_read(&fs_info->nr_async_submits) == 0 &&
8621 atomic_read(&fs_info->async_delalloc_pages) == 0));
8622 }
8623 atomic_dec(&fs_info->async_submit_draining);
eb73c1b7 8624out:
1eafa6c7 8625 if (!list_empty_careful(&splice)) {
eb73c1b7
MX
8626 spin_lock(&fs_info->delalloc_root_lock);
8627 list_splice_tail(&splice, &fs_info->delalloc_roots);
8628 spin_unlock(&fs_info->delalloc_root_lock);
1eafa6c7 8629 }
573bfb72 8630 mutex_unlock(&fs_info->delalloc_root_mutex);
8ccf6f19 8631 return ret;
ea8c2819
CM
8632}
8633
39279cc3
CM
8634static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
8635 const char *symname)
8636{
8637 struct btrfs_trans_handle *trans;
8638 struct btrfs_root *root = BTRFS_I(dir)->root;
8639 struct btrfs_path *path;
8640 struct btrfs_key key;
1832a6d5 8641 struct inode *inode = NULL;
39279cc3
CM
8642 int err;
8643 int drop_inode = 0;
8644 u64 objectid;
67871254 8645 u64 index = 0;
39279cc3
CM
8646 int name_len;
8647 int datasize;
5f39d397 8648 unsigned long ptr;
39279cc3 8649 struct btrfs_file_extent_item *ei;
5f39d397 8650 struct extent_buffer *leaf;
39279cc3 8651
f06becc4 8652 name_len = strlen(symname);
39279cc3
CM
8653 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
8654 return -ENAMETOOLONG;
1832a6d5 8655
9ed74f2d
JB
8656 /*
8657 * 2 items for inode item and ref
8658 * 2 items for dir items
8659 * 1 item for xattr if selinux is on
8660 */
a22285a6
YZ
8661 trans = btrfs_start_transaction(root, 5);
8662 if (IS_ERR(trans))
8663 return PTR_ERR(trans);
1832a6d5 8664
581bb050
LZ
8665 err = btrfs_find_free_ino(root, &objectid);
8666 if (err)
8667 goto out_unlock;
8668
aec7477b 8669 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
33345d01 8670 dentry->d_name.len, btrfs_ino(dir), objectid,
d82a6f1d 8671 S_IFLNK|S_IRWXUGO, &index);
7cf96da3
TI
8672 if (IS_ERR(inode)) {
8673 err = PTR_ERR(inode);
39279cc3 8674 goto out_unlock;
7cf96da3 8675 }
39279cc3 8676
2a7dba39 8677 err = btrfs_init_inode_security(trans, inode, dir, &dentry->d_name);
33268eaf
JB
8678 if (err) {
8679 drop_inode = 1;
8680 goto out_unlock;
8681 }
8682
ad19db71
CS
8683 /*
8684 * If the active LSM wants to access the inode during
8685 * d_instantiate it needs these. Smack checks to see
8686 * if the filesystem supports xattrs by looking at the
8687 * ops vector.
8688 */
8689 inode->i_fop = &btrfs_file_operations;
8690 inode->i_op = &btrfs_file_inode_operations;
8691
a1b075d2 8692 err = btrfs_add_nondir(trans, dir, dentry, inode, 0, index);
39279cc3
CM
8693 if (err)
8694 drop_inode = 1;
8695 else {
8696 inode->i_mapping->a_ops = &btrfs_aops;
04160088 8697 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
d1310b2e 8698 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
39279cc3 8699 }
39279cc3
CM
8700 if (drop_inode)
8701 goto out_unlock;
8702
8703 path = btrfs_alloc_path();
d8926bb3
MF
8704 if (!path) {
8705 err = -ENOMEM;
8706 drop_inode = 1;
8707 goto out_unlock;
8708 }
33345d01 8709 key.objectid = btrfs_ino(inode);
39279cc3 8710 key.offset = 0;
39279cc3
CM
8711 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
8712 datasize = btrfs_file_extent_calc_inline_size(name_len);
8713 err = btrfs_insert_empty_item(trans, root, path, &key,
8714 datasize);
54aa1f4d
CM
8715 if (err) {
8716 drop_inode = 1;
b0839166 8717 btrfs_free_path(path);
54aa1f4d
CM
8718 goto out_unlock;
8719 }
5f39d397
CM
8720 leaf = path->nodes[0];
8721 ei = btrfs_item_ptr(leaf, path->slots[0],
8722 struct btrfs_file_extent_item);
8723 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
8724 btrfs_set_file_extent_type(leaf, ei,
39279cc3 8725 BTRFS_FILE_EXTENT_INLINE);
c8b97818
CM
8726 btrfs_set_file_extent_encryption(leaf, ei, 0);
8727 btrfs_set_file_extent_compression(leaf, ei, 0);
8728 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
8729 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
8730
39279cc3 8731 ptr = btrfs_file_extent_inline_start(ei);
5f39d397
CM
8732 write_extent_buffer(leaf, symname, ptr, name_len);
8733 btrfs_mark_buffer_dirty(leaf);
39279cc3 8734 btrfs_free_path(path);
5f39d397 8735
39279cc3
CM
8736 inode->i_op = &btrfs_symlink_inode_operations;
8737 inode->i_mapping->a_ops = &btrfs_symlink_aops;
04160088 8738 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
d899e052 8739 inode_set_bytes(inode, name_len);
f06becc4 8740 btrfs_i_size_write(inode, name_len);
54aa1f4d
CM
8741 err = btrfs_update_inode(trans, root, inode);
8742 if (err)
8743 drop_inode = 1;
39279cc3
CM
8744
8745out_unlock:
08c422c2
AV
8746 if (!err)
8747 d_instantiate(dentry, inode);
7ad85bb7 8748 btrfs_end_transaction(trans, root);
39279cc3
CM
8749 if (drop_inode) {
8750 inode_dec_link_count(inode);
8751 iput(inode);
8752 }
b53d3f5d 8753 btrfs_btree_balance_dirty(root);
39279cc3
CM
8754 return err;
8755}
16432985 8756
0af3d00b
JB
8757static int __btrfs_prealloc_file_range(struct inode *inode, int mode,
8758 u64 start, u64 num_bytes, u64 min_size,
8759 loff_t actual_len, u64 *alloc_hint,
8760 struct btrfs_trans_handle *trans)
d899e052 8761{
5dc562c5
JB
8762 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
8763 struct extent_map *em;
d899e052
YZ
8764 struct btrfs_root *root = BTRFS_I(inode)->root;
8765 struct btrfs_key ins;
d899e052 8766 u64 cur_offset = start;
55a61d1d 8767 u64 i_size;
154ea289 8768 u64 cur_bytes;
d899e052 8769 int ret = 0;
0af3d00b 8770 bool own_trans = true;
d899e052 8771
0af3d00b
JB
8772 if (trans)
8773 own_trans = false;
d899e052 8774 while (num_bytes > 0) {
0af3d00b
JB
8775 if (own_trans) {
8776 trans = btrfs_start_transaction(root, 3);
8777 if (IS_ERR(trans)) {
8778 ret = PTR_ERR(trans);
8779 break;
8780 }
5a303d5d
YZ
8781 }
8782
154ea289
CM
8783 cur_bytes = min(num_bytes, 256ULL * 1024 * 1024);
8784 cur_bytes = max(cur_bytes, min_size);
00361589
JB
8785 ret = btrfs_reserve_extent(root, cur_bytes, min_size, 0,
8786 *alloc_hint, &ins, 1);
5a303d5d 8787 if (ret) {
0af3d00b
JB
8788 if (own_trans)
8789 btrfs_end_transaction(trans, root);
a22285a6 8790 break;
d899e052 8791 }
5a303d5d 8792
d899e052
YZ
8793 ret = insert_reserved_file_extent(trans, inode,
8794 cur_offset, ins.objectid,
8795 ins.offset, ins.offset,
920bbbfb 8796 ins.offset, 0, 0, 0,
d899e052 8797 BTRFS_FILE_EXTENT_PREALLOC);
79787eaa 8798 if (ret) {
857cc2fc
JB
8799 btrfs_free_reserved_extent(root, ins.objectid,
8800 ins.offset);
79787eaa
JM
8801 btrfs_abort_transaction(trans, root, ret);
8802 if (own_trans)
8803 btrfs_end_transaction(trans, root);
8804 break;
8805 }
a1ed835e
CM
8806 btrfs_drop_extent_cache(inode, cur_offset,
8807 cur_offset + ins.offset -1, 0);
5a303d5d 8808
5dc562c5
JB
8809 em = alloc_extent_map();
8810 if (!em) {
8811 set_bit(BTRFS_INODE_NEEDS_FULL_SYNC,
8812 &BTRFS_I(inode)->runtime_flags);
8813 goto next;
8814 }
8815
8816 em->start = cur_offset;
8817 em->orig_start = cur_offset;
8818 em->len = ins.offset;
8819 em->block_start = ins.objectid;
8820 em->block_len = ins.offset;
b4939680 8821 em->orig_block_len = ins.offset;
cc95bef6 8822 em->ram_bytes = ins.offset;
5dc562c5
JB
8823 em->bdev = root->fs_info->fs_devices->latest_bdev;
8824 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
8825 em->generation = trans->transid;
8826
8827 while (1) {
8828 write_lock(&em_tree->lock);
09a2a8f9 8829 ret = add_extent_mapping(em_tree, em, 1);
5dc562c5
JB
8830 write_unlock(&em_tree->lock);
8831 if (ret != -EEXIST)
8832 break;
8833 btrfs_drop_extent_cache(inode, cur_offset,
8834 cur_offset + ins.offset - 1,
8835 0);
8836 }
8837 free_extent_map(em);
8838next:
d899e052
YZ
8839 num_bytes -= ins.offset;
8840 cur_offset += ins.offset;
efa56464 8841 *alloc_hint = ins.objectid + ins.offset;
5a303d5d 8842
0c4d2d95 8843 inode_inc_iversion(inode);
d899e052 8844 inode->i_ctime = CURRENT_TIME;
6cbff00f 8845 BTRFS_I(inode)->flags |= BTRFS_INODE_PREALLOC;
d899e052 8846 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
efa56464
YZ
8847 (actual_len > inode->i_size) &&
8848 (cur_offset > inode->i_size)) {
d1ea6a61 8849 if (cur_offset > actual_len)
55a61d1d 8850 i_size = actual_len;
d1ea6a61 8851 else
55a61d1d
JB
8852 i_size = cur_offset;
8853 i_size_write(inode, i_size);
8854 btrfs_ordered_update_i_size(inode, i_size, NULL);
5a303d5d
YZ
8855 }
8856
d899e052 8857 ret = btrfs_update_inode(trans, root, inode);
79787eaa
JM
8858
8859 if (ret) {
8860 btrfs_abort_transaction(trans, root, ret);
8861 if (own_trans)
8862 btrfs_end_transaction(trans, root);
8863 break;
8864 }
d899e052 8865
0af3d00b
JB
8866 if (own_trans)
8867 btrfs_end_transaction(trans, root);
5a303d5d 8868 }
d899e052
YZ
8869 return ret;
8870}
8871
0af3d00b
JB
8872int btrfs_prealloc_file_range(struct inode *inode, int mode,
8873 u64 start, u64 num_bytes, u64 min_size,
8874 loff_t actual_len, u64 *alloc_hint)
8875{
8876 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
8877 min_size, actual_len, alloc_hint,
8878 NULL);
8879}
8880
8881int btrfs_prealloc_file_range_trans(struct inode *inode,
8882 struct btrfs_trans_handle *trans, int mode,
8883 u64 start, u64 num_bytes, u64 min_size,
8884 loff_t actual_len, u64 *alloc_hint)
8885{
8886 return __btrfs_prealloc_file_range(inode, mode, start, num_bytes,
8887 min_size, actual_len, alloc_hint, trans);
8888}
8889
e6dcd2dc
CM
8890static int btrfs_set_page_dirty(struct page *page)
8891{
e6dcd2dc
CM
8892 return __set_page_dirty_nobuffers(page);
8893}
8894
10556cb2 8895static int btrfs_permission(struct inode *inode, int mask)
fdebe2bd 8896{
b83cc969 8897 struct btrfs_root *root = BTRFS_I(inode)->root;
cb6db4e5 8898 umode_t mode = inode->i_mode;
b83cc969 8899
cb6db4e5
JM
8900 if (mask & MAY_WRITE &&
8901 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))) {
8902 if (btrfs_root_readonly(root))
8903 return -EROFS;
8904 if (BTRFS_I(inode)->flags & BTRFS_INODE_READONLY)
8905 return -EACCES;
8906 }
2830ba7f 8907 return generic_permission(inode, mask);
fdebe2bd 8908}
39279cc3 8909
ef3b9af5
FM
8910static int btrfs_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
8911{
8912 struct btrfs_trans_handle *trans;
8913 struct btrfs_root *root = BTRFS_I(dir)->root;
8914 struct inode *inode = NULL;
8915 u64 objectid;
8916 u64 index;
8917 int ret = 0;
8918
8919 /*
8920 * 5 units required for adding orphan entry
8921 */
8922 trans = btrfs_start_transaction(root, 5);
8923 if (IS_ERR(trans))
8924 return PTR_ERR(trans);
8925
8926 ret = btrfs_find_free_ino(root, &objectid);
8927 if (ret)
8928 goto out;
8929
8930 inode = btrfs_new_inode(trans, root, dir, NULL, 0,
8931 btrfs_ino(dir), objectid, mode, &index);
8932 if (IS_ERR(inode)) {
8933 ret = PTR_ERR(inode);
8934 inode = NULL;
8935 goto out;
8936 }
8937
8938 ret = btrfs_init_inode_security(trans, inode, dir, NULL);
8939 if (ret)
8940 goto out;
8941
8942 ret = btrfs_update_inode(trans, root, inode);
8943 if (ret)
8944 goto out;
8945
8946 inode->i_fop = &btrfs_file_operations;
8947 inode->i_op = &btrfs_file_inode_operations;
8948
8949 inode->i_mapping->a_ops = &btrfs_aops;
8950 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
8951 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
8952
8953 ret = btrfs_orphan_add(trans, inode);
8954 if (ret)
8955 goto out;
8956
8957 d_tmpfile(dentry, inode);
8958 mark_inode_dirty(inode);
8959
8960out:
8961 btrfs_end_transaction(trans, root);
8962 if (ret)
8963 iput(inode);
8964 btrfs_balance_delayed_items(root);
8965 btrfs_btree_balance_dirty(root);
8966
8967 return ret;
8968}
8969
6e1d5dcc 8970static const struct inode_operations btrfs_dir_inode_operations = {
3394e160 8971 .getattr = btrfs_getattr,
39279cc3
CM
8972 .lookup = btrfs_lookup,
8973 .create = btrfs_create,
8974 .unlink = btrfs_unlink,
8975 .link = btrfs_link,
8976 .mkdir = btrfs_mkdir,
8977 .rmdir = btrfs_rmdir,
8978 .rename = btrfs_rename,
8979 .symlink = btrfs_symlink,
8980 .setattr = btrfs_setattr,
618e21d5 8981 .mknod = btrfs_mknod,
95819c05
CH
8982 .setxattr = btrfs_setxattr,
8983 .getxattr = btrfs_getxattr,
5103e947 8984 .listxattr = btrfs_listxattr,
95819c05 8985 .removexattr = btrfs_removexattr,
fdebe2bd 8986 .permission = btrfs_permission,
4e34e719 8987 .get_acl = btrfs_get_acl,
996a710d 8988 .set_acl = btrfs_set_acl,
93fd63c2 8989 .update_time = btrfs_update_time,
ef3b9af5 8990 .tmpfile = btrfs_tmpfile,
39279cc3 8991};
6e1d5dcc 8992static const struct inode_operations btrfs_dir_ro_inode_operations = {
39279cc3 8993 .lookup = btrfs_lookup,
fdebe2bd 8994 .permission = btrfs_permission,
4e34e719 8995 .get_acl = btrfs_get_acl,
996a710d 8996 .set_acl = btrfs_set_acl,
93fd63c2 8997 .update_time = btrfs_update_time,
39279cc3 8998};
76dda93c 8999
828c0950 9000static const struct file_operations btrfs_dir_file_operations = {
39279cc3
CM
9001 .llseek = generic_file_llseek,
9002 .read = generic_read_dir,
9cdda8d3 9003 .iterate = btrfs_real_readdir,
34287aa3 9004 .unlocked_ioctl = btrfs_ioctl,
39279cc3 9005#ifdef CONFIG_COMPAT
34287aa3 9006 .compat_ioctl = btrfs_ioctl,
39279cc3 9007#endif
6bf13c0c 9008 .release = btrfs_release_file,
e02119d5 9009 .fsync = btrfs_sync_file,
39279cc3
CM
9010};
9011
d1310b2e 9012static struct extent_io_ops btrfs_extent_io_ops = {
07157aac 9013 .fill_delalloc = run_delalloc_range,
065631f6 9014 .submit_bio_hook = btrfs_submit_bio_hook,
239b14b3 9015 .merge_bio_hook = btrfs_merge_bio_hook,
07157aac 9016 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
e6dcd2dc 9017 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
247e743c 9018 .writepage_start_hook = btrfs_writepage_start_hook,
b0c68f8b
CM
9019 .set_bit_hook = btrfs_set_bit_hook,
9020 .clear_bit_hook = btrfs_clear_bit_hook,
9ed74f2d
JB
9021 .merge_extent_hook = btrfs_merge_extent_hook,
9022 .split_extent_hook = btrfs_split_extent_hook,
07157aac
CM
9023};
9024
35054394
CM
9025/*
9026 * btrfs doesn't support the bmap operation because swapfiles
9027 * use bmap to make a mapping of extents in the file. They assume
9028 * these extents won't change over the life of the file and they
9029 * use the bmap result to do IO directly to the drive.
9030 *
9031 * the btrfs bmap call would return logical addresses that aren't
9032 * suitable for IO and they also will change frequently as COW
9033 * operations happen. So, swapfile + btrfs == corruption.
9034 *
9035 * For now we're avoiding this by dropping bmap.
9036 */
7f09410b 9037static const struct address_space_operations btrfs_aops = {
39279cc3
CM
9038 .readpage = btrfs_readpage,
9039 .writepage = btrfs_writepage,
b293f02e 9040 .writepages = btrfs_writepages,
3ab2fb5a 9041 .readpages = btrfs_readpages,
16432985 9042 .direct_IO = btrfs_direct_IO,
a52d9a80
CM
9043 .invalidatepage = btrfs_invalidatepage,
9044 .releasepage = btrfs_releasepage,
e6dcd2dc 9045 .set_page_dirty = btrfs_set_page_dirty,
465fdd97 9046 .error_remove_page = generic_error_remove_page,
39279cc3
CM
9047};
9048
7f09410b 9049static const struct address_space_operations btrfs_symlink_aops = {
39279cc3
CM
9050 .readpage = btrfs_readpage,
9051 .writepage = btrfs_writepage,
2bf5a725
CM
9052 .invalidatepage = btrfs_invalidatepage,
9053 .releasepage = btrfs_releasepage,
39279cc3
CM
9054};
9055
6e1d5dcc 9056static const struct inode_operations btrfs_file_inode_operations = {
39279cc3
CM
9057 .getattr = btrfs_getattr,
9058 .setattr = btrfs_setattr,
95819c05
CH
9059 .setxattr = btrfs_setxattr,
9060 .getxattr = btrfs_getxattr,
5103e947 9061 .listxattr = btrfs_listxattr,
95819c05 9062 .removexattr = btrfs_removexattr,
fdebe2bd 9063 .permission = btrfs_permission,
1506fcc8 9064 .fiemap = btrfs_fiemap,
4e34e719 9065 .get_acl = btrfs_get_acl,
996a710d 9066 .set_acl = btrfs_set_acl,
e41f941a 9067 .update_time = btrfs_update_time,
39279cc3 9068};
6e1d5dcc 9069static const struct inode_operations btrfs_special_inode_operations = {
618e21d5
JB
9070 .getattr = btrfs_getattr,
9071 .setattr = btrfs_setattr,
fdebe2bd 9072 .permission = btrfs_permission,
95819c05
CH
9073 .setxattr = btrfs_setxattr,
9074 .getxattr = btrfs_getxattr,
33268eaf 9075 .listxattr = btrfs_listxattr,
95819c05 9076 .removexattr = btrfs_removexattr,
4e34e719 9077 .get_acl = btrfs_get_acl,
996a710d 9078 .set_acl = btrfs_set_acl,
e41f941a 9079 .update_time = btrfs_update_time,
618e21d5 9080};
6e1d5dcc 9081static const struct inode_operations btrfs_symlink_inode_operations = {
39279cc3
CM
9082 .readlink = generic_readlink,
9083 .follow_link = page_follow_link_light,
9084 .put_link = page_put_link,
f209561a 9085 .getattr = btrfs_getattr,
22c44fe6 9086 .setattr = btrfs_setattr,
fdebe2bd 9087 .permission = btrfs_permission,
0279b4cd
JO
9088 .setxattr = btrfs_setxattr,
9089 .getxattr = btrfs_getxattr,
9090 .listxattr = btrfs_listxattr,
9091 .removexattr = btrfs_removexattr,
e41f941a 9092 .update_time = btrfs_update_time,
39279cc3 9093};
76dda93c 9094
82d339d9 9095const struct dentry_operations btrfs_dentry_operations = {
76dda93c 9096 .d_delete = btrfs_dentry_delete,
b4aff1f8 9097 .d_release = btrfs_dentry_release,
76dda93c 9098};