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