Btrfs: fix nodatasum handling in balancing code
[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>
29#include <linux/smp_lock.h>
30#include <linux/backing-dev.h>
31#include <linux/mpage.h>
32#include <linux/swap.h>
33#include <linux/writeback.h>
34#include <linux/statfs.h>
35#include <linux/compat.h>
9ebefb18 36#include <linux/bit_spinlock.h>
92fee66d 37#include <linux/version.h>
5103e947 38#include <linux/xattr.h>
33268eaf 39#include <linux/posix_acl.h>
d899e052 40#include <linux/falloc.h>
4b4e25f2 41#include "compat.h"
39279cc3
CM
42#include "ctree.h"
43#include "disk-io.h"
44#include "transaction.h"
45#include "btrfs_inode.h"
46#include "ioctl.h"
47#include "print-tree.h"
0b86a832 48#include "volumes.h"
e6dcd2dc 49#include "ordered-data.h"
95819c05 50#include "xattr.h"
e02119d5 51#include "tree-log.h"
5b84e8d6 52#include "ref-cache.h"
c8b97818 53#include "compression.h"
39279cc3
CM
54
55struct btrfs_iget_args {
56 u64 ino;
57 struct btrfs_root *root;
58};
59
60static struct inode_operations btrfs_dir_inode_operations;
61static struct inode_operations btrfs_symlink_inode_operations;
62static struct inode_operations btrfs_dir_ro_inode_operations;
618e21d5 63static struct inode_operations btrfs_special_inode_operations;
39279cc3
CM
64static struct inode_operations btrfs_file_inode_operations;
65static struct address_space_operations btrfs_aops;
66static struct address_space_operations btrfs_symlink_aops;
67static struct file_operations btrfs_dir_file_operations;
d1310b2e 68static struct extent_io_ops btrfs_extent_io_ops;
39279cc3
CM
69
70static struct kmem_cache *btrfs_inode_cachep;
71struct kmem_cache *btrfs_trans_handle_cachep;
72struct kmem_cache *btrfs_transaction_cachep;
73struct kmem_cache *btrfs_bit_radix_cachep;
74struct kmem_cache *btrfs_path_cachep;
75
76#define S_SHIFT 12
77static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
78 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
79 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
80 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
81 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
82 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
83 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
84 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
85};
86
7b128766 87static void btrfs_truncate(struct inode *inode);
c8b97818 88static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end);
771ed689
CM
89static noinline int cow_file_range(struct inode *inode,
90 struct page *locked_page,
91 u64 start, u64 end, int *page_started,
92 unsigned long *nr_written, int unlock);
7b128766 93
d352ac68
CM
94/*
95 * a very lame attempt at stopping writes when the FS is 85% full. There
96 * are countless ways this is incorrect, but it is better than nothing.
97 */
1832a6d5
CM
98int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
99 int for_del)
100{
a2135011
CM
101 u64 total;
102 u64 used;
1832a6d5 103 u64 thresh;
bcbfce8a 104 unsigned long flags;
1832a6d5
CM
105 int ret = 0;
106
a2135011
CM
107 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
108 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
109 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
1832a6d5 110 if (for_del)
f9ef6604 111 thresh = total * 90;
1832a6d5 112 else
f9ef6604
CM
113 thresh = total * 85;
114
115 do_div(thresh, 100);
1832a6d5 116
1832a6d5
CM
117 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
118 ret = -ENOSPC;
bcbfce8a 119 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
1832a6d5
CM
120 return ret;
121}
122
c8b97818
CM
123/*
124 * this does all the hard work for inserting an inline extent into
125 * the btree. The caller should have done a btrfs_drop_extents so that
126 * no overlapping inline items exist in the btree
127 */
128static int noinline insert_inline_extent(struct btrfs_trans_handle *trans,
129 struct btrfs_root *root, struct inode *inode,
130 u64 start, size_t size, size_t compressed_size,
131 struct page **compressed_pages)
132{
133 struct btrfs_key key;
134 struct btrfs_path *path;
135 struct extent_buffer *leaf;
136 struct page *page = NULL;
137 char *kaddr;
138 unsigned long ptr;
139 struct btrfs_file_extent_item *ei;
140 int err = 0;
141 int ret;
142 size_t cur_size = size;
143 size_t datasize;
144 unsigned long offset;
145 int use_compress = 0;
146
147 if (compressed_size && compressed_pages) {
148 use_compress = 1;
149 cur_size = compressed_size;
150 }
151
152 path = btrfs_alloc_path(); if (!path)
153 return -ENOMEM;
154
155 btrfs_set_trans_block_group(trans, inode);
156
157 key.objectid = inode->i_ino;
158 key.offset = start;
159 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
160 inode_add_bytes(inode, size);
161 datasize = btrfs_file_extent_calc_inline_size(cur_size);
162
163 inode_add_bytes(inode, size);
164 ret = btrfs_insert_empty_item(trans, root, path, &key,
165 datasize);
166 BUG_ON(ret);
167 if (ret) {
168 err = ret;
169 printk("got bad ret %d\n", ret);
170 goto fail;
171 }
172 leaf = path->nodes[0];
173 ei = btrfs_item_ptr(leaf, path->slots[0],
174 struct btrfs_file_extent_item);
175 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
176 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
177 btrfs_set_file_extent_encryption(leaf, ei, 0);
178 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
179 btrfs_set_file_extent_ram_bytes(leaf, ei, size);
180 ptr = btrfs_file_extent_inline_start(ei);
181
182 if (use_compress) {
183 struct page *cpage;
184 int i = 0;
185 while(compressed_size > 0) {
186 cpage = compressed_pages[i];
5b050f04 187 cur_size = min_t(unsigned long, compressed_size,
c8b97818
CM
188 PAGE_CACHE_SIZE);
189
190 kaddr = kmap(cpage);
191 write_extent_buffer(leaf, kaddr, ptr, cur_size);
192 kunmap(cpage);
193
194 i++;
195 ptr += cur_size;
196 compressed_size -= cur_size;
197 }
198 btrfs_set_file_extent_compression(leaf, ei,
199 BTRFS_COMPRESS_ZLIB);
200 } else {
201 page = find_get_page(inode->i_mapping,
202 start >> PAGE_CACHE_SHIFT);
203 btrfs_set_file_extent_compression(leaf, ei, 0);
204 kaddr = kmap_atomic(page, KM_USER0);
205 offset = start & (PAGE_CACHE_SIZE - 1);
206 write_extent_buffer(leaf, kaddr + offset, ptr, size);
207 kunmap_atomic(kaddr, KM_USER0);
208 page_cache_release(page);
209 }
210 btrfs_mark_buffer_dirty(leaf);
211 btrfs_free_path(path);
212
213 BTRFS_I(inode)->disk_i_size = inode->i_size;
214 btrfs_update_inode(trans, root, inode);
215 return 0;
216fail:
217 btrfs_free_path(path);
218 return err;
219}
220
221
222/*
223 * conditionally insert an inline extent into the file. This
224 * does the checks required to make sure the data is small enough
225 * to fit as an inline extent.
226 */
227static int cow_file_range_inline(struct btrfs_trans_handle *trans,
228 struct btrfs_root *root,
229 struct inode *inode, u64 start, u64 end,
230 size_t compressed_size,
231 struct page **compressed_pages)
232{
233 u64 isize = i_size_read(inode);
234 u64 actual_end = min(end + 1, isize);
235 u64 inline_len = actual_end - start;
236 u64 aligned_end = (end + root->sectorsize - 1) &
237 ~((u64)root->sectorsize - 1);
238 u64 hint_byte;
239 u64 data_len = inline_len;
240 int ret;
241
242 if (compressed_size)
243 data_len = compressed_size;
244
245 if (start > 0 ||
70b99e69 246 actual_end >= PAGE_CACHE_SIZE ||
c8b97818
CM
247 data_len >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
248 (!compressed_size &&
249 (actual_end & (root->sectorsize - 1)) == 0) ||
250 end + 1 < isize ||
251 data_len > root->fs_info->max_inline) {
252 return 1;
253 }
254
c8b97818 255 ret = btrfs_drop_extents(trans, root, inode, start,
70b99e69 256 aligned_end, start, &hint_byte);
c8b97818
CM
257 BUG_ON(ret);
258
259 if (isize > actual_end)
260 inline_len = min_t(u64, isize, actual_end);
261 ret = insert_inline_extent(trans, root, inode, start,
262 inline_len, compressed_size,
263 compressed_pages);
264 BUG_ON(ret);
265 btrfs_drop_extent_cache(inode, start, aligned_end, 0);
c8b97818
CM
266 return 0;
267}
268
771ed689
CM
269struct async_extent {
270 u64 start;
271 u64 ram_size;
272 u64 compressed_size;
273 struct page **pages;
274 unsigned long nr_pages;
275 struct list_head list;
276};
277
278struct async_cow {
279 struct inode *inode;
280 struct btrfs_root *root;
281 struct page *locked_page;
282 u64 start;
283 u64 end;
284 struct list_head extents;
285 struct btrfs_work work;
286};
287
288static noinline int add_async_extent(struct async_cow *cow,
289 u64 start, u64 ram_size,
290 u64 compressed_size,
291 struct page **pages,
292 unsigned long nr_pages)
293{
294 struct async_extent *async_extent;
295
296 async_extent = kmalloc(sizeof(*async_extent), GFP_NOFS);
297 async_extent->start = start;
298 async_extent->ram_size = ram_size;
299 async_extent->compressed_size = compressed_size;
300 async_extent->pages = pages;
301 async_extent->nr_pages = nr_pages;
302 list_add_tail(&async_extent->list, &cow->extents);
303 return 0;
304}
305
d352ac68 306/*
771ed689
CM
307 * we create compressed extents in two phases. The first
308 * phase compresses a range of pages that have already been
309 * locked (both pages and state bits are locked).
c8b97818 310 *
771ed689
CM
311 * This is done inside an ordered work queue, and the compression
312 * is spread across many cpus. The actual IO submission is step
313 * two, and the ordered work queue takes care of making sure that
314 * happens in the same order things were put onto the queue by
315 * writepages and friends.
c8b97818 316 *
771ed689
CM
317 * If this code finds it can't get good compression, it puts an
318 * entry onto the work queue to write the uncompressed bytes. This
319 * makes sure that both compressed inodes and uncompressed inodes
320 * are written in the same order that pdflush sent them down.
d352ac68 321 */
771ed689
CM
322static noinline int compress_file_range(struct inode *inode,
323 struct page *locked_page,
324 u64 start, u64 end,
325 struct async_cow *async_cow,
326 int *num_added)
b888db2b
CM
327{
328 struct btrfs_root *root = BTRFS_I(inode)->root;
329 struct btrfs_trans_handle *trans;
db94535d 330 u64 num_bytes;
c8b97818
CM
331 u64 orig_start;
332 u64 disk_num_bytes;
db94535d 333 u64 blocksize = root->sectorsize;
c8b97818 334 u64 actual_end;
e6dcd2dc 335 int ret = 0;
c8b97818
CM
336 struct page **pages = NULL;
337 unsigned long nr_pages;
338 unsigned long nr_pages_ret = 0;
339 unsigned long total_compressed = 0;
340 unsigned long total_in = 0;
341 unsigned long max_compressed = 128 * 1024;
771ed689 342 unsigned long max_uncompressed = 128 * 1024;
c8b97818
CM
343 int i;
344 int will_compress;
b888db2b 345
c8b97818
CM
346 orig_start = start;
347
c8b97818
CM
348again:
349 will_compress = 0;
350 nr_pages = (end >> PAGE_CACHE_SHIFT) - (start >> PAGE_CACHE_SHIFT) + 1;
351 nr_pages = min(nr_pages, (128 * 1024UL) / PAGE_CACHE_SIZE);
be20aa9d 352
c8b97818
CM
353 actual_end = min_t(u64, i_size_read(inode), end + 1);
354 total_compressed = actual_end - start;
355
356 /* we want to make sure that amount of ram required to uncompress
357 * an extent is reasonable, so we limit the total size in ram
771ed689
CM
358 * of a compressed extent to 128k. This is a crucial number
359 * because it also controls how easily we can spread reads across
360 * cpus for decompression.
361 *
362 * We also want to make sure the amount of IO required to do
363 * a random read is reasonably small, so we limit the size of
364 * a compressed extent to 128k.
c8b97818
CM
365 */
366 total_compressed = min(total_compressed, max_uncompressed);
db94535d 367 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
be20aa9d 368 num_bytes = max(blocksize, num_bytes);
c8b97818
CM
369 disk_num_bytes = num_bytes;
370 total_in = 0;
371 ret = 0;
db94535d 372
771ed689
CM
373 /*
374 * we do compression for mount -o compress and when the
375 * inode has not been flagged as nocompress. This flag can
376 * change at any time if we discover bad compression ratios.
c8b97818
CM
377 */
378 if (!btrfs_test_flag(inode, NOCOMPRESS) &&
379 btrfs_test_opt(root, COMPRESS)) {
380 WARN_ON(pages);
cfbc246e 381 pages = kzalloc(sizeof(struct page *) * nr_pages, GFP_NOFS);
c8b97818 382
c8b97818
CM
383 ret = btrfs_zlib_compress_pages(inode->i_mapping, start,
384 total_compressed, pages,
385 nr_pages, &nr_pages_ret,
386 &total_in,
387 &total_compressed,
388 max_compressed);
389
390 if (!ret) {
391 unsigned long offset = total_compressed &
392 (PAGE_CACHE_SIZE - 1);
393 struct page *page = pages[nr_pages_ret - 1];
394 char *kaddr;
395
396 /* zero the tail end of the last page, we might be
397 * sending it down to disk
398 */
399 if (offset) {
400 kaddr = kmap_atomic(page, KM_USER0);
401 memset(kaddr + offset, 0,
402 PAGE_CACHE_SIZE - offset);
403 kunmap_atomic(kaddr, KM_USER0);
404 }
405 will_compress = 1;
406 }
407 }
408 if (start == 0) {
771ed689
CM
409 trans = btrfs_join_transaction(root, 1);
410 BUG_ON(!trans);
411 btrfs_set_trans_block_group(trans, inode);
412
c8b97818 413 /* lets try to make an inline extent */
771ed689 414 if (ret || total_in < (actual_end - start)) {
c8b97818 415 /* we didn't compress the entire range, try
771ed689 416 * to make an uncompressed inline extent.
c8b97818
CM
417 */
418 ret = cow_file_range_inline(trans, root, inode,
419 start, end, 0, NULL);
420 } else {
771ed689 421 /* try making a compressed inline extent */
c8b97818
CM
422 ret = cow_file_range_inline(trans, root, inode,
423 start, end,
424 total_compressed, pages);
425 }
771ed689 426 btrfs_end_transaction(trans, root);
c8b97818 427 if (ret == 0) {
771ed689
CM
428 /*
429 * inline extent creation worked, we don't need
430 * to create any more async work items. Unlock
431 * and free up our temp pages.
432 */
c8b97818
CM
433 extent_clear_unlock_delalloc(inode,
434 &BTRFS_I(inode)->io_tree,
771ed689
CM
435 start, end, NULL, 1, 0,
436 0, 1, 1, 1);
c8b97818
CM
437 ret = 0;
438 goto free_pages_out;
439 }
440 }
441
442 if (will_compress) {
443 /*
444 * we aren't doing an inline extent round the compressed size
445 * up to a block size boundary so the allocator does sane
446 * things
447 */
448 total_compressed = (total_compressed + blocksize - 1) &
449 ~(blocksize - 1);
450
451 /*
452 * one last check to make sure the compression is really a
453 * win, compare the page count read with the blocks on disk
454 */
455 total_in = (total_in + PAGE_CACHE_SIZE - 1) &
456 ~(PAGE_CACHE_SIZE - 1);
457 if (total_compressed >= total_in) {
458 will_compress = 0;
459 } else {
460 disk_num_bytes = total_compressed;
461 num_bytes = total_in;
462 }
463 }
464 if (!will_compress && pages) {
465 /*
466 * the compression code ran but failed to make things smaller,
467 * free any pages it allocated and our page pointer array
468 */
469 for (i = 0; i < nr_pages_ret; i++) {
70b99e69 470 WARN_ON(pages[i]->mapping);
c8b97818
CM
471 page_cache_release(pages[i]);
472 }
473 kfree(pages);
474 pages = NULL;
475 total_compressed = 0;
476 nr_pages_ret = 0;
477
478 /* flag the file so we don't compress in the future */
479 btrfs_set_flag(inode, NOCOMPRESS);
480 }
771ed689
CM
481 if (will_compress) {
482 *num_added += 1;
c8b97818 483
771ed689
CM
484 /* the async work queues will take care of doing actual
485 * allocation on disk for these compressed pages,
486 * and will submit them to the elevator.
487 */
488 add_async_extent(async_cow, start, num_bytes,
489 total_compressed, pages, nr_pages_ret);
179e29e4 490
771ed689
CM
491 if (start + num_bytes < end) {
492 start += num_bytes;
493 pages = NULL;
494 cond_resched();
495 goto again;
496 }
497 } else {
498 /*
499 * No compression, but we still need to write the pages in
500 * the file we've been given so far. redirty the locked
501 * page if it corresponds to our extent and set things up
502 * for the async work queue to run cow_file_range to do
503 * the normal delalloc dance
504 */
505 if (page_offset(locked_page) >= start &&
506 page_offset(locked_page) <= end) {
507 __set_page_dirty_nobuffers(locked_page);
508 /* unlocked later on in the async handlers */
509 }
510 add_async_extent(async_cow, start, end - start + 1, 0, NULL, 0);
511 *num_added += 1;
512 }
3b951516 513
771ed689
CM
514out:
515 return 0;
516
517free_pages_out:
518 for (i = 0; i < nr_pages_ret; i++) {
519 WARN_ON(pages[i]->mapping);
520 page_cache_release(pages[i]);
521 }
522 if (pages)
523 kfree(pages);
524
525 goto out;
526}
527
528/*
529 * phase two of compressed writeback. This is the ordered portion
530 * of the code, which only gets called in the order the work was
531 * queued. We walk all the async extents created by compress_file_range
532 * and send them down to the disk.
533 */
534static noinline int submit_compressed_extents(struct inode *inode,
535 struct async_cow *async_cow)
536{
537 struct async_extent *async_extent;
538 u64 alloc_hint = 0;
539 struct btrfs_trans_handle *trans;
540 struct btrfs_key ins;
541 struct extent_map *em;
542 struct btrfs_root *root = BTRFS_I(inode)->root;
543 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
544 struct extent_io_tree *io_tree;
545 int ret;
546
547 if (list_empty(&async_cow->extents))
548 return 0;
549
550 trans = btrfs_join_transaction(root, 1);
551
552 while(!list_empty(&async_cow->extents)) {
553 async_extent = list_entry(async_cow->extents.next,
554 struct async_extent, list);
555 list_del(&async_extent->list);
c8b97818 556
771ed689
CM
557 io_tree = &BTRFS_I(inode)->io_tree;
558
559 /* did the compression code fall back to uncompressed IO? */
560 if (!async_extent->pages) {
561 int page_started = 0;
562 unsigned long nr_written = 0;
563
564 lock_extent(io_tree, async_extent->start,
565 async_extent->start + async_extent->ram_size - 1,
566 GFP_NOFS);
567
568 /* allocate blocks */
569 cow_file_range(inode, async_cow->locked_page,
570 async_extent->start,
571 async_extent->start +
572 async_extent->ram_size - 1,
573 &page_started, &nr_written, 0);
574
575 /*
576 * if page_started, cow_file_range inserted an
577 * inline extent and took care of all the unlocking
578 * and IO for us. Otherwise, we need to submit
579 * all those pages down to the drive.
580 */
581 if (!page_started)
582 extent_write_locked_range(io_tree,
583 inode, async_extent->start,
584 async_extent->start +
585 async_extent->ram_size - 1,
586 btrfs_get_extent,
587 WB_SYNC_ALL);
588 kfree(async_extent);
589 cond_resched();
590 continue;
591 }
592
593 lock_extent(io_tree, async_extent->start,
594 async_extent->start + async_extent->ram_size - 1,
595 GFP_NOFS);
c8b97818 596 /*
771ed689
CM
597 * here we're doing allocation and writeback of the
598 * compressed pages
c8b97818 599 */
771ed689
CM
600 btrfs_drop_extent_cache(inode, async_extent->start,
601 async_extent->start +
602 async_extent->ram_size - 1, 0);
603
604 ret = btrfs_reserve_extent(trans, root,
605 async_extent->compressed_size,
606 async_extent->compressed_size,
607 0, alloc_hint,
608 (u64)-1, &ins, 1);
609 BUG_ON(ret);
610 em = alloc_extent_map(GFP_NOFS);
611 em->start = async_extent->start;
612 em->len = async_extent->ram_size;
445a6944 613 em->orig_start = em->start;
c8b97818 614
771ed689
CM
615 em->block_start = ins.objectid;
616 em->block_len = ins.offset;
617 em->bdev = root->fs_info->fs_devices->latest_bdev;
618 set_bit(EXTENT_FLAG_PINNED, &em->flags);
619 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
620
621 while(1) {
622 spin_lock(&em_tree->lock);
623 ret = add_extent_mapping(em_tree, em);
624 spin_unlock(&em_tree->lock);
625 if (ret != -EEXIST) {
626 free_extent_map(em);
627 break;
628 }
629 btrfs_drop_extent_cache(inode, async_extent->start,
630 async_extent->start +
631 async_extent->ram_size - 1, 0);
632 }
633
634 ret = btrfs_add_ordered_extent(inode, async_extent->start,
635 ins.objectid,
636 async_extent->ram_size,
637 ins.offset,
638 BTRFS_ORDERED_COMPRESSED);
639 BUG_ON(ret);
640
641 btrfs_end_transaction(trans, root);
642
643 /*
644 * clear dirty, set writeback and unlock the pages.
645 */
646 extent_clear_unlock_delalloc(inode,
647 &BTRFS_I(inode)->io_tree,
648 async_extent->start,
649 async_extent->start +
650 async_extent->ram_size - 1,
651 NULL, 1, 1, 0, 1, 1, 0);
652
653 ret = btrfs_submit_compressed_write(inode,
654 async_extent->start,
655 async_extent->ram_size,
656 ins.objectid,
657 ins.offset, async_extent->pages,
658 async_extent->nr_pages);
659
660 BUG_ON(ret);
661 trans = btrfs_join_transaction(root, 1);
662 alloc_hint = ins.objectid + ins.offset;
663 kfree(async_extent);
664 cond_resched();
665 }
666
667 btrfs_end_transaction(trans, root);
668 return 0;
669}
670
671/*
672 * when extent_io.c finds a delayed allocation range in the file,
673 * the call backs end up in this code. The basic idea is to
674 * allocate extents on disk for the range, and create ordered data structs
675 * in ram to track those extents.
676 *
677 * locked_page is the page that writepage had locked already. We use
678 * it to make sure we don't do extra locks or unlocks.
679 *
680 * *page_started is set to one if we unlock locked_page and do everything
681 * required to start IO on it. It may be clean and already done with
682 * IO when we return.
683 */
684static noinline int cow_file_range(struct inode *inode,
685 struct page *locked_page,
686 u64 start, u64 end, int *page_started,
687 unsigned long *nr_written,
688 int unlock)
689{
690 struct btrfs_root *root = BTRFS_I(inode)->root;
691 struct btrfs_trans_handle *trans;
692 u64 alloc_hint = 0;
693 u64 num_bytes;
694 unsigned long ram_size;
695 u64 disk_num_bytes;
696 u64 cur_alloc_size;
697 u64 blocksize = root->sectorsize;
698 u64 actual_end;
699 struct btrfs_key ins;
700 struct extent_map *em;
701 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
702 int ret = 0;
703
704 trans = btrfs_join_transaction(root, 1);
705 BUG_ON(!trans);
706 btrfs_set_trans_block_group(trans, inode);
707
708 actual_end = min_t(u64, i_size_read(inode), end + 1);
709
710 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
711 num_bytes = max(blocksize, num_bytes);
712 disk_num_bytes = num_bytes;
713 ret = 0;
714
715 if (start == 0) {
716 /* lets try to make an inline extent */
717 ret = cow_file_range_inline(trans, root, inode,
718 start, end, 0, NULL);
719 if (ret == 0) {
720 extent_clear_unlock_delalloc(inode,
721 &BTRFS_I(inode)->io_tree,
722 start, end, NULL, 1, 1,
723 1, 1, 1, 1);
724 *nr_written = *nr_written +
725 (end - start + PAGE_CACHE_SIZE) / PAGE_CACHE_SIZE;
726 *page_started = 1;
727 ret = 0;
728 goto out;
729 }
730 }
731
732 BUG_ON(disk_num_bytes >
733 btrfs_super_total_bytes(&root->fs_info->super_copy));
734
735 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1, 0);
736
737 while(disk_num_bytes > 0) {
c8b97818 738 cur_alloc_size = min(disk_num_bytes, root->fs_info->max_extent);
e6dcd2dc 739 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
771ed689 740 root->sectorsize, 0, alloc_hint,
e6dcd2dc 741 (u64)-1, &ins, 1);
c59f8951 742 if (ret) {
771ed689 743 BUG();
c59f8951 744 }
e6dcd2dc
CM
745 em = alloc_extent_map(GFP_NOFS);
746 em->start = start;
445a6944 747 em->orig_start = em->start;
c8b97818 748
771ed689
CM
749 ram_size = ins.offset;
750 em->len = ins.offset;
c8b97818 751
e6dcd2dc 752 em->block_start = ins.objectid;
c8b97818 753 em->block_len = ins.offset;
e6dcd2dc 754 em->bdev = root->fs_info->fs_devices->latest_bdev;
7f3c74fb 755 set_bit(EXTENT_FLAG_PINNED, &em->flags);
c8b97818 756
e6dcd2dc
CM
757 while(1) {
758 spin_lock(&em_tree->lock);
759 ret = add_extent_mapping(em_tree, em);
760 spin_unlock(&em_tree->lock);
761 if (ret != -EEXIST) {
762 free_extent_map(em);
763 break;
764 }
765 btrfs_drop_extent_cache(inode, start,
c8b97818 766 start + ram_size - 1, 0);
e6dcd2dc
CM
767 }
768
98d20f67 769 cur_alloc_size = ins.offset;
e6dcd2dc 770 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
771ed689 771 ram_size, cur_alloc_size, 0);
e6dcd2dc 772 BUG_ON(ret);
c8b97818 773
17d217fe
YZ
774 if (root->root_key.objectid ==
775 BTRFS_DATA_RELOC_TREE_OBJECTID) {
776 ret = btrfs_reloc_clone_csums(inode, start,
777 cur_alloc_size);
778 BUG_ON(ret);
779 }
780
c8b97818
CM
781 if (disk_num_bytes < cur_alloc_size) {
782 printk("num_bytes %Lu cur_alloc %Lu\n", disk_num_bytes,
3b951516
CM
783 cur_alloc_size);
784 break;
785 }
c8b97818
CM
786 /* we're not doing compressed IO, don't unlock the first
787 * page (which the caller expects to stay locked), don't
788 * clear any dirty bits and don't set any writeback bits
789 */
790 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
791 start, start + ram_size - 1,
771ed689
CM
792 locked_page, unlock, 1,
793 1, 0, 0, 0);
c8b97818 794 disk_num_bytes -= cur_alloc_size;
c59f8951
CM
795 num_bytes -= cur_alloc_size;
796 alloc_hint = ins.objectid + ins.offset;
797 start += cur_alloc_size;
b888db2b 798 }
b888db2b 799out:
771ed689 800 ret = 0;
b888db2b 801 btrfs_end_transaction(trans, root);
c8b97818 802
be20aa9d 803 return ret;
771ed689 804}
c8b97818 805
771ed689
CM
806/*
807 * work queue call back to started compression on a file and pages
808 */
809static noinline void async_cow_start(struct btrfs_work *work)
810{
811 struct async_cow *async_cow;
812 int num_added = 0;
813 async_cow = container_of(work, struct async_cow, work);
814
815 compress_file_range(async_cow->inode, async_cow->locked_page,
816 async_cow->start, async_cow->end, async_cow,
817 &num_added);
818 if (num_added == 0)
819 async_cow->inode = NULL;
820}
821
822/*
823 * work queue call back to submit previously compressed pages
824 */
825static noinline void async_cow_submit(struct btrfs_work *work)
826{
827 struct async_cow *async_cow;
828 struct btrfs_root *root;
829 unsigned long nr_pages;
830
831 async_cow = container_of(work, struct async_cow, work);
832
833 root = async_cow->root;
834 nr_pages = (async_cow->end - async_cow->start + PAGE_CACHE_SIZE) >>
835 PAGE_CACHE_SHIFT;
836
837 atomic_sub(nr_pages, &root->fs_info->async_delalloc_pages);
838
839 if (atomic_read(&root->fs_info->async_delalloc_pages) <
840 5 * 1042 * 1024 &&
841 waitqueue_active(&root->fs_info->async_submit_wait))
842 wake_up(&root->fs_info->async_submit_wait);
843
844 if (async_cow->inode) {
845 submit_compressed_extents(async_cow->inode, async_cow);
70b99e69 846 }
771ed689 847}
c8b97818 848
771ed689
CM
849static noinline void async_cow_free(struct btrfs_work *work)
850{
851 struct async_cow *async_cow;
852 async_cow = container_of(work, struct async_cow, work);
853 kfree(async_cow);
854}
855
856static int cow_file_range_async(struct inode *inode, struct page *locked_page,
857 u64 start, u64 end, int *page_started,
858 unsigned long *nr_written)
859{
860 struct async_cow *async_cow;
861 struct btrfs_root *root = BTRFS_I(inode)->root;
862 unsigned long nr_pages;
863 u64 cur_end;
864 int limit = 10 * 1024 * 1042;
865
866 if (!btrfs_test_opt(root, COMPRESS)) {
867 return cow_file_range(inode, locked_page, start, end,
868 page_started, nr_written, 1);
869 }
870
871 clear_extent_bit(&BTRFS_I(inode)->io_tree, start, end, EXTENT_LOCKED |
872 EXTENT_DELALLOC, 1, 0, GFP_NOFS);
873 while(start < end) {
874 async_cow = kmalloc(sizeof(*async_cow), GFP_NOFS);
875 async_cow->inode = inode;
876 async_cow->root = root;
877 async_cow->locked_page = locked_page;
878 async_cow->start = start;
879
880 if (btrfs_test_flag(inode, NOCOMPRESS))
881 cur_end = end;
882 else
883 cur_end = min(end, start + 512 * 1024 - 1);
884
885 async_cow->end = cur_end;
886 INIT_LIST_HEAD(&async_cow->extents);
887
888 async_cow->work.func = async_cow_start;
889 async_cow->work.ordered_func = async_cow_submit;
890 async_cow->work.ordered_free = async_cow_free;
891 async_cow->work.flags = 0;
892
771ed689
CM
893 nr_pages = (cur_end - start + PAGE_CACHE_SIZE) >>
894 PAGE_CACHE_SHIFT;
895 atomic_add(nr_pages, &root->fs_info->async_delalloc_pages);
896
897 btrfs_queue_worker(&root->fs_info->delalloc_workers,
898 &async_cow->work);
899
900 if (atomic_read(&root->fs_info->async_delalloc_pages) > limit) {
901 wait_event(root->fs_info->async_submit_wait,
902 (atomic_read(&root->fs_info->async_delalloc_pages) <
903 limit));
904 }
905
906 while(atomic_read(&root->fs_info->async_submit_draining) &&
907 atomic_read(&root->fs_info->async_delalloc_pages)) {
908 wait_event(root->fs_info->async_submit_wait,
909 (atomic_read(&root->fs_info->async_delalloc_pages) ==
910 0));
911 }
912
913 *nr_written += nr_pages;
914 start = cur_end + 1;
915 }
916 *page_started = 1;
917 return 0;
be20aa9d
CM
918}
919
17d217fe
YZ
920static int noinline csum_exist_in_range(struct btrfs_root *root,
921 u64 bytenr, u64 num_bytes)
922{
923 int ret;
924 struct btrfs_ordered_sum *sums;
925 LIST_HEAD(list);
926
927 ret = btrfs_lookup_csums_range(root, bytenr, bytenr + num_bytes - 1,
928 &list);
929 if (ret == 0 && list_empty(&list))
930 return 0;
931
932 while (!list_empty(&list)) {
933 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
934 list_del(&sums->list);
935 kfree(sums);
936 }
937 return 1;
938}
939
d352ac68
CM
940/*
941 * when nowcow writeback call back. This checks for snapshots or COW copies
942 * of the extents that exist in the file, and COWs the file as required.
943 *
944 * If no cow copies or snapshots exist, we write directly to the existing
945 * blocks on disk
946 */
c8b97818 947static int run_delalloc_nocow(struct inode *inode, struct page *locked_page,
771ed689
CM
948 u64 start, u64 end, int *page_started, int force,
949 unsigned long *nr_written)
be20aa9d 950{
be20aa9d 951 struct btrfs_root *root = BTRFS_I(inode)->root;
7ea394f1 952 struct btrfs_trans_handle *trans;
be20aa9d 953 struct extent_buffer *leaf;
be20aa9d 954 struct btrfs_path *path;
80ff3856 955 struct btrfs_file_extent_item *fi;
be20aa9d 956 struct btrfs_key found_key;
80ff3856
YZ
957 u64 cow_start;
958 u64 cur_offset;
959 u64 extent_end;
960 u64 disk_bytenr;
961 u64 num_bytes;
962 int extent_type;
963 int ret;
d899e052 964 int type;
80ff3856
YZ
965 int nocow;
966 int check_prev = 1;
be20aa9d
CM
967
968 path = btrfs_alloc_path();
969 BUG_ON(!path);
7ea394f1
YZ
970 trans = btrfs_join_transaction(root, 1);
971 BUG_ON(!trans);
be20aa9d 972
80ff3856
YZ
973 cow_start = (u64)-1;
974 cur_offset = start;
975 while (1) {
976 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
977 cur_offset, 0);
978 BUG_ON(ret < 0);
979 if (ret > 0 && path->slots[0] > 0 && check_prev) {
980 leaf = path->nodes[0];
981 btrfs_item_key_to_cpu(leaf, &found_key,
982 path->slots[0] - 1);
983 if (found_key.objectid == inode->i_ino &&
984 found_key.type == BTRFS_EXTENT_DATA_KEY)
985 path->slots[0]--;
986 }
987 check_prev = 0;
988next_slot:
989 leaf = path->nodes[0];
990 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
991 ret = btrfs_next_leaf(root, path);
992 if (ret < 0)
993 BUG_ON(1);
994 if (ret > 0)
995 break;
996 leaf = path->nodes[0];
997 }
be20aa9d 998
80ff3856
YZ
999 nocow = 0;
1000 disk_bytenr = 0;
17d217fe 1001 num_bytes = 0;
80ff3856
YZ
1002 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1003
1004 if (found_key.objectid > inode->i_ino ||
1005 found_key.type > BTRFS_EXTENT_DATA_KEY ||
1006 found_key.offset > end)
1007 break;
1008
1009 if (found_key.offset > cur_offset) {
1010 extent_end = found_key.offset;
1011 goto out_check;
1012 }
1013
1014 fi = btrfs_item_ptr(leaf, path->slots[0],
1015 struct btrfs_file_extent_item);
1016 extent_type = btrfs_file_extent_type(leaf, fi);
1017
d899e052
YZ
1018 if (extent_type == BTRFS_FILE_EXTENT_REG ||
1019 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
80ff3856
YZ
1020 disk_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1021 extent_end = found_key.offset +
1022 btrfs_file_extent_num_bytes(leaf, fi);
1023 if (extent_end <= start) {
1024 path->slots[0]++;
1025 goto next_slot;
1026 }
17d217fe
YZ
1027 if (disk_bytenr == 0)
1028 goto out_check;
80ff3856
YZ
1029 if (btrfs_file_extent_compression(leaf, fi) ||
1030 btrfs_file_extent_encryption(leaf, fi) ||
1031 btrfs_file_extent_other_encoding(leaf, fi))
1032 goto out_check;
d899e052
YZ
1033 if (extent_type == BTRFS_FILE_EXTENT_REG && !force)
1034 goto out_check;
d2fb3437 1035 if (btrfs_extent_readonly(root, disk_bytenr))
80ff3856 1036 goto out_check;
17d217fe
YZ
1037 if (btrfs_cross_ref_exist(trans, root, inode->i_ino,
1038 disk_bytenr))
1039 goto out_check;
80ff3856 1040 disk_bytenr += btrfs_file_extent_offset(leaf, fi);
17d217fe
YZ
1041 disk_bytenr += cur_offset - found_key.offset;
1042 num_bytes = min(end + 1, extent_end) - cur_offset;
1043 /*
1044 * force cow if csum exists in the range.
1045 * this ensure that csum for a given extent are
1046 * either valid or do not exist.
1047 */
1048 if (csum_exist_in_range(root, disk_bytenr, num_bytes))
1049 goto out_check;
80ff3856
YZ
1050 nocow = 1;
1051 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1052 extent_end = found_key.offset +
1053 btrfs_file_extent_inline_len(leaf, fi);
1054 extent_end = ALIGN(extent_end, root->sectorsize);
1055 } else {
1056 BUG_ON(1);
1057 }
1058out_check:
1059 if (extent_end <= start) {
1060 path->slots[0]++;
1061 goto next_slot;
1062 }
1063 if (!nocow) {
1064 if (cow_start == (u64)-1)
1065 cow_start = cur_offset;
1066 cur_offset = extent_end;
1067 if (cur_offset > end)
1068 break;
1069 path->slots[0]++;
1070 goto next_slot;
7ea394f1
YZ
1071 }
1072
1073 btrfs_release_path(root, path);
80ff3856
YZ
1074 if (cow_start != (u64)-1) {
1075 ret = cow_file_range(inode, locked_page, cow_start,
771ed689
CM
1076 found_key.offset - 1, page_started,
1077 nr_written, 1);
80ff3856
YZ
1078 BUG_ON(ret);
1079 cow_start = (u64)-1;
7ea394f1 1080 }
80ff3856 1081
d899e052
YZ
1082 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1083 struct extent_map *em;
1084 struct extent_map_tree *em_tree;
1085 em_tree = &BTRFS_I(inode)->extent_tree;
1086 em = alloc_extent_map(GFP_NOFS);
1087 em->start = cur_offset;
445a6944 1088 em->orig_start = em->start;
d899e052
YZ
1089 em->len = num_bytes;
1090 em->block_len = num_bytes;
1091 em->block_start = disk_bytenr;
1092 em->bdev = root->fs_info->fs_devices->latest_bdev;
1093 set_bit(EXTENT_FLAG_PINNED, &em->flags);
1094 while (1) {
1095 spin_lock(&em_tree->lock);
1096 ret = add_extent_mapping(em_tree, em);
1097 spin_unlock(&em_tree->lock);
1098 if (ret != -EEXIST) {
1099 free_extent_map(em);
1100 break;
1101 }
1102 btrfs_drop_extent_cache(inode, em->start,
1103 em->start + em->len - 1, 0);
1104 }
1105 type = BTRFS_ORDERED_PREALLOC;
1106 } else {
1107 type = BTRFS_ORDERED_NOCOW;
1108 }
80ff3856
YZ
1109
1110 ret = btrfs_add_ordered_extent(inode, cur_offset, disk_bytenr,
d899e052
YZ
1111 num_bytes, num_bytes, type);
1112 BUG_ON(ret);
771ed689 1113
d899e052
YZ
1114 extent_clear_unlock_delalloc(inode, &BTRFS_I(inode)->io_tree,
1115 cur_offset, cur_offset + num_bytes - 1,
771ed689 1116 locked_page, 1, 1, 1, 0, 0, 0);
80ff3856
YZ
1117 cur_offset = extent_end;
1118 if (cur_offset > end)
1119 break;
be20aa9d 1120 }
80ff3856
YZ
1121 btrfs_release_path(root, path);
1122
1123 if (cur_offset <= end && cow_start == (u64)-1)
1124 cow_start = cur_offset;
1125 if (cow_start != (u64)-1) {
1126 ret = cow_file_range(inode, locked_page, cow_start, end,
771ed689 1127 page_started, nr_written, 1);
80ff3856
YZ
1128 BUG_ON(ret);
1129 }
1130
1131 ret = btrfs_end_transaction(trans, root);
1132 BUG_ON(ret);
7ea394f1 1133 btrfs_free_path(path);
80ff3856 1134 return 0;
be20aa9d
CM
1135}
1136
d352ac68
CM
1137/*
1138 * extent_io.c call back to do delayed allocation processing
1139 */
c8b97818 1140static int run_delalloc_range(struct inode *inode, struct page *locked_page,
771ed689
CM
1141 u64 start, u64 end, int *page_started,
1142 unsigned long *nr_written)
be20aa9d 1143{
be20aa9d 1144 int ret;
a2135011 1145
17d217fe 1146 if (btrfs_test_flag(inode, NODATACOW))
c8b97818 1147 ret = run_delalloc_nocow(inode, locked_page, start, end,
ce397c06 1148 page_started, 1, nr_written);
d899e052
YZ
1149 else if (btrfs_test_flag(inode, PREALLOC))
1150 ret = run_delalloc_nocow(inode, locked_page, start, end,
ce397c06 1151 page_started, 0, nr_written);
be20aa9d 1152 else
771ed689
CM
1153 ret = cow_file_range_async(inode, locked_page, start, end,
1154 page_started, nr_written);
1832a6d5 1155
b888db2b
CM
1156 return ret;
1157}
1158
d352ac68
CM
1159/*
1160 * extent_io.c set_bit_hook, used to track delayed allocation
1161 * bytes in this file, and to maintain the list of inodes that
1162 * have pending delalloc work to be done.
1163 */
b2950863 1164static int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
b0c68f8b 1165 unsigned long old, unsigned long bits)
291d673e 1166{
bcbfce8a 1167 unsigned long flags;
b0c68f8b 1168 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
291d673e 1169 struct btrfs_root *root = BTRFS_I(inode)->root;
bcbfce8a 1170 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
9069218d 1171 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
291d673e 1172 root->fs_info->delalloc_bytes += end - start + 1;
ea8c2819
CM
1173 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1174 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
1175 &root->fs_info->delalloc_inodes);
1176 }
bcbfce8a 1177 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
291d673e
CM
1178 }
1179 return 0;
1180}
1181
d352ac68
CM
1182/*
1183 * extent_io.c clear_bit_hook, see set_bit_hook for why
1184 */
b2950863 1185static int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
b0c68f8b 1186 unsigned long old, unsigned long bits)
291d673e 1187{
b0c68f8b 1188 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
291d673e 1189 struct btrfs_root *root = BTRFS_I(inode)->root;
bcbfce8a
CM
1190 unsigned long flags;
1191
1192 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
b0c68f8b
CM
1193 if (end - start + 1 > root->fs_info->delalloc_bytes) {
1194 printk("warning: delalloc account %Lu %Lu\n",
1195 end - start + 1, root->fs_info->delalloc_bytes);
1196 root->fs_info->delalloc_bytes = 0;
9069218d 1197 BTRFS_I(inode)->delalloc_bytes = 0;
b0c68f8b
CM
1198 } else {
1199 root->fs_info->delalloc_bytes -= end - start + 1;
9069218d 1200 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
b0c68f8b 1201 }
ea8c2819
CM
1202 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
1203 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
1204 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
1205 }
bcbfce8a 1206 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
291d673e
CM
1207 }
1208 return 0;
1209}
1210
d352ac68
CM
1211/*
1212 * extent_io.c merge_bio_hook, this must check the chunk tree to make sure
1213 * we don't create bios that span stripes or chunks
1214 */
239b14b3 1215int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
c8b97818
CM
1216 size_t size, struct bio *bio,
1217 unsigned long bio_flags)
239b14b3
CM
1218{
1219 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1220 struct btrfs_mapping_tree *map_tree;
a62b9401 1221 u64 logical = (u64)bio->bi_sector << 9;
239b14b3
CM
1222 u64 length = 0;
1223 u64 map_length;
239b14b3
CM
1224 int ret;
1225
771ed689
CM
1226 if (bio_flags & EXTENT_BIO_COMPRESSED)
1227 return 0;
1228
f2d8d74d 1229 length = bio->bi_size;
239b14b3
CM
1230 map_tree = &root->fs_info->mapping_tree;
1231 map_length = length;
cea9e445 1232 ret = btrfs_map_block(map_tree, READ, logical,
f188591e 1233 &map_length, NULL, 0);
cea9e445 1234
239b14b3 1235 if (map_length < length + size) {
239b14b3
CM
1236 return 1;
1237 }
1238 return 0;
1239}
1240
d352ac68
CM
1241/*
1242 * in order to insert checksums into the metadata in large chunks,
1243 * we wait until bio submission time. All the pages in the bio are
1244 * checksummed and sums are attached onto the ordered extent record.
1245 *
1246 * At IO completion time the cums attached on the ordered extent record
1247 * are inserted into the btree
1248 */
b2950863 1249static int __btrfs_submit_bio_start(struct inode *inode, int rw, struct bio *bio,
c8b97818 1250 int mirror_num, unsigned long bio_flags)
065631f6 1251{
065631f6 1252 struct btrfs_root *root = BTRFS_I(inode)->root;
065631f6 1253 int ret = 0;
e015640f 1254
d20f7043 1255 ret = btrfs_csum_one_bio(root, inode, bio, 0, 0);
44b8bd7e 1256 BUG_ON(ret);
4a69a410
CM
1257 return 0;
1258}
e015640f 1259
4a69a410
CM
1260/*
1261 * in order to insert checksums into the metadata in large chunks,
1262 * we wait until bio submission time. All the pages in the bio are
1263 * checksummed and sums are attached onto the ordered extent record.
1264 *
1265 * At IO completion time the cums attached on the ordered extent record
1266 * are inserted into the btree
1267 */
b2950863 1268static int __btrfs_submit_bio_done(struct inode *inode, int rw, struct bio *bio,
4a69a410
CM
1269 int mirror_num, unsigned long bio_flags)
1270{
1271 struct btrfs_root *root = BTRFS_I(inode)->root;
8b712842 1272 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
44b8bd7e
CM
1273}
1274
d352ac68
CM
1275/*
1276 * extent_io.c submission hook. This does the right thing for csum calculation on write,
1277 * or reading the csums from the tree before a read
1278 */
b2950863 1279static int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
c8b97818 1280 int mirror_num, unsigned long bio_flags)
44b8bd7e
CM
1281{
1282 struct btrfs_root *root = BTRFS_I(inode)->root;
1283 int ret = 0;
19b9bdb0 1284 int skip_sum;
44b8bd7e 1285
e6dcd2dc
CM
1286 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
1287 BUG_ON(ret);
065631f6 1288
17d217fe 1289 skip_sum = btrfs_test_flag(inode, NODATASUM);
7ea394f1 1290
4d1b5fb4 1291 if (!(rw & (1 << BIO_RW))) {
d20f7043 1292 if (bio_flags & EXTENT_BIO_COMPRESSED) {
c8b97818
CM
1293 return btrfs_submit_compressed_read(inode, bio,
1294 mirror_num, bio_flags);
d20f7043
CM
1295 } else if (!skip_sum)
1296 btrfs_lookup_bio_sums(root, inode, bio, NULL);
4d1b5fb4 1297 goto mapit;
19b9bdb0 1298 } else if (!skip_sum) {
17d217fe
YZ
1299 /* csum items have already been cloned */
1300 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
1301 goto mapit;
19b9bdb0
CM
1302 /* we're doing a write, do the async checksumming */
1303 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
44b8bd7e 1304 inode, rw, bio, mirror_num,
4a69a410
CM
1305 bio_flags, __btrfs_submit_bio_start,
1306 __btrfs_submit_bio_done);
19b9bdb0
CM
1307 }
1308
0b86a832 1309mapit:
8b712842 1310 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
065631f6 1311}
6885f308 1312
d352ac68
CM
1313/*
1314 * given a list of ordered sums record them in the inode. This happens
1315 * at IO completion time based on sums calculated at bio submission time.
1316 */
ba1da2f4 1317static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
e6dcd2dc
CM
1318 struct inode *inode, u64 file_offset,
1319 struct list_head *list)
1320{
1321 struct list_head *cur;
1322 struct btrfs_ordered_sum *sum;
1323
1324 btrfs_set_trans_block_group(trans, inode);
ba1da2f4 1325 list_for_each(cur, list) {
e6dcd2dc 1326 sum = list_entry(cur, struct btrfs_ordered_sum, list);
d20f7043
CM
1327 btrfs_csum_file_blocks(trans,
1328 BTRFS_I(inode)->root->fs_info->csum_root, sum);
e6dcd2dc
CM
1329 }
1330 return 0;
1331}
1332
ea8c2819
CM
1333int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
1334{
771ed689
CM
1335 if ((end & (PAGE_CACHE_SIZE - 1)) == 0) {
1336 WARN_ON(1);
1337 }
ea8c2819
CM
1338 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
1339 GFP_NOFS);
1340}
1341
d352ac68 1342/* see btrfs_writepage_start_hook for details on why this is required */
247e743c
CM
1343struct btrfs_writepage_fixup {
1344 struct page *page;
1345 struct btrfs_work work;
1346};
1347
b2950863 1348static void btrfs_writepage_fixup_worker(struct btrfs_work *work)
247e743c
CM
1349{
1350 struct btrfs_writepage_fixup *fixup;
1351 struct btrfs_ordered_extent *ordered;
1352 struct page *page;
1353 struct inode *inode;
1354 u64 page_start;
1355 u64 page_end;
1356
1357 fixup = container_of(work, struct btrfs_writepage_fixup, work);
1358 page = fixup->page;
4a096752 1359again:
247e743c
CM
1360 lock_page(page);
1361 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
1362 ClearPageChecked(page);
1363 goto out_page;
1364 }
1365
1366 inode = page->mapping->host;
1367 page_start = page_offset(page);
1368 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
1369
1370 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
4a096752
CM
1371
1372 /* already ordered? We're done */
1373 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
1374 EXTENT_ORDERED, 0)) {
247e743c 1375 goto out;
4a096752
CM
1376 }
1377
1378 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1379 if (ordered) {
1380 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
1381 page_end, GFP_NOFS);
1382 unlock_page(page);
1383 btrfs_start_ordered_extent(inode, ordered, 1);
1384 goto again;
1385 }
247e743c 1386
ea8c2819 1387 btrfs_set_extent_delalloc(inode, page_start, page_end);
247e743c
CM
1388 ClearPageChecked(page);
1389out:
1390 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
1391out_page:
1392 unlock_page(page);
1393 page_cache_release(page);
1394}
1395
1396/*
1397 * There are a few paths in the higher layers of the kernel that directly
1398 * set the page dirty bit without asking the filesystem if it is a
1399 * good idea. This causes problems because we want to make sure COW
1400 * properly happens and the data=ordered rules are followed.
1401 *
c8b97818 1402 * In our case any range that doesn't have the ORDERED bit set
247e743c
CM
1403 * hasn't been properly setup for IO. We kick off an async process
1404 * to fix it up. The async helper will wait for ordered extents, set
1405 * the delalloc bit and make it safe to write the page.
1406 */
b2950863 1407static int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
247e743c
CM
1408{
1409 struct inode *inode = page->mapping->host;
1410 struct btrfs_writepage_fixup *fixup;
1411 struct btrfs_root *root = BTRFS_I(inode)->root;
1412 int ret;
1413
1414 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
1415 EXTENT_ORDERED, 0);
1416 if (ret)
1417 return 0;
1418
1419 if (PageChecked(page))
1420 return -EAGAIN;
1421
1422 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
1423 if (!fixup)
1424 return -EAGAIN;
f421950f 1425
247e743c
CM
1426 SetPageChecked(page);
1427 page_cache_get(page);
1428 fixup->work.func = btrfs_writepage_fixup_worker;
1429 fixup->page = page;
1430 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
1431 return -EAGAIN;
1432}
1433
d899e052
YZ
1434static int insert_reserved_file_extent(struct btrfs_trans_handle *trans,
1435 struct inode *inode, u64 file_pos,
1436 u64 disk_bytenr, u64 disk_num_bytes,
1437 u64 num_bytes, u64 ram_bytes,
1438 u8 compression, u8 encryption,
1439 u16 other_encoding, int extent_type)
1440{
1441 struct btrfs_root *root = BTRFS_I(inode)->root;
1442 struct btrfs_file_extent_item *fi;
1443 struct btrfs_path *path;
1444 struct extent_buffer *leaf;
1445 struct btrfs_key ins;
1446 u64 hint;
1447 int ret;
1448
1449 path = btrfs_alloc_path();
1450 BUG_ON(!path);
1451
1452 ret = btrfs_drop_extents(trans, root, inode, file_pos,
1453 file_pos + num_bytes, file_pos, &hint);
1454 BUG_ON(ret);
1455
1456 ins.objectid = inode->i_ino;
1457 ins.offset = file_pos;
1458 ins.type = BTRFS_EXTENT_DATA_KEY;
1459 ret = btrfs_insert_empty_item(trans, root, path, &ins, sizeof(*fi));
1460 BUG_ON(ret);
1461 leaf = path->nodes[0];
1462 fi = btrfs_item_ptr(leaf, path->slots[0],
1463 struct btrfs_file_extent_item);
1464 btrfs_set_file_extent_generation(leaf, fi, trans->transid);
1465 btrfs_set_file_extent_type(leaf, fi, extent_type);
1466 btrfs_set_file_extent_disk_bytenr(leaf, fi, disk_bytenr);
1467 btrfs_set_file_extent_disk_num_bytes(leaf, fi, disk_num_bytes);
1468 btrfs_set_file_extent_offset(leaf, fi, 0);
1469 btrfs_set_file_extent_num_bytes(leaf, fi, num_bytes);
1470 btrfs_set_file_extent_ram_bytes(leaf, fi, ram_bytes);
1471 btrfs_set_file_extent_compression(leaf, fi, compression);
1472 btrfs_set_file_extent_encryption(leaf, fi, encryption);
1473 btrfs_set_file_extent_other_encoding(leaf, fi, other_encoding);
1474 btrfs_mark_buffer_dirty(leaf);
1475
1476 inode_add_bytes(inode, num_bytes);
1477 btrfs_drop_extent_cache(inode, file_pos, file_pos + num_bytes - 1, 0);
1478
1479 ins.objectid = disk_bytenr;
1480 ins.offset = disk_num_bytes;
1481 ins.type = BTRFS_EXTENT_ITEM_KEY;
1482 ret = btrfs_alloc_reserved_extent(trans, root, leaf->start,
1483 root->root_key.objectid,
1484 trans->transid, inode->i_ino, &ins);
1485 BUG_ON(ret);
1486
1487 btrfs_free_path(path);
1488 return 0;
1489}
1490
d352ac68
CM
1491/* as ordered data IO finishes, this gets called so we can finish
1492 * an ordered extent if the range of bytes in the file it covers are
1493 * fully written.
1494 */
211f90e6 1495static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
e6dcd2dc 1496{
e6dcd2dc
CM
1497 struct btrfs_root *root = BTRFS_I(inode)->root;
1498 struct btrfs_trans_handle *trans;
1499 struct btrfs_ordered_extent *ordered_extent;
1500 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
d899e052 1501 int compressed = 0;
e6dcd2dc
CM
1502 int ret;
1503
1504 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
ba1da2f4 1505 if (!ret)
e6dcd2dc 1506 return 0;
e6dcd2dc 1507
f9295749 1508 trans = btrfs_join_transaction(root, 1);
e6dcd2dc
CM
1509
1510 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
1511 BUG_ON(!ordered_extent);
7ea394f1
YZ
1512 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
1513 goto nocow;
e6dcd2dc
CM
1514
1515 lock_extent(io_tree, ordered_extent->file_offset,
1516 ordered_extent->file_offset + ordered_extent->len - 1,
1517 GFP_NOFS);
1518
c8b97818 1519 if (test_bit(BTRFS_ORDERED_COMPRESSED, &ordered_extent->flags))
d899e052
YZ
1520 compressed = 1;
1521 if (test_bit(BTRFS_ORDERED_PREALLOC, &ordered_extent->flags)) {
1522 BUG_ON(compressed);
1523 ret = btrfs_mark_extent_written(trans, root, inode,
1524 ordered_extent->file_offset,
1525 ordered_extent->file_offset +
1526 ordered_extent->len);
1527 BUG_ON(ret);
1528 } else {
1529 ret = insert_reserved_file_extent(trans, inode,
1530 ordered_extent->file_offset,
1531 ordered_extent->start,
1532 ordered_extent->disk_len,
1533 ordered_extent->len,
1534 ordered_extent->len,
1535 compressed, 0, 0,
1536 BTRFS_FILE_EXTENT_REG);
1537 BUG_ON(ret);
1538 }
e6dcd2dc
CM
1539 unlock_extent(io_tree, ordered_extent->file_offset,
1540 ordered_extent->file_offset + ordered_extent->len - 1,
1541 GFP_NOFS);
7ea394f1 1542nocow:
e6dcd2dc
CM
1543 add_pending_csums(trans, inode, ordered_extent->file_offset,
1544 &ordered_extent->list);
1545
34353029 1546 mutex_lock(&BTRFS_I(inode)->extent_mutex);
dbe674a9 1547 btrfs_ordered_update_i_size(inode, ordered_extent);
e02119d5 1548 btrfs_update_inode(trans, root, inode);
e6dcd2dc 1549 btrfs_remove_ordered_extent(inode, ordered_extent);
34353029 1550 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
7f3c74fb 1551
e6dcd2dc
CM
1552 /* once for us */
1553 btrfs_put_ordered_extent(ordered_extent);
1554 /* once for the tree */
1555 btrfs_put_ordered_extent(ordered_extent);
1556
e6dcd2dc
CM
1557 btrfs_end_transaction(trans, root);
1558 return 0;
1559}
1560
b2950863 1561static int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
211f90e6
CM
1562 struct extent_state *state, int uptodate)
1563{
1564 return btrfs_finish_ordered_io(page->mapping->host, start, end);
1565}
1566
d352ac68
CM
1567/*
1568 * When IO fails, either with EIO or csum verification fails, we
1569 * try other mirrors that might have a good copy of the data. This
1570 * io_failure_record is used to record state as we go through all the
1571 * mirrors. If another mirror has good data, the page is set up to date
1572 * and things continue. If a good mirror can't be found, the original
1573 * bio end_io callback is called to indicate things have failed.
1574 */
7e38326f
CM
1575struct io_failure_record {
1576 struct page *page;
1577 u64 start;
1578 u64 len;
1579 u64 logical;
d20f7043 1580 unsigned long bio_flags;
7e38326f
CM
1581 int last_mirror;
1582};
1583
b2950863 1584static int btrfs_io_failed_hook(struct bio *failed_bio,
1259ab75
CM
1585 struct page *page, u64 start, u64 end,
1586 struct extent_state *state)
7e38326f
CM
1587{
1588 struct io_failure_record *failrec = NULL;
1589 u64 private;
1590 struct extent_map *em;
1591 struct inode *inode = page->mapping->host;
1592 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
3b951516 1593 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
7e38326f
CM
1594 struct bio *bio;
1595 int num_copies;
1596 int ret;
1259ab75 1597 int rw;
7e38326f
CM
1598 u64 logical;
1599
1600 ret = get_state_private(failure_tree, start, &private);
1601 if (ret) {
7e38326f
CM
1602 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
1603 if (!failrec)
1604 return -ENOMEM;
1605 failrec->start = start;
1606 failrec->len = end - start + 1;
1607 failrec->last_mirror = 0;
d20f7043 1608 failrec->bio_flags = 0;
7e38326f 1609
3b951516
CM
1610 spin_lock(&em_tree->lock);
1611 em = lookup_extent_mapping(em_tree, start, failrec->len);
1612 if (em->start > start || em->start + em->len < start) {
1613 free_extent_map(em);
1614 em = NULL;
1615 }
1616 spin_unlock(&em_tree->lock);
7e38326f
CM
1617
1618 if (!em || IS_ERR(em)) {
1619 kfree(failrec);
1620 return -EIO;
1621 }
1622 logical = start - em->start;
1623 logical = em->block_start + logical;
d20f7043
CM
1624 if (test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
1625 logical = em->block_start;
1626 failrec->bio_flags = EXTENT_BIO_COMPRESSED;
1627 }
7e38326f
CM
1628 failrec->logical = logical;
1629 free_extent_map(em);
1630 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
1631 EXTENT_DIRTY, GFP_NOFS);
587f7704
CM
1632 set_state_private(failure_tree, start,
1633 (u64)(unsigned long)failrec);
7e38326f 1634 } else {
587f7704 1635 failrec = (struct io_failure_record *)(unsigned long)private;
7e38326f
CM
1636 }
1637 num_copies = btrfs_num_copies(
1638 &BTRFS_I(inode)->root->fs_info->mapping_tree,
1639 failrec->logical, failrec->len);
1640 failrec->last_mirror++;
1641 if (!state) {
1642 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
1643 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
1644 failrec->start,
1645 EXTENT_LOCKED);
1646 if (state && state->start != failrec->start)
1647 state = NULL;
1648 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
1649 }
1650 if (!state || failrec->last_mirror > num_copies) {
1651 set_state_private(failure_tree, failrec->start, 0);
1652 clear_extent_bits(failure_tree, failrec->start,
1653 failrec->start + failrec->len - 1,
1654 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
1655 kfree(failrec);
1656 return -EIO;
1657 }
1658 bio = bio_alloc(GFP_NOFS, 1);
1659 bio->bi_private = state;
1660 bio->bi_end_io = failed_bio->bi_end_io;
1661 bio->bi_sector = failrec->logical >> 9;
1662 bio->bi_bdev = failed_bio->bi_bdev;
e1c4b745 1663 bio->bi_size = 0;
d20f7043 1664
7e38326f 1665 bio_add_page(bio, page, failrec->len, start - page_offset(page));
1259ab75
CM
1666 if (failed_bio->bi_rw & (1 << BIO_RW))
1667 rw = WRITE;
1668 else
1669 rw = READ;
1670
1671 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
c8b97818 1672 failrec->last_mirror,
d20f7043 1673 failrec->bio_flags);
1259ab75
CM
1674 return 0;
1675}
1676
d352ac68
CM
1677/*
1678 * each time an IO finishes, we do a fast check in the IO failure tree
1679 * to see if we need to process or clean up an io_failure_record
1680 */
b2950863 1681static int btrfs_clean_io_failures(struct inode *inode, u64 start)
1259ab75
CM
1682{
1683 u64 private;
1684 u64 private_failure;
1685 struct io_failure_record *failure;
1686 int ret;
1687
1688 private = 0;
1689 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
1690 (u64)-1, 1, EXTENT_DIRTY)) {
1691 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
1692 start, &private_failure);
1693 if (ret == 0) {
1694 failure = (struct io_failure_record *)(unsigned long)
1695 private_failure;
1696 set_state_private(&BTRFS_I(inode)->io_failure_tree,
1697 failure->start, 0);
1698 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
1699 failure->start,
1700 failure->start + failure->len - 1,
1701 EXTENT_DIRTY | EXTENT_LOCKED,
1702 GFP_NOFS);
1703 kfree(failure);
1704 }
1705 }
7e38326f
CM
1706 return 0;
1707}
1708
d352ac68
CM
1709/*
1710 * when reads are done, we need to check csums to verify the data is correct
1711 * if there's a match, we allow the bio to finish. If not, we go through
1712 * the io_failure_record routines to find good copies
1713 */
b2950863 1714static int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
70dec807 1715 struct extent_state *state)
07157aac 1716{
35ebb934 1717 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
07157aac 1718 struct inode *inode = page->mapping->host;
d1310b2e 1719 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
07157aac 1720 char *kaddr;
aadfeb6e 1721 u64 private = ~(u32)0;
07157aac 1722 int ret;
ff79f819
CM
1723 struct btrfs_root *root = BTRFS_I(inode)->root;
1724 u32 csum = ~(u32)0;
bbf0d006 1725 unsigned long flags;
d1310b2e 1726
d20f7043
CM
1727 if (PageChecked(page)) {
1728 ClearPageChecked(page);
1729 goto good;
1730 }
17d217fe
YZ
1731 if (btrfs_test_flag(inode, NODATASUM))
1732 return 0;
1733
1734 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID &&
1735 test_range_bit(io_tree, start, end, EXTENT_NODATASUM, 1)) {
1736 clear_extent_bits(io_tree, start, end, EXTENT_NODATASUM,
1737 GFP_NOFS);
b6cda9bc 1738 return 0;
17d217fe 1739 }
d20f7043 1740
c2e639f0 1741 if (state && state->start == start) {
70dec807
CM
1742 private = state->private;
1743 ret = 0;
1744 } else {
1745 ret = get_state_private(io_tree, start, &private);
1746 }
bbf0d006 1747 local_irq_save(flags);
07157aac
CM
1748 kaddr = kmap_atomic(page, KM_IRQ0);
1749 if (ret) {
1750 goto zeroit;
1751 }
ff79f819
CM
1752 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
1753 btrfs_csum_final(csum, (char *)&csum);
1754 if (csum != private) {
07157aac
CM
1755 goto zeroit;
1756 }
1757 kunmap_atomic(kaddr, KM_IRQ0);
bbf0d006 1758 local_irq_restore(flags);
d20f7043 1759good:
7e38326f
CM
1760 /* if the io failure tree for this inode is non-empty,
1761 * check to see if we've recovered from a failed IO
1762 */
1259ab75 1763 btrfs_clean_io_failures(inode, start);
07157aac
CM
1764 return 0;
1765
1766zeroit:
aadfeb6e
CM
1767 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
1768 page->mapping->host->i_ino, (unsigned long long)start, csum,
1769 private);
db94535d
CM
1770 memset(kaddr + offset, 1, end - start + 1);
1771 flush_dcache_page(page);
07157aac 1772 kunmap_atomic(kaddr, KM_IRQ0);
bbf0d006 1773 local_irq_restore(flags);
3b951516
CM
1774 if (private == 0)
1775 return 0;
7e38326f 1776 return -EIO;
07157aac 1777}
b888db2b 1778
7b128766
JB
1779/*
1780 * This creates an orphan entry for the given inode in case something goes
1781 * wrong in the middle of an unlink/truncate.
1782 */
1783int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
1784{
1785 struct btrfs_root *root = BTRFS_I(inode)->root;
1786 int ret = 0;
1787
bcc63abb 1788 spin_lock(&root->list_lock);
7b128766
JB
1789
1790 /* already on the orphan list, we're good */
1791 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
bcc63abb 1792 spin_unlock(&root->list_lock);
7b128766
JB
1793 return 0;
1794 }
1795
1796 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
1797
bcc63abb 1798 spin_unlock(&root->list_lock);
7b128766
JB
1799
1800 /*
1801 * insert an orphan item to track this unlinked/truncated file
1802 */
1803 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
1804
1805 return ret;
1806}
1807
1808/*
1809 * We have done the truncate/delete so we can go ahead and remove the orphan
1810 * item for this particular inode.
1811 */
1812int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
1813{
1814 struct btrfs_root *root = BTRFS_I(inode)->root;
1815 int ret = 0;
1816
bcc63abb 1817 spin_lock(&root->list_lock);
7b128766
JB
1818
1819 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
bcc63abb 1820 spin_unlock(&root->list_lock);
7b128766
JB
1821 return 0;
1822 }
1823
1824 list_del_init(&BTRFS_I(inode)->i_orphan);
1825 if (!trans) {
bcc63abb 1826 spin_unlock(&root->list_lock);
7b128766
JB
1827 return 0;
1828 }
1829
bcc63abb 1830 spin_unlock(&root->list_lock);
7b128766
JB
1831
1832 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
1833
1834 return ret;
1835}
1836
1837/*
1838 * this cleans up any orphans that may be left on the list from the last use
1839 * of this root.
1840 */
1841void btrfs_orphan_cleanup(struct btrfs_root *root)
1842{
1843 struct btrfs_path *path;
1844 struct extent_buffer *leaf;
1845 struct btrfs_item *item;
1846 struct btrfs_key key, found_key;
1847 struct btrfs_trans_handle *trans;
1848 struct inode *inode;
1849 int ret = 0, nr_unlink = 0, nr_truncate = 0;
1850
7b128766
JB
1851 path = btrfs_alloc_path();
1852 if (!path)
1853 return;
1854 path->reada = -1;
1855
1856 key.objectid = BTRFS_ORPHAN_OBJECTID;
1857 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
1858 key.offset = (u64)-1;
1859
7b128766
JB
1860
1861 while (1) {
1862 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1863 if (ret < 0) {
1864 printk(KERN_ERR "Error searching slot for orphan: %d"
1865 "\n", ret);
1866 break;
1867 }
1868
1869 /*
1870 * if ret == 0 means we found what we were searching for, which
1871 * is weird, but possible, so only screw with path if we didnt
1872 * find the key and see if we have stuff that matches
1873 */
1874 if (ret > 0) {
1875 if (path->slots[0] == 0)
1876 break;
1877 path->slots[0]--;
1878 }
1879
1880 /* pull out the item */
1881 leaf = path->nodes[0];
1882 item = btrfs_item_nr(leaf, path->slots[0]);
1883 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1884
1885 /* make sure the item matches what we want */
1886 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
1887 break;
1888 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
1889 break;
1890
1891 /* release the path since we're done with it */
1892 btrfs_release_path(root, path);
1893
1894 /*
1895 * this is where we are basically btrfs_lookup, without the
1896 * crossing root thing. we store the inode number in the
1897 * offset of the orphan item.
1898 */
5b21f2ed 1899 inode = btrfs_iget_locked(root->fs_info->sb,
7b128766
JB
1900 found_key.offset, root);
1901 if (!inode)
1902 break;
1903
1904 if (inode->i_state & I_NEW) {
1905 BTRFS_I(inode)->root = root;
1906
1907 /* have to set the location manually */
1908 BTRFS_I(inode)->location.objectid = inode->i_ino;
1909 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
1910 BTRFS_I(inode)->location.offset = 0;
1911
1912 btrfs_read_locked_inode(inode);
1913 unlock_new_inode(inode);
1914 }
1915
1916 /*
1917 * add this inode to the orphan list so btrfs_orphan_del does
1918 * the proper thing when we hit it
1919 */
bcc63abb 1920 spin_lock(&root->list_lock);
7b128766 1921 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
bcc63abb 1922 spin_unlock(&root->list_lock);
7b128766
JB
1923
1924 /*
1925 * if this is a bad inode, means we actually succeeded in
1926 * removing the inode, but not the orphan record, which means
1927 * we need to manually delete the orphan since iput will just
1928 * do a destroy_inode
1929 */
1930 if (is_bad_inode(inode)) {
5b21f2ed 1931 trans = btrfs_start_transaction(root, 1);
7b128766 1932 btrfs_orphan_del(trans, inode);
5b21f2ed 1933 btrfs_end_transaction(trans, root);
7b128766
JB
1934 iput(inode);
1935 continue;
1936 }
1937
1938 /* if we have links, this was a truncate, lets do that */
1939 if (inode->i_nlink) {
1940 nr_truncate++;
1941 btrfs_truncate(inode);
1942 } else {
1943 nr_unlink++;
1944 }
1945
1946 /* this will do delete_inode and everything for us */
1947 iput(inode);
1948 }
1949
1950 if (nr_unlink)
1951 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
1952 if (nr_truncate)
1953 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
1954
1955 btrfs_free_path(path);
7b128766
JB
1956}
1957
d352ac68
CM
1958/*
1959 * read an inode from the btree into the in-memory inode
1960 */
39279cc3
CM
1961void btrfs_read_locked_inode(struct inode *inode)
1962{
1963 struct btrfs_path *path;
5f39d397 1964 struct extent_buffer *leaf;
39279cc3 1965 struct btrfs_inode_item *inode_item;
0b86a832 1966 struct btrfs_timespec *tspec;
39279cc3
CM
1967 struct btrfs_root *root = BTRFS_I(inode)->root;
1968 struct btrfs_key location;
1969 u64 alloc_group_block;
618e21d5 1970 u32 rdev;
39279cc3
CM
1971 int ret;
1972
1973 path = btrfs_alloc_path();
1974 BUG_ON(!path);
39279cc3 1975 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
dc17ff8f 1976
39279cc3 1977 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
5f39d397 1978 if (ret)
39279cc3 1979 goto make_bad;
39279cc3 1980
5f39d397
CM
1981 leaf = path->nodes[0];
1982 inode_item = btrfs_item_ptr(leaf, path->slots[0],
1983 struct btrfs_inode_item);
1984
1985 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
1986 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
1987 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
1988 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
dbe674a9 1989 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
5f39d397
CM
1990
1991 tspec = btrfs_inode_atime(inode_item);
1992 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1993 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1994
1995 tspec = btrfs_inode_mtime(inode_item);
1996 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1997 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1998
1999 tspec = btrfs_inode_ctime(inode_item);
2000 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
2001 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
2002
a76a3cd4 2003 inode_set_bytes(inode, btrfs_inode_nbytes(leaf, inode_item));
e02119d5 2004 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
c3027eb5 2005 BTRFS_I(inode)->sequence = btrfs_inode_sequence(leaf, inode_item);
e02119d5 2006 inode->i_generation = BTRFS_I(inode)->generation;
618e21d5 2007 inode->i_rdev = 0;
5f39d397
CM
2008 rdev = btrfs_inode_rdev(leaf, inode_item);
2009
aec7477b 2010 BTRFS_I(inode)->index_cnt = (u64)-1;
d2fb3437 2011 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
aec7477b 2012
5f39d397 2013 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
d2fb3437
YZ
2014 BTRFS_I(inode)->block_group = btrfs_find_block_group(root, 0,
2015 alloc_group_block, 0);
39279cc3
CM
2016 btrfs_free_path(path);
2017 inode_item = NULL;
2018
39279cc3 2019 switch (inode->i_mode & S_IFMT) {
39279cc3
CM
2020 case S_IFREG:
2021 inode->i_mapping->a_ops = &btrfs_aops;
04160088 2022 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
d1310b2e 2023 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
39279cc3
CM
2024 inode->i_fop = &btrfs_file_operations;
2025 inode->i_op = &btrfs_file_inode_operations;
2026 break;
2027 case S_IFDIR:
2028 inode->i_fop = &btrfs_dir_file_operations;
2029 if (root == root->fs_info->tree_root)
2030 inode->i_op = &btrfs_dir_ro_inode_operations;
2031 else
2032 inode->i_op = &btrfs_dir_inode_operations;
2033 break;
2034 case S_IFLNK:
2035 inode->i_op = &btrfs_symlink_inode_operations;
2036 inode->i_mapping->a_ops = &btrfs_symlink_aops;
04160088 2037 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
39279cc3 2038 break;
618e21d5
JB
2039 default:
2040 init_special_inode(inode, inode->i_mode, rdev);
2041 break;
39279cc3
CM
2042 }
2043 return;
2044
2045make_bad:
39279cc3 2046 btrfs_free_path(path);
39279cc3
CM
2047 make_bad_inode(inode);
2048}
2049
d352ac68
CM
2050/*
2051 * given a leaf and an inode, copy the inode fields into the leaf
2052 */
e02119d5
CM
2053static void fill_inode_item(struct btrfs_trans_handle *trans,
2054 struct extent_buffer *leaf,
5f39d397 2055 struct btrfs_inode_item *item,
39279cc3
CM
2056 struct inode *inode)
2057{
5f39d397
CM
2058 btrfs_set_inode_uid(leaf, item, inode->i_uid);
2059 btrfs_set_inode_gid(leaf, item, inode->i_gid);
dbe674a9 2060 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
5f39d397
CM
2061 btrfs_set_inode_mode(leaf, item, inode->i_mode);
2062 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
2063
2064 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
2065 inode->i_atime.tv_sec);
2066 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
2067 inode->i_atime.tv_nsec);
2068
2069 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
2070 inode->i_mtime.tv_sec);
2071 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
2072 inode->i_mtime.tv_nsec);
2073
2074 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
2075 inode->i_ctime.tv_sec);
2076 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
2077 inode->i_ctime.tv_nsec);
2078
a76a3cd4 2079 btrfs_set_inode_nbytes(leaf, item, inode_get_bytes(inode));
e02119d5 2080 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
c3027eb5 2081 btrfs_set_inode_sequence(leaf, item, BTRFS_I(inode)->sequence);
e02119d5 2082 btrfs_set_inode_transid(leaf, item, trans->transid);
5f39d397 2083 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
b98b6767 2084 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
d2fb3437 2085 btrfs_set_inode_block_group(leaf, item, BTRFS_I(inode)->block_group);
39279cc3
CM
2086}
2087
d352ac68
CM
2088/*
2089 * copy everything in the in-memory inode into the btree.
2090 */
ba1da2f4 2091int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
39279cc3
CM
2092 struct btrfs_root *root,
2093 struct inode *inode)
2094{
2095 struct btrfs_inode_item *inode_item;
2096 struct btrfs_path *path;
5f39d397 2097 struct extent_buffer *leaf;
39279cc3
CM
2098 int ret;
2099
2100 path = btrfs_alloc_path();
2101 BUG_ON(!path);
39279cc3
CM
2102 ret = btrfs_lookup_inode(trans, root, path,
2103 &BTRFS_I(inode)->location, 1);
2104 if (ret) {
2105 if (ret > 0)
2106 ret = -ENOENT;
2107 goto failed;
2108 }
2109
5f39d397
CM
2110 leaf = path->nodes[0];
2111 inode_item = btrfs_item_ptr(leaf, path->slots[0],
39279cc3
CM
2112 struct btrfs_inode_item);
2113
e02119d5 2114 fill_inode_item(trans, leaf, inode_item, inode);
5f39d397 2115 btrfs_mark_buffer_dirty(leaf);
15ee9bc7 2116 btrfs_set_inode_last_trans(trans, inode);
39279cc3
CM
2117 ret = 0;
2118failed:
39279cc3
CM
2119 btrfs_free_path(path);
2120 return ret;
2121}
2122
2123
d352ac68
CM
2124/*
2125 * unlink helper that gets used here in inode.c and in the tree logging
2126 * recovery code. It remove a link in a directory with a given name, and
2127 * also drops the back refs in the inode to the directory
2128 */
e02119d5
CM
2129int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
2130 struct btrfs_root *root,
2131 struct inode *dir, struct inode *inode,
2132 const char *name, int name_len)
39279cc3
CM
2133{
2134 struct btrfs_path *path;
39279cc3 2135 int ret = 0;
5f39d397 2136 struct extent_buffer *leaf;
39279cc3 2137 struct btrfs_dir_item *di;
5f39d397 2138 struct btrfs_key key;
aec7477b 2139 u64 index;
39279cc3
CM
2140
2141 path = btrfs_alloc_path();
54aa1f4d
CM
2142 if (!path) {
2143 ret = -ENOMEM;
2144 goto err;
2145 }
2146
39279cc3
CM
2147 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
2148 name, name_len, -1);
2149 if (IS_ERR(di)) {
2150 ret = PTR_ERR(di);
2151 goto err;
2152 }
2153 if (!di) {
2154 ret = -ENOENT;
2155 goto err;
2156 }
5f39d397
CM
2157 leaf = path->nodes[0];
2158 btrfs_dir_item_key_to_cpu(leaf, di, &key);
39279cc3 2159 ret = btrfs_delete_one_dir_name(trans, root, path, di);
54aa1f4d
CM
2160 if (ret)
2161 goto err;
39279cc3
CM
2162 btrfs_release_path(root, path);
2163
aec7477b 2164 ret = btrfs_del_inode_ref(trans, root, name, name_len,
e02119d5
CM
2165 inode->i_ino,
2166 dir->i_ino, &index);
aec7477b
JB
2167 if (ret) {
2168 printk("failed to delete reference to %.*s, "
2169 "inode %lu parent %lu\n", name_len, name,
e02119d5 2170 inode->i_ino, dir->i_ino);
aec7477b
JB
2171 goto err;
2172 }
2173
39279cc3 2174 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
aec7477b 2175 index, name, name_len, -1);
39279cc3
CM
2176 if (IS_ERR(di)) {
2177 ret = PTR_ERR(di);
2178 goto err;
2179 }
2180 if (!di) {
2181 ret = -ENOENT;
2182 goto err;
2183 }
2184 ret = btrfs_delete_one_dir_name(trans, root, path, di);
925baedd 2185 btrfs_release_path(root, path);
39279cc3 2186
e02119d5
CM
2187 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
2188 inode, dir->i_ino);
49eb7e46
CM
2189 BUG_ON(ret != 0 && ret != -ENOENT);
2190 if (ret != -ENOENT)
2191 BTRFS_I(dir)->log_dirty_trans = trans->transid;
e02119d5
CM
2192
2193 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
2194 dir, index);
2195 BUG_ON(ret);
39279cc3
CM
2196err:
2197 btrfs_free_path(path);
e02119d5
CM
2198 if (ret)
2199 goto out;
2200
2201 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
2202 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
2203 btrfs_update_inode(trans, root, dir);
2204 btrfs_drop_nlink(inode);
2205 ret = btrfs_update_inode(trans, root, inode);
2206 dir->i_sb->s_dirt = 1;
2207out:
39279cc3
CM
2208 return ret;
2209}
2210
2211static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
2212{
2213 struct btrfs_root *root;
2214 struct btrfs_trans_handle *trans;
7b128766 2215 struct inode *inode = dentry->d_inode;
39279cc3 2216 int ret;
1832a6d5 2217 unsigned long nr = 0;
39279cc3
CM
2218
2219 root = BTRFS_I(dir)->root;
1832a6d5
CM
2220
2221 ret = btrfs_check_free_space(root, 1, 1);
2222 if (ret)
2223 goto fail;
2224
39279cc3 2225 trans = btrfs_start_transaction(root, 1);
5f39d397 2226
39279cc3 2227 btrfs_set_trans_block_group(trans, dir);
e02119d5
CM
2228 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2229 dentry->d_name.name, dentry->d_name.len);
7b128766
JB
2230
2231 if (inode->i_nlink == 0)
2232 ret = btrfs_orphan_add(trans, inode);
2233
d3c2fdcf 2234 nr = trans->blocks_used;
5f39d397 2235
89ce8a63 2236 btrfs_end_transaction_throttle(trans, root);
1832a6d5 2237fail:
d3c2fdcf 2238 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
2239 return ret;
2240}
2241
2242static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
2243{
2244 struct inode *inode = dentry->d_inode;
1832a6d5 2245 int err = 0;
39279cc3
CM
2246 int ret;
2247 struct btrfs_root *root = BTRFS_I(dir)->root;
39279cc3 2248 struct btrfs_trans_handle *trans;
1832a6d5 2249 unsigned long nr = 0;
39279cc3 2250
3394e160
CM
2251 /*
2252 * the FIRST_FREE_OBJECTID check makes sure we don't try to rmdir
2253 * the root of a subvolume or snapshot
2254 */
2255 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE ||
2256 inode->i_ino == BTRFS_FIRST_FREE_OBJECTID) {
134d4512 2257 return -ENOTEMPTY;
925baedd 2258 }
134d4512 2259
1832a6d5
CM
2260 ret = btrfs_check_free_space(root, 1, 1);
2261 if (ret)
2262 goto fail;
2263
39279cc3
CM
2264 trans = btrfs_start_transaction(root, 1);
2265 btrfs_set_trans_block_group(trans, dir);
39279cc3 2266
7b128766
JB
2267 err = btrfs_orphan_add(trans, inode);
2268 if (err)
2269 goto fail_trans;
2270
39279cc3 2271 /* now the directory is empty */
e02119d5
CM
2272 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
2273 dentry->d_name.name, dentry->d_name.len);
39279cc3 2274 if (!err) {
dbe674a9 2275 btrfs_i_size_write(inode, 0);
39279cc3 2276 }
3954401f 2277
7b128766 2278fail_trans:
d3c2fdcf 2279 nr = trans->blocks_used;
89ce8a63 2280 ret = btrfs_end_transaction_throttle(trans, root);
1832a6d5 2281fail:
d3c2fdcf 2282 btrfs_btree_balance_dirty(root, nr);
3954401f 2283
39279cc3
CM
2284 if (ret && !err)
2285 err = ret;
2286 return err;
2287}
2288
d20f7043 2289#if 0
323ac95b
CM
2290/*
2291 * when truncating bytes in a file, it is possible to avoid reading
2292 * the leaves that contain only checksum items. This can be the
2293 * majority of the IO required to delete a large file, but it must
2294 * be done carefully.
2295 *
2296 * The keys in the level just above the leaves are checked to make sure
2297 * the lowest key in a given leaf is a csum key, and starts at an offset
2298 * after the new size.
2299 *
2300 * Then the key for the next leaf is checked to make sure it also has
2301 * a checksum item for the same file. If it does, we know our target leaf
2302 * contains only checksum items, and it can be safely freed without reading
2303 * it.
2304 *
2305 * This is just an optimization targeted at large files. It may do
2306 * nothing. It will return 0 unless things went badly.
2307 */
2308static noinline int drop_csum_leaves(struct btrfs_trans_handle *trans,
2309 struct btrfs_root *root,
2310 struct btrfs_path *path,
2311 struct inode *inode, u64 new_size)
2312{
2313 struct btrfs_key key;
2314 int ret;
2315 int nritems;
2316 struct btrfs_key found_key;
2317 struct btrfs_key other_key;
5b84e8d6
YZ
2318 struct btrfs_leaf_ref *ref;
2319 u64 leaf_gen;
2320 u64 leaf_start;
323ac95b
CM
2321
2322 path->lowest_level = 1;
2323 key.objectid = inode->i_ino;
2324 key.type = BTRFS_CSUM_ITEM_KEY;
2325 key.offset = new_size;
2326again:
2327 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2328 if (ret < 0)
2329 goto out;
2330
2331 if (path->nodes[1] == NULL) {
2332 ret = 0;
2333 goto out;
2334 }
2335 ret = 0;
2336 btrfs_node_key_to_cpu(path->nodes[1], &found_key, path->slots[1]);
2337 nritems = btrfs_header_nritems(path->nodes[1]);
2338
2339 if (!nritems)
2340 goto out;
2341
2342 if (path->slots[1] >= nritems)
2343 goto next_node;
2344
2345 /* did we find a key greater than anything we want to delete? */
2346 if (found_key.objectid > inode->i_ino ||
2347 (found_key.objectid == inode->i_ino && found_key.type > key.type))
2348 goto out;
2349
2350 /* we check the next key in the node to make sure the leave contains
2351 * only checksum items. This comparison doesn't work if our
2352 * leaf is the last one in the node
2353 */
2354 if (path->slots[1] + 1 >= nritems) {
2355next_node:
2356 /* search forward from the last key in the node, this
2357 * will bring us into the next node in the tree
2358 */
2359 btrfs_node_key_to_cpu(path->nodes[1], &found_key, nritems - 1);
2360
2361 /* unlikely, but we inc below, so check to be safe */
2362 if (found_key.offset == (u64)-1)
2363 goto out;
2364
2365 /* search_forward needs a path with locks held, do the
2366 * search again for the original key. It is possible
2367 * this will race with a balance and return a path that
2368 * we could modify, but this drop is just an optimization
2369 * and is allowed to miss some leaves.
2370 */
2371 btrfs_release_path(root, path);
2372 found_key.offset++;
2373
2374 /* setup a max key for search_forward */
2375 other_key.offset = (u64)-1;
2376 other_key.type = key.type;
2377 other_key.objectid = key.objectid;
2378
2379 path->keep_locks = 1;
2380 ret = btrfs_search_forward(root, &found_key, &other_key,
2381 path, 0, 0);
2382 path->keep_locks = 0;
2383 if (ret || found_key.objectid != key.objectid ||
2384 found_key.type != key.type) {
2385 ret = 0;
2386 goto out;
2387 }
2388
2389 key.offset = found_key.offset;
2390 btrfs_release_path(root, path);
2391 cond_resched();
2392 goto again;
2393 }
2394
2395 /* we know there's one more slot after us in the tree,
2396 * read that key so we can verify it is also a checksum item
2397 */
2398 btrfs_node_key_to_cpu(path->nodes[1], &other_key, path->slots[1] + 1);
2399
2400 if (found_key.objectid < inode->i_ino)
2401 goto next_key;
2402
2403 if (found_key.type != key.type || found_key.offset < new_size)
2404 goto next_key;
2405
2406 /*
2407 * if the key for the next leaf isn't a csum key from this objectid,
2408 * we can't be sure there aren't good items inside this leaf.
2409 * Bail out
2410 */
2411 if (other_key.objectid != inode->i_ino || other_key.type != key.type)
2412 goto out;
2413
5b84e8d6
YZ
2414 leaf_start = btrfs_node_blockptr(path->nodes[1], path->slots[1]);
2415 leaf_gen = btrfs_node_ptr_generation(path->nodes[1], path->slots[1]);
323ac95b
CM
2416 /*
2417 * it is safe to delete this leaf, it contains only
2418 * csum items from this inode at an offset >= new_size
2419 */
5b84e8d6 2420 ret = btrfs_del_leaf(trans, root, path, leaf_start);
323ac95b
CM
2421 BUG_ON(ret);
2422
5b84e8d6
YZ
2423 if (root->ref_cows && leaf_gen < trans->transid) {
2424 ref = btrfs_alloc_leaf_ref(root, 0);
2425 if (ref) {
2426 ref->root_gen = root->root_key.offset;
2427 ref->bytenr = leaf_start;
2428 ref->owner = 0;
2429 ref->generation = leaf_gen;
2430 ref->nritems = 0;
2431
2432 ret = btrfs_add_leaf_ref(root, ref, 0);
2433 WARN_ON(ret);
2434 btrfs_free_leaf_ref(root, ref);
2435 } else {
2436 WARN_ON(1);
2437 }
2438 }
323ac95b
CM
2439next_key:
2440 btrfs_release_path(root, path);
2441
2442 if (other_key.objectid == inode->i_ino &&
2443 other_key.type == key.type && other_key.offset > key.offset) {
2444 key.offset = other_key.offset;
2445 cond_resched();
2446 goto again;
2447 }
2448 ret = 0;
2449out:
2450 /* fixup any changes we've made to the path */
2451 path->lowest_level = 0;
2452 path->keep_locks = 0;
2453 btrfs_release_path(root, path);
2454 return ret;
2455}
2456
d20f7043
CM
2457#endif
2458
39279cc3
CM
2459/*
2460 * this can truncate away extent items, csum items and directory items.
2461 * It starts at a high offset and removes keys until it can't find
d352ac68 2462 * any higher than new_size
39279cc3
CM
2463 *
2464 * csum items that cross the new i_size are truncated to the new size
2465 * as well.
7b128766
JB
2466 *
2467 * min_type is the minimum key type to truncate down to. If set to 0, this
2468 * will kill all the items on this inode, including the INODE_ITEM_KEY.
39279cc3 2469 */
e02119d5
CM
2470noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
2471 struct btrfs_root *root,
2472 struct inode *inode,
2473 u64 new_size, u32 min_type)
39279cc3
CM
2474{
2475 int ret;
2476 struct btrfs_path *path;
2477 struct btrfs_key key;
5f39d397 2478 struct btrfs_key found_key;
39279cc3 2479 u32 found_type;
5f39d397 2480 struct extent_buffer *leaf;
39279cc3
CM
2481 struct btrfs_file_extent_item *fi;
2482 u64 extent_start = 0;
db94535d 2483 u64 extent_num_bytes = 0;
39279cc3 2484 u64 item_end = 0;
7bb86316 2485 u64 root_gen = 0;
d8d5f3e1 2486 u64 root_owner = 0;
39279cc3
CM
2487 int found_extent;
2488 int del_item;
85e21bac
CM
2489 int pending_del_nr = 0;
2490 int pending_del_slot = 0;
179e29e4 2491 int extent_type = -1;
771ed689 2492 int encoding;
3b951516 2493 u64 mask = root->sectorsize - 1;
39279cc3 2494
e02119d5 2495 if (root->ref_cows)
5b21f2ed 2496 btrfs_drop_extent_cache(inode, new_size & (~mask), (u64)-1, 0);
39279cc3 2497 path = btrfs_alloc_path();
3c69faec 2498 path->reada = -1;
39279cc3 2499 BUG_ON(!path);
5f39d397 2500
39279cc3
CM
2501 /* FIXME, add redo link to tree so we don't leak on crash */
2502 key.objectid = inode->i_ino;
2503 key.offset = (u64)-1;
5f39d397
CM
2504 key.type = (u8)-1;
2505
85e21bac 2506 btrfs_init_path(path);
323ac95b 2507
85e21bac
CM
2508search_again:
2509 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2510 if (ret < 0) {
2511 goto error;
2512 }
2513 if (ret > 0) {
e02119d5
CM
2514 /* there are no items in the tree for us to truncate, we're
2515 * done
2516 */
2517 if (path->slots[0] == 0) {
2518 ret = 0;
2519 goto error;
2520 }
85e21bac
CM
2521 path->slots[0]--;
2522 }
2523
39279cc3 2524 while(1) {
39279cc3 2525 fi = NULL;
5f39d397
CM
2526 leaf = path->nodes[0];
2527 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2528 found_type = btrfs_key_type(&found_key);
771ed689 2529 encoding = 0;
39279cc3 2530
5f39d397 2531 if (found_key.objectid != inode->i_ino)
39279cc3 2532 break;
5f39d397 2533
85e21bac 2534 if (found_type < min_type)
39279cc3
CM
2535 break;
2536
5f39d397 2537 item_end = found_key.offset;
39279cc3 2538 if (found_type == BTRFS_EXTENT_DATA_KEY) {
5f39d397 2539 fi = btrfs_item_ptr(leaf, path->slots[0],
39279cc3 2540 struct btrfs_file_extent_item);
179e29e4 2541 extent_type = btrfs_file_extent_type(leaf, fi);
771ed689
CM
2542 encoding = btrfs_file_extent_compression(leaf, fi);
2543 encoding |= btrfs_file_extent_encryption(leaf, fi);
2544 encoding |= btrfs_file_extent_other_encoding(leaf, fi);
2545
179e29e4 2546 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
5f39d397 2547 item_end +=
db94535d 2548 btrfs_file_extent_num_bytes(leaf, fi);
179e29e4 2549 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
179e29e4 2550 item_end += btrfs_file_extent_inline_len(leaf,
c8b97818 2551 fi);
39279cc3 2552 }
008630c1 2553 item_end--;
39279cc3 2554 }
e02119d5 2555 if (item_end < new_size) {
b888db2b
CM
2556 if (found_type == BTRFS_DIR_ITEM_KEY) {
2557 found_type = BTRFS_INODE_ITEM_KEY;
2558 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
d20f7043 2559 found_type = BTRFS_EXTENT_DATA_KEY;
85e21bac
CM
2560 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
2561 found_type = BTRFS_XATTR_ITEM_KEY;
2562 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
2563 found_type = BTRFS_INODE_REF_KEY;
b888db2b
CM
2564 } else if (found_type) {
2565 found_type--;
2566 } else {
2567 break;
39279cc3 2568 }
a61721d5 2569 btrfs_set_key_type(&key, found_type);
85e21bac 2570 goto next;
39279cc3 2571 }
e02119d5 2572 if (found_key.offset >= new_size)
39279cc3
CM
2573 del_item = 1;
2574 else
2575 del_item = 0;
2576 found_extent = 0;
2577
2578 /* FIXME, shrink the extent if the ref count is only 1 */
179e29e4
CM
2579 if (found_type != BTRFS_EXTENT_DATA_KEY)
2580 goto delete;
2581
2582 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
39279cc3 2583 u64 num_dec;
db94535d 2584 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
771ed689 2585 if (!del_item && !encoding) {
db94535d
CM
2586 u64 orig_num_bytes =
2587 btrfs_file_extent_num_bytes(leaf, fi);
e02119d5 2588 extent_num_bytes = new_size -
5f39d397 2589 found_key.offset + root->sectorsize - 1;
b1632b10
Y
2590 extent_num_bytes = extent_num_bytes &
2591 ~((u64)root->sectorsize - 1);
db94535d
CM
2592 btrfs_set_file_extent_num_bytes(leaf, fi,
2593 extent_num_bytes);
2594 num_dec = (orig_num_bytes -
9069218d 2595 extent_num_bytes);
e02119d5 2596 if (root->ref_cows && extent_start != 0)
a76a3cd4 2597 inode_sub_bytes(inode, num_dec);
5f39d397 2598 btrfs_mark_buffer_dirty(leaf);
39279cc3 2599 } else {
db94535d
CM
2600 extent_num_bytes =
2601 btrfs_file_extent_disk_num_bytes(leaf,
2602 fi);
39279cc3 2603 /* FIXME blocksize != 4096 */
9069218d 2604 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
39279cc3
CM
2605 if (extent_start != 0) {
2606 found_extent = 1;
e02119d5 2607 if (root->ref_cows)
a76a3cd4 2608 inode_sub_bytes(inode, num_dec);
e02119d5 2609 }
31840ae1 2610 root_gen = btrfs_header_generation(leaf);
d8d5f3e1 2611 root_owner = btrfs_header_owner(leaf);
39279cc3 2612 }
9069218d 2613 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
c8b97818
CM
2614 /*
2615 * we can't truncate inline items that have had
2616 * special encodings
2617 */
2618 if (!del_item &&
2619 btrfs_file_extent_compression(leaf, fi) == 0 &&
2620 btrfs_file_extent_encryption(leaf, fi) == 0 &&
2621 btrfs_file_extent_other_encoding(leaf, fi) == 0) {
e02119d5
CM
2622 u32 size = new_size - found_key.offset;
2623
2624 if (root->ref_cows) {
a76a3cd4
YZ
2625 inode_sub_bytes(inode, item_end + 1 -
2626 new_size);
e02119d5
CM
2627 }
2628 size =
2629 btrfs_file_extent_calc_inline_size(size);
9069218d 2630 ret = btrfs_truncate_item(trans, root, path,
e02119d5 2631 size, 1);
9069218d 2632 BUG_ON(ret);
e02119d5 2633 } else if (root->ref_cows) {
a76a3cd4
YZ
2634 inode_sub_bytes(inode, item_end + 1 -
2635 found_key.offset);
9069218d 2636 }
39279cc3 2637 }
179e29e4 2638delete:
39279cc3 2639 if (del_item) {
85e21bac
CM
2640 if (!pending_del_nr) {
2641 /* no pending yet, add ourselves */
2642 pending_del_slot = path->slots[0];
2643 pending_del_nr = 1;
2644 } else if (pending_del_nr &&
2645 path->slots[0] + 1 == pending_del_slot) {
2646 /* hop on the pending chunk */
2647 pending_del_nr++;
2648 pending_del_slot = path->slots[0];
2649 } else {
2650 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
2651 }
39279cc3
CM
2652 } else {
2653 break;
2654 }
39279cc3
CM
2655 if (found_extent) {
2656 ret = btrfs_free_extent(trans, root, extent_start,
7bb86316 2657 extent_num_bytes,
31840ae1 2658 leaf->start, root_owner,
3bb1a1bc 2659 root_gen, inode->i_ino, 0);
39279cc3
CM
2660 BUG_ON(ret);
2661 }
85e21bac
CM
2662next:
2663 if (path->slots[0] == 0) {
2664 if (pending_del_nr)
2665 goto del_pending;
2666 btrfs_release_path(root, path);
2667 goto search_again;
2668 }
2669
2670 path->slots[0]--;
2671 if (pending_del_nr &&
2672 path->slots[0] + 1 != pending_del_slot) {
2673 struct btrfs_key debug;
2674del_pending:
2675 btrfs_item_key_to_cpu(path->nodes[0], &debug,
2676 pending_del_slot);
2677 ret = btrfs_del_items(trans, root, path,
2678 pending_del_slot,
2679 pending_del_nr);
2680 BUG_ON(ret);
2681 pending_del_nr = 0;
2682 btrfs_release_path(root, path);
2683 goto search_again;
2684 }
39279cc3
CM
2685 }
2686 ret = 0;
2687error:
85e21bac
CM
2688 if (pending_del_nr) {
2689 ret = btrfs_del_items(trans, root, path, pending_del_slot,
2690 pending_del_nr);
2691 }
39279cc3
CM
2692 btrfs_free_path(path);
2693 inode->i_sb->s_dirt = 1;
2694 return ret;
2695}
2696
2697/*
2698 * taken from block_truncate_page, but does cow as it zeros out
2699 * any bytes left in the last page in the file.
2700 */
2701static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
2702{
2703 struct inode *inode = mapping->host;
db94535d 2704 struct btrfs_root *root = BTRFS_I(inode)->root;
e6dcd2dc
CM
2705 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2706 struct btrfs_ordered_extent *ordered;
2707 char *kaddr;
db94535d 2708 u32 blocksize = root->sectorsize;
39279cc3
CM
2709 pgoff_t index = from >> PAGE_CACHE_SHIFT;
2710 unsigned offset = from & (PAGE_CACHE_SIZE-1);
2711 struct page *page;
39279cc3 2712 int ret = 0;
a52d9a80 2713 u64 page_start;
e6dcd2dc 2714 u64 page_end;
39279cc3
CM
2715
2716 if ((offset & (blocksize - 1)) == 0)
2717 goto out;
2718
2719 ret = -ENOMEM;
211c17f5 2720again:
39279cc3
CM
2721 page = grab_cache_page(mapping, index);
2722 if (!page)
2723 goto out;
e6dcd2dc
CM
2724
2725 page_start = page_offset(page);
2726 page_end = page_start + PAGE_CACHE_SIZE - 1;
2727
39279cc3 2728 if (!PageUptodate(page)) {
9ebefb18 2729 ret = btrfs_readpage(NULL, page);
39279cc3 2730 lock_page(page);
211c17f5
CM
2731 if (page->mapping != mapping) {
2732 unlock_page(page);
2733 page_cache_release(page);
2734 goto again;
2735 }
39279cc3
CM
2736 if (!PageUptodate(page)) {
2737 ret = -EIO;
89642229 2738 goto out_unlock;
39279cc3
CM
2739 }
2740 }
211c17f5 2741 wait_on_page_writeback(page);
e6dcd2dc
CM
2742
2743 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2744 set_page_extent_mapped(page);
2745
2746 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2747 if (ordered) {
2748 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2749 unlock_page(page);
2750 page_cache_release(page);
eb84ae03 2751 btrfs_start_ordered_extent(inode, ordered, 1);
e6dcd2dc
CM
2752 btrfs_put_ordered_extent(ordered);
2753 goto again;
2754 }
2755
ea8c2819 2756 btrfs_set_extent_delalloc(inode, page_start, page_end);
e6dcd2dc
CM
2757 ret = 0;
2758 if (offset != PAGE_CACHE_SIZE) {
2759 kaddr = kmap(page);
2760 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
2761 flush_dcache_page(page);
2762 kunmap(page);
2763 }
247e743c 2764 ClearPageChecked(page);
e6dcd2dc
CM
2765 set_page_dirty(page);
2766 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
39279cc3 2767
89642229 2768out_unlock:
39279cc3
CM
2769 unlock_page(page);
2770 page_cache_release(page);
2771out:
2772 return ret;
2773}
2774
9036c102 2775int btrfs_cont_expand(struct inode *inode, loff_t size)
39279cc3 2776{
9036c102
YZ
2777 struct btrfs_trans_handle *trans;
2778 struct btrfs_root *root = BTRFS_I(inode)->root;
2779 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2780 struct extent_map *em;
2781 u64 mask = root->sectorsize - 1;
2782 u64 hole_start = (inode->i_size + mask) & ~mask;
2783 u64 block_end = (size + mask) & ~mask;
2784 u64 last_byte;
2785 u64 cur_offset;
2786 u64 hole_size;
39279cc3
CM
2787 int err;
2788
9036c102
YZ
2789 if (size <= hole_start)
2790 return 0;
2791
2792 err = btrfs_check_free_space(root, 1, 0);
39279cc3
CM
2793 if (err)
2794 return err;
2795
9036c102 2796 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2bf5a725 2797
9036c102
YZ
2798 while (1) {
2799 struct btrfs_ordered_extent *ordered;
2800 btrfs_wait_ordered_range(inode, hole_start,
2801 block_end - hole_start);
2802 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2803 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
2804 if (!ordered)
2805 break;
2806 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2807 btrfs_put_ordered_extent(ordered);
2808 }
39279cc3 2809
9036c102
YZ
2810 trans = btrfs_start_transaction(root, 1);
2811 btrfs_set_trans_block_group(trans, inode);
39279cc3 2812
9036c102
YZ
2813 cur_offset = hole_start;
2814 while (1) {
2815 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
2816 block_end - cur_offset, 0);
2817 BUG_ON(IS_ERR(em) || !em);
2818 last_byte = min(extent_map_end(em), block_end);
2819 last_byte = (last_byte + mask) & ~mask;
2820 if (test_bit(EXTENT_FLAG_VACANCY, &em->flags)) {
771ed689 2821 u64 hint_byte = 0;
9036c102 2822 hole_size = last_byte - cur_offset;
771ed689
CM
2823 err = btrfs_drop_extents(trans, root, inode,
2824 cur_offset,
2825 cur_offset + hole_size,
2826 cur_offset, &hint_byte);
2827 if (err)
2828 break;
9036c102
YZ
2829 err = btrfs_insert_file_extent(trans, root,
2830 inode->i_ino, cur_offset, 0,
2831 0, hole_size, 0, hole_size,
2832 0, 0, 0);
2833 btrfs_drop_extent_cache(inode, hole_start,
2834 last_byte - 1, 0);
2835 }
2836 free_extent_map(em);
2837 cur_offset = last_byte;
2838 if (err || cur_offset >= block_end)
2839 break;
2840 }
1832a6d5 2841
9036c102
YZ
2842 btrfs_end_transaction(trans, root);
2843 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
2844 return err;
2845}
39279cc3 2846
9036c102
YZ
2847static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
2848{
2849 struct inode *inode = dentry->d_inode;
2850 int err;
39279cc3 2851
9036c102
YZ
2852 err = inode_change_ok(inode, attr);
2853 if (err)
2854 return err;
2bf5a725 2855
9036c102
YZ
2856 if (S_ISREG(inode->i_mode) &&
2857 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
2858 err = btrfs_cont_expand(inode, attr->ia_size);
54aa1f4d
CM
2859 if (err)
2860 return err;
39279cc3 2861 }
9036c102 2862
39279cc3 2863 err = inode_setattr(inode, attr);
33268eaf
JB
2864
2865 if (!err && ((attr->ia_valid & ATTR_MODE)))
2866 err = btrfs_acl_chmod(inode);
39279cc3
CM
2867 return err;
2868}
61295eb8 2869
39279cc3
CM
2870void btrfs_delete_inode(struct inode *inode)
2871{
2872 struct btrfs_trans_handle *trans;
2873 struct btrfs_root *root = BTRFS_I(inode)->root;
d3c2fdcf 2874 unsigned long nr;
39279cc3
CM
2875 int ret;
2876
2877 truncate_inode_pages(&inode->i_data, 0);
2878 if (is_bad_inode(inode)) {
7b128766 2879 btrfs_orphan_del(NULL, inode);
39279cc3
CM
2880 goto no_delete;
2881 }
4a096752 2882 btrfs_wait_ordered_range(inode, 0, (u64)-1);
5f39d397 2883
dbe674a9 2884 btrfs_i_size_write(inode, 0);
39279cc3 2885 trans = btrfs_start_transaction(root, 1);
5f39d397 2886
39279cc3 2887 btrfs_set_trans_block_group(trans, inode);
e02119d5 2888 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
7b128766
JB
2889 if (ret) {
2890 btrfs_orphan_del(NULL, inode);
54aa1f4d 2891 goto no_delete_lock;
7b128766
JB
2892 }
2893
2894 btrfs_orphan_del(trans, inode);
85e21bac 2895
d3c2fdcf 2896 nr = trans->blocks_used;
85e21bac 2897 clear_inode(inode);
5f39d397 2898
39279cc3 2899 btrfs_end_transaction(trans, root);
d3c2fdcf 2900 btrfs_btree_balance_dirty(root, nr);
39279cc3 2901 return;
54aa1f4d
CM
2902
2903no_delete_lock:
d3c2fdcf 2904 nr = trans->blocks_used;
54aa1f4d 2905 btrfs_end_transaction(trans, root);
d3c2fdcf 2906 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
2907no_delete:
2908 clear_inode(inode);
2909}
2910
2911/*
2912 * this returns the key found in the dir entry in the location pointer.
2913 * If no dir entries were found, location->objectid is 0.
2914 */
2915static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
2916 struct btrfs_key *location)
2917{
2918 const char *name = dentry->d_name.name;
2919 int namelen = dentry->d_name.len;
2920 struct btrfs_dir_item *di;
2921 struct btrfs_path *path;
2922 struct btrfs_root *root = BTRFS_I(dir)->root;
0d9f7f3e 2923 int ret = 0;
39279cc3
CM
2924
2925 path = btrfs_alloc_path();
2926 BUG_ON(!path);
3954401f 2927
39279cc3
CM
2928 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
2929 namelen, 0);
0d9f7f3e
Y
2930 if (IS_ERR(di))
2931 ret = PTR_ERR(di);
39279cc3 2932 if (!di || IS_ERR(di)) {
3954401f 2933 goto out_err;
39279cc3 2934 }
5f39d397 2935 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
39279cc3 2936out:
39279cc3
CM
2937 btrfs_free_path(path);
2938 return ret;
3954401f
CM
2939out_err:
2940 location->objectid = 0;
2941 goto out;
39279cc3
CM
2942}
2943
2944/*
2945 * when we hit a tree root in a directory, the btrfs part of the inode
2946 * needs to be changed to reflect the root directory of the tree root. This
2947 * is kind of like crossing a mount point.
2948 */
2949static int fixup_tree_root_location(struct btrfs_root *root,
2950 struct btrfs_key *location,
58176a96
JB
2951 struct btrfs_root **sub_root,
2952 struct dentry *dentry)
39279cc3 2953{
39279cc3
CM
2954 struct btrfs_root_item *ri;
2955
2956 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
2957 return 0;
2958 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
2959 return 0;
2960
58176a96
JB
2961 *sub_root = btrfs_read_fs_root(root->fs_info, location,
2962 dentry->d_name.name,
2963 dentry->d_name.len);
39279cc3
CM
2964 if (IS_ERR(*sub_root))
2965 return PTR_ERR(*sub_root);
2966
2967 ri = &(*sub_root)->root_item;
2968 location->objectid = btrfs_root_dirid(ri);
39279cc3
CM
2969 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
2970 location->offset = 0;
2971
39279cc3
CM
2972 return 0;
2973}
2974
e02119d5 2975static noinline void init_btrfs_i(struct inode *inode)
39279cc3 2976{
e02119d5
CM
2977 struct btrfs_inode *bi = BTRFS_I(inode);
2978
2979 bi->i_acl = NULL;
2980 bi->i_default_acl = NULL;
2981
2982 bi->generation = 0;
c3027eb5 2983 bi->sequence = 0;
e02119d5
CM
2984 bi->last_trans = 0;
2985 bi->logged_trans = 0;
2986 bi->delalloc_bytes = 0;
2987 bi->disk_i_size = 0;
2988 bi->flags = 0;
2989 bi->index_cnt = (u64)-1;
49eb7e46 2990 bi->log_dirty_trans = 0;
d1310b2e
CM
2991 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2992 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
b888db2b 2993 inode->i_mapping, GFP_NOFS);
7e38326f
CM
2994 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2995 inode->i_mapping, GFP_NOFS);
ea8c2819 2996 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
ba1da2f4 2997 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
ee6e6504 2998 mutex_init(&BTRFS_I(inode)->extent_mutex);
e02119d5
CM
2999 mutex_init(&BTRFS_I(inode)->log_mutex);
3000}
3001
3002static int btrfs_init_locked_inode(struct inode *inode, void *p)
3003{
3004 struct btrfs_iget_args *args = p;
3005 inode->i_ino = args->ino;
3006 init_btrfs_i(inode);
3007 BTRFS_I(inode)->root = args->root;
39279cc3
CM
3008 return 0;
3009}
3010
3011static int btrfs_find_actor(struct inode *inode, void *opaque)
3012{
3013 struct btrfs_iget_args *args = opaque;
3014 return (args->ino == inode->i_ino &&
3015 args->root == BTRFS_I(inode)->root);
3016}
3017
5b21f2ed
ZY
3018struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
3019 struct btrfs_root *root, int wait)
3020{
3021 struct inode *inode;
3022 struct btrfs_iget_args args;
3023 args.ino = objectid;
3024 args.root = root;
3025
3026 if (wait) {
3027 inode = ilookup5(s, objectid, btrfs_find_actor,
3028 (void *)&args);
3029 } else {
3030 inode = ilookup5_nowait(s, objectid, btrfs_find_actor,
3031 (void *)&args);
3032 }
3033 return inode;
3034}
3035
39279cc3
CM
3036struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
3037 struct btrfs_root *root)
3038{
3039 struct inode *inode;
3040 struct btrfs_iget_args args;
3041 args.ino = objectid;
3042 args.root = root;
3043
3044 inode = iget5_locked(s, objectid, btrfs_find_actor,
3045 btrfs_init_locked_inode,
3046 (void *)&args);
3047 return inode;
3048}
3049
1a54ef8c
BR
3050/* Get an inode object given its location and corresponding root.
3051 * Returns in *is_new if the inode was read from disk
3052 */
3053struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
3054 struct btrfs_root *root, int *is_new)
3055{
3056 struct inode *inode;
3057
3058 inode = btrfs_iget_locked(s, location->objectid, root);
3059 if (!inode)
3060 return ERR_PTR(-EACCES);
3061
3062 if (inode->i_state & I_NEW) {
3063 BTRFS_I(inode)->root = root;
3064 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
3065 btrfs_read_locked_inode(inode);
3066 unlock_new_inode(inode);
3067 if (is_new)
3068 *is_new = 1;
3069 } else {
3070 if (is_new)
3071 *is_new = 0;
3072 }
3073
3074 return inode;
3075}
3076
3de4586c 3077struct inode *btrfs_lookup_dentry(struct inode *dir, struct dentry *dentry)
39279cc3
CM
3078{
3079 struct inode * inode;
3080 struct btrfs_inode *bi = BTRFS_I(dir);
3081 struct btrfs_root *root = bi->root;
3082 struct btrfs_root *sub_root = root;
3083 struct btrfs_key location;
c146afad 3084 int ret, new;
39279cc3
CM
3085
3086 if (dentry->d_name.len > BTRFS_NAME_LEN)
3087 return ERR_PTR(-ENAMETOOLONG);
5f39d397 3088
39279cc3 3089 ret = btrfs_inode_by_name(dir, dentry, &location);
5f39d397 3090
39279cc3
CM
3091 if (ret < 0)
3092 return ERR_PTR(ret);
5f39d397 3093
39279cc3
CM
3094 inode = NULL;
3095 if (location.objectid) {
58176a96
JB
3096 ret = fixup_tree_root_location(root, &location, &sub_root,
3097 dentry);
39279cc3
CM
3098 if (ret < 0)
3099 return ERR_PTR(ret);
3100 if (ret > 0)
3101 return ERR_PTR(-ENOENT);
1a54ef8c
BR
3102 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
3103 if (IS_ERR(inode))
3104 return ERR_CAST(inode);
39279cc3 3105 }
3de4586c
CM
3106 return inode;
3107}
3108
3109static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
3110 struct nameidata *nd)
3111{
3112 struct inode *inode;
3113
3114 if (dentry->d_name.len > BTRFS_NAME_LEN)
3115 return ERR_PTR(-ENAMETOOLONG);
3116
3117 inode = btrfs_lookup_dentry(dir, dentry);
3118 if (IS_ERR(inode))
3119 return ERR_CAST(inode);
7b128766 3120
39279cc3
CM
3121 return d_splice_alias(inode, dentry);
3122}
3123
39279cc3
CM
3124static unsigned char btrfs_filetype_table[] = {
3125 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
3126};
3127
cbdf5a24
DW
3128static int btrfs_real_readdir(struct file *filp, void *dirent,
3129 filldir_t filldir)
39279cc3 3130{
6da6abae 3131 struct inode *inode = filp->f_dentry->d_inode;
39279cc3
CM
3132 struct btrfs_root *root = BTRFS_I(inode)->root;
3133 struct btrfs_item *item;
3134 struct btrfs_dir_item *di;
3135 struct btrfs_key key;
5f39d397 3136 struct btrfs_key found_key;
39279cc3
CM
3137 struct btrfs_path *path;
3138 int ret;
3139 u32 nritems;
5f39d397 3140 struct extent_buffer *leaf;
39279cc3
CM
3141 int slot;
3142 int advance;
3143 unsigned char d_type;
3144 int over = 0;
3145 u32 di_cur;
3146 u32 di_total;
3147 u32 di_len;
3148 int key_type = BTRFS_DIR_INDEX_KEY;
5f39d397
CM
3149 char tmp_name[32];
3150 char *name_ptr;
3151 int name_len;
39279cc3
CM
3152
3153 /* FIXME, use a real flag for deciding about the key type */
3154 if (root->fs_info->tree_root == root)
3155 key_type = BTRFS_DIR_ITEM_KEY;
5f39d397 3156
3954401f
CM
3157 /* special case for "." */
3158 if (filp->f_pos == 0) {
3159 over = filldir(dirent, ".", 1,
3160 1, inode->i_ino,
3161 DT_DIR);
3162 if (over)
3163 return 0;
3164 filp->f_pos = 1;
3165 }
3954401f
CM
3166 /* special case for .., just use the back ref */
3167 if (filp->f_pos == 1) {
5ecc7e5d 3168 u64 pino = parent_ino(filp->f_path.dentry);
3954401f 3169 over = filldir(dirent, "..", 2,
5ecc7e5d 3170 2, pino, DT_DIR);
3954401f 3171 if (over)
49593bfa 3172 return 0;
3954401f
CM
3173 filp->f_pos = 2;
3174 }
49593bfa
DW
3175 path = btrfs_alloc_path();
3176 path->reada = 2;
3177
39279cc3
CM
3178 btrfs_set_key_type(&key, key_type);
3179 key.offset = filp->f_pos;
49593bfa 3180 key.objectid = inode->i_ino;
5f39d397 3181
39279cc3
CM
3182 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3183 if (ret < 0)
3184 goto err;
3185 advance = 0;
49593bfa
DW
3186
3187 while (1) {
5f39d397
CM
3188 leaf = path->nodes[0];
3189 nritems = btrfs_header_nritems(leaf);
39279cc3
CM
3190 slot = path->slots[0];
3191 if (advance || slot >= nritems) {
49593bfa 3192 if (slot >= nritems - 1) {
39279cc3
CM
3193 ret = btrfs_next_leaf(root, path);
3194 if (ret)
3195 break;
5f39d397
CM
3196 leaf = path->nodes[0];
3197 nritems = btrfs_header_nritems(leaf);
39279cc3
CM
3198 slot = path->slots[0];
3199 } else {
3200 slot++;
3201 path->slots[0]++;
3202 }
3203 }
3de4586c 3204
39279cc3 3205 advance = 1;
5f39d397
CM
3206 item = btrfs_item_nr(leaf, slot);
3207 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3208
3209 if (found_key.objectid != key.objectid)
39279cc3 3210 break;
5f39d397 3211 if (btrfs_key_type(&found_key) != key_type)
39279cc3 3212 break;
5f39d397 3213 if (found_key.offset < filp->f_pos)
39279cc3 3214 continue;
5f39d397
CM
3215
3216 filp->f_pos = found_key.offset;
49593bfa 3217
39279cc3
CM
3218 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
3219 di_cur = 0;
5f39d397 3220 di_total = btrfs_item_size(leaf, item);
49593bfa
DW
3221
3222 while (di_cur < di_total) {
5f39d397
CM
3223 struct btrfs_key location;
3224
3225 name_len = btrfs_dir_name_len(leaf, di);
49593bfa 3226 if (name_len <= sizeof(tmp_name)) {
5f39d397
CM
3227 name_ptr = tmp_name;
3228 } else {
3229 name_ptr = kmalloc(name_len, GFP_NOFS);
49593bfa
DW
3230 if (!name_ptr) {
3231 ret = -ENOMEM;
3232 goto err;
3233 }
5f39d397
CM
3234 }
3235 read_extent_buffer(leaf, name_ptr,
3236 (unsigned long)(di + 1), name_len);
3237
3238 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
3239 btrfs_dir_item_key_to_cpu(leaf, di, &location);
3de4586c
CM
3240
3241 /* is this a reference to our own snapshot? If so
3242 * skip it
3243 */
3244 if (location.type == BTRFS_ROOT_ITEM_KEY &&
3245 location.objectid == root->root_key.objectid) {
3246 over = 0;
3247 goto skip;
3248 }
5f39d397 3249 over = filldir(dirent, name_ptr, name_len,
49593bfa 3250 found_key.offset, location.objectid,
39279cc3 3251 d_type);
5f39d397 3252
3de4586c 3253skip:
5f39d397
CM
3254 if (name_ptr != tmp_name)
3255 kfree(name_ptr);
3256
39279cc3
CM
3257 if (over)
3258 goto nopos;
5103e947 3259 di_len = btrfs_dir_name_len(leaf, di) +
49593bfa 3260 btrfs_dir_data_len(leaf, di) + sizeof(*di);
39279cc3
CM
3261 di_cur += di_len;
3262 di = (struct btrfs_dir_item *)((char *)di + di_len);
3263 }
3264 }
49593bfa
DW
3265
3266 /* Reached end of directory/root. Bump pos past the last item. */
5e591a07
YZ
3267 if (key_type == BTRFS_DIR_INDEX_KEY)
3268 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
3269 else
3270 filp->f_pos++;
39279cc3
CM
3271nopos:
3272 ret = 0;
3273err:
39279cc3 3274 btrfs_free_path(path);
39279cc3
CM
3275 return ret;
3276}
3277
3278int btrfs_write_inode(struct inode *inode, int wait)
3279{
3280 struct btrfs_root *root = BTRFS_I(inode)->root;
3281 struct btrfs_trans_handle *trans;
3282 int ret = 0;
3283
c146afad 3284 if (root->fs_info->btree_inode == inode)
4ca8b41e
CM
3285 return 0;
3286
39279cc3 3287 if (wait) {
f9295749 3288 trans = btrfs_join_transaction(root, 1);
39279cc3
CM
3289 btrfs_set_trans_block_group(trans, inode);
3290 ret = btrfs_commit_transaction(trans, root);
39279cc3
CM
3291 }
3292 return ret;
3293}
3294
3295/*
54aa1f4d 3296 * This is somewhat expensive, updating the tree every time the
39279cc3
CM
3297 * inode changes. But, it is most likely to find the inode in cache.
3298 * FIXME, needs more benchmarking...there are no reasons other than performance
3299 * to keep or drop this code.
3300 */
3301void btrfs_dirty_inode(struct inode *inode)
3302{
3303 struct btrfs_root *root = BTRFS_I(inode)->root;
3304 struct btrfs_trans_handle *trans;
3305
f9295749 3306 trans = btrfs_join_transaction(root, 1);
39279cc3
CM
3307 btrfs_set_trans_block_group(trans, inode);
3308 btrfs_update_inode(trans, root, inode);
3309 btrfs_end_transaction(trans, root);
39279cc3
CM
3310}
3311
d352ac68
CM
3312/*
3313 * find the highest existing sequence number in a directory
3314 * and then set the in-memory index_cnt variable to reflect
3315 * free sequence numbers
3316 */
aec7477b
JB
3317static int btrfs_set_inode_index_count(struct inode *inode)
3318{
3319 struct btrfs_root *root = BTRFS_I(inode)->root;
3320 struct btrfs_key key, found_key;
3321 struct btrfs_path *path;
3322 struct extent_buffer *leaf;
3323 int ret;
3324
3325 key.objectid = inode->i_ino;
3326 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
3327 key.offset = (u64)-1;
3328
3329 path = btrfs_alloc_path();
3330 if (!path)
3331 return -ENOMEM;
3332
3333 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3334 if (ret < 0)
3335 goto out;
3336 /* FIXME: we should be able to handle this */
3337 if (ret == 0)
3338 goto out;
3339 ret = 0;
3340
3341 /*
3342 * MAGIC NUMBER EXPLANATION:
3343 * since we search a directory based on f_pos we have to start at 2
3344 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
3345 * else has to start at 2
3346 */
3347 if (path->slots[0] == 0) {
3348 BTRFS_I(inode)->index_cnt = 2;
3349 goto out;
3350 }
3351
3352 path->slots[0]--;
3353
3354 leaf = path->nodes[0];
3355 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3356
3357 if (found_key.objectid != inode->i_ino ||
3358 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
3359 BTRFS_I(inode)->index_cnt = 2;
3360 goto out;
3361 }
3362
3363 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
3364out:
3365 btrfs_free_path(path);
3366 return ret;
3367}
3368
d352ac68
CM
3369/*
3370 * helper to find a free sequence number in a given directory. This current
3371 * code is very simple, later versions will do smarter things in the btree
3372 */
3de4586c 3373int btrfs_set_inode_index(struct inode *dir, u64 *index)
aec7477b
JB
3374{
3375 int ret = 0;
3376
3377 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
3378 ret = btrfs_set_inode_index_count(dir);
8d5bf1cb 3379 if (ret) {
aec7477b 3380 return ret;
8d5bf1cb 3381 }
aec7477b
JB
3382 }
3383
00e4e6b3 3384 *index = BTRFS_I(dir)->index_cnt;
aec7477b
JB
3385 BTRFS_I(dir)->index_cnt++;
3386
3387 return ret;
3388}
3389
39279cc3
CM
3390static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
3391 struct btrfs_root *root,
aec7477b 3392 struct inode *dir,
9c58309d 3393 const char *name, int name_len,
d2fb3437
YZ
3394 u64 ref_objectid, u64 objectid,
3395 u64 alloc_hint, int mode, u64 *index)
39279cc3
CM
3396{
3397 struct inode *inode;
5f39d397 3398 struct btrfs_inode_item *inode_item;
39279cc3 3399 struct btrfs_key *location;
5f39d397 3400 struct btrfs_path *path;
9c58309d
CM
3401 struct btrfs_inode_ref *ref;
3402 struct btrfs_key key[2];
3403 u32 sizes[2];
3404 unsigned long ptr;
39279cc3
CM
3405 int ret;
3406 int owner;
3407
5f39d397
CM
3408 path = btrfs_alloc_path();
3409 BUG_ON(!path);
3410
39279cc3
CM
3411 inode = new_inode(root->fs_info->sb);
3412 if (!inode)
3413 return ERR_PTR(-ENOMEM);
3414
aec7477b 3415 if (dir) {
3de4586c 3416 ret = btrfs_set_inode_index(dir, index);
aec7477b
JB
3417 if (ret)
3418 return ERR_PTR(ret);
aec7477b
JB
3419 }
3420 /*
3421 * index_cnt is ignored for everything but a dir,
3422 * btrfs_get_inode_index_count has an explanation for the magic
3423 * number
3424 */
e02119d5 3425 init_btrfs_i(inode);
aec7477b 3426 BTRFS_I(inode)->index_cnt = 2;
39279cc3 3427 BTRFS_I(inode)->root = root;
e02119d5 3428 BTRFS_I(inode)->generation = trans->transid;
b888db2b 3429
39279cc3
CM
3430 if (mode & S_IFDIR)
3431 owner = 0;
3432 else
3433 owner = 1;
d2fb3437
YZ
3434 BTRFS_I(inode)->block_group =
3435 btrfs_find_block_group(root, 0, alloc_hint, owner);
17d217fe
YZ
3436 if ((mode & S_IFREG)) {
3437 if (btrfs_test_opt(root, NODATASUM))
3438 btrfs_set_flag(inode, NODATASUM);
3439 if (btrfs_test_opt(root, NODATACOW))
3440 btrfs_set_flag(inode, NODATACOW);
3441 }
9c58309d
CM
3442
3443 key[0].objectid = objectid;
3444 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
3445 key[0].offset = 0;
3446
3447 key[1].objectid = objectid;
3448 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
3449 key[1].offset = ref_objectid;
3450
3451 sizes[0] = sizeof(struct btrfs_inode_item);
3452 sizes[1] = name_len + sizeof(*ref);
3453
3454 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
3455 if (ret != 0)
5f39d397
CM
3456 goto fail;
3457
9c58309d
CM
3458 if (objectid > root->highest_inode)
3459 root->highest_inode = objectid;
3460
79683f2d
CM
3461 inode->i_uid = current_fsuid();
3462 inode->i_gid = current_fsgid();
39279cc3
CM
3463 inode->i_mode = mode;
3464 inode->i_ino = objectid;
a76a3cd4 3465 inode_set_bytes(inode, 0);
39279cc3 3466 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
5f39d397
CM
3467 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
3468 struct btrfs_inode_item);
e02119d5 3469 fill_inode_item(trans, path->nodes[0], inode_item, inode);
9c58309d
CM
3470
3471 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
3472 struct btrfs_inode_ref);
3473 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
00e4e6b3 3474 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
9c58309d
CM
3475 ptr = (unsigned long)(ref + 1);
3476 write_extent_buffer(path->nodes[0], name, ptr, name_len);
3477
5f39d397
CM
3478 btrfs_mark_buffer_dirty(path->nodes[0]);
3479 btrfs_free_path(path);
3480
39279cc3
CM
3481 location = &BTRFS_I(inode)->location;
3482 location->objectid = objectid;
39279cc3
CM
3483 location->offset = 0;
3484 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
3485
39279cc3
CM
3486 insert_inode_hash(inode);
3487 return inode;
5f39d397 3488fail:
aec7477b
JB
3489 if (dir)
3490 BTRFS_I(dir)->index_cnt--;
5f39d397
CM
3491 btrfs_free_path(path);
3492 return ERR_PTR(ret);
39279cc3
CM
3493}
3494
3495static inline u8 btrfs_inode_type(struct inode *inode)
3496{
3497 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
3498}
3499
d352ac68
CM
3500/*
3501 * utility function to add 'inode' into 'parent_inode' with
3502 * a give name and a given sequence number.
3503 * if 'add_backref' is true, also insert a backref from the
3504 * inode to the parent directory.
3505 */
e02119d5
CM
3506int btrfs_add_link(struct btrfs_trans_handle *trans,
3507 struct inode *parent_inode, struct inode *inode,
3508 const char *name, int name_len, int add_backref, u64 index)
39279cc3
CM
3509{
3510 int ret;
3511 struct btrfs_key key;
e02119d5 3512 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
5f39d397 3513
39279cc3 3514 key.objectid = inode->i_ino;
39279cc3
CM
3515 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
3516 key.offset = 0;
3517
e02119d5
CM
3518 ret = btrfs_insert_dir_item(trans, root, name, name_len,
3519 parent_inode->i_ino,
aec7477b 3520 &key, btrfs_inode_type(inode),
00e4e6b3 3521 index);
39279cc3 3522 if (ret == 0) {
9c58309d
CM
3523 if (add_backref) {
3524 ret = btrfs_insert_inode_ref(trans, root,
e02119d5
CM
3525 name, name_len,
3526 inode->i_ino,
3527 parent_inode->i_ino,
3528 index);
9c58309d 3529 }
dbe674a9 3530 btrfs_i_size_write(parent_inode, parent_inode->i_size +
e02119d5 3531 name_len * 2);
79c44584 3532 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
e02119d5 3533 ret = btrfs_update_inode(trans, root, parent_inode);
39279cc3
CM
3534 }
3535 return ret;
3536}
3537
3538static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
9c58309d 3539 struct dentry *dentry, struct inode *inode,
00e4e6b3 3540 int backref, u64 index)
39279cc3 3541{
e02119d5
CM
3542 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3543 inode, dentry->d_name.name,
3544 dentry->d_name.len, backref, index);
39279cc3
CM
3545 if (!err) {
3546 d_instantiate(dentry, inode);
3547 return 0;
3548 }
3549 if (err > 0)
3550 err = -EEXIST;
3551 return err;
3552}
3553
618e21d5
JB
3554static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
3555 int mode, dev_t rdev)
3556{
3557 struct btrfs_trans_handle *trans;
3558 struct btrfs_root *root = BTRFS_I(dir)->root;
1832a6d5 3559 struct inode *inode = NULL;
618e21d5
JB
3560 int err;
3561 int drop_inode = 0;
3562 u64 objectid;
1832a6d5 3563 unsigned long nr = 0;
00e4e6b3 3564 u64 index = 0;
618e21d5
JB
3565
3566 if (!new_valid_dev(rdev))
3567 return -EINVAL;
3568
1832a6d5
CM
3569 err = btrfs_check_free_space(root, 1, 0);
3570 if (err)
3571 goto fail;
3572
618e21d5
JB
3573 trans = btrfs_start_transaction(root, 1);
3574 btrfs_set_trans_block_group(trans, dir);
3575
3576 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3577 if (err) {
3578 err = -ENOSPC;
3579 goto out_unlock;
3580 }
3581
aec7477b 3582 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
9c58309d
CM
3583 dentry->d_name.len,
3584 dentry->d_parent->d_inode->i_ino, objectid,
00e4e6b3 3585 BTRFS_I(dir)->block_group, mode, &index);
618e21d5
JB
3586 err = PTR_ERR(inode);
3587 if (IS_ERR(inode))
3588 goto out_unlock;
3589
33268eaf
JB
3590 err = btrfs_init_acl(inode, dir);
3591 if (err) {
3592 drop_inode = 1;
3593 goto out_unlock;
3594 }
3595
618e21d5 3596 btrfs_set_trans_block_group(trans, inode);
00e4e6b3 3597 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
618e21d5
JB
3598 if (err)
3599 drop_inode = 1;
3600 else {
3601 inode->i_op = &btrfs_special_inode_operations;
3602 init_special_inode(inode, inode->i_mode, rdev);
1b4ab1bb 3603 btrfs_update_inode(trans, root, inode);
618e21d5
JB
3604 }
3605 dir->i_sb->s_dirt = 1;
3606 btrfs_update_inode_block_group(trans, inode);
3607 btrfs_update_inode_block_group(trans, dir);
3608out_unlock:
d3c2fdcf 3609 nr = trans->blocks_used;
89ce8a63 3610 btrfs_end_transaction_throttle(trans, root);
1832a6d5 3611fail:
618e21d5
JB
3612 if (drop_inode) {
3613 inode_dec_link_count(inode);
3614 iput(inode);
3615 }
d3c2fdcf 3616 btrfs_btree_balance_dirty(root, nr);
618e21d5
JB
3617 return err;
3618}
3619
39279cc3
CM
3620static int btrfs_create(struct inode *dir, struct dentry *dentry,
3621 int mode, struct nameidata *nd)
3622{
3623 struct btrfs_trans_handle *trans;
3624 struct btrfs_root *root = BTRFS_I(dir)->root;
1832a6d5 3625 struct inode *inode = NULL;
39279cc3
CM
3626 int err;
3627 int drop_inode = 0;
1832a6d5 3628 unsigned long nr = 0;
39279cc3 3629 u64 objectid;
00e4e6b3 3630 u64 index = 0;
39279cc3 3631
1832a6d5
CM
3632 err = btrfs_check_free_space(root, 1, 0);
3633 if (err)
3634 goto fail;
39279cc3
CM
3635 trans = btrfs_start_transaction(root, 1);
3636 btrfs_set_trans_block_group(trans, dir);
3637
3638 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3639 if (err) {
3640 err = -ENOSPC;
3641 goto out_unlock;
3642 }
3643
aec7477b 3644 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
9c58309d
CM
3645 dentry->d_name.len,
3646 dentry->d_parent->d_inode->i_ino,
00e4e6b3
CM
3647 objectid, BTRFS_I(dir)->block_group, mode,
3648 &index);
39279cc3
CM
3649 err = PTR_ERR(inode);
3650 if (IS_ERR(inode))
3651 goto out_unlock;
3652
33268eaf
JB
3653 err = btrfs_init_acl(inode, dir);
3654 if (err) {
3655 drop_inode = 1;
3656 goto out_unlock;
3657 }
3658
39279cc3 3659 btrfs_set_trans_block_group(trans, inode);
00e4e6b3 3660 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
39279cc3
CM
3661 if (err)
3662 drop_inode = 1;
3663 else {
3664 inode->i_mapping->a_ops = &btrfs_aops;
04160088 3665 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
39279cc3
CM
3666 inode->i_fop = &btrfs_file_operations;
3667 inode->i_op = &btrfs_file_inode_operations;
d1310b2e 3668 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
39279cc3
CM
3669 }
3670 dir->i_sb->s_dirt = 1;
3671 btrfs_update_inode_block_group(trans, inode);
3672 btrfs_update_inode_block_group(trans, dir);
3673out_unlock:
d3c2fdcf 3674 nr = trans->blocks_used;
ab78c84d 3675 btrfs_end_transaction_throttle(trans, root);
1832a6d5 3676fail:
39279cc3
CM
3677 if (drop_inode) {
3678 inode_dec_link_count(inode);
3679 iput(inode);
3680 }
d3c2fdcf 3681 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
3682 return err;
3683}
3684
3685static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
3686 struct dentry *dentry)
3687{
3688 struct btrfs_trans_handle *trans;
3689 struct btrfs_root *root = BTRFS_I(dir)->root;
3690 struct inode *inode = old_dentry->d_inode;
00e4e6b3 3691 u64 index;
1832a6d5 3692 unsigned long nr = 0;
39279cc3
CM
3693 int err;
3694 int drop_inode = 0;
3695
3696 if (inode->i_nlink == 0)
3697 return -ENOENT;
3698
e02119d5 3699 btrfs_inc_nlink(inode);
1832a6d5
CM
3700 err = btrfs_check_free_space(root, 1, 0);
3701 if (err)
3702 goto fail;
3de4586c 3703 err = btrfs_set_inode_index(dir, &index);
aec7477b
JB
3704 if (err)
3705 goto fail;
3706
39279cc3 3707 trans = btrfs_start_transaction(root, 1);
5f39d397 3708
39279cc3
CM
3709 btrfs_set_trans_block_group(trans, dir);
3710 atomic_inc(&inode->i_count);
aec7477b 3711
00e4e6b3 3712 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
5f39d397 3713
39279cc3
CM
3714 if (err)
3715 drop_inode = 1;
5f39d397 3716
39279cc3
CM
3717 dir->i_sb->s_dirt = 1;
3718 btrfs_update_inode_block_group(trans, dir);
54aa1f4d 3719 err = btrfs_update_inode(trans, root, inode);
5f39d397 3720
54aa1f4d
CM
3721 if (err)
3722 drop_inode = 1;
39279cc3 3723
d3c2fdcf 3724 nr = trans->blocks_used;
ab78c84d 3725 btrfs_end_transaction_throttle(trans, root);
1832a6d5 3726fail:
39279cc3
CM
3727 if (drop_inode) {
3728 inode_dec_link_count(inode);
3729 iput(inode);
3730 }
d3c2fdcf 3731 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
3732 return err;
3733}
3734
39279cc3
CM
3735static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
3736{
b9d86667 3737 struct inode *inode = NULL;
39279cc3
CM
3738 struct btrfs_trans_handle *trans;
3739 struct btrfs_root *root = BTRFS_I(dir)->root;
3740 int err = 0;
3741 int drop_on_err = 0;
b9d86667 3742 u64 objectid = 0;
00e4e6b3 3743 u64 index = 0;
d3c2fdcf 3744 unsigned long nr = 1;
39279cc3 3745
1832a6d5
CM
3746 err = btrfs_check_free_space(root, 1, 0);
3747 if (err)
3748 goto out_unlock;
3749
39279cc3
CM
3750 trans = btrfs_start_transaction(root, 1);
3751 btrfs_set_trans_block_group(trans, dir);
5f39d397 3752
39279cc3
CM
3753 if (IS_ERR(trans)) {
3754 err = PTR_ERR(trans);
3755 goto out_unlock;
3756 }
3757
3758 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3759 if (err) {
3760 err = -ENOSPC;
3761 goto out_unlock;
3762 }
3763
aec7477b 3764 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
9c58309d
CM
3765 dentry->d_name.len,
3766 dentry->d_parent->d_inode->i_ino, objectid,
00e4e6b3
CM
3767 BTRFS_I(dir)->block_group, S_IFDIR | mode,
3768 &index);
39279cc3
CM
3769 if (IS_ERR(inode)) {
3770 err = PTR_ERR(inode);
3771 goto out_fail;
3772 }
5f39d397 3773
39279cc3 3774 drop_on_err = 1;
33268eaf
JB
3775
3776 err = btrfs_init_acl(inode, dir);
3777 if (err)
3778 goto out_fail;
3779
39279cc3
CM
3780 inode->i_op = &btrfs_dir_inode_operations;
3781 inode->i_fop = &btrfs_dir_file_operations;
3782 btrfs_set_trans_block_group(trans, inode);
3783
dbe674a9 3784 btrfs_i_size_write(inode, 0);
39279cc3
CM
3785 err = btrfs_update_inode(trans, root, inode);
3786 if (err)
3787 goto out_fail;
5f39d397 3788
e02119d5
CM
3789 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
3790 inode, dentry->d_name.name,
3791 dentry->d_name.len, 0, index);
39279cc3
CM
3792 if (err)
3793 goto out_fail;
5f39d397 3794
39279cc3
CM
3795 d_instantiate(dentry, inode);
3796 drop_on_err = 0;
3797 dir->i_sb->s_dirt = 1;
3798 btrfs_update_inode_block_group(trans, inode);
3799 btrfs_update_inode_block_group(trans, dir);
3800
3801out_fail:
d3c2fdcf 3802 nr = trans->blocks_used;
ab78c84d 3803 btrfs_end_transaction_throttle(trans, root);
5f39d397 3804
39279cc3 3805out_unlock:
39279cc3
CM
3806 if (drop_on_err)
3807 iput(inode);
d3c2fdcf 3808 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
3809 return err;
3810}
3811
d352ac68
CM
3812/* helper for btfs_get_extent. Given an existing extent in the tree,
3813 * and an extent that you want to insert, deal with overlap and insert
3814 * the new extent into the tree.
3815 */
3b951516
CM
3816static int merge_extent_mapping(struct extent_map_tree *em_tree,
3817 struct extent_map *existing,
e6dcd2dc
CM
3818 struct extent_map *em,
3819 u64 map_start, u64 map_len)
3b951516
CM
3820{
3821 u64 start_diff;
3b951516 3822
e6dcd2dc
CM
3823 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
3824 start_diff = map_start - em->start;
3825 em->start = map_start;
3826 em->len = map_len;
c8b97818
CM
3827 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
3828 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
e6dcd2dc 3829 em->block_start += start_diff;
c8b97818
CM
3830 em->block_len -= start_diff;
3831 }
e6dcd2dc 3832 return add_extent_mapping(em_tree, em);
3b951516
CM
3833}
3834
c8b97818
CM
3835static noinline int uncompress_inline(struct btrfs_path *path,
3836 struct inode *inode, struct page *page,
3837 size_t pg_offset, u64 extent_offset,
3838 struct btrfs_file_extent_item *item)
3839{
3840 int ret;
3841 struct extent_buffer *leaf = path->nodes[0];
3842 char *tmp;
3843 size_t max_size;
3844 unsigned long inline_size;
3845 unsigned long ptr;
3846
3847 WARN_ON(pg_offset != 0);
3848 max_size = btrfs_file_extent_ram_bytes(leaf, item);
3849 inline_size = btrfs_file_extent_inline_item_len(leaf,
3850 btrfs_item_nr(leaf, path->slots[0]));
3851 tmp = kmalloc(inline_size, GFP_NOFS);
3852 ptr = btrfs_file_extent_inline_start(item);
3853
3854 read_extent_buffer(leaf, tmp, ptr, inline_size);
3855
5b050f04 3856 max_size = min_t(unsigned long, PAGE_CACHE_SIZE, max_size);
c8b97818
CM
3857 ret = btrfs_zlib_decompress(tmp, page, extent_offset,
3858 inline_size, max_size);
3859 if (ret) {
3860 char *kaddr = kmap_atomic(page, KM_USER0);
3861 unsigned long copy_size = min_t(u64,
3862 PAGE_CACHE_SIZE - pg_offset,
3863 max_size - extent_offset);
3864 memset(kaddr + pg_offset, 0, copy_size);
3865 kunmap_atomic(kaddr, KM_USER0);
3866 }
3867 kfree(tmp);
3868 return 0;
3869}
3870
d352ac68
CM
3871/*
3872 * a bit scary, this does extent mapping from logical file offset to the disk.
3873 * the ugly parts come from merging extents from the disk with the
3874 * in-ram representation. This gets more complex because of the data=ordered code,
3875 * where the in-ram extents might be locked pending data=ordered completion.
3876 *
3877 * This also copies inline extents directly into the page.
3878 */
a52d9a80 3879struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
70dec807 3880 size_t pg_offset, u64 start, u64 len,
a52d9a80
CM
3881 int create)
3882{
3883 int ret;
3884 int err = 0;
db94535d 3885 u64 bytenr;
a52d9a80
CM
3886 u64 extent_start = 0;
3887 u64 extent_end = 0;
3888 u64 objectid = inode->i_ino;
3889 u32 found_type;
f421950f 3890 struct btrfs_path *path = NULL;
a52d9a80
CM
3891 struct btrfs_root *root = BTRFS_I(inode)->root;
3892 struct btrfs_file_extent_item *item;
5f39d397
CM
3893 struct extent_buffer *leaf;
3894 struct btrfs_key found_key;
a52d9a80
CM
3895 struct extent_map *em = NULL;
3896 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
d1310b2e 3897 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
a52d9a80 3898 struct btrfs_trans_handle *trans = NULL;
c8b97818 3899 int compressed;
a52d9a80 3900
a52d9a80 3901again:
d1310b2e
CM
3902 spin_lock(&em_tree->lock);
3903 em = lookup_extent_mapping(em_tree, start, len);
a061fc8d
CM
3904 if (em)
3905 em->bdev = root->fs_info->fs_devices->latest_bdev;
d1310b2e
CM
3906 spin_unlock(&em_tree->lock);
3907
a52d9a80 3908 if (em) {
e1c4b745
CM
3909 if (em->start > start || em->start + em->len <= start)
3910 free_extent_map(em);
3911 else if (em->block_start == EXTENT_MAP_INLINE && page)
70dec807
CM
3912 free_extent_map(em);
3913 else
3914 goto out;
a52d9a80 3915 }
d1310b2e 3916 em = alloc_extent_map(GFP_NOFS);
a52d9a80 3917 if (!em) {
d1310b2e
CM
3918 err = -ENOMEM;
3919 goto out;
a52d9a80 3920 }
e6dcd2dc 3921 em->bdev = root->fs_info->fs_devices->latest_bdev;
d1310b2e 3922 em->start = EXTENT_MAP_HOLE;
445a6944 3923 em->orig_start = EXTENT_MAP_HOLE;
d1310b2e 3924 em->len = (u64)-1;
c8b97818 3925 em->block_len = (u64)-1;
f421950f
CM
3926
3927 if (!path) {
3928 path = btrfs_alloc_path();
3929 BUG_ON(!path);
3930 }
3931
179e29e4
CM
3932 ret = btrfs_lookup_file_extent(trans, root, path,
3933 objectid, start, trans != NULL);
a52d9a80
CM
3934 if (ret < 0) {
3935 err = ret;
3936 goto out;
3937 }
3938
3939 if (ret != 0) {
3940 if (path->slots[0] == 0)
3941 goto not_found;
3942 path->slots[0]--;
3943 }
3944
5f39d397
CM
3945 leaf = path->nodes[0];
3946 item = btrfs_item_ptr(leaf, path->slots[0],
a52d9a80 3947 struct btrfs_file_extent_item);
a52d9a80 3948 /* are we inside the extent that was found? */
5f39d397
CM
3949 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3950 found_type = btrfs_key_type(&found_key);
3951 if (found_key.objectid != objectid ||
a52d9a80
CM
3952 found_type != BTRFS_EXTENT_DATA_KEY) {
3953 goto not_found;
3954 }
3955
5f39d397
CM
3956 found_type = btrfs_file_extent_type(leaf, item);
3957 extent_start = found_key.offset;
c8b97818 3958 compressed = btrfs_file_extent_compression(leaf, item);
d899e052
YZ
3959 if (found_type == BTRFS_FILE_EXTENT_REG ||
3960 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
a52d9a80 3961 extent_end = extent_start +
db94535d 3962 btrfs_file_extent_num_bytes(leaf, item);
9036c102
YZ
3963 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
3964 size_t size;
3965 size = btrfs_file_extent_inline_len(leaf, item);
3966 extent_end = (extent_start + size + root->sectorsize - 1) &
3967 ~((u64)root->sectorsize - 1);
3968 }
3969
3970 if (start >= extent_end) {
3971 path->slots[0]++;
3972 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
3973 ret = btrfs_next_leaf(root, path);
3974 if (ret < 0) {
3975 err = ret;
3976 goto out;
a52d9a80 3977 }
9036c102
YZ
3978 if (ret > 0)
3979 goto not_found;
3980 leaf = path->nodes[0];
a52d9a80 3981 }
9036c102
YZ
3982 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
3983 if (found_key.objectid != objectid ||
3984 found_key.type != BTRFS_EXTENT_DATA_KEY)
3985 goto not_found;
3986 if (start + len <= found_key.offset)
3987 goto not_found;
3988 em->start = start;
3989 em->len = found_key.offset - start;
3990 goto not_found_em;
3991 }
3992
d899e052
YZ
3993 if (found_type == BTRFS_FILE_EXTENT_REG ||
3994 found_type == BTRFS_FILE_EXTENT_PREALLOC) {
9036c102
YZ
3995 em->start = extent_start;
3996 em->len = extent_end - extent_start;
ff5b7ee3
YZ
3997 em->orig_start = extent_start -
3998 btrfs_file_extent_offset(leaf, item);
db94535d
CM
3999 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
4000 if (bytenr == 0) {
5f39d397 4001 em->block_start = EXTENT_MAP_HOLE;
a52d9a80
CM
4002 goto insert;
4003 }
c8b97818
CM
4004 if (compressed) {
4005 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
4006 em->block_start = bytenr;
4007 em->block_len = btrfs_file_extent_disk_num_bytes(leaf,
4008 item);
4009 } else {
4010 bytenr += btrfs_file_extent_offset(leaf, item);
4011 em->block_start = bytenr;
4012 em->block_len = em->len;
d899e052
YZ
4013 if (found_type == BTRFS_FILE_EXTENT_PREALLOC)
4014 set_bit(EXTENT_FLAG_PREALLOC, &em->flags);
c8b97818 4015 }
a52d9a80
CM
4016 goto insert;
4017 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
5f39d397 4018 unsigned long ptr;
a52d9a80 4019 char *map;
3326d1b0
CM
4020 size_t size;
4021 size_t extent_offset;
4022 size_t copy_size;
a52d9a80 4023
689f9346 4024 em->block_start = EXTENT_MAP_INLINE;
c8b97818 4025 if (!page || create) {
689f9346 4026 em->start = extent_start;
9036c102 4027 em->len = extent_end - extent_start;
689f9346
Y
4028 goto out;
4029 }
5f39d397 4030
9036c102
YZ
4031 size = btrfs_file_extent_inline_len(leaf, item);
4032 extent_offset = page_offset(page) + pg_offset - extent_start;
70dec807 4033 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
3326d1b0 4034 size - extent_offset);
3326d1b0 4035 em->start = extent_start + extent_offset;
70dec807
CM
4036 em->len = (copy_size + root->sectorsize - 1) &
4037 ~((u64)root->sectorsize - 1);
ff5b7ee3 4038 em->orig_start = EXTENT_MAP_INLINE;
c8b97818
CM
4039 if (compressed)
4040 set_bit(EXTENT_FLAG_COMPRESSED, &em->flags);
689f9346 4041 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
179e29e4 4042 if (create == 0 && !PageUptodate(page)) {
c8b97818
CM
4043 if (btrfs_file_extent_compression(leaf, item) ==
4044 BTRFS_COMPRESS_ZLIB) {
4045 ret = uncompress_inline(path, inode, page,
4046 pg_offset,
4047 extent_offset, item);
4048 BUG_ON(ret);
4049 } else {
4050 map = kmap(page);
4051 read_extent_buffer(leaf, map + pg_offset, ptr,
4052 copy_size);
4053 kunmap(page);
4054 }
179e29e4
CM
4055 flush_dcache_page(page);
4056 } else if (create && PageUptodate(page)) {
4057 if (!trans) {
4058 kunmap(page);
4059 free_extent_map(em);
4060 em = NULL;
4061 btrfs_release_path(root, path);
f9295749 4062 trans = btrfs_join_transaction(root, 1);
179e29e4
CM
4063 goto again;
4064 }
c8b97818 4065 map = kmap(page);
70dec807 4066 write_extent_buffer(leaf, map + pg_offset, ptr,
179e29e4 4067 copy_size);
c8b97818 4068 kunmap(page);
179e29e4 4069 btrfs_mark_buffer_dirty(leaf);
a52d9a80 4070 }
d1310b2e
CM
4071 set_extent_uptodate(io_tree, em->start,
4072 extent_map_end(em) - 1, GFP_NOFS);
a52d9a80
CM
4073 goto insert;
4074 } else {
4075 printk("unkknown found_type %d\n", found_type);
4076 WARN_ON(1);
4077 }
4078not_found:
4079 em->start = start;
d1310b2e 4080 em->len = len;
a52d9a80 4081not_found_em:
5f39d397 4082 em->block_start = EXTENT_MAP_HOLE;
9036c102 4083 set_bit(EXTENT_FLAG_VACANCY, &em->flags);
a52d9a80
CM
4084insert:
4085 btrfs_release_path(root, path);
d1310b2e
CM
4086 if (em->start > start || extent_map_end(em) <= start) {
4087 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
a52d9a80
CM
4088 err = -EIO;
4089 goto out;
4090 }
d1310b2e
CM
4091
4092 err = 0;
4093 spin_lock(&em_tree->lock);
a52d9a80 4094 ret = add_extent_mapping(em_tree, em);
3b951516
CM
4095 /* it is possible that someone inserted the extent into the tree
4096 * while we had the lock dropped. It is also possible that
4097 * an overlapping map exists in the tree
4098 */
a52d9a80 4099 if (ret == -EEXIST) {
3b951516 4100 struct extent_map *existing;
e6dcd2dc
CM
4101
4102 ret = 0;
4103
3b951516 4104 existing = lookup_extent_mapping(em_tree, start, len);
e1c4b745
CM
4105 if (existing && (existing->start > start ||
4106 existing->start + existing->len <= start)) {
4107 free_extent_map(existing);
4108 existing = NULL;
4109 }
3b951516
CM
4110 if (!existing) {
4111 existing = lookup_extent_mapping(em_tree, em->start,
4112 em->len);
4113 if (existing) {
4114 err = merge_extent_mapping(em_tree, existing,
e6dcd2dc
CM
4115 em, start,
4116 root->sectorsize);
3b951516
CM
4117 free_extent_map(existing);
4118 if (err) {
4119 free_extent_map(em);
4120 em = NULL;
4121 }
4122 } else {
4123 err = -EIO;
4124 printk("failing to insert %Lu %Lu\n",
4125 start, len);
4126 free_extent_map(em);
4127 em = NULL;
4128 }
4129 } else {
4130 free_extent_map(em);
4131 em = existing;
e6dcd2dc 4132 err = 0;
a52d9a80 4133 }
a52d9a80 4134 }
d1310b2e 4135 spin_unlock(&em_tree->lock);
a52d9a80 4136out:
f421950f
CM
4137 if (path)
4138 btrfs_free_path(path);
a52d9a80
CM
4139 if (trans) {
4140 ret = btrfs_end_transaction(trans, root);
e6dcd2dc 4141 if (!err) {
a52d9a80 4142 err = ret;
e6dcd2dc 4143 }
a52d9a80 4144 }
a52d9a80
CM
4145 if (err) {
4146 free_extent_map(em);
4147 WARN_ON(1);
4148 return ERR_PTR(err);
4149 }
4150 return em;
4151}
4152
16432985
CM
4153static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
4154 const struct iovec *iov, loff_t offset,
4155 unsigned long nr_segs)
4156{
e1c4b745 4157 return -EINVAL;
16432985
CM
4158}
4159
d396c6f5 4160static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
39279cc3 4161{
d396c6f5 4162 return extent_bmap(mapping, iblock, btrfs_get_extent);
39279cc3
CM
4163}
4164
a52d9a80 4165int btrfs_readpage(struct file *file, struct page *page)
9ebefb18 4166{
d1310b2e
CM
4167 struct extent_io_tree *tree;
4168 tree = &BTRFS_I(page->mapping->host)->io_tree;
a52d9a80 4169 return extent_read_full_page(tree, page, btrfs_get_extent);
9ebefb18 4170}
1832a6d5 4171
a52d9a80 4172static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
39279cc3 4173{
d1310b2e 4174 struct extent_io_tree *tree;
b888db2b
CM
4175
4176
4177 if (current->flags & PF_MEMALLOC) {
4178 redirty_page_for_writepage(wbc, page);
4179 unlock_page(page);
4180 return 0;
4181 }
d1310b2e 4182 tree = &BTRFS_I(page->mapping->host)->io_tree;
a52d9a80 4183 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
9ebefb18
CM
4184}
4185
f421950f
CM
4186int btrfs_writepages(struct address_space *mapping,
4187 struct writeback_control *wbc)
b293f02e 4188{
d1310b2e 4189 struct extent_io_tree *tree;
771ed689 4190
d1310b2e 4191 tree = &BTRFS_I(mapping->host)->io_tree;
b293f02e
CM
4192 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
4193}
4194
3ab2fb5a
CM
4195static int
4196btrfs_readpages(struct file *file, struct address_space *mapping,
4197 struct list_head *pages, unsigned nr_pages)
4198{
d1310b2e
CM
4199 struct extent_io_tree *tree;
4200 tree = &BTRFS_I(mapping->host)->io_tree;
3ab2fb5a
CM
4201 return extent_readpages(tree, mapping, pages, nr_pages,
4202 btrfs_get_extent);
4203}
e6dcd2dc 4204static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
9ebefb18 4205{
d1310b2e
CM
4206 struct extent_io_tree *tree;
4207 struct extent_map_tree *map;
a52d9a80 4208 int ret;
8c2383c3 4209
d1310b2e
CM
4210 tree = &BTRFS_I(page->mapping->host)->io_tree;
4211 map = &BTRFS_I(page->mapping->host)->extent_tree;
70dec807 4212 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
a52d9a80
CM
4213 if (ret == 1) {
4214 ClearPagePrivate(page);
4215 set_page_private(page, 0);
4216 page_cache_release(page);
39279cc3 4217 }
a52d9a80 4218 return ret;
39279cc3
CM
4219}
4220
e6dcd2dc
CM
4221static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
4222{
98509cfc
CM
4223 if (PageWriteback(page) || PageDirty(page))
4224 return 0;
e6dcd2dc
CM
4225 return __btrfs_releasepage(page, gfp_flags);
4226}
4227
a52d9a80 4228static void btrfs_invalidatepage(struct page *page, unsigned long offset)
39279cc3 4229{
d1310b2e 4230 struct extent_io_tree *tree;
e6dcd2dc
CM
4231 struct btrfs_ordered_extent *ordered;
4232 u64 page_start = page_offset(page);
4233 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
39279cc3 4234
e6dcd2dc 4235 wait_on_page_writeback(page);
d1310b2e 4236 tree = &BTRFS_I(page->mapping->host)->io_tree;
e6dcd2dc
CM
4237 if (offset) {
4238 btrfs_releasepage(page, GFP_NOFS);
4239 return;
4240 }
4241
4242 lock_extent(tree, page_start, page_end, GFP_NOFS);
4243 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
4244 page_offset(page));
4245 if (ordered) {
eb84ae03
CM
4246 /*
4247 * IO on this page will never be started, so we need
4248 * to account for any ordered extents now
4249 */
e6dcd2dc
CM
4250 clear_extent_bit(tree, page_start, page_end,
4251 EXTENT_DIRTY | EXTENT_DELALLOC |
4252 EXTENT_LOCKED, 1, 0, GFP_NOFS);
211f90e6
CM
4253 btrfs_finish_ordered_io(page->mapping->host,
4254 page_start, page_end);
e6dcd2dc
CM
4255 btrfs_put_ordered_extent(ordered);
4256 lock_extent(tree, page_start, page_end, GFP_NOFS);
4257 }
4258 clear_extent_bit(tree, page_start, page_end,
4259 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
4260 EXTENT_ORDERED,
4261 1, 1, GFP_NOFS);
4262 __btrfs_releasepage(page, GFP_NOFS);
4263
4a096752 4264 ClearPageChecked(page);
9ad6b7bc 4265 if (PagePrivate(page)) {
9ad6b7bc
CM
4266 ClearPagePrivate(page);
4267 set_page_private(page, 0);
4268 page_cache_release(page);
4269 }
39279cc3
CM
4270}
4271
9ebefb18
CM
4272/*
4273 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
4274 * called from a page fault handler when a page is first dirtied. Hence we must
4275 * be careful to check for EOF conditions here. We set the page up correctly
4276 * for a written page which means we get ENOSPC checking when writing into
4277 * holes and correct delalloc and unwritten extent mapping on filesystems that
4278 * support these features.
4279 *
4280 * We are not allowed to take the i_mutex here so we have to play games to
4281 * protect against truncate races as the page could now be beyond EOF. Because
4282 * vmtruncate() writes the inode size before removing pages, once we have the
4283 * page lock we can determine safely if the page is beyond EOF. If it is not
4284 * beyond EOF, then the page is guaranteed safe against truncation until we
4285 * unlock the page.
4286 */
4287int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
4288{
6da6abae 4289 struct inode *inode = fdentry(vma->vm_file)->d_inode;
1832a6d5 4290 struct btrfs_root *root = BTRFS_I(inode)->root;
e6dcd2dc
CM
4291 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
4292 struct btrfs_ordered_extent *ordered;
4293 char *kaddr;
4294 unsigned long zero_start;
9ebefb18 4295 loff_t size;
1832a6d5 4296 int ret;
a52d9a80 4297 u64 page_start;
e6dcd2dc 4298 u64 page_end;
9ebefb18 4299
1832a6d5 4300 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
1832a6d5
CM
4301 if (ret)
4302 goto out;
4303
4304 ret = -EINVAL;
e6dcd2dc 4305again:
9ebefb18 4306 lock_page(page);
9ebefb18 4307 size = i_size_read(inode);
e6dcd2dc
CM
4308 page_start = page_offset(page);
4309 page_end = page_start + PAGE_CACHE_SIZE - 1;
a52d9a80 4310
9ebefb18 4311 if ((page->mapping != inode->i_mapping) ||
e6dcd2dc 4312 (page_start >= size)) {
9ebefb18
CM
4313 /* page got truncated out from underneath us */
4314 goto out_unlock;
4315 }
e6dcd2dc
CM
4316 wait_on_page_writeback(page);
4317
4318 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
4319 set_page_extent_mapped(page);
4320
eb84ae03
CM
4321 /*
4322 * we can't set the delalloc bits if there are pending ordered
4323 * extents. Drop our locks and wait for them to finish
4324 */
e6dcd2dc
CM
4325 ordered = btrfs_lookup_ordered_extent(inode, page_start);
4326 if (ordered) {
4327 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
4328 unlock_page(page);
eb84ae03 4329 btrfs_start_ordered_extent(inode, ordered, 1);
e6dcd2dc
CM
4330 btrfs_put_ordered_extent(ordered);
4331 goto again;
4332 }
4333
ea8c2819 4334 btrfs_set_extent_delalloc(inode, page_start, page_end);
e6dcd2dc 4335 ret = 0;
9ebefb18
CM
4336
4337 /* page is wholly or partially inside EOF */
a52d9a80 4338 if (page_start + PAGE_CACHE_SIZE > size)
e6dcd2dc 4339 zero_start = size & ~PAGE_CACHE_MASK;
9ebefb18 4340 else
e6dcd2dc 4341 zero_start = PAGE_CACHE_SIZE;
9ebefb18 4342
e6dcd2dc
CM
4343 if (zero_start != PAGE_CACHE_SIZE) {
4344 kaddr = kmap(page);
4345 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
4346 flush_dcache_page(page);
4347 kunmap(page);
4348 }
247e743c 4349 ClearPageChecked(page);
e6dcd2dc
CM
4350 set_page_dirty(page);
4351 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
9ebefb18
CM
4352
4353out_unlock:
4354 unlock_page(page);
1832a6d5 4355out:
9ebefb18
CM
4356 return ret;
4357}
4358
39279cc3
CM
4359static void btrfs_truncate(struct inode *inode)
4360{
4361 struct btrfs_root *root = BTRFS_I(inode)->root;
4362 int ret;
4363 struct btrfs_trans_handle *trans;
d3c2fdcf 4364 unsigned long nr;
dbe674a9 4365 u64 mask = root->sectorsize - 1;
39279cc3
CM
4366
4367 if (!S_ISREG(inode->i_mode))
4368 return;
4369 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4370 return;
4371
4372 btrfs_truncate_page(inode->i_mapping, inode->i_size);
4a096752 4373 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
39279cc3 4374
39279cc3
CM
4375 trans = btrfs_start_transaction(root, 1);
4376 btrfs_set_trans_block_group(trans, inode);
dbe674a9 4377 btrfs_i_size_write(inode, inode->i_size);
39279cc3 4378
7b128766
JB
4379 ret = btrfs_orphan_add(trans, inode);
4380 if (ret)
4381 goto out;
39279cc3 4382 /* FIXME, add redo link to tree so we don't leak on crash */
e02119d5 4383 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
85e21bac 4384 BTRFS_EXTENT_DATA_KEY);
39279cc3 4385 btrfs_update_inode(trans, root, inode);
5f39d397 4386
7b128766
JB
4387 ret = btrfs_orphan_del(trans, inode);
4388 BUG_ON(ret);
4389
4390out:
4391 nr = trans->blocks_used;
89ce8a63 4392 ret = btrfs_end_transaction_throttle(trans, root);
39279cc3 4393 BUG_ON(ret);
d3c2fdcf 4394 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
4395}
4396
d352ac68
CM
4397/*
4398 * create a new subvolume directory/inode (helper for the ioctl).
4399 */
d2fb3437
YZ
4400int btrfs_create_subvol_root(struct btrfs_trans_handle *trans,
4401 struct btrfs_root *new_root, struct dentry *dentry,
4402 u64 new_dirid, u64 alloc_hint)
39279cc3 4403{
39279cc3 4404 struct inode *inode;
cb8e7090 4405 int error;
00e4e6b3 4406 u64 index = 0;
39279cc3 4407
aec7477b 4408 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
d2fb3437 4409 new_dirid, alloc_hint, S_IFDIR | 0700, &index);
54aa1f4d 4410 if (IS_ERR(inode))
f46b5a66 4411 return PTR_ERR(inode);
39279cc3
CM
4412 inode->i_op = &btrfs_dir_inode_operations;
4413 inode->i_fop = &btrfs_dir_file_operations;
4414
39279cc3 4415 inode->i_nlink = 1;
dbe674a9 4416 btrfs_i_size_write(inode, 0);
3b96362c 4417
cb8e7090
CH
4418 error = btrfs_update_inode(trans, new_root, inode);
4419 if (error)
4420 return error;
4421
4422 d_instantiate(dentry, inode);
4423 return 0;
39279cc3
CM
4424}
4425
d352ac68
CM
4426/* helper function for file defrag and space balancing. This
4427 * forces readahead on a given range of bytes in an inode
4428 */
edbd8d4e 4429unsigned long btrfs_force_ra(struct address_space *mapping,
86479a04
CM
4430 struct file_ra_state *ra, struct file *file,
4431 pgoff_t offset, pgoff_t last_index)
4432{
8e7bf94f 4433 pgoff_t req_size = last_index - offset + 1;
86479a04 4434
86479a04
CM
4435 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
4436 return offset + req_size;
86479a04
CM
4437}
4438
39279cc3
CM
4439struct inode *btrfs_alloc_inode(struct super_block *sb)
4440{
4441 struct btrfs_inode *ei;
4442
4443 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
4444 if (!ei)
4445 return NULL;
15ee9bc7 4446 ei->last_trans = 0;
e02119d5 4447 ei->logged_trans = 0;
e6dcd2dc 4448 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
33268eaf
JB
4449 ei->i_acl = BTRFS_ACL_NOT_CACHED;
4450 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
7b128766 4451 INIT_LIST_HEAD(&ei->i_orphan);
39279cc3
CM
4452 return &ei->vfs_inode;
4453}
4454
4455void btrfs_destroy_inode(struct inode *inode)
4456{
e6dcd2dc 4457 struct btrfs_ordered_extent *ordered;
39279cc3
CM
4458 WARN_ON(!list_empty(&inode->i_dentry));
4459 WARN_ON(inode->i_data.nrpages);
4460
33268eaf
JB
4461 if (BTRFS_I(inode)->i_acl &&
4462 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
4463 posix_acl_release(BTRFS_I(inode)->i_acl);
4464 if (BTRFS_I(inode)->i_default_acl &&
4465 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
4466 posix_acl_release(BTRFS_I(inode)->i_default_acl);
4467
bcc63abb 4468 spin_lock(&BTRFS_I(inode)->root->list_lock);
7b128766
JB
4469 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
4470 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
4471 " list\n", inode->i_ino);
4472 dump_stack();
4473 }
bcc63abb 4474 spin_unlock(&BTRFS_I(inode)->root->list_lock);
7b128766 4475
e6dcd2dc
CM
4476 while(1) {
4477 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
4478 if (!ordered)
4479 break;
4480 else {
4481 printk("found ordered extent %Lu %Lu\n",
4482 ordered->file_offset, ordered->len);
4483 btrfs_remove_ordered_extent(inode, ordered);
4484 btrfs_put_ordered_extent(ordered);
4485 btrfs_put_ordered_extent(ordered);
4486 }
4487 }
5b21f2ed 4488 btrfs_drop_extent_cache(inode, 0, (u64)-1, 0);
39279cc3
CM
4489 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
4490}
4491
0ee0fda0 4492static void init_once(void *foo)
39279cc3
CM
4493{
4494 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
4495
4496 inode_init_once(&ei->vfs_inode);
4497}
4498
4499void btrfs_destroy_cachep(void)
4500{
4501 if (btrfs_inode_cachep)
4502 kmem_cache_destroy(btrfs_inode_cachep);
4503 if (btrfs_trans_handle_cachep)
4504 kmem_cache_destroy(btrfs_trans_handle_cachep);
4505 if (btrfs_transaction_cachep)
4506 kmem_cache_destroy(btrfs_transaction_cachep);
4507 if (btrfs_bit_radix_cachep)
4508 kmem_cache_destroy(btrfs_bit_radix_cachep);
4509 if (btrfs_path_cachep)
4510 kmem_cache_destroy(btrfs_path_cachep);
4511}
4512
86479a04 4513struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
92fee66d 4514 unsigned long extra_flags,
2b1f55b0 4515 void (*ctor)(void *))
92fee66d
CM
4516{
4517 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2b1f55b0 4518 SLAB_MEM_SPREAD | extra_flags), ctor);
92fee66d
CM
4519}
4520
39279cc3
CM
4521int btrfs_init_cachep(void)
4522{
86479a04 4523 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
92fee66d
CM
4524 sizeof(struct btrfs_inode),
4525 0, init_once);
39279cc3
CM
4526 if (!btrfs_inode_cachep)
4527 goto fail;
86479a04
CM
4528 btrfs_trans_handle_cachep =
4529 btrfs_cache_create("btrfs_trans_handle_cache",
4530 sizeof(struct btrfs_trans_handle),
4531 0, NULL);
39279cc3
CM
4532 if (!btrfs_trans_handle_cachep)
4533 goto fail;
86479a04 4534 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
39279cc3 4535 sizeof(struct btrfs_transaction),
92fee66d 4536 0, NULL);
39279cc3
CM
4537 if (!btrfs_transaction_cachep)
4538 goto fail;
86479a04 4539 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
23223584 4540 sizeof(struct btrfs_path),
92fee66d 4541 0, NULL);
39279cc3
CM
4542 if (!btrfs_path_cachep)
4543 goto fail;
86479a04 4544 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
92fee66d 4545 SLAB_DESTROY_BY_RCU, NULL);
39279cc3
CM
4546 if (!btrfs_bit_radix_cachep)
4547 goto fail;
4548 return 0;
4549fail:
4550 btrfs_destroy_cachep();
4551 return -ENOMEM;
4552}
4553
4554static int btrfs_getattr(struct vfsmount *mnt,
4555 struct dentry *dentry, struct kstat *stat)
4556{
4557 struct inode *inode = dentry->d_inode;
4558 generic_fillattr(inode, stat);
3394e160 4559 stat->dev = BTRFS_I(inode)->root->anon_super.s_dev;
d6667462 4560 stat->blksize = PAGE_CACHE_SIZE;
a76a3cd4
YZ
4561 stat->blocks = (inode_get_bytes(inode) +
4562 BTRFS_I(inode)->delalloc_bytes) >> 9;
39279cc3
CM
4563 return 0;
4564}
4565
4566static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
4567 struct inode * new_dir,struct dentry *new_dentry)
4568{
4569 struct btrfs_trans_handle *trans;
4570 struct btrfs_root *root = BTRFS_I(old_dir)->root;
4571 struct inode *new_inode = new_dentry->d_inode;
4572 struct inode *old_inode = old_dentry->d_inode;
4573 struct timespec ctime = CURRENT_TIME;
00e4e6b3 4574 u64 index = 0;
39279cc3
CM
4575 int ret;
4576
3394e160
CM
4577 /* we're not allowed to rename between subvolumes */
4578 if (BTRFS_I(old_inode)->root->root_key.objectid !=
4579 BTRFS_I(new_dir)->root->root_key.objectid)
4580 return -EXDEV;
4581
39279cc3
CM
4582 if (S_ISDIR(old_inode->i_mode) && new_inode &&
4583 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
4584 return -ENOTEMPTY;
4585 }
5f39d397 4586
0660b5af
CM
4587 /* to rename a snapshot or subvolume, we need to juggle the
4588 * backrefs. This isn't coded yet
4589 */
4590 if (old_inode->i_ino == BTRFS_FIRST_FREE_OBJECTID)
4591 return -EXDEV;
4592
1832a6d5
CM
4593 ret = btrfs_check_free_space(root, 1, 0);
4594 if (ret)
4595 goto out_unlock;
4596
39279cc3 4597 trans = btrfs_start_transaction(root, 1);
5f39d397 4598
39279cc3 4599 btrfs_set_trans_block_group(trans, new_dir);
39279cc3 4600
e02119d5 4601 btrfs_inc_nlink(old_dentry->d_inode);
39279cc3
CM
4602 old_dir->i_ctime = old_dir->i_mtime = ctime;
4603 new_dir->i_ctime = new_dir->i_mtime = ctime;
4604 old_inode->i_ctime = ctime;
5f39d397 4605
e02119d5
CM
4606 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
4607 old_dentry->d_name.name,
4608 old_dentry->d_name.len);
39279cc3
CM
4609 if (ret)
4610 goto out_fail;
4611
4612 if (new_inode) {
4613 new_inode->i_ctime = CURRENT_TIME;
e02119d5
CM
4614 ret = btrfs_unlink_inode(trans, root, new_dir,
4615 new_dentry->d_inode,
4616 new_dentry->d_name.name,
4617 new_dentry->d_name.len);
39279cc3
CM
4618 if (ret)
4619 goto out_fail;
7b128766 4620 if (new_inode->i_nlink == 0) {
e02119d5 4621 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
7b128766
JB
4622 if (ret)
4623 goto out_fail;
4624 }
e02119d5 4625
39279cc3 4626 }
3de4586c 4627 ret = btrfs_set_inode_index(new_dir, &index);
aec7477b
JB
4628 if (ret)
4629 goto out_fail;
4630
e02119d5
CM
4631 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
4632 old_inode, new_dentry->d_name.name,
4633 new_dentry->d_name.len, 1, index);
39279cc3
CM
4634 if (ret)
4635 goto out_fail;
4636
4637out_fail:
ab78c84d 4638 btrfs_end_transaction_throttle(trans, root);
1832a6d5 4639out_unlock:
39279cc3
CM
4640 return ret;
4641}
4642
d352ac68
CM
4643/*
4644 * some fairly slow code that needs optimization. This walks the list
4645 * of all the inodes with pending delalloc and forces them to disk.
4646 */
ea8c2819
CM
4647int btrfs_start_delalloc_inodes(struct btrfs_root *root)
4648{
4649 struct list_head *head = &root->fs_info->delalloc_inodes;
4650 struct btrfs_inode *binode;
5b21f2ed 4651 struct inode *inode;
ea8c2819
CM
4652 unsigned long flags;
4653
c146afad
YZ
4654 if (root->fs_info->sb->s_flags & MS_RDONLY)
4655 return -EROFS;
4656
ea8c2819
CM
4657 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4658 while(!list_empty(head)) {
4659 binode = list_entry(head->next, struct btrfs_inode,
4660 delalloc_inodes);
5b21f2ed
ZY
4661 inode = igrab(&binode->vfs_inode);
4662 if (!inode)
4663 list_del_init(&binode->delalloc_inodes);
ea8c2819 4664 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
5b21f2ed 4665 if (inode) {
8c8bee1d 4666 filemap_flush(inode->i_mapping);
5b21f2ed
ZY
4667 iput(inode);
4668 }
4669 cond_resched();
ea8c2819
CM
4670 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
4671 }
4672 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
8c8bee1d
CM
4673
4674 /* the filemap_flush will queue IO into the worker threads, but
4675 * we have to make sure the IO is actually started and that
4676 * ordered extents get created before we return
4677 */
4678 atomic_inc(&root->fs_info->async_submit_draining);
771ed689
CM
4679 while(atomic_read(&root->fs_info->nr_async_submits) ||
4680 atomic_read(&root->fs_info->async_delalloc_pages)) {
8c8bee1d 4681 wait_event(root->fs_info->async_submit_wait,
771ed689
CM
4682 (atomic_read(&root->fs_info->nr_async_submits) == 0 &&
4683 atomic_read(&root->fs_info->async_delalloc_pages) == 0));
8c8bee1d
CM
4684 }
4685 atomic_dec(&root->fs_info->async_submit_draining);
ea8c2819
CM
4686 return 0;
4687}
4688
39279cc3
CM
4689static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
4690 const char *symname)
4691{
4692 struct btrfs_trans_handle *trans;
4693 struct btrfs_root *root = BTRFS_I(dir)->root;
4694 struct btrfs_path *path;
4695 struct btrfs_key key;
1832a6d5 4696 struct inode *inode = NULL;
39279cc3
CM
4697 int err;
4698 int drop_inode = 0;
4699 u64 objectid;
00e4e6b3 4700 u64 index = 0 ;
39279cc3
CM
4701 int name_len;
4702 int datasize;
5f39d397 4703 unsigned long ptr;
39279cc3 4704 struct btrfs_file_extent_item *ei;
5f39d397 4705 struct extent_buffer *leaf;
1832a6d5 4706 unsigned long nr = 0;
39279cc3
CM
4707
4708 name_len = strlen(symname) + 1;
4709 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
4710 return -ENAMETOOLONG;
1832a6d5 4711
1832a6d5
CM
4712 err = btrfs_check_free_space(root, 1, 0);
4713 if (err)
4714 goto out_fail;
4715
39279cc3
CM
4716 trans = btrfs_start_transaction(root, 1);
4717 btrfs_set_trans_block_group(trans, dir);
4718
4719 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
4720 if (err) {
4721 err = -ENOSPC;
4722 goto out_unlock;
4723 }
4724
aec7477b 4725 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
9c58309d
CM
4726 dentry->d_name.len,
4727 dentry->d_parent->d_inode->i_ino, objectid,
00e4e6b3
CM
4728 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
4729 &index);
39279cc3
CM
4730 err = PTR_ERR(inode);
4731 if (IS_ERR(inode))
4732 goto out_unlock;
4733
33268eaf
JB
4734 err = btrfs_init_acl(inode, dir);
4735 if (err) {
4736 drop_inode = 1;
4737 goto out_unlock;
4738 }
4739
39279cc3 4740 btrfs_set_trans_block_group(trans, inode);
00e4e6b3 4741 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
39279cc3
CM
4742 if (err)
4743 drop_inode = 1;
4744 else {
4745 inode->i_mapping->a_ops = &btrfs_aops;
04160088 4746 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
39279cc3
CM
4747 inode->i_fop = &btrfs_file_operations;
4748 inode->i_op = &btrfs_file_inode_operations;
d1310b2e 4749 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
39279cc3
CM
4750 }
4751 dir->i_sb->s_dirt = 1;
4752 btrfs_update_inode_block_group(trans, inode);
4753 btrfs_update_inode_block_group(trans, dir);
4754 if (drop_inode)
4755 goto out_unlock;
4756
4757 path = btrfs_alloc_path();
4758 BUG_ON(!path);
4759 key.objectid = inode->i_ino;
4760 key.offset = 0;
39279cc3
CM
4761 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
4762 datasize = btrfs_file_extent_calc_inline_size(name_len);
4763 err = btrfs_insert_empty_item(trans, root, path, &key,
4764 datasize);
54aa1f4d
CM
4765 if (err) {
4766 drop_inode = 1;
4767 goto out_unlock;
4768 }
5f39d397
CM
4769 leaf = path->nodes[0];
4770 ei = btrfs_item_ptr(leaf, path->slots[0],
4771 struct btrfs_file_extent_item);
4772 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
4773 btrfs_set_file_extent_type(leaf, ei,
39279cc3 4774 BTRFS_FILE_EXTENT_INLINE);
c8b97818
CM
4775 btrfs_set_file_extent_encryption(leaf, ei, 0);
4776 btrfs_set_file_extent_compression(leaf, ei, 0);
4777 btrfs_set_file_extent_other_encoding(leaf, ei, 0);
4778 btrfs_set_file_extent_ram_bytes(leaf, ei, name_len);
4779
39279cc3 4780 ptr = btrfs_file_extent_inline_start(ei);
5f39d397
CM
4781 write_extent_buffer(leaf, symname, ptr, name_len);
4782 btrfs_mark_buffer_dirty(leaf);
39279cc3 4783 btrfs_free_path(path);
5f39d397 4784
39279cc3
CM
4785 inode->i_op = &btrfs_symlink_inode_operations;
4786 inode->i_mapping->a_ops = &btrfs_symlink_aops;
04160088 4787 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
d899e052 4788 inode_set_bytes(inode, name_len);
dbe674a9 4789 btrfs_i_size_write(inode, name_len - 1);
54aa1f4d
CM
4790 err = btrfs_update_inode(trans, root, inode);
4791 if (err)
4792 drop_inode = 1;
39279cc3
CM
4793
4794out_unlock:
d3c2fdcf 4795 nr = trans->blocks_used;
ab78c84d 4796 btrfs_end_transaction_throttle(trans, root);
1832a6d5 4797out_fail:
39279cc3
CM
4798 if (drop_inode) {
4799 inode_dec_link_count(inode);
4800 iput(inode);
4801 }
d3c2fdcf 4802 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
4803 return err;
4804}
16432985 4805
d899e052
YZ
4806static int prealloc_file_range(struct inode *inode, u64 start, u64 end,
4807 u64 alloc_hint, int mode)
4808{
4809 struct btrfs_trans_handle *trans;
4810 struct btrfs_root *root = BTRFS_I(inode)->root;
4811 struct btrfs_key ins;
4812 u64 alloc_size;
4813 u64 cur_offset = start;
4814 u64 num_bytes = end - start;
4815 int ret = 0;
4816
4817 trans = btrfs_join_transaction(root, 1);
4818 BUG_ON(!trans);
4819 btrfs_set_trans_block_group(trans, inode);
4820
4821 while (num_bytes > 0) {
4822 alloc_size = min(num_bytes, root->fs_info->max_extent);
4823 ret = btrfs_reserve_extent(trans, root, alloc_size,
4824 root->sectorsize, 0, alloc_hint,
4825 (u64)-1, &ins, 1);
4826 if (ret) {
4827 WARN_ON(1);
4828 goto out;
4829 }
4830 ret = insert_reserved_file_extent(trans, inode,
4831 cur_offset, ins.objectid,
4832 ins.offset, ins.offset,
4833 ins.offset, 0, 0, 0,
4834 BTRFS_FILE_EXTENT_PREALLOC);
4835 BUG_ON(ret);
4836 num_bytes -= ins.offset;
4837 cur_offset += ins.offset;
4838 alloc_hint = ins.objectid + ins.offset;
4839 }
4840out:
4841 if (cur_offset > start) {
4842 inode->i_ctime = CURRENT_TIME;
4843 btrfs_set_flag(inode, PREALLOC);
4844 if (!(mode & FALLOC_FL_KEEP_SIZE) &&
4845 cur_offset > i_size_read(inode))
4846 btrfs_i_size_write(inode, cur_offset);
4847 ret = btrfs_update_inode(trans, root, inode);
4848 BUG_ON(ret);
4849 }
4850
4851 btrfs_end_transaction(trans, root);
4852 return ret;
4853}
4854
4855static long btrfs_fallocate(struct inode *inode, int mode,
4856 loff_t offset, loff_t len)
4857{
4858 u64 cur_offset;
4859 u64 last_byte;
4860 u64 alloc_start;
4861 u64 alloc_end;
4862 u64 alloc_hint = 0;
4863 u64 mask = BTRFS_I(inode)->root->sectorsize - 1;
4864 struct extent_map *em;
4865 int ret;
4866
4867 alloc_start = offset & ~mask;
4868 alloc_end = (offset + len + mask) & ~mask;
4869
4870 mutex_lock(&inode->i_mutex);
4871 if (alloc_start > inode->i_size) {
4872 ret = btrfs_cont_expand(inode, alloc_start);
4873 if (ret)
4874 goto out;
4875 }
4876
4877 while (1) {
4878 struct btrfs_ordered_extent *ordered;
4879 lock_extent(&BTRFS_I(inode)->io_tree, alloc_start,
4880 alloc_end - 1, GFP_NOFS);
4881 ordered = btrfs_lookup_first_ordered_extent(inode,
4882 alloc_end - 1);
4883 if (ordered &&
4884 ordered->file_offset + ordered->len > alloc_start &&
4885 ordered->file_offset < alloc_end) {
4886 btrfs_put_ordered_extent(ordered);
4887 unlock_extent(&BTRFS_I(inode)->io_tree,
4888 alloc_start, alloc_end - 1, GFP_NOFS);
4889 btrfs_wait_ordered_range(inode, alloc_start,
4890 alloc_end - alloc_start);
4891 } else {
4892 if (ordered)
4893 btrfs_put_ordered_extent(ordered);
4894 break;
4895 }
4896 }
4897
4898 cur_offset = alloc_start;
4899 while (1) {
4900 em = btrfs_get_extent(inode, NULL, 0, cur_offset,
4901 alloc_end - cur_offset, 0);
4902 BUG_ON(IS_ERR(em) || !em);
4903 last_byte = min(extent_map_end(em), alloc_end);
4904 last_byte = (last_byte + mask) & ~mask;
4905 if (em->block_start == EXTENT_MAP_HOLE) {
4906 ret = prealloc_file_range(inode, cur_offset,
4907 last_byte, alloc_hint, mode);
4908 if (ret < 0) {
4909 free_extent_map(em);
4910 break;
4911 }
4912 }
4913 if (em->block_start <= EXTENT_MAP_LAST_BYTE)
4914 alloc_hint = em->block_start;
4915 free_extent_map(em);
4916
4917 cur_offset = last_byte;
4918 if (cur_offset >= alloc_end) {
4919 ret = 0;
4920 break;
4921 }
4922 }
4923 unlock_extent(&BTRFS_I(inode)->io_tree, alloc_start, alloc_end - 1,
4924 GFP_NOFS);
4925out:
4926 mutex_unlock(&inode->i_mutex);
4927 return ret;
4928}
4929
e6dcd2dc
CM
4930static int btrfs_set_page_dirty(struct page *page)
4931{
e6dcd2dc
CM
4932 return __set_page_dirty_nobuffers(page);
4933}
4934
0ee0fda0 4935static int btrfs_permission(struct inode *inode, int mask)
fdebe2bd
Y
4936{
4937 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
4938 return -EACCES;
33268eaf 4939 return generic_permission(inode, mask, btrfs_check_acl);
fdebe2bd 4940}
39279cc3
CM
4941
4942static struct inode_operations btrfs_dir_inode_operations = {
3394e160 4943 .getattr = btrfs_getattr,
39279cc3
CM
4944 .lookup = btrfs_lookup,
4945 .create = btrfs_create,
4946 .unlink = btrfs_unlink,
4947 .link = btrfs_link,
4948 .mkdir = btrfs_mkdir,
4949 .rmdir = btrfs_rmdir,
4950 .rename = btrfs_rename,
4951 .symlink = btrfs_symlink,
4952 .setattr = btrfs_setattr,
618e21d5 4953 .mknod = btrfs_mknod,
95819c05
CH
4954 .setxattr = btrfs_setxattr,
4955 .getxattr = btrfs_getxattr,
5103e947 4956 .listxattr = btrfs_listxattr,
95819c05 4957 .removexattr = btrfs_removexattr,
fdebe2bd 4958 .permission = btrfs_permission,
39279cc3 4959};
39279cc3
CM
4960static struct inode_operations btrfs_dir_ro_inode_operations = {
4961 .lookup = btrfs_lookup,
fdebe2bd 4962 .permission = btrfs_permission,
39279cc3 4963};
39279cc3
CM
4964static struct file_operations btrfs_dir_file_operations = {
4965 .llseek = generic_file_llseek,
4966 .read = generic_read_dir,
cbdf5a24 4967 .readdir = btrfs_real_readdir,
34287aa3 4968 .unlocked_ioctl = btrfs_ioctl,
39279cc3 4969#ifdef CONFIG_COMPAT
34287aa3 4970 .compat_ioctl = btrfs_ioctl,
39279cc3 4971#endif
6bf13c0c 4972 .release = btrfs_release_file,
e02119d5 4973 .fsync = btrfs_sync_file,
39279cc3
CM
4974};
4975
d1310b2e 4976static struct extent_io_ops btrfs_extent_io_ops = {
07157aac 4977 .fill_delalloc = run_delalloc_range,
065631f6 4978 .submit_bio_hook = btrfs_submit_bio_hook,
239b14b3 4979 .merge_bio_hook = btrfs_merge_bio_hook,
07157aac 4980 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
e6dcd2dc 4981 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
247e743c 4982 .writepage_start_hook = btrfs_writepage_start_hook,
1259ab75 4983 .readpage_io_failed_hook = btrfs_io_failed_hook,
b0c68f8b
CM
4984 .set_bit_hook = btrfs_set_bit_hook,
4985 .clear_bit_hook = btrfs_clear_bit_hook,
07157aac
CM
4986};
4987
39279cc3
CM
4988static struct address_space_operations btrfs_aops = {
4989 .readpage = btrfs_readpage,
4990 .writepage = btrfs_writepage,
b293f02e 4991 .writepages = btrfs_writepages,
3ab2fb5a 4992 .readpages = btrfs_readpages,
39279cc3 4993 .sync_page = block_sync_page,
39279cc3 4994 .bmap = btrfs_bmap,
16432985 4995 .direct_IO = btrfs_direct_IO,
a52d9a80
CM
4996 .invalidatepage = btrfs_invalidatepage,
4997 .releasepage = btrfs_releasepage,
e6dcd2dc 4998 .set_page_dirty = btrfs_set_page_dirty,
39279cc3
CM
4999};
5000
5001static struct address_space_operations btrfs_symlink_aops = {
5002 .readpage = btrfs_readpage,
5003 .writepage = btrfs_writepage,
2bf5a725
CM
5004 .invalidatepage = btrfs_invalidatepage,
5005 .releasepage = btrfs_releasepage,
39279cc3
CM
5006};
5007
5008static struct inode_operations btrfs_file_inode_operations = {
5009 .truncate = btrfs_truncate,
5010 .getattr = btrfs_getattr,
5011 .setattr = btrfs_setattr,
95819c05
CH
5012 .setxattr = btrfs_setxattr,
5013 .getxattr = btrfs_getxattr,
5103e947 5014 .listxattr = btrfs_listxattr,
95819c05 5015 .removexattr = btrfs_removexattr,
fdebe2bd 5016 .permission = btrfs_permission,
d899e052 5017 .fallocate = btrfs_fallocate,
39279cc3 5018};
618e21d5
JB
5019static struct inode_operations btrfs_special_inode_operations = {
5020 .getattr = btrfs_getattr,
5021 .setattr = btrfs_setattr,
fdebe2bd 5022 .permission = btrfs_permission,
95819c05
CH
5023 .setxattr = btrfs_setxattr,
5024 .getxattr = btrfs_getxattr,
33268eaf 5025 .listxattr = btrfs_listxattr,
95819c05 5026 .removexattr = btrfs_removexattr,
618e21d5 5027};
39279cc3
CM
5028static struct inode_operations btrfs_symlink_inode_operations = {
5029 .readlink = generic_readlink,
5030 .follow_link = page_follow_link_light,
5031 .put_link = page_put_link,
fdebe2bd 5032 .permission = btrfs_permission,
39279cc3 5033};