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