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