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