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