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