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