Btrfs: Add a write ahead tree log to optimize synchronous operations
[linux-block.git] / fs / btrfs / inode.c
CommitLineData
6cbd5570
CM
1/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
8f18cf13 19#include <linux/kernel.h>
065631f6 20#include <linux/bio.h>
39279cc3 21#include <linux/buffer_head.h>
f2eb0a24 22#include <linux/file.h>
39279cc3
CM
23#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
29#include <linux/smp_lock.h>
30#include <linux/backing-dev.h>
31#include <linux/mpage.h>
32#include <linux/swap.h>
33#include <linux/writeback.h>
34#include <linux/statfs.h>
35#include <linux/compat.h>
9ebefb18 36#include <linux/bit_spinlock.h>
92fee66d 37#include <linux/version.h>
5103e947 38#include <linux/xattr.h>
33268eaf 39#include <linux/posix_acl.h>
39279cc3
CM
40#include "ctree.h"
41#include "disk-io.h"
42#include "transaction.h"
43#include "btrfs_inode.h"
44#include "ioctl.h"
45#include "print-tree.h"
0b86a832 46#include "volumes.h"
e6dcd2dc 47#include "ordered-data.h"
95819c05 48#include "xattr.h"
e02119d5
CM
49#include "compat.h"
50#include "tree-log.h"
39279cc3
CM
51
52struct btrfs_iget_args {
53 u64 ino;
54 struct btrfs_root *root;
55};
56
57static struct inode_operations btrfs_dir_inode_operations;
58static struct inode_operations btrfs_symlink_inode_operations;
59static struct inode_operations btrfs_dir_ro_inode_operations;
618e21d5 60static struct inode_operations btrfs_special_inode_operations;
39279cc3
CM
61static struct inode_operations btrfs_file_inode_operations;
62static struct address_space_operations btrfs_aops;
63static struct address_space_operations btrfs_symlink_aops;
64static struct file_operations btrfs_dir_file_operations;
d1310b2e 65static struct extent_io_ops btrfs_extent_io_ops;
39279cc3
CM
66
67static struct kmem_cache *btrfs_inode_cachep;
68struct kmem_cache *btrfs_trans_handle_cachep;
69struct kmem_cache *btrfs_transaction_cachep;
70struct kmem_cache *btrfs_bit_radix_cachep;
71struct kmem_cache *btrfs_path_cachep;
72
73#define S_SHIFT 12
74static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
75 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
76 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
77 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
78 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
79 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
80 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
81 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
82};
83
7b128766
JB
84static void btrfs_truncate(struct inode *inode);
85
1832a6d5
CM
86int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
87 int for_del)
88{
a2135011
CM
89 u64 total;
90 u64 used;
1832a6d5 91 u64 thresh;
bcbfce8a 92 unsigned long flags;
1832a6d5
CM
93 int ret = 0;
94
a2135011
CM
95 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
96 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
97 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
1832a6d5 98 if (for_del)
f9ef6604 99 thresh = total * 90;
1832a6d5 100 else
f9ef6604
CM
101 thresh = total * 85;
102
103 do_div(thresh, 100);
1832a6d5 104
1832a6d5
CM
105 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
106 ret = -ENOSPC;
bcbfce8a 107 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
1832a6d5
CM
108 return ret;
109}
110
be20aa9d 111static int cow_file_range(struct inode *inode, u64 start, u64 end)
b888db2b
CM
112{
113 struct btrfs_root *root = BTRFS_I(inode)->root;
114 struct btrfs_trans_handle *trans;
b888db2b 115 u64 alloc_hint = 0;
db94535d 116 u64 num_bytes;
c59f8951 117 u64 cur_alloc_size;
db94535d 118 u64 blocksize = root->sectorsize;
d1310b2e 119 u64 orig_num_bytes;
be20aa9d 120 struct btrfs_key ins;
e6dcd2dc
CM
121 struct extent_map *em;
122 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
123 int ret = 0;
b888db2b 124
f9295749 125 trans = btrfs_join_transaction(root, 1);
b888db2b 126 BUG_ON(!trans);
be20aa9d
CM
127 btrfs_set_trans_block_group(trans, inode);
128
db94535d 129 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
be20aa9d 130 num_bytes = max(blocksize, num_bytes);
d1310b2e 131 orig_num_bytes = num_bytes;
db94535d 132
179e29e4
CM
133 if (alloc_hint == EXTENT_MAP_INLINE)
134 goto out;
135
3b951516 136 BUG_ON(num_bytes > btrfs_super_total_bytes(&root->fs_info->super_copy));
e5a2217e 137 mutex_lock(&BTRFS_I(inode)->extent_mutex);
e6dcd2dc 138 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1);
e5a2217e 139 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
3b951516 140
c59f8951
CM
141 while(num_bytes > 0) {
142 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
e6dcd2dc
CM
143 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
144 root->sectorsize, 0, 0,
145 (u64)-1, &ins, 1);
c59f8951
CM
146 if (ret) {
147 WARN_ON(1);
148 goto out;
149 }
e6dcd2dc
CM
150 em = alloc_extent_map(GFP_NOFS);
151 em->start = start;
152 em->len = ins.offset;
153 em->block_start = ins.objectid;
154 em->bdev = root->fs_info->fs_devices->latest_bdev;
e5a2217e 155 mutex_lock(&BTRFS_I(inode)->extent_mutex);
7f3c74fb 156 set_bit(EXTENT_FLAG_PINNED, &em->flags);
e6dcd2dc
CM
157 while(1) {
158 spin_lock(&em_tree->lock);
159 ret = add_extent_mapping(em_tree, em);
160 spin_unlock(&em_tree->lock);
161 if (ret != -EEXIST) {
162 free_extent_map(em);
163 break;
164 }
165 btrfs_drop_extent_cache(inode, start,
166 start + ins.offset - 1);
167 }
e5a2217e 168 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
e6dcd2dc 169
98d20f67 170 cur_alloc_size = ins.offset;
e6dcd2dc 171 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
7ea394f1 172 ins.offset, 0);
e6dcd2dc 173 BUG_ON(ret);
3b951516
CM
174 if (num_bytes < cur_alloc_size) {
175 printk("num_bytes %Lu cur_alloc %Lu\n", num_bytes,
176 cur_alloc_size);
177 break;
178 }
c59f8951
CM
179 num_bytes -= cur_alloc_size;
180 alloc_hint = ins.objectid + ins.offset;
181 start += cur_alloc_size;
b888db2b 182 }
b888db2b
CM
183out:
184 btrfs_end_transaction(trans, root);
be20aa9d
CM
185 return ret;
186}
187
188static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
189{
190 u64 extent_start;
191 u64 extent_end;
192 u64 bytenr;
1832a6d5 193 u64 loops = 0;
c31f8830 194 u64 total_fs_bytes;
be20aa9d 195 struct btrfs_root *root = BTRFS_I(inode)->root;
a68d5933 196 struct btrfs_block_group_cache *block_group;
7ea394f1 197 struct btrfs_trans_handle *trans;
be20aa9d
CM
198 struct extent_buffer *leaf;
199 int found_type;
200 struct btrfs_path *path;
201 struct btrfs_file_extent_item *item;
202 int ret;
7ea394f1 203 int err = 0;
be20aa9d
CM
204 struct btrfs_key found_key;
205
c31f8830 206 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
be20aa9d
CM
207 path = btrfs_alloc_path();
208 BUG_ON(!path);
7ea394f1
YZ
209 trans = btrfs_join_transaction(root, 1);
210 BUG_ON(!trans);
be20aa9d
CM
211again:
212 ret = btrfs_lookup_file_extent(NULL, root, path,
213 inode->i_ino, start, 0);
214 if (ret < 0) {
7ea394f1
YZ
215 err = ret;
216 goto out;
be20aa9d
CM
217 }
218
be20aa9d
CM
219 if (ret != 0) {
220 if (path->slots[0] == 0)
221 goto not_found;
222 path->slots[0]--;
223 }
224
225 leaf = path->nodes[0];
226 item = btrfs_item_ptr(leaf, path->slots[0],
227 struct btrfs_file_extent_item);
228
229 /* are we inside the extent that was found? */
230 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
231 found_type = btrfs_key_type(&found_key);
232 if (found_key.objectid != inode->i_ino ||
bbaf549e 233 found_type != BTRFS_EXTENT_DATA_KEY)
be20aa9d 234 goto not_found;
be20aa9d
CM
235
236 found_type = btrfs_file_extent_type(leaf, item);
237 extent_start = found_key.offset;
238 if (found_type == BTRFS_FILE_EXTENT_REG) {
c31f8830
CM
239 u64 extent_num_bytes;
240
241 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
242 extent_end = extent_start + extent_num_bytes;
be20aa9d
CM
243 err = 0;
244
1832a6d5
CM
245 if (loops && start != extent_start)
246 goto not_found;
247
be20aa9d
CM
248 if (start < extent_start || start >= extent_end)
249 goto not_found;
250
be20aa9d
CM
251 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
252 if (bytenr == 0)
253 goto not_found;
254
7ea394f1 255 if (btrfs_cross_ref_exists(trans, root, &found_key, bytenr))
a68d5933 256 goto not_found;
c31f8830
CM
257 /*
258 * we may be called by the resizer, make sure we're inside
259 * the limits of the FS
260 */
a68d5933
CM
261 block_group = btrfs_lookup_block_group(root->fs_info,
262 bytenr);
263 if (!block_group || block_group->ro)
c31f8830
CM
264 goto not_found;
265
7ea394f1
YZ
266 bytenr += btrfs_file_extent_offset(leaf, item);
267 extent_num_bytes = min(end + 1, extent_end) - start;
268 ret = btrfs_add_ordered_extent(inode, start, bytenr,
269 extent_num_bytes, 1);
270 if (ret) {
271 err = ret;
272 goto out;
273 }
274
275 btrfs_release_path(root, path);
be20aa9d 276 start = extent_end;
7ea394f1
YZ
277 if (start <= end) {
278 loops++;
279 goto again;
280 }
bd09835d 281 } else {
7ea394f1
YZ
282not_found:
283 btrfs_end_transaction(trans, root);
be20aa9d 284 btrfs_free_path(path);
7ea394f1 285 return cow_file_range(inode, start, end);
be20aa9d 286 }
7ea394f1
YZ
287out:
288 WARN_ON(err);
289 btrfs_end_transaction(trans, root);
290 btrfs_free_path(path);
291 return err;
be20aa9d
CM
292}
293
294static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
295{
296 struct btrfs_root *root = BTRFS_I(inode)->root;
297 int ret;
a2135011 298
b98b6767
Y
299 if (btrfs_test_opt(root, NODATACOW) ||
300 btrfs_test_flag(inode, NODATACOW))
be20aa9d
CM
301 ret = run_delalloc_nocow(inode, start, end);
302 else
303 ret = cow_file_range(inode, start, end);
1832a6d5 304
b888db2b
CM
305 return ret;
306}
307
291d673e 308int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
b0c68f8b 309 unsigned long old, unsigned long bits)
291d673e 310{
bcbfce8a 311 unsigned long flags;
b0c68f8b 312 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
291d673e 313 struct btrfs_root *root = BTRFS_I(inode)->root;
bcbfce8a 314 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
9069218d 315 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
291d673e 316 root->fs_info->delalloc_bytes += end - start + 1;
ea8c2819
CM
317 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
318 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
319 &root->fs_info->delalloc_inodes);
320 }
bcbfce8a 321 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
291d673e
CM
322 }
323 return 0;
324}
325
326int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
b0c68f8b 327 unsigned long old, unsigned long bits)
291d673e 328{
b0c68f8b 329 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
291d673e 330 struct btrfs_root *root = BTRFS_I(inode)->root;
bcbfce8a
CM
331 unsigned long flags;
332
333 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
b0c68f8b
CM
334 if (end - start + 1 > root->fs_info->delalloc_bytes) {
335 printk("warning: delalloc account %Lu %Lu\n",
336 end - start + 1, root->fs_info->delalloc_bytes);
337 root->fs_info->delalloc_bytes = 0;
9069218d 338 BTRFS_I(inode)->delalloc_bytes = 0;
b0c68f8b
CM
339 } else {
340 root->fs_info->delalloc_bytes -= end - start + 1;
9069218d 341 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
b0c68f8b 342 }
ea8c2819
CM
343 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
344 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
345 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
346 }
bcbfce8a 347 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
291d673e
CM
348 }
349 return 0;
350}
351
239b14b3
CM
352int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
353 size_t size, struct bio *bio)
354{
355 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
356 struct btrfs_mapping_tree *map_tree;
239b14b3 357 u64 logical = bio->bi_sector << 9;
239b14b3
CM
358 u64 length = 0;
359 u64 map_length;
239b14b3
CM
360 int ret;
361
f2d8d74d 362 length = bio->bi_size;
239b14b3
CM
363 map_tree = &root->fs_info->mapping_tree;
364 map_length = length;
cea9e445 365 ret = btrfs_map_block(map_tree, READ, logical,
f188591e 366 &map_length, NULL, 0);
cea9e445 367
239b14b3 368 if (map_length < length + size) {
239b14b3
CM
369 return 1;
370 }
371 return 0;
372}
373
44b8bd7e 374int __btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
f188591e 375 int mirror_num)
065631f6 376{
065631f6 377 struct btrfs_root *root = BTRFS_I(inode)->root;
065631f6 378 int ret = 0;
e015640f 379
3edf7d33 380 ret = btrfs_csum_one_bio(root, inode, bio);
44b8bd7e 381 BUG_ON(ret);
e015640f 382
8b712842 383 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
44b8bd7e
CM
384}
385
386int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
387 int mirror_num)
388{
389 struct btrfs_root *root = BTRFS_I(inode)->root;
390 int ret = 0;
391
e6dcd2dc
CM
392 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
393 BUG_ON(ret);
065631f6 394
7ea394f1
YZ
395 if (btrfs_test_opt(root, NODATASUM) ||
396 btrfs_test_flag(inode, NODATASUM)) {
397 goto mapit;
398 }
399
4d1b5fb4
CM
400 if (!(rw & (1 << BIO_RW))) {
401 btrfs_lookup_bio_sums(root, inode, bio);
402 goto mapit;
403 }
44b8bd7e
CM
404 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
405 inode, rw, bio, mirror_num,
406 __btrfs_submit_bio_hook);
0b86a832 407mapit:
8b712842 408 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
065631f6 409}
6885f308 410
ba1da2f4 411static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
e6dcd2dc
CM
412 struct inode *inode, u64 file_offset,
413 struct list_head *list)
414{
415 struct list_head *cur;
416 struct btrfs_ordered_sum *sum;
417
418 btrfs_set_trans_block_group(trans, inode);
ba1da2f4 419 list_for_each(cur, list) {
e6dcd2dc 420 sum = list_entry(cur, struct btrfs_ordered_sum, list);
e6dcd2dc
CM
421 btrfs_csum_file_blocks(trans, BTRFS_I(inode)->root,
422 inode, sum);
e6dcd2dc
CM
423 }
424 return 0;
425}
426
ea8c2819
CM
427int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
428{
429 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
430 GFP_NOFS);
431}
432
247e743c
CM
433struct btrfs_writepage_fixup {
434 struct page *page;
435 struct btrfs_work work;
436};
437
438/* see btrfs_writepage_start_hook for details on why this is required */
439void btrfs_writepage_fixup_worker(struct btrfs_work *work)
440{
441 struct btrfs_writepage_fixup *fixup;
442 struct btrfs_ordered_extent *ordered;
443 struct page *page;
444 struct inode *inode;
445 u64 page_start;
446 u64 page_end;
447
448 fixup = container_of(work, struct btrfs_writepage_fixup, work);
449 page = fixup->page;
4a096752 450again:
247e743c
CM
451 lock_page(page);
452 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
453 ClearPageChecked(page);
454 goto out_page;
455 }
456
457 inode = page->mapping->host;
458 page_start = page_offset(page);
459 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
460
461 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
4a096752
CM
462
463 /* already ordered? We're done */
464 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
465 EXTENT_ORDERED, 0)) {
247e743c 466 goto out;
4a096752
CM
467 }
468
469 ordered = btrfs_lookup_ordered_extent(inode, page_start);
470 if (ordered) {
471 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
472 page_end, GFP_NOFS);
473 unlock_page(page);
474 btrfs_start_ordered_extent(inode, ordered, 1);
475 goto again;
476 }
247e743c 477
ea8c2819 478 btrfs_set_extent_delalloc(inode, page_start, page_end);
247e743c
CM
479 ClearPageChecked(page);
480out:
481 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
482out_page:
483 unlock_page(page);
484 page_cache_release(page);
485}
486
487/*
488 * There are a few paths in the higher layers of the kernel that directly
489 * set the page dirty bit without asking the filesystem if it is a
490 * good idea. This causes problems because we want to make sure COW
491 * properly happens and the data=ordered rules are followed.
492 *
493 * In our case any range that doesn't have the EXTENT_ORDERED bit set
494 * hasn't been properly setup for IO. We kick off an async process
495 * to fix it up. The async helper will wait for ordered extents, set
496 * the delalloc bit and make it safe to write the page.
497 */
498int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
499{
500 struct inode *inode = page->mapping->host;
501 struct btrfs_writepage_fixup *fixup;
502 struct btrfs_root *root = BTRFS_I(inode)->root;
503 int ret;
504
505 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
506 EXTENT_ORDERED, 0);
507 if (ret)
508 return 0;
509
510 if (PageChecked(page))
511 return -EAGAIN;
512
513 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
514 if (!fixup)
515 return -EAGAIN;
f421950f 516
247e743c
CM
517 SetPageChecked(page);
518 page_cache_get(page);
519 fixup->work.func = btrfs_writepage_fixup_worker;
520 fixup->page = page;
521 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
522 return -EAGAIN;
523}
524
211f90e6 525static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
e6dcd2dc 526{
e6dcd2dc
CM
527 struct btrfs_root *root = BTRFS_I(inode)->root;
528 struct btrfs_trans_handle *trans;
529 struct btrfs_ordered_extent *ordered_extent;
530 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
531 u64 alloc_hint = 0;
532 struct list_head list;
533 struct btrfs_key ins;
534 int ret;
535
536 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
ba1da2f4 537 if (!ret)
e6dcd2dc 538 return 0;
e6dcd2dc 539
f9295749 540 trans = btrfs_join_transaction(root, 1);
e6dcd2dc
CM
541
542 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
543 BUG_ON(!ordered_extent);
7ea394f1
YZ
544 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
545 goto nocow;
e6dcd2dc
CM
546
547 lock_extent(io_tree, ordered_extent->file_offset,
548 ordered_extent->file_offset + ordered_extent->len - 1,
549 GFP_NOFS);
550
551 INIT_LIST_HEAD(&list);
552
553 ins.objectid = ordered_extent->start;
554 ins.offset = ordered_extent->len;
555 ins.type = BTRFS_EXTENT_ITEM_KEY;
e5a2217e 556
e6dcd2dc
CM
557 ret = btrfs_alloc_reserved_extent(trans, root, root->root_key.objectid,
558 trans->transid, inode->i_ino,
559 ordered_extent->file_offset, &ins);
560 BUG_ON(ret);
ee6e6504
CM
561
562 mutex_lock(&BTRFS_I(inode)->extent_mutex);
e5a2217e 563
e6dcd2dc
CM
564 ret = btrfs_drop_extents(trans, root, inode,
565 ordered_extent->file_offset,
566 ordered_extent->file_offset +
567 ordered_extent->len,
568 ordered_extent->file_offset, &alloc_hint);
569 BUG_ON(ret);
570 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
571 ordered_extent->file_offset,
572 ordered_extent->start,
573 ordered_extent->len,
574 ordered_extent->len, 0);
575 BUG_ON(ret);
7f3c74fb 576
e6dcd2dc
CM
577 btrfs_drop_extent_cache(inode, ordered_extent->file_offset,
578 ordered_extent->file_offset +
579 ordered_extent->len - 1);
ee6e6504
CM
580 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
581
e6dcd2dc
CM
582 inode->i_blocks += ordered_extent->len >> 9;
583 unlock_extent(io_tree, ordered_extent->file_offset,
584 ordered_extent->file_offset + ordered_extent->len - 1,
585 GFP_NOFS);
7ea394f1 586nocow:
e6dcd2dc
CM
587 add_pending_csums(trans, inode, ordered_extent->file_offset,
588 &ordered_extent->list);
589
dbe674a9 590 btrfs_ordered_update_i_size(inode, ordered_extent);
e02119d5 591 btrfs_update_inode(trans, root, inode);
e6dcd2dc 592 btrfs_remove_ordered_extent(inode, ordered_extent);
7f3c74fb 593
e6dcd2dc
CM
594 /* once for us */
595 btrfs_put_ordered_extent(ordered_extent);
596 /* once for the tree */
597 btrfs_put_ordered_extent(ordered_extent);
598
e6dcd2dc
CM
599 btrfs_end_transaction(trans, root);
600 return 0;
601}
602
211f90e6
CM
603int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
604 struct extent_state *state, int uptodate)
605{
606 return btrfs_finish_ordered_io(page->mapping->host, start, end);
607}
608
7e38326f
CM
609struct io_failure_record {
610 struct page *page;
611 u64 start;
612 u64 len;
613 u64 logical;
614 int last_mirror;
615};
616
1259ab75
CM
617int btrfs_io_failed_hook(struct bio *failed_bio,
618 struct page *page, u64 start, u64 end,
619 struct extent_state *state)
7e38326f
CM
620{
621 struct io_failure_record *failrec = NULL;
622 u64 private;
623 struct extent_map *em;
624 struct inode *inode = page->mapping->host;
625 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
3b951516 626 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
7e38326f
CM
627 struct bio *bio;
628 int num_copies;
629 int ret;
1259ab75 630 int rw;
7e38326f
CM
631 u64 logical;
632
633 ret = get_state_private(failure_tree, start, &private);
634 if (ret) {
7e38326f
CM
635 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
636 if (!failrec)
637 return -ENOMEM;
638 failrec->start = start;
639 failrec->len = end - start + 1;
640 failrec->last_mirror = 0;
641
3b951516
CM
642 spin_lock(&em_tree->lock);
643 em = lookup_extent_mapping(em_tree, start, failrec->len);
644 if (em->start > start || em->start + em->len < start) {
645 free_extent_map(em);
646 em = NULL;
647 }
648 spin_unlock(&em_tree->lock);
7e38326f
CM
649
650 if (!em || IS_ERR(em)) {
651 kfree(failrec);
652 return -EIO;
653 }
654 logical = start - em->start;
655 logical = em->block_start + logical;
656 failrec->logical = logical;
657 free_extent_map(em);
658 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
659 EXTENT_DIRTY, GFP_NOFS);
587f7704
CM
660 set_state_private(failure_tree, start,
661 (u64)(unsigned long)failrec);
7e38326f 662 } else {
587f7704 663 failrec = (struct io_failure_record *)(unsigned long)private;
7e38326f
CM
664 }
665 num_copies = btrfs_num_copies(
666 &BTRFS_I(inode)->root->fs_info->mapping_tree,
667 failrec->logical, failrec->len);
668 failrec->last_mirror++;
669 if (!state) {
670 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
671 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
672 failrec->start,
673 EXTENT_LOCKED);
674 if (state && state->start != failrec->start)
675 state = NULL;
676 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
677 }
678 if (!state || failrec->last_mirror > num_copies) {
679 set_state_private(failure_tree, failrec->start, 0);
680 clear_extent_bits(failure_tree, failrec->start,
681 failrec->start + failrec->len - 1,
682 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
683 kfree(failrec);
684 return -EIO;
685 }
686 bio = bio_alloc(GFP_NOFS, 1);
687 bio->bi_private = state;
688 bio->bi_end_io = failed_bio->bi_end_io;
689 bio->bi_sector = failrec->logical >> 9;
690 bio->bi_bdev = failed_bio->bi_bdev;
e1c4b745 691 bio->bi_size = 0;
7e38326f 692 bio_add_page(bio, page, failrec->len, start - page_offset(page));
1259ab75
CM
693 if (failed_bio->bi_rw & (1 << BIO_RW))
694 rw = WRITE;
695 else
696 rw = READ;
697
698 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
699 failrec->last_mirror);
700 return 0;
701}
702
703int btrfs_clean_io_failures(struct inode *inode, u64 start)
704{
705 u64 private;
706 u64 private_failure;
707 struct io_failure_record *failure;
708 int ret;
709
710 private = 0;
711 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
712 (u64)-1, 1, EXTENT_DIRTY)) {
713 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
714 start, &private_failure);
715 if (ret == 0) {
716 failure = (struct io_failure_record *)(unsigned long)
717 private_failure;
718 set_state_private(&BTRFS_I(inode)->io_failure_tree,
719 failure->start, 0);
720 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
721 failure->start,
722 failure->start + failure->len - 1,
723 EXTENT_DIRTY | EXTENT_LOCKED,
724 GFP_NOFS);
725 kfree(failure);
726 }
727 }
7e38326f
CM
728 return 0;
729}
730
70dec807
CM
731int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
732 struct extent_state *state)
07157aac 733{
35ebb934 734 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
07157aac 735 struct inode *inode = page->mapping->host;
d1310b2e 736 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
07157aac 737 char *kaddr;
aadfeb6e 738 u64 private = ~(u32)0;
07157aac 739 int ret;
ff79f819
CM
740 struct btrfs_root *root = BTRFS_I(inode)->root;
741 u32 csum = ~(u32)0;
bbf0d006 742 unsigned long flags;
d1310b2e 743
b98b6767
Y
744 if (btrfs_test_opt(root, NODATASUM) ||
745 btrfs_test_flag(inode, NODATASUM))
b6cda9bc 746 return 0;
c2e639f0 747 if (state && state->start == start) {
70dec807
CM
748 private = state->private;
749 ret = 0;
750 } else {
751 ret = get_state_private(io_tree, start, &private);
752 }
bbf0d006 753 local_irq_save(flags);
07157aac
CM
754 kaddr = kmap_atomic(page, KM_IRQ0);
755 if (ret) {
756 goto zeroit;
757 }
ff79f819
CM
758 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
759 btrfs_csum_final(csum, (char *)&csum);
760 if (csum != private) {
07157aac
CM
761 goto zeroit;
762 }
763 kunmap_atomic(kaddr, KM_IRQ0);
bbf0d006 764 local_irq_restore(flags);
7e38326f
CM
765
766 /* if the io failure tree for this inode is non-empty,
767 * check to see if we've recovered from a failed IO
768 */
1259ab75 769 btrfs_clean_io_failures(inode, start);
07157aac
CM
770 return 0;
771
772zeroit:
aadfeb6e
CM
773 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
774 page->mapping->host->i_ino, (unsigned long long)start, csum,
775 private);
db94535d
CM
776 memset(kaddr + offset, 1, end - start + 1);
777 flush_dcache_page(page);
07157aac 778 kunmap_atomic(kaddr, KM_IRQ0);
bbf0d006 779 local_irq_restore(flags);
3b951516
CM
780 if (private == 0)
781 return 0;
7e38326f 782 return -EIO;
07157aac 783}
b888db2b 784
7b128766
JB
785/*
786 * This creates an orphan entry for the given inode in case something goes
787 * wrong in the middle of an unlink/truncate.
788 */
789int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
790{
791 struct btrfs_root *root = BTRFS_I(inode)->root;
792 int ret = 0;
793
bcc63abb 794 spin_lock(&root->list_lock);
7b128766
JB
795
796 /* already on the orphan list, we're good */
797 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
bcc63abb 798 spin_unlock(&root->list_lock);
7b128766
JB
799 return 0;
800 }
801
802 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
803
bcc63abb 804 spin_unlock(&root->list_lock);
7b128766
JB
805
806 /*
807 * insert an orphan item to track this unlinked/truncated file
808 */
809 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
810
811 return ret;
812}
813
814/*
815 * We have done the truncate/delete so we can go ahead and remove the orphan
816 * item for this particular inode.
817 */
818int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
819{
820 struct btrfs_root *root = BTRFS_I(inode)->root;
821 int ret = 0;
822
bcc63abb 823 spin_lock(&root->list_lock);
7b128766
JB
824
825 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
bcc63abb 826 spin_unlock(&root->list_lock);
7b128766
JB
827 return 0;
828 }
829
830 list_del_init(&BTRFS_I(inode)->i_orphan);
831 if (!trans) {
bcc63abb 832 spin_unlock(&root->list_lock);
7b128766
JB
833 return 0;
834 }
835
bcc63abb 836 spin_unlock(&root->list_lock);
7b128766
JB
837
838 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
839
840 return ret;
841}
842
843/*
844 * this cleans up any orphans that may be left on the list from the last use
845 * of this root.
846 */
847void btrfs_orphan_cleanup(struct btrfs_root *root)
848{
849 struct btrfs_path *path;
850 struct extent_buffer *leaf;
851 struct btrfs_item *item;
852 struct btrfs_key key, found_key;
853 struct btrfs_trans_handle *trans;
854 struct inode *inode;
855 int ret = 0, nr_unlink = 0, nr_truncate = 0;
856
857 /* don't do orphan cleanup if the fs is readonly. */
858 if (root->inode->i_sb->s_flags & MS_RDONLY)
859 return;
860
861 path = btrfs_alloc_path();
862 if (!path)
863 return;
864 path->reada = -1;
865
866 key.objectid = BTRFS_ORPHAN_OBJECTID;
867 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
868 key.offset = (u64)-1;
869
870 trans = btrfs_start_transaction(root, 1);
871 btrfs_set_trans_block_group(trans, root->inode);
872
873 while (1) {
874 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
875 if (ret < 0) {
876 printk(KERN_ERR "Error searching slot for orphan: %d"
877 "\n", ret);
878 break;
879 }
880
881 /*
882 * if ret == 0 means we found what we were searching for, which
883 * is weird, but possible, so only screw with path if we didnt
884 * find the key and see if we have stuff that matches
885 */
886 if (ret > 0) {
887 if (path->slots[0] == 0)
888 break;
889 path->slots[0]--;
890 }
891
892 /* pull out the item */
893 leaf = path->nodes[0];
894 item = btrfs_item_nr(leaf, path->slots[0]);
895 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
896
897 /* make sure the item matches what we want */
898 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
899 break;
900 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
901 break;
902
903 /* release the path since we're done with it */
904 btrfs_release_path(root, path);
905
906 /*
907 * this is where we are basically btrfs_lookup, without the
908 * crossing root thing. we store the inode number in the
909 * offset of the orphan item.
910 */
911 inode = btrfs_iget_locked(root->inode->i_sb,
912 found_key.offset, root);
913 if (!inode)
914 break;
915
916 if (inode->i_state & I_NEW) {
917 BTRFS_I(inode)->root = root;
918
919 /* have to set the location manually */
920 BTRFS_I(inode)->location.objectid = inode->i_ino;
921 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
922 BTRFS_I(inode)->location.offset = 0;
923
924 btrfs_read_locked_inode(inode);
925 unlock_new_inode(inode);
926 }
927
928 /*
929 * add this inode to the orphan list so btrfs_orphan_del does
930 * the proper thing when we hit it
931 */
bcc63abb 932 spin_lock(&root->list_lock);
7b128766 933 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
bcc63abb 934 spin_unlock(&root->list_lock);
7b128766
JB
935
936 /*
937 * if this is a bad inode, means we actually succeeded in
938 * removing the inode, but not the orphan record, which means
939 * we need to manually delete the orphan since iput will just
940 * do a destroy_inode
941 */
942 if (is_bad_inode(inode)) {
943 btrfs_orphan_del(trans, inode);
944 iput(inode);
945 continue;
946 }
947
948 /* if we have links, this was a truncate, lets do that */
949 if (inode->i_nlink) {
950 nr_truncate++;
951 btrfs_truncate(inode);
952 } else {
953 nr_unlink++;
954 }
955
956 /* this will do delete_inode and everything for us */
957 iput(inode);
958 }
959
960 if (nr_unlink)
961 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
962 if (nr_truncate)
963 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
964
965 btrfs_free_path(path);
966 btrfs_end_transaction(trans, root);
967}
968
39279cc3
CM
969void btrfs_read_locked_inode(struct inode *inode)
970{
971 struct btrfs_path *path;
5f39d397 972 struct extent_buffer *leaf;
39279cc3 973 struct btrfs_inode_item *inode_item;
0b86a832 974 struct btrfs_timespec *tspec;
39279cc3
CM
975 struct btrfs_root *root = BTRFS_I(inode)->root;
976 struct btrfs_key location;
977 u64 alloc_group_block;
618e21d5 978 u32 rdev;
39279cc3
CM
979 int ret;
980
981 path = btrfs_alloc_path();
982 BUG_ON(!path);
39279cc3 983 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
dc17ff8f 984
39279cc3 985 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
5f39d397 986 if (ret)
39279cc3 987 goto make_bad;
39279cc3 988
5f39d397
CM
989 leaf = path->nodes[0];
990 inode_item = btrfs_item_ptr(leaf, path->slots[0],
991 struct btrfs_inode_item);
992
993 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
994 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
995 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
996 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
dbe674a9 997 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
5f39d397
CM
998
999 tspec = btrfs_inode_atime(inode_item);
1000 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1001 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1002
1003 tspec = btrfs_inode_mtime(inode_item);
1004 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1005 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1006
1007 tspec = btrfs_inode_ctime(inode_item);
1008 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1009 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1010
1011 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
e02119d5
CM
1012 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
1013 inode->i_generation = BTRFS_I(inode)->generation;
618e21d5 1014 inode->i_rdev = 0;
5f39d397
CM
1015 rdev = btrfs_inode_rdev(leaf, inode_item);
1016
aec7477b
JB
1017 BTRFS_I(inode)->index_cnt = (u64)-1;
1018
5f39d397 1019 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
39279cc3
CM
1020 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
1021 alloc_group_block);
b98b6767 1022 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
e52ec0eb
CM
1023 if (!BTRFS_I(inode)->block_group) {
1024 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
0b86a832
CM
1025 NULL, 0,
1026 BTRFS_BLOCK_GROUP_METADATA, 0);
e52ec0eb 1027 }
39279cc3
CM
1028 btrfs_free_path(path);
1029 inode_item = NULL;
1030
39279cc3 1031 switch (inode->i_mode & S_IFMT) {
39279cc3
CM
1032 case S_IFREG:
1033 inode->i_mapping->a_ops = &btrfs_aops;
04160088 1034 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
d1310b2e 1035 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
39279cc3
CM
1036 inode->i_fop = &btrfs_file_operations;
1037 inode->i_op = &btrfs_file_inode_operations;
1038 break;
1039 case S_IFDIR:
1040 inode->i_fop = &btrfs_dir_file_operations;
1041 if (root == root->fs_info->tree_root)
1042 inode->i_op = &btrfs_dir_ro_inode_operations;
1043 else
1044 inode->i_op = &btrfs_dir_inode_operations;
1045 break;
1046 case S_IFLNK:
1047 inode->i_op = &btrfs_symlink_inode_operations;
1048 inode->i_mapping->a_ops = &btrfs_symlink_aops;
04160088 1049 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
39279cc3 1050 break;
618e21d5
JB
1051 default:
1052 init_special_inode(inode, inode->i_mode, rdev);
1053 break;
39279cc3
CM
1054 }
1055 return;
1056
1057make_bad:
39279cc3 1058 btrfs_free_path(path);
39279cc3
CM
1059 make_bad_inode(inode);
1060}
1061
e02119d5
CM
1062static void fill_inode_item(struct btrfs_trans_handle *trans,
1063 struct extent_buffer *leaf,
5f39d397 1064 struct btrfs_inode_item *item,
39279cc3
CM
1065 struct inode *inode)
1066{
5f39d397
CM
1067 btrfs_set_inode_uid(leaf, item, inode->i_uid);
1068 btrfs_set_inode_gid(leaf, item, inode->i_gid);
dbe674a9 1069 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
5f39d397
CM
1070 btrfs_set_inode_mode(leaf, item, inode->i_mode);
1071 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
1072
1073 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
1074 inode->i_atime.tv_sec);
1075 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
1076 inode->i_atime.tv_nsec);
1077
1078 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
1079 inode->i_mtime.tv_sec);
1080 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
1081 inode->i_mtime.tv_nsec);
1082
1083 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
1084 inode->i_ctime.tv_sec);
1085 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
1086 inode->i_ctime.tv_nsec);
1087
1088 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
e02119d5
CM
1089 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
1090 btrfs_set_inode_transid(leaf, item, trans->transid);
5f39d397 1091 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
b98b6767 1092 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
5f39d397 1093 btrfs_set_inode_block_group(leaf, item,
39279cc3
CM
1094 BTRFS_I(inode)->block_group->key.objectid);
1095}
1096
ba1da2f4 1097int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
39279cc3
CM
1098 struct btrfs_root *root,
1099 struct inode *inode)
1100{
1101 struct btrfs_inode_item *inode_item;
1102 struct btrfs_path *path;
5f39d397 1103 struct extent_buffer *leaf;
39279cc3
CM
1104 int ret;
1105
1106 path = btrfs_alloc_path();
1107 BUG_ON(!path);
39279cc3
CM
1108 ret = btrfs_lookup_inode(trans, root, path,
1109 &BTRFS_I(inode)->location, 1);
1110 if (ret) {
1111 if (ret > 0)
1112 ret = -ENOENT;
1113 goto failed;
1114 }
1115
5f39d397
CM
1116 leaf = path->nodes[0];
1117 inode_item = btrfs_item_ptr(leaf, path->slots[0],
39279cc3
CM
1118 struct btrfs_inode_item);
1119
e02119d5 1120 fill_inode_item(trans, leaf, inode_item, inode);
5f39d397 1121 btrfs_mark_buffer_dirty(leaf);
15ee9bc7 1122 btrfs_set_inode_last_trans(trans, inode);
39279cc3
CM
1123 ret = 0;
1124failed:
39279cc3
CM
1125 btrfs_free_path(path);
1126 return ret;
1127}
1128
1129
e02119d5
CM
1130int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
1131 struct btrfs_root *root,
1132 struct inode *dir, struct inode *inode,
1133 const char *name, int name_len)
39279cc3
CM
1134{
1135 struct btrfs_path *path;
39279cc3 1136 int ret = 0;
5f39d397 1137 struct extent_buffer *leaf;
39279cc3 1138 struct btrfs_dir_item *di;
5f39d397 1139 struct btrfs_key key;
aec7477b 1140 u64 index;
39279cc3
CM
1141
1142 path = btrfs_alloc_path();
54aa1f4d
CM
1143 if (!path) {
1144 ret = -ENOMEM;
1145 goto err;
1146 }
1147
39279cc3
CM
1148 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
1149 name, name_len, -1);
1150 if (IS_ERR(di)) {
1151 ret = PTR_ERR(di);
1152 goto err;
1153 }
1154 if (!di) {
1155 ret = -ENOENT;
1156 goto err;
1157 }
5f39d397
CM
1158 leaf = path->nodes[0];
1159 btrfs_dir_item_key_to_cpu(leaf, di, &key);
39279cc3 1160 ret = btrfs_delete_one_dir_name(trans, root, path, di);
54aa1f4d
CM
1161 if (ret)
1162 goto err;
39279cc3
CM
1163 btrfs_release_path(root, path);
1164
aec7477b 1165 ret = btrfs_del_inode_ref(trans, root, name, name_len,
e02119d5
CM
1166 inode->i_ino,
1167 dir->i_ino, &index);
aec7477b
JB
1168 if (ret) {
1169 printk("failed to delete reference to %.*s, "
1170 "inode %lu parent %lu\n", name_len, name,
e02119d5 1171 inode->i_ino, dir->i_ino);
aec7477b
JB
1172 goto err;
1173 }
1174
39279cc3 1175 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
aec7477b 1176 index, name, name_len, -1);
39279cc3
CM
1177 if (IS_ERR(di)) {
1178 ret = PTR_ERR(di);
1179 goto err;
1180 }
1181 if (!di) {
1182 ret = -ENOENT;
1183 goto err;
1184 }
1185 ret = btrfs_delete_one_dir_name(trans, root, path, di);
925baedd 1186 btrfs_release_path(root, path);
39279cc3 1187
e02119d5
CM
1188 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
1189 inode, dir->i_ino);
1190 BUG_ON(ret);
1191
1192 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
1193 dir, index);
1194 BUG_ON(ret);
39279cc3
CM
1195err:
1196 btrfs_free_path(path);
e02119d5
CM
1197 if (ret)
1198 goto out;
1199
1200 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
1201 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
1202 btrfs_update_inode(trans, root, dir);
1203 btrfs_drop_nlink(inode);
1204 ret = btrfs_update_inode(trans, root, inode);
1205 dir->i_sb->s_dirt = 1;
1206out:
39279cc3
CM
1207 return ret;
1208}
1209
1210static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
1211{
1212 struct btrfs_root *root;
1213 struct btrfs_trans_handle *trans;
7b128766 1214 struct inode *inode = dentry->d_inode;
39279cc3 1215 int ret;
1832a6d5 1216 unsigned long nr = 0;
39279cc3
CM
1217
1218 root = BTRFS_I(dir)->root;
1832a6d5
CM
1219
1220 ret = btrfs_check_free_space(root, 1, 1);
1221 if (ret)
1222 goto fail;
1223
39279cc3 1224 trans = btrfs_start_transaction(root, 1);
5f39d397 1225
39279cc3 1226 btrfs_set_trans_block_group(trans, dir);
e02119d5
CM
1227 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
1228 dentry->d_name.name, dentry->d_name.len);
7b128766
JB
1229
1230 if (inode->i_nlink == 0)
1231 ret = btrfs_orphan_add(trans, inode);
1232
d3c2fdcf 1233 nr = trans->blocks_used;
5f39d397 1234
89ce8a63 1235 btrfs_end_transaction_throttle(trans, root);
1832a6d5 1236fail:
d3c2fdcf 1237 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
1238 return ret;
1239}
1240
1241static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
1242{
1243 struct inode *inode = dentry->d_inode;
1832a6d5 1244 int err = 0;
39279cc3
CM
1245 int ret;
1246 struct btrfs_root *root = BTRFS_I(dir)->root;
39279cc3 1247 struct btrfs_trans_handle *trans;
1832a6d5 1248 unsigned long nr = 0;
39279cc3 1249
925baedd 1250 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
134d4512 1251 return -ENOTEMPTY;
925baedd 1252 }
134d4512 1253
1832a6d5
CM
1254 ret = btrfs_check_free_space(root, 1, 1);
1255 if (ret)
1256 goto fail;
1257
39279cc3
CM
1258 trans = btrfs_start_transaction(root, 1);
1259 btrfs_set_trans_block_group(trans, dir);
39279cc3 1260
7b128766
JB
1261 err = btrfs_orphan_add(trans, inode);
1262 if (err)
1263 goto fail_trans;
1264
39279cc3 1265 /* now the directory is empty */
e02119d5
CM
1266 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
1267 dentry->d_name.name, dentry->d_name.len);
39279cc3 1268 if (!err) {
dbe674a9 1269 btrfs_i_size_write(inode, 0);
39279cc3 1270 }
3954401f 1271
7b128766 1272fail_trans:
d3c2fdcf 1273 nr = trans->blocks_used;
89ce8a63 1274 ret = btrfs_end_transaction_throttle(trans, root);
1832a6d5 1275fail:
d3c2fdcf 1276 btrfs_btree_balance_dirty(root, nr);
3954401f 1277
39279cc3
CM
1278 if (ret && !err)
1279 err = ret;
1280 return err;
1281}
1282
39279cc3
CM
1283/*
1284 * this can truncate away extent items, csum items and directory items.
1285 * It starts at a high offset and removes keys until it can't find
1286 * any higher than i_size.
1287 *
1288 * csum items that cross the new i_size are truncated to the new size
1289 * as well.
7b128766
JB
1290 *
1291 * min_type is the minimum key type to truncate down to. If set to 0, this
1292 * will kill all the items on this inode, including the INODE_ITEM_KEY.
39279cc3 1293 */
e02119d5
CM
1294noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
1295 struct btrfs_root *root,
1296 struct inode *inode,
1297 u64 new_size, u32 min_type)
39279cc3
CM
1298{
1299 int ret;
1300 struct btrfs_path *path;
1301 struct btrfs_key key;
5f39d397 1302 struct btrfs_key found_key;
39279cc3 1303 u32 found_type;
5f39d397 1304 struct extent_buffer *leaf;
39279cc3
CM
1305 struct btrfs_file_extent_item *fi;
1306 u64 extent_start = 0;
db94535d 1307 u64 extent_num_bytes = 0;
39279cc3 1308 u64 item_end = 0;
7bb86316 1309 u64 root_gen = 0;
d8d5f3e1 1310 u64 root_owner = 0;
39279cc3
CM
1311 int found_extent;
1312 int del_item;
85e21bac
CM
1313 int pending_del_nr = 0;
1314 int pending_del_slot = 0;
179e29e4 1315 int extent_type = -1;
3b951516 1316 u64 mask = root->sectorsize - 1;
39279cc3 1317
e02119d5
CM
1318 if (root->ref_cows)
1319 btrfs_drop_extent_cache(inode,
1320 new_size & (~mask), (u64)-1);
39279cc3 1321 path = btrfs_alloc_path();
3c69faec 1322 path->reada = -1;
39279cc3 1323 BUG_ON(!path);
5f39d397 1324
39279cc3
CM
1325 /* FIXME, add redo link to tree so we don't leak on crash */
1326 key.objectid = inode->i_ino;
1327 key.offset = (u64)-1;
5f39d397
CM
1328 key.type = (u8)-1;
1329
85e21bac
CM
1330 btrfs_init_path(path);
1331search_again:
1332 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1333 if (ret < 0) {
1334 goto error;
1335 }
1336 if (ret > 0) {
e02119d5
CM
1337 /* there are no items in the tree for us to truncate, we're
1338 * done
1339 */
1340 if (path->slots[0] == 0) {
1341 ret = 0;
1342 goto error;
1343 }
85e21bac
CM
1344 path->slots[0]--;
1345 }
1346
39279cc3 1347 while(1) {
39279cc3 1348 fi = NULL;
5f39d397
CM
1349 leaf = path->nodes[0];
1350 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1351 found_type = btrfs_key_type(&found_key);
39279cc3 1352
5f39d397 1353 if (found_key.objectid != inode->i_ino)
39279cc3 1354 break;
5f39d397 1355
85e21bac 1356 if (found_type < min_type)
39279cc3
CM
1357 break;
1358
5f39d397 1359 item_end = found_key.offset;
39279cc3 1360 if (found_type == BTRFS_EXTENT_DATA_KEY) {
5f39d397 1361 fi = btrfs_item_ptr(leaf, path->slots[0],
39279cc3 1362 struct btrfs_file_extent_item);
179e29e4
CM
1363 extent_type = btrfs_file_extent_type(leaf, fi);
1364 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
5f39d397 1365 item_end +=
db94535d 1366 btrfs_file_extent_num_bytes(leaf, fi);
179e29e4
CM
1367 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1368 struct btrfs_item *item = btrfs_item_nr(leaf,
1369 path->slots[0]);
1370 item_end += btrfs_file_extent_inline_len(leaf,
1371 item);
39279cc3 1372 }
008630c1 1373 item_end--;
39279cc3
CM
1374 }
1375 if (found_type == BTRFS_CSUM_ITEM_KEY) {
1376 ret = btrfs_csum_truncate(trans, root, path,
e02119d5 1377 new_size);
39279cc3
CM
1378 BUG_ON(ret);
1379 }
e02119d5 1380 if (item_end < new_size) {
b888db2b
CM
1381 if (found_type == BTRFS_DIR_ITEM_KEY) {
1382 found_type = BTRFS_INODE_ITEM_KEY;
1383 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
1384 found_type = BTRFS_CSUM_ITEM_KEY;
85e21bac
CM
1385 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
1386 found_type = BTRFS_XATTR_ITEM_KEY;
1387 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
1388 found_type = BTRFS_INODE_REF_KEY;
b888db2b
CM
1389 } else if (found_type) {
1390 found_type--;
1391 } else {
1392 break;
39279cc3 1393 }
a61721d5 1394 btrfs_set_key_type(&key, found_type);
85e21bac 1395 goto next;
39279cc3 1396 }
e02119d5 1397 if (found_key.offset >= new_size)
39279cc3
CM
1398 del_item = 1;
1399 else
1400 del_item = 0;
1401 found_extent = 0;
1402
1403 /* FIXME, shrink the extent if the ref count is only 1 */
179e29e4
CM
1404 if (found_type != BTRFS_EXTENT_DATA_KEY)
1405 goto delete;
1406
1407 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
39279cc3 1408 u64 num_dec;
db94535d 1409 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
39279cc3 1410 if (!del_item) {
db94535d
CM
1411 u64 orig_num_bytes =
1412 btrfs_file_extent_num_bytes(leaf, fi);
e02119d5 1413 extent_num_bytes = new_size -
5f39d397 1414 found_key.offset + root->sectorsize - 1;
b1632b10
Y
1415 extent_num_bytes = extent_num_bytes &
1416 ~((u64)root->sectorsize - 1);
db94535d
CM
1417 btrfs_set_file_extent_num_bytes(leaf, fi,
1418 extent_num_bytes);
1419 num_dec = (orig_num_bytes -
9069218d 1420 extent_num_bytes);
e02119d5 1421 if (root->ref_cows && extent_start != 0)
9069218d 1422 dec_i_blocks(inode, num_dec);
5f39d397 1423 btrfs_mark_buffer_dirty(leaf);
39279cc3 1424 } else {
db94535d
CM
1425 extent_num_bytes =
1426 btrfs_file_extent_disk_num_bytes(leaf,
1427 fi);
39279cc3 1428 /* FIXME blocksize != 4096 */
9069218d 1429 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
39279cc3
CM
1430 if (extent_start != 0) {
1431 found_extent = 1;
e02119d5
CM
1432 if (root->ref_cows)
1433 dec_i_blocks(inode, num_dec);
1434 }
1435 if (root->ref_cows) {
1436 root_gen =
1437 btrfs_header_generation(leaf);
39279cc3 1438 }
d8d5f3e1 1439 root_owner = btrfs_header_owner(leaf);
39279cc3 1440 }
9069218d
CM
1441 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1442 if (!del_item) {
e02119d5
CM
1443 u32 size = new_size - found_key.offset;
1444
1445 if (root->ref_cows) {
1446 dec_i_blocks(inode, item_end + 1 -
1447 found_key.offset - size);
1448 }
1449 size =
1450 btrfs_file_extent_calc_inline_size(size);
9069218d 1451 ret = btrfs_truncate_item(trans, root, path,
e02119d5 1452 size, 1);
9069218d 1453 BUG_ON(ret);
e02119d5 1454 } else if (root->ref_cows) {
9069218d
CM
1455 dec_i_blocks(inode, item_end + 1 -
1456 found_key.offset);
1457 }
39279cc3 1458 }
179e29e4 1459delete:
39279cc3 1460 if (del_item) {
85e21bac
CM
1461 if (!pending_del_nr) {
1462 /* no pending yet, add ourselves */
1463 pending_del_slot = path->slots[0];
1464 pending_del_nr = 1;
1465 } else if (pending_del_nr &&
1466 path->slots[0] + 1 == pending_del_slot) {
1467 /* hop on the pending chunk */
1468 pending_del_nr++;
1469 pending_del_slot = path->slots[0];
1470 } else {
1471 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1472 }
39279cc3
CM
1473 } else {
1474 break;
1475 }
39279cc3
CM
1476 if (found_extent) {
1477 ret = btrfs_free_extent(trans, root, extent_start,
7bb86316 1478 extent_num_bytes,
d8d5f3e1 1479 root_owner,
7bb86316
CM
1480 root_gen, inode->i_ino,
1481 found_key.offset, 0);
39279cc3
CM
1482 BUG_ON(ret);
1483 }
85e21bac
CM
1484next:
1485 if (path->slots[0] == 0) {
1486 if (pending_del_nr)
1487 goto del_pending;
1488 btrfs_release_path(root, path);
1489 goto search_again;
1490 }
1491
1492 path->slots[0]--;
1493 if (pending_del_nr &&
1494 path->slots[0] + 1 != pending_del_slot) {
1495 struct btrfs_key debug;
1496del_pending:
1497 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1498 pending_del_slot);
1499 ret = btrfs_del_items(trans, root, path,
1500 pending_del_slot,
1501 pending_del_nr);
1502 BUG_ON(ret);
1503 pending_del_nr = 0;
1504 btrfs_release_path(root, path);
1505 goto search_again;
1506 }
39279cc3
CM
1507 }
1508 ret = 0;
1509error:
85e21bac
CM
1510 if (pending_del_nr) {
1511 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1512 pending_del_nr);
1513 }
39279cc3
CM
1514 btrfs_free_path(path);
1515 inode->i_sb->s_dirt = 1;
1516 return ret;
1517}
1518
1519/*
1520 * taken from block_truncate_page, but does cow as it zeros out
1521 * any bytes left in the last page in the file.
1522 */
1523static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1524{
1525 struct inode *inode = mapping->host;
db94535d 1526 struct btrfs_root *root = BTRFS_I(inode)->root;
e6dcd2dc
CM
1527 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1528 struct btrfs_ordered_extent *ordered;
1529 char *kaddr;
db94535d 1530 u32 blocksize = root->sectorsize;
39279cc3
CM
1531 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1532 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1533 struct page *page;
39279cc3 1534 int ret = 0;
a52d9a80 1535 u64 page_start;
e6dcd2dc 1536 u64 page_end;
39279cc3
CM
1537
1538 if ((offset & (blocksize - 1)) == 0)
1539 goto out;
1540
1541 ret = -ENOMEM;
211c17f5 1542again:
39279cc3
CM
1543 page = grab_cache_page(mapping, index);
1544 if (!page)
1545 goto out;
e6dcd2dc
CM
1546
1547 page_start = page_offset(page);
1548 page_end = page_start + PAGE_CACHE_SIZE - 1;
1549
39279cc3 1550 if (!PageUptodate(page)) {
9ebefb18 1551 ret = btrfs_readpage(NULL, page);
39279cc3 1552 lock_page(page);
211c17f5
CM
1553 if (page->mapping != mapping) {
1554 unlock_page(page);
1555 page_cache_release(page);
1556 goto again;
1557 }
39279cc3
CM
1558 if (!PageUptodate(page)) {
1559 ret = -EIO;
89642229 1560 goto out_unlock;
39279cc3
CM
1561 }
1562 }
211c17f5 1563 wait_on_page_writeback(page);
e6dcd2dc
CM
1564
1565 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
1566 set_page_extent_mapped(page);
1567
1568 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1569 if (ordered) {
1570 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
1571 unlock_page(page);
1572 page_cache_release(page);
eb84ae03 1573 btrfs_start_ordered_extent(inode, ordered, 1);
e6dcd2dc
CM
1574 btrfs_put_ordered_extent(ordered);
1575 goto again;
1576 }
1577
ea8c2819 1578 btrfs_set_extent_delalloc(inode, page_start, page_end);
e6dcd2dc
CM
1579 ret = 0;
1580 if (offset != PAGE_CACHE_SIZE) {
1581 kaddr = kmap(page);
1582 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
1583 flush_dcache_page(page);
1584 kunmap(page);
1585 }
247e743c 1586 ClearPageChecked(page);
e6dcd2dc
CM
1587 set_page_dirty(page);
1588 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
39279cc3 1589
89642229 1590out_unlock:
39279cc3
CM
1591 unlock_page(page);
1592 page_cache_release(page);
1593out:
1594 return ret;
1595}
1596
1597static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1598{
1599 struct inode *inode = dentry->d_inode;
1600 int err;
1601
1602 err = inode_change_ok(inode, attr);
1603 if (err)
1604 return err;
1605
1606 if (S_ISREG(inode->i_mode) &&
1607 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1608 struct btrfs_trans_handle *trans;
1609 struct btrfs_root *root = BTRFS_I(inode)->root;
d1310b2e 1610 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2bf5a725 1611
5f39d397 1612 u64 mask = root->sectorsize - 1;
1b0f7c29 1613 u64 hole_start = (inode->i_size + mask) & ~mask;
f392a938 1614 u64 block_end = (attr->ia_size + mask) & ~mask;
39279cc3 1615 u64 hole_size;
179e29e4 1616 u64 alloc_hint = 0;
39279cc3 1617
1b0f7c29 1618 if (attr->ia_size <= hole_start)
39279cc3
CM
1619 goto out;
1620
1832a6d5 1621 err = btrfs_check_free_space(root, 1, 0);
1832a6d5
CM
1622 if (err)
1623 goto fail;
1624
39279cc3
CM
1625 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1626
5f56406a 1627 hole_size = block_end - hole_start;
7c2fe32a
CM
1628 while(1) {
1629 struct btrfs_ordered_extent *ordered;
1630 btrfs_wait_ordered_range(inode, hole_start, hole_size);
1631
1632 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
1633 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
1634 if (ordered) {
1635 unlock_extent(io_tree, hole_start,
1636 block_end - 1, GFP_NOFS);
1637 btrfs_put_ordered_extent(ordered);
1638 } else {
1639 break;
1640 }
1641 }
39279cc3 1642
39279cc3
CM
1643 trans = btrfs_start_transaction(root, 1);
1644 btrfs_set_trans_block_group(trans, inode);
ee6e6504 1645 mutex_lock(&BTRFS_I(inode)->extent_mutex);
2bf5a725 1646 err = btrfs_drop_extents(trans, root, inode,
1b0f7c29 1647 hole_start, block_end, hole_start,
3326d1b0 1648 &alloc_hint);
2bf5a725 1649
179e29e4
CM
1650 if (alloc_hint != EXTENT_MAP_INLINE) {
1651 err = btrfs_insert_file_extent(trans, root,
1652 inode->i_ino,
5f56406a 1653 hole_start, 0, 0,
f2eb0a24 1654 hole_size, 0);
d1310b2e 1655 btrfs_drop_extent_cache(inode, hole_start,
3b951516 1656 (u64)-1);
5f56406a 1657 btrfs_check_file(root, inode);
179e29e4 1658 }
ee6e6504 1659 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
39279cc3 1660 btrfs_end_transaction(trans, root);
1b0f7c29 1661 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
54aa1f4d
CM
1662 if (err)
1663 return err;
39279cc3
CM
1664 }
1665out:
1666 err = inode_setattr(inode, attr);
33268eaf
JB
1667
1668 if (!err && ((attr->ia_valid & ATTR_MODE)))
1669 err = btrfs_acl_chmod(inode);
1832a6d5 1670fail:
39279cc3
CM
1671 return err;
1672}
61295eb8 1673
39279cc3
CM
1674void btrfs_delete_inode(struct inode *inode)
1675{
1676 struct btrfs_trans_handle *trans;
1677 struct btrfs_root *root = BTRFS_I(inode)->root;
d3c2fdcf 1678 unsigned long nr;
39279cc3
CM
1679 int ret;
1680
1681 truncate_inode_pages(&inode->i_data, 0);
1682 if (is_bad_inode(inode)) {
7b128766 1683 btrfs_orphan_del(NULL, inode);
39279cc3
CM
1684 goto no_delete;
1685 }
4a096752 1686 btrfs_wait_ordered_range(inode, 0, (u64)-1);
5f39d397 1687
dbe674a9 1688 btrfs_i_size_write(inode, 0);
39279cc3 1689 trans = btrfs_start_transaction(root, 1);
5f39d397 1690
39279cc3 1691 btrfs_set_trans_block_group(trans, inode);
e02119d5 1692 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
7b128766
JB
1693 if (ret) {
1694 btrfs_orphan_del(NULL, inode);
54aa1f4d 1695 goto no_delete_lock;
7b128766
JB
1696 }
1697
1698 btrfs_orphan_del(trans, inode);
85e21bac 1699
d3c2fdcf 1700 nr = trans->blocks_used;
85e21bac 1701 clear_inode(inode);
5f39d397 1702
39279cc3 1703 btrfs_end_transaction(trans, root);
d3c2fdcf 1704 btrfs_btree_balance_dirty(root, nr);
39279cc3 1705 return;
54aa1f4d
CM
1706
1707no_delete_lock:
d3c2fdcf 1708 nr = trans->blocks_used;
54aa1f4d 1709 btrfs_end_transaction(trans, root);
d3c2fdcf 1710 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
1711no_delete:
1712 clear_inode(inode);
1713}
1714
1715/*
1716 * this returns the key found in the dir entry in the location pointer.
1717 * If no dir entries were found, location->objectid is 0.
1718 */
1719static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1720 struct btrfs_key *location)
1721{
1722 const char *name = dentry->d_name.name;
1723 int namelen = dentry->d_name.len;
1724 struct btrfs_dir_item *di;
1725 struct btrfs_path *path;
1726 struct btrfs_root *root = BTRFS_I(dir)->root;
0d9f7f3e 1727 int ret = 0;
39279cc3
CM
1728
1729 path = btrfs_alloc_path();
1730 BUG_ON(!path);
3954401f 1731
39279cc3
CM
1732 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1733 namelen, 0);
0d9f7f3e
Y
1734 if (IS_ERR(di))
1735 ret = PTR_ERR(di);
39279cc3 1736 if (!di || IS_ERR(di)) {
3954401f 1737 goto out_err;
39279cc3 1738 }
5f39d397 1739 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
39279cc3 1740out:
39279cc3
CM
1741 btrfs_free_path(path);
1742 return ret;
3954401f
CM
1743out_err:
1744 location->objectid = 0;
1745 goto out;
39279cc3
CM
1746}
1747
1748/*
1749 * when we hit a tree root in a directory, the btrfs part of the inode
1750 * needs to be changed to reflect the root directory of the tree root. This
1751 * is kind of like crossing a mount point.
1752 */
1753static int fixup_tree_root_location(struct btrfs_root *root,
1754 struct btrfs_key *location,
58176a96
JB
1755 struct btrfs_root **sub_root,
1756 struct dentry *dentry)
39279cc3 1757{
39279cc3
CM
1758 struct btrfs_root_item *ri;
1759
1760 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1761 return 0;
1762 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1763 return 0;
1764
58176a96
JB
1765 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1766 dentry->d_name.name,
1767 dentry->d_name.len);
39279cc3
CM
1768 if (IS_ERR(*sub_root))
1769 return PTR_ERR(*sub_root);
1770
1771 ri = &(*sub_root)->root_item;
1772 location->objectid = btrfs_root_dirid(ri);
39279cc3
CM
1773 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1774 location->offset = 0;
1775
39279cc3
CM
1776 return 0;
1777}
1778
e02119d5 1779static noinline void init_btrfs_i(struct inode *inode)
39279cc3 1780{
e02119d5
CM
1781 struct btrfs_inode *bi = BTRFS_I(inode);
1782
1783 bi->i_acl = NULL;
1784 bi->i_default_acl = NULL;
1785
1786 bi->generation = 0;
1787 bi->last_trans = 0;
1788 bi->logged_trans = 0;
1789 bi->delalloc_bytes = 0;
1790 bi->disk_i_size = 0;
1791 bi->flags = 0;
1792 bi->index_cnt = (u64)-1;
d1310b2e
CM
1793 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1794 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
b888db2b 1795 inode->i_mapping, GFP_NOFS);
7e38326f
CM
1796 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1797 inode->i_mapping, GFP_NOFS);
ea8c2819 1798 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
ba1da2f4 1799 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
1b1e2135 1800 mutex_init(&BTRFS_I(inode)->csum_mutex);
ee6e6504 1801 mutex_init(&BTRFS_I(inode)->extent_mutex);
e02119d5
CM
1802 mutex_init(&BTRFS_I(inode)->log_mutex);
1803}
1804
1805static int btrfs_init_locked_inode(struct inode *inode, void *p)
1806{
1807 struct btrfs_iget_args *args = p;
1808 inode->i_ino = args->ino;
1809 init_btrfs_i(inode);
1810 BTRFS_I(inode)->root = args->root;
39279cc3
CM
1811 return 0;
1812}
1813
1814static int btrfs_find_actor(struct inode *inode, void *opaque)
1815{
1816 struct btrfs_iget_args *args = opaque;
1817 return (args->ino == inode->i_ino &&
1818 args->root == BTRFS_I(inode)->root);
1819}
1820
dc17ff8f
CM
1821struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1822 u64 root_objectid)
1823{
1824 struct btrfs_iget_args args;
1825 args.ino = objectid;
1826 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1827
1828 if (!args.root)
1829 return NULL;
1830
1831 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1832}
1833
39279cc3
CM
1834struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1835 struct btrfs_root *root)
1836{
1837 struct inode *inode;
1838 struct btrfs_iget_args args;
1839 args.ino = objectid;
1840 args.root = root;
1841
1842 inode = iget5_locked(s, objectid, btrfs_find_actor,
1843 btrfs_init_locked_inode,
1844 (void *)&args);
1845 return inode;
1846}
1847
1a54ef8c
BR
1848/* Get an inode object given its location and corresponding root.
1849 * Returns in *is_new if the inode was read from disk
1850 */
1851struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
1852 struct btrfs_root *root, int *is_new)
1853{
1854 struct inode *inode;
1855
1856 inode = btrfs_iget_locked(s, location->objectid, root);
1857 if (!inode)
1858 return ERR_PTR(-EACCES);
1859
1860 if (inode->i_state & I_NEW) {
1861 BTRFS_I(inode)->root = root;
1862 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
1863 btrfs_read_locked_inode(inode);
1864 unlock_new_inode(inode);
1865 if (is_new)
1866 *is_new = 1;
1867 } else {
1868 if (is_new)
1869 *is_new = 0;
1870 }
1871
1872 return inode;
1873}
1874
39279cc3
CM
1875static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1876 struct nameidata *nd)
1877{
1878 struct inode * inode;
1879 struct btrfs_inode *bi = BTRFS_I(dir);
1880 struct btrfs_root *root = bi->root;
1881 struct btrfs_root *sub_root = root;
1882 struct btrfs_key location;
1a54ef8c 1883 int ret, new, do_orphan = 0;
39279cc3
CM
1884
1885 if (dentry->d_name.len > BTRFS_NAME_LEN)
1886 return ERR_PTR(-ENAMETOOLONG);
5f39d397 1887
39279cc3 1888 ret = btrfs_inode_by_name(dir, dentry, &location);
5f39d397 1889
39279cc3
CM
1890 if (ret < 0)
1891 return ERR_PTR(ret);
5f39d397 1892
39279cc3
CM
1893 inode = NULL;
1894 if (location.objectid) {
58176a96
JB
1895 ret = fixup_tree_root_location(root, &location, &sub_root,
1896 dentry);
39279cc3
CM
1897 if (ret < 0)
1898 return ERR_PTR(ret);
1899 if (ret > 0)
1900 return ERR_PTR(-ENOENT);
1a54ef8c
BR
1901 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
1902 if (IS_ERR(inode))
1903 return ERR_CAST(inode);
1904
1905 /* the inode and parent dir are two different roots */
1906 if (new && root != sub_root) {
1907 igrab(inode);
1908 sub_root->inode = inode;
1909 do_orphan = 1;
39279cc3
CM
1910 }
1911 }
7b128766
JB
1912
1913 if (unlikely(do_orphan))
1914 btrfs_orphan_cleanup(sub_root);
1915
39279cc3
CM
1916 return d_splice_alias(inode, dentry);
1917}
1918
39279cc3
CM
1919static unsigned char btrfs_filetype_table[] = {
1920 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1921};
1922
cbdf5a24
DW
1923static int btrfs_real_readdir(struct file *filp, void *dirent,
1924 filldir_t filldir)
39279cc3 1925{
6da6abae 1926 struct inode *inode = filp->f_dentry->d_inode;
39279cc3
CM
1927 struct btrfs_root *root = BTRFS_I(inode)->root;
1928 struct btrfs_item *item;
1929 struct btrfs_dir_item *di;
1930 struct btrfs_key key;
5f39d397 1931 struct btrfs_key found_key;
39279cc3
CM
1932 struct btrfs_path *path;
1933 int ret;
1934 u32 nritems;
5f39d397 1935 struct extent_buffer *leaf;
39279cc3
CM
1936 int slot;
1937 int advance;
1938 unsigned char d_type;
1939 int over = 0;
1940 u32 di_cur;
1941 u32 di_total;
1942 u32 di_len;
1943 int key_type = BTRFS_DIR_INDEX_KEY;
5f39d397
CM
1944 char tmp_name[32];
1945 char *name_ptr;
1946 int name_len;
39279cc3
CM
1947
1948 /* FIXME, use a real flag for deciding about the key type */
1949 if (root->fs_info->tree_root == root)
1950 key_type = BTRFS_DIR_ITEM_KEY;
5f39d397 1951
3954401f
CM
1952 /* special case for "." */
1953 if (filp->f_pos == 0) {
1954 over = filldir(dirent, ".", 1,
1955 1, inode->i_ino,
1956 DT_DIR);
1957 if (over)
1958 return 0;
1959 filp->f_pos = 1;
1960 }
3954401f
CM
1961 /* special case for .., just use the back ref */
1962 if (filp->f_pos == 1) {
5ecc7e5d 1963 u64 pino = parent_ino(filp->f_path.dentry);
3954401f 1964 over = filldir(dirent, "..", 2,
5ecc7e5d 1965 2, pino, DT_DIR);
3954401f 1966 if (over)
49593bfa 1967 return 0;
3954401f
CM
1968 filp->f_pos = 2;
1969 }
1970
49593bfa
DW
1971 path = btrfs_alloc_path();
1972 path->reada = 2;
1973
39279cc3
CM
1974 btrfs_set_key_type(&key, key_type);
1975 key.offset = filp->f_pos;
49593bfa 1976 key.objectid = inode->i_ino;
5f39d397 1977
39279cc3
CM
1978 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1979 if (ret < 0)
1980 goto err;
1981 advance = 0;
49593bfa
DW
1982
1983 while (1) {
5f39d397
CM
1984 leaf = path->nodes[0];
1985 nritems = btrfs_header_nritems(leaf);
39279cc3
CM
1986 slot = path->slots[0];
1987 if (advance || slot >= nritems) {
49593bfa 1988 if (slot >= nritems - 1) {
39279cc3
CM
1989 ret = btrfs_next_leaf(root, path);
1990 if (ret)
1991 break;
5f39d397
CM
1992 leaf = path->nodes[0];
1993 nritems = btrfs_header_nritems(leaf);
39279cc3
CM
1994 slot = path->slots[0];
1995 } else {
1996 slot++;
1997 path->slots[0]++;
1998 }
1999 }
2000 advance = 1;
5f39d397
CM
2001 item = btrfs_item_nr(leaf, slot);
2002 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2003
2004 if (found_key.objectid != key.objectid)
39279cc3 2005 break;
5f39d397 2006 if (btrfs_key_type(&found_key) != key_type)
39279cc3 2007 break;
5f39d397 2008 if (found_key.offset < filp->f_pos)
39279cc3 2009 continue;
5f39d397
CM
2010
2011 filp->f_pos = found_key.offset;
49593bfa 2012
39279cc3
CM
2013 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
2014 di_cur = 0;
5f39d397 2015 di_total = btrfs_item_size(leaf, item);
49593bfa
DW
2016
2017 while (di_cur < di_total) {
5f39d397
CM
2018 struct btrfs_key location;
2019
2020 name_len = btrfs_dir_name_len(leaf, di);
49593bfa 2021 if (name_len <= sizeof(tmp_name)) {
5f39d397
CM
2022 name_ptr = tmp_name;
2023 } else {
2024 name_ptr = kmalloc(name_len, GFP_NOFS);
49593bfa
DW
2025 if (!name_ptr) {
2026 ret = -ENOMEM;
2027 goto err;
2028 }
5f39d397
CM
2029 }
2030 read_extent_buffer(leaf, name_ptr,
2031 (unsigned long)(di + 1), name_len);
2032
2033 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
2034 btrfs_dir_item_key_to_cpu(leaf, di, &location);
5f39d397 2035 over = filldir(dirent, name_ptr, name_len,
49593bfa 2036 found_key.offset, location.objectid,
39279cc3 2037 d_type);
5f39d397
CM
2038
2039 if (name_ptr != tmp_name)
2040 kfree(name_ptr);
2041
39279cc3
CM
2042 if (over)
2043 goto nopos;
49593bfa 2044
5103e947 2045 di_len = btrfs_dir_name_len(leaf, di) +
49593bfa 2046 btrfs_dir_data_len(leaf, di) + sizeof(*di);
39279cc3
CM
2047 di_cur += di_len;
2048 di = (struct btrfs_dir_item *)((char *)di + di_len);
2049 }
2050 }
49593bfa
DW
2051
2052 /* Reached end of directory/root. Bump pos past the last item. */
5e591a07
YZ
2053 if (key_type == BTRFS_DIR_INDEX_KEY)
2054 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
2055 else
2056 filp->f_pos++;
39279cc3
CM
2057nopos:
2058 ret = 0;
2059err:
39279cc3 2060 btrfs_free_path(path);
39279cc3
CM
2061 return ret;
2062}
2063
cbdf5a24
DW
2064/* Kernels earlier than 2.6.28 still have the NFS deadlock where nfsd
2065 will call the file system's ->lookup() method from within its
2066 filldir callback, which in turn was called from the file system's
2067 ->readdir() method. And will deadlock for many file systems. */
2068#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
2069
2070struct nfshack_dirent {
2071 u64 ino;
2072 loff_t offset;
2073 int namlen;
2074 unsigned int d_type;
2075 char name[];
2076};
2077
2078struct nfshack_readdir {
2079 char *dirent;
2080 size_t used;
f2322b1c 2081 int full;
cbdf5a24
DW
2082};
2083
2084
2085
2086static int btrfs_nfshack_filldir(void *__buf, const char *name, int namlen,
2087 loff_t offset, u64 ino, unsigned int d_type)
2088{
2089 struct nfshack_readdir *buf = __buf;
2090 struct nfshack_dirent *de = (void *)(buf->dirent + buf->used);
2091 unsigned int reclen;
2092
2093 reclen = ALIGN(sizeof(struct nfshack_dirent) + namlen, sizeof(u64));
f2322b1c
DW
2094 if (buf->used + reclen > PAGE_SIZE) {
2095 buf->full = 1;
cbdf5a24 2096 return -EINVAL;
f2322b1c 2097 }
cbdf5a24
DW
2098
2099 de->namlen = namlen;
2100 de->offset = offset;
2101 de->ino = ino;
2102 de->d_type = d_type;
2103 memcpy(de->name, name, namlen);
2104 buf->used += reclen;
2105
2106 return 0;
2107}
2108
2109static int btrfs_nfshack_readdir(struct file *file, void *dirent,
2110 filldir_t filldir)
2111{
2112 struct nfshack_readdir buf;
2113 struct nfshack_dirent *de;
2114 int err;
2115 int size;
2116 loff_t offset;
2117
2118 buf.dirent = (void *)__get_free_page(GFP_KERNEL);
2119 if (!buf.dirent)
2120 return -ENOMEM;
2121
2122 offset = file->f_pos;
2123
f2322b1c 2124 do {
cbdf5a24
DW
2125 unsigned int reclen;
2126
2127 buf.used = 0;
f2322b1c 2128 buf.full = 0;
cbdf5a24
DW
2129 err = btrfs_real_readdir(file, &buf, btrfs_nfshack_filldir);
2130 if (err)
2131 break;
2132
2133 size = buf.used;
2134
2135 if (!size)
2136 break;
2137
2138 de = (struct nfshack_dirent *)buf.dirent;
2139 while (size > 0) {
2140 offset = de->offset;
2141
2142 if (filldir(dirent, de->name, de->namlen, de->offset,
2143 de->ino, de->d_type))
2144 goto done;
2145 offset = file->f_pos;
2146
2147 reclen = ALIGN(sizeof(*de) + de->namlen,
2148 sizeof(u64));
2149 size -= reclen;
2150 de = (struct nfshack_dirent *)((char *)de + reclen);
2151 }
f2322b1c 2152 } while (buf.full);
cbdf5a24
DW
2153
2154 done:
2155 free_page((unsigned long)buf.dirent);
2156 file->f_pos = offset;
2157
2158 return err;
2159}
2160#endif
2161
39279cc3
CM
2162int btrfs_write_inode(struct inode *inode, int wait)
2163{
2164 struct btrfs_root *root = BTRFS_I(inode)->root;
2165 struct btrfs_trans_handle *trans;
2166 int ret = 0;
2167
4ca8b41e
CM
2168 if (root->fs_info->closing > 1)
2169 return 0;
2170
39279cc3 2171 if (wait) {
f9295749 2172 trans = btrfs_join_transaction(root, 1);
39279cc3
CM
2173 btrfs_set_trans_block_group(trans, inode);
2174 ret = btrfs_commit_transaction(trans, root);
39279cc3
CM
2175 }
2176 return ret;
2177}
2178
2179/*
54aa1f4d 2180 * This is somewhat expensive, updating the tree every time the
39279cc3
CM
2181 * inode changes. But, it is most likely to find the inode in cache.
2182 * FIXME, needs more benchmarking...there are no reasons other than performance
2183 * to keep or drop this code.
2184 */
2185void btrfs_dirty_inode(struct inode *inode)
2186{
2187 struct btrfs_root *root = BTRFS_I(inode)->root;
2188 struct btrfs_trans_handle *trans;
2189
f9295749 2190 trans = btrfs_join_transaction(root, 1);
39279cc3
CM
2191 btrfs_set_trans_block_group(trans, inode);
2192 btrfs_update_inode(trans, root, inode);
2193 btrfs_end_transaction(trans, root);
39279cc3
CM
2194}
2195
aec7477b
JB
2196static int btrfs_set_inode_index_count(struct inode *inode)
2197{
2198 struct btrfs_root *root = BTRFS_I(inode)->root;
2199 struct btrfs_key key, found_key;
2200 struct btrfs_path *path;
2201 struct extent_buffer *leaf;
2202 int ret;
2203
2204 key.objectid = inode->i_ino;
2205 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
2206 key.offset = (u64)-1;
2207
2208 path = btrfs_alloc_path();
2209 if (!path)
2210 return -ENOMEM;
2211
2212 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2213 if (ret < 0)
2214 goto out;
2215 /* FIXME: we should be able to handle this */
2216 if (ret == 0)
2217 goto out;
2218 ret = 0;
2219
2220 /*
2221 * MAGIC NUMBER EXPLANATION:
2222 * since we search a directory based on f_pos we have to start at 2
2223 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
2224 * else has to start at 2
2225 */
2226 if (path->slots[0] == 0) {
2227 BTRFS_I(inode)->index_cnt = 2;
2228 goto out;
2229 }
2230
2231 path->slots[0]--;
2232
2233 leaf = path->nodes[0];
2234 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2235
2236 if (found_key.objectid != inode->i_ino ||
2237 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
2238 BTRFS_I(inode)->index_cnt = 2;
2239 goto out;
2240 }
2241
2242 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
2243out:
2244 btrfs_free_path(path);
2245 return ret;
2246}
2247
00e4e6b3
CM
2248static int btrfs_set_inode_index(struct inode *dir, struct inode *inode,
2249 u64 *index)
aec7477b
JB
2250{
2251 int ret = 0;
2252
2253 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
2254 ret = btrfs_set_inode_index_count(dir);
2255 if (ret)
2256 return ret;
2257 }
2258
00e4e6b3 2259 *index = BTRFS_I(dir)->index_cnt;
aec7477b
JB
2260 BTRFS_I(dir)->index_cnt++;
2261
2262 return ret;
2263}
2264
39279cc3
CM
2265static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
2266 struct btrfs_root *root,
aec7477b 2267 struct inode *dir,
9c58309d
CM
2268 const char *name, int name_len,
2269 u64 ref_objectid,
39279cc3
CM
2270 u64 objectid,
2271 struct btrfs_block_group_cache *group,
00e4e6b3 2272 int mode, u64 *index)
39279cc3
CM
2273{
2274 struct inode *inode;
5f39d397 2275 struct btrfs_inode_item *inode_item;
6324fbf3 2276 struct btrfs_block_group_cache *new_inode_group;
39279cc3 2277 struct btrfs_key *location;
5f39d397 2278 struct btrfs_path *path;
9c58309d
CM
2279 struct btrfs_inode_ref *ref;
2280 struct btrfs_key key[2];
2281 u32 sizes[2];
2282 unsigned long ptr;
39279cc3
CM
2283 int ret;
2284 int owner;
2285
5f39d397
CM
2286 path = btrfs_alloc_path();
2287 BUG_ON(!path);
2288
39279cc3
CM
2289 inode = new_inode(root->fs_info->sb);
2290 if (!inode)
2291 return ERR_PTR(-ENOMEM);
2292
aec7477b 2293 if (dir) {
00e4e6b3 2294 ret = btrfs_set_inode_index(dir, inode, index);
aec7477b
JB
2295 if (ret)
2296 return ERR_PTR(ret);
aec7477b
JB
2297 }
2298 /*
2299 * index_cnt is ignored for everything but a dir,
2300 * btrfs_get_inode_index_count has an explanation for the magic
2301 * number
2302 */
e02119d5 2303 init_btrfs_i(inode);
aec7477b 2304 BTRFS_I(inode)->index_cnt = 2;
39279cc3 2305 BTRFS_I(inode)->root = root;
e02119d5 2306 BTRFS_I(inode)->generation = trans->transid;
b888db2b 2307
39279cc3
CM
2308 if (mode & S_IFDIR)
2309 owner = 0;
2310 else
2311 owner = 1;
6324fbf3 2312 new_inode_group = btrfs_find_block_group(root, group, 0,
0b86a832 2313 BTRFS_BLOCK_GROUP_METADATA, owner);
6324fbf3
CM
2314 if (!new_inode_group) {
2315 printk("find_block group failed\n");
2316 new_inode_group = group;
2317 }
2318 BTRFS_I(inode)->block_group = new_inode_group;
9c58309d
CM
2319
2320 key[0].objectid = objectid;
2321 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
2322 key[0].offset = 0;
2323
2324 key[1].objectid = objectid;
2325 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
2326 key[1].offset = ref_objectid;
2327
2328 sizes[0] = sizeof(struct btrfs_inode_item);
2329 sizes[1] = name_len + sizeof(*ref);
2330
2331 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
2332 if (ret != 0)
5f39d397
CM
2333 goto fail;
2334
9c58309d
CM
2335 if (objectid > root->highest_inode)
2336 root->highest_inode = objectid;
2337
39279cc3
CM
2338 inode->i_uid = current->fsuid;
2339 inode->i_gid = current->fsgid;
2340 inode->i_mode = mode;
2341 inode->i_ino = objectid;
2342 inode->i_blocks = 0;
2343 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
5f39d397
CM
2344 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2345 struct btrfs_inode_item);
e02119d5 2346 fill_inode_item(trans, path->nodes[0], inode_item, inode);
9c58309d
CM
2347
2348 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
2349 struct btrfs_inode_ref);
2350 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
00e4e6b3 2351 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
9c58309d
CM
2352 ptr = (unsigned long)(ref + 1);
2353 write_extent_buffer(path->nodes[0], name, ptr, name_len);
2354
5f39d397
CM
2355 btrfs_mark_buffer_dirty(path->nodes[0]);
2356 btrfs_free_path(path);
2357
39279cc3
CM
2358 location = &BTRFS_I(inode)->location;
2359 location->objectid = objectid;
39279cc3
CM
2360 location->offset = 0;
2361 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
2362
39279cc3
CM
2363 insert_inode_hash(inode);
2364 return inode;
5f39d397 2365fail:
aec7477b
JB
2366 if (dir)
2367 BTRFS_I(dir)->index_cnt--;
5f39d397
CM
2368 btrfs_free_path(path);
2369 return ERR_PTR(ret);
39279cc3
CM
2370}
2371
2372static inline u8 btrfs_inode_type(struct inode *inode)
2373{
2374 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
2375}
2376
e02119d5
CM
2377int btrfs_add_link(struct btrfs_trans_handle *trans,
2378 struct inode *parent_inode, struct inode *inode,
2379 const char *name, int name_len, int add_backref, u64 index)
39279cc3
CM
2380{
2381 int ret;
2382 struct btrfs_key key;
e02119d5 2383 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
5f39d397 2384
39279cc3 2385 key.objectid = inode->i_ino;
39279cc3
CM
2386 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
2387 key.offset = 0;
2388
e02119d5
CM
2389 ret = btrfs_insert_dir_item(trans, root, name, name_len,
2390 parent_inode->i_ino,
aec7477b 2391 &key, btrfs_inode_type(inode),
00e4e6b3 2392 index);
39279cc3 2393 if (ret == 0) {
9c58309d
CM
2394 if (add_backref) {
2395 ret = btrfs_insert_inode_ref(trans, root,
e02119d5
CM
2396 name, name_len,
2397 inode->i_ino,
2398 parent_inode->i_ino,
2399 index);
9c58309d 2400 }
dbe674a9 2401 btrfs_i_size_write(parent_inode, parent_inode->i_size +
e02119d5 2402 name_len * 2);
79c44584 2403 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
e02119d5 2404 ret = btrfs_update_inode(trans, root, parent_inode);
39279cc3
CM
2405 }
2406 return ret;
2407}
2408
2409static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
9c58309d 2410 struct dentry *dentry, struct inode *inode,
00e4e6b3 2411 int backref, u64 index)
39279cc3 2412{
e02119d5
CM
2413 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
2414 inode, dentry->d_name.name,
2415 dentry->d_name.len, backref, index);
39279cc3
CM
2416 if (!err) {
2417 d_instantiate(dentry, inode);
2418 return 0;
2419 }
2420 if (err > 0)
2421 err = -EEXIST;
2422 return err;
2423}
2424
618e21d5
JB
2425static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
2426 int mode, dev_t rdev)
2427{
2428 struct btrfs_trans_handle *trans;
2429 struct btrfs_root *root = BTRFS_I(dir)->root;
1832a6d5 2430 struct inode *inode = NULL;
618e21d5
JB
2431 int err;
2432 int drop_inode = 0;
2433 u64 objectid;
1832a6d5 2434 unsigned long nr = 0;
00e4e6b3 2435 u64 index = 0;
618e21d5
JB
2436
2437 if (!new_valid_dev(rdev))
2438 return -EINVAL;
2439
1832a6d5
CM
2440 err = btrfs_check_free_space(root, 1, 0);
2441 if (err)
2442 goto fail;
2443
618e21d5
JB
2444 trans = btrfs_start_transaction(root, 1);
2445 btrfs_set_trans_block_group(trans, dir);
2446
2447 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2448 if (err) {
2449 err = -ENOSPC;
2450 goto out_unlock;
2451 }
2452
aec7477b 2453 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
9c58309d
CM
2454 dentry->d_name.len,
2455 dentry->d_parent->d_inode->i_ino, objectid,
00e4e6b3 2456 BTRFS_I(dir)->block_group, mode, &index);
618e21d5
JB
2457 err = PTR_ERR(inode);
2458 if (IS_ERR(inode))
2459 goto out_unlock;
2460
33268eaf
JB
2461 err = btrfs_init_acl(inode, dir);
2462 if (err) {
2463 drop_inode = 1;
2464 goto out_unlock;
2465 }
2466
618e21d5 2467 btrfs_set_trans_block_group(trans, inode);
00e4e6b3 2468 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
618e21d5
JB
2469 if (err)
2470 drop_inode = 1;
2471 else {
2472 inode->i_op = &btrfs_special_inode_operations;
2473 init_special_inode(inode, inode->i_mode, rdev);
1b4ab1bb 2474 btrfs_update_inode(trans, root, inode);
618e21d5
JB
2475 }
2476 dir->i_sb->s_dirt = 1;
2477 btrfs_update_inode_block_group(trans, inode);
2478 btrfs_update_inode_block_group(trans, dir);
2479out_unlock:
d3c2fdcf 2480 nr = trans->blocks_used;
89ce8a63 2481 btrfs_end_transaction_throttle(trans, root);
1832a6d5 2482fail:
618e21d5
JB
2483 if (drop_inode) {
2484 inode_dec_link_count(inode);
2485 iput(inode);
2486 }
d3c2fdcf 2487 btrfs_btree_balance_dirty(root, nr);
618e21d5
JB
2488 return err;
2489}
2490
39279cc3
CM
2491static int btrfs_create(struct inode *dir, struct dentry *dentry,
2492 int mode, struct nameidata *nd)
2493{
2494 struct btrfs_trans_handle *trans;
2495 struct btrfs_root *root = BTRFS_I(dir)->root;
1832a6d5 2496 struct inode *inode = NULL;
39279cc3
CM
2497 int err;
2498 int drop_inode = 0;
1832a6d5 2499 unsigned long nr = 0;
39279cc3 2500 u64 objectid;
00e4e6b3 2501 u64 index = 0;
39279cc3 2502
1832a6d5
CM
2503 err = btrfs_check_free_space(root, 1, 0);
2504 if (err)
2505 goto fail;
39279cc3
CM
2506 trans = btrfs_start_transaction(root, 1);
2507 btrfs_set_trans_block_group(trans, dir);
2508
2509 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2510 if (err) {
2511 err = -ENOSPC;
2512 goto out_unlock;
2513 }
2514
aec7477b 2515 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
9c58309d
CM
2516 dentry->d_name.len,
2517 dentry->d_parent->d_inode->i_ino,
00e4e6b3
CM
2518 objectid, BTRFS_I(dir)->block_group, mode,
2519 &index);
39279cc3
CM
2520 err = PTR_ERR(inode);
2521 if (IS_ERR(inode))
2522 goto out_unlock;
2523
33268eaf
JB
2524 err = btrfs_init_acl(inode, dir);
2525 if (err) {
2526 drop_inode = 1;
2527 goto out_unlock;
2528 }
2529
39279cc3 2530 btrfs_set_trans_block_group(trans, inode);
00e4e6b3 2531 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
39279cc3
CM
2532 if (err)
2533 drop_inode = 1;
2534 else {
2535 inode->i_mapping->a_ops = &btrfs_aops;
04160088 2536 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
39279cc3
CM
2537 inode->i_fop = &btrfs_file_operations;
2538 inode->i_op = &btrfs_file_inode_operations;
d1310b2e 2539 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
39279cc3
CM
2540 }
2541 dir->i_sb->s_dirt = 1;
2542 btrfs_update_inode_block_group(trans, inode);
2543 btrfs_update_inode_block_group(trans, dir);
2544out_unlock:
d3c2fdcf 2545 nr = trans->blocks_used;
ab78c84d 2546 btrfs_end_transaction_throttle(trans, root);
1832a6d5 2547fail:
39279cc3
CM
2548 if (drop_inode) {
2549 inode_dec_link_count(inode);
2550 iput(inode);
2551 }
d3c2fdcf 2552 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
2553 return err;
2554}
2555
2556static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
2557 struct dentry *dentry)
2558{
2559 struct btrfs_trans_handle *trans;
2560 struct btrfs_root *root = BTRFS_I(dir)->root;
2561 struct inode *inode = old_dentry->d_inode;
00e4e6b3 2562 u64 index;
1832a6d5 2563 unsigned long nr = 0;
39279cc3
CM
2564 int err;
2565 int drop_inode = 0;
2566
2567 if (inode->i_nlink == 0)
2568 return -ENOENT;
2569
e02119d5 2570 btrfs_inc_nlink(inode);
1832a6d5
CM
2571 err = btrfs_check_free_space(root, 1, 0);
2572 if (err)
2573 goto fail;
00e4e6b3 2574 err = btrfs_set_inode_index(dir, inode, &index);
aec7477b
JB
2575 if (err)
2576 goto fail;
2577
39279cc3 2578 trans = btrfs_start_transaction(root, 1);
5f39d397 2579
39279cc3
CM
2580 btrfs_set_trans_block_group(trans, dir);
2581 atomic_inc(&inode->i_count);
aec7477b 2582
00e4e6b3 2583 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
5f39d397 2584
39279cc3
CM
2585 if (err)
2586 drop_inode = 1;
5f39d397 2587
39279cc3
CM
2588 dir->i_sb->s_dirt = 1;
2589 btrfs_update_inode_block_group(trans, dir);
54aa1f4d 2590 err = btrfs_update_inode(trans, root, inode);
5f39d397 2591
54aa1f4d
CM
2592 if (err)
2593 drop_inode = 1;
39279cc3 2594
d3c2fdcf 2595 nr = trans->blocks_used;
ab78c84d 2596 btrfs_end_transaction_throttle(trans, root);
1832a6d5 2597fail:
39279cc3
CM
2598 if (drop_inode) {
2599 inode_dec_link_count(inode);
2600 iput(inode);
2601 }
d3c2fdcf 2602 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
2603 return err;
2604}
2605
39279cc3
CM
2606static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2607{
b9d86667 2608 struct inode *inode = NULL;
39279cc3
CM
2609 struct btrfs_trans_handle *trans;
2610 struct btrfs_root *root = BTRFS_I(dir)->root;
2611 int err = 0;
2612 int drop_on_err = 0;
b9d86667 2613 u64 objectid = 0;
00e4e6b3 2614 u64 index = 0;
d3c2fdcf 2615 unsigned long nr = 1;
39279cc3 2616
1832a6d5
CM
2617 err = btrfs_check_free_space(root, 1, 0);
2618 if (err)
2619 goto out_unlock;
2620
39279cc3
CM
2621 trans = btrfs_start_transaction(root, 1);
2622 btrfs_set_trans_block_group(trans, dir);
5f39d397 2623
39279cc3
CM
2624 if (IS_ERR(trans)) {
2625 err = PTR_ERR(trans);
2626 goto out_unlock;
2627 }
2628
2629 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2630 if (err) {
2631 err = -ENOSPC;
2632 goto out_unlock;
2633 }
2634
aec7477b 2635 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
9c58309d
CM
2636 dentry->d_name.len,
2637 dentry->d_parent->d_inode->i_ino, objectid,
00e4e6b3
CM
2638 BTRFS_I(dir)->block_group, S_IFDIR | mode,
2639 &index);
39279cc3
CM
2640 if (IS_ERR(inode)) {
2641 err = PTR_ERR(inode);
2642 goto out_fail;
2643 }
5f39d397 2644
39279cc3 2645 drop_on_err = 1;
33268eaf
JB
2646
2647 err = btrfs_init_acl(inode, dir);
2648 if (err)
2649 goto out_fail;
2650
39279cc3
CM
2651 inode->i_op = &btrfs_dir_inode_operations;
2652 inode->i_fop = &btrfs_dir_file_operations;
2653 btrfs_set_trans_block_group(trans, inode);
2654
dbe674a9 2655 btrfs_i_size_write(inode, 0);
39279cc3
CM
2656 err = btrfs_update_inode(trans, root, inode);
2657 if (err)
2658 goto out_fail;
5f39d397 2659
e02119d5
CM
2660 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
2661 inode, dentry->d_name.name,
2662 dentry->d_name.len, 0, index);
39279cc3
CM
2663 if (err)
2664 goto out_fail;
5f39d397 2665
39279cc3
CM
2666 d_instantiate(dentry, inode);
2667 drop_on_err = 0;
2668 dir->i_sb->s_dirt = 1;
2669 btrfs_update_inode_block_group(trans, inode);
2670 btrfs_update_inode_block_group(trans, dir);
2671
2672out_fail:
d3c2fdcf 2673 nr = trans->blocks_used;
ab78c84d 2674 btrfs_end_transaction_throttle(trans, root);
5f39d397 2675
39279cc3 2676out_unlock:
39279cc3
CM
2677 if (drop_on_err)
2678 iput(inode);
d3c2fdcf 2679 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
2680 return err;
2681}
2682
3b951516
CM
2683static int merge_extent_mapping(struct extent_map_tree *em_tree,
2684 struct extent_map *existing,
e6dcd2dc
CM
2685 struct extent_map *em,
2686 u64 map_start, u64 map_len)
3b951516
CM
2687{
2688 u64 start_diff;
3b951516 2689
e6dcd2dc
CM
2690 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
2691 start_diff = map_start - em->start;
2692 em->start = map_start;
2693 em->len = map_len;
2694 if (em->block_start < EXTENT_MAP_LAST_BYTE)
2695 em->block_start += start_diff;
2696 return add_extent_mapping(em_tree, em);
3b951516
CM
2697}
2698
a52d9a80 2699struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
70dec807 2700 size_t pg_offset, u64 start, u64 len,
a52d9a80
CM
2701 int create)
2702{
2703 int ret;
2704 int err = 0;
db94535d 2705 u64 bytenr;
a52d9a80
CM
2706 u64 extent_start = 0;
2707 u64 extent_end = 0;
2708 u64 objectid = inode->i_ino;
2709 u32 found_type;
f421950f 2710 struct btrfs_path *path = NULL;
a52d9a80
CM
2711 struct btrfs_root *root = BTRFS_I(inode)->root;
2712 struct btrfs_file_extent_item *item;
5f39d397
CM
2713 struct extent_buffer *leaf;
2714 struct btrfs_key found_key;
a52d9a80
CM
2715 struct extent_map *em = NULL;
2716 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
d1310b2e 2717 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
a52d9a80
CM
2718 struct btrfs_trans_handle *trans = NULL;
2719
a52d9a80 2720again:
d1310b2e
CM
2721 spin_lock(&em_tree->lock);
2722 em = lookup_extent_mapping(em_tree, start, len);
a061fc8d
CM
2723 if (em)
2724 em->bdev = root->fs_info->fs_devices->latest_bdev;
d1310b2e
CM
2725 spin_unlock(&em_tree->lock);
2726
a52d9a80 2727 if (em) {
e1c4b745
CM
2728 if (em->start > start || em->start + em->len <= start)
2729 free_extent_map(em);
2730 else if (em->block_start == EXTENT_MAP_INLINE && page)
70dec807
CM
2731 free_extent_map(em);
2732 else
2733 goto out;
a52d9a80 2734 }
d1310b2e 2735 em = alloc_extent_map(GFP_NOFS);
a52d9a80 2736 if (!em) {
d1310b2e
CM
2737 err = -ENOMEM;
2738 goto out;
a52d9a80 2739 }
e6dcd2dc 2740 em->bdev = root->fs_info->fs_devices->latest_bdev;
d1310b2e
CM
2741 em->start = EXTENT_MAP_HOLE;
2742 em->len = (u64)-1;
f421950f
CM
2743
2744 if (!path) {
2745 path = btrfs_alloc_path();
2746 BUG_ON(!path);
2747 }
2748
179e29e4
CM
2749 ret = btrfs_lookup_file_extent(trans, root, path,
2750 objectid, start, trans != NULL);
a52d9a80
CM
2751 if (ret < 0) {
2752 err = ret;
2753 goto out;
2754 }
2755
2756 if (ret != 0) {
2757 if (path->slots[0] == 0)
2758 goto not_found;
2759 path->slots[0]--;
2760 }
2761
5f39d397
CM
2762 leaf = path->nodes[0];
2763 item = btrfs_item_ptr(leaf, path->slots[0],
a52d9a80 2764 struct btrfs_file_extent_item);
a52d9a80 2765 /* are we inside the extent that was found? */
5f39d397
CM
2766 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2767 found_type = btrfs_key_type(&found_key);
2768 if (found_key.objectid != objectid ||
a52d9a80
CM
2769 found_type != BTRFS_EXTENT_DATA_KEY) {
2770 goto not_found;
2771 }
2772
5f39d397
CM
2773 found_type = btrfs_file_extent_type(leaf, item);
2774 extent_start = found_key.offset;
a52d9a80
CM
2775 if (found_type == BTRFS_FILE_EXTENT_REG) {
2776 extent_end = extent_start +
db94535d 2777 btrfs_file_extent_num_bytes(leaf, item);
a52d9a80 2778 err = 0;
b888db2b 2779 if (start < extent_start || start >= extent_end) {
a52d9a80
CM
2780 em->start = start;
2781 if (start < extent_start) {
d1310b2e 2782 if (start + len <= extent_start)
b888db2b 2783 goto not_found;
d1310b2e 2784 em->len = extent_end - extent_start;
a52d9a80 2785 } else {
d1310b2e 2786 em->len = len;
a52d9a80
CM
2787 }
2788 goto not_found_em;
2789 }
db94535d
CM
2790 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2791 if (bytenr == 0) {
a52d9a80 2792 em->start = extent_start;
d1310b2e 2793 em->len = extent_end - extent_start;
5f39d397 2794 em->block_start = EXTENT_MAP_HOLE;
a52d9a80
CM
2795 goto insert;
2796 }
db94535d
CM
2797 bytenr += btrfs_file_extent_offset(leaf, item);
2798 em->block_start = bytenr;
a52d9a80 2799 em->start = extent_start;
d1310b2e 2800 em->len = extent_end - extent_start;
a52d9a80
CM
2801 goto insert;
2802 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
70dec807 2803 u64 page_start;
5f39d397 2804 unsigned long ptr;
a52d9a80 2805 char *map;
3326d1b0
CM
2806 size_t size;
2807 size_t extent_offset;
2808 size_t copy_size;
a52d9a80 2809
5f39d397
CM
2810 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2811 path->slots[0]));
d1310b2e
CM
2812 extent_end = (extent_start + size + root->sectorsize - 1) &
2813 ~((u64)root->sectorsize - 1);
b888db2b 2814 if (start < extent_start || start >= extent_end) {
a52d9a80
CM
2815 em->start = start;
2816 if (start < extent_start) {
d1310b2e 2817 if (start + len <= extent_start)
b888db2b 2818 goto not_found;
d1310b2e 2819 em->len = extent_end - extent_start;
a52d9a80 2820 } else {
d1310b2e 2821 em->len = len;
a52d9a80
CM
2822 }
2823 goto not_found_em;
2824 }
689f9346 2825 em->block_start = EXTENT_MAP_INLINE;
689f9346
Y
2826
2827 if (!page) {
2828 em->start = extent_start;
d1310b2e 2829 em->len = size;
689f9346
Y
2830 goto out;
2831 }
5f39d397 2832
70dec807
CM
2833 page_start = page_offset(page) + pg_offset;
2834 extent_offset = page_start - extent_start;
2835 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
3326d1b0 2836 size - extent_offset);
3326d1b0 2837 em->start = extent_start + extent_offset;
70dec807
CM
2838 em->len = (copy_size + root->sectorsize - 1) &
2839 ~((u64)root->sectorsize - 1);
689f9346
Y
2840 map = kmap(page);
2841 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
179e29e4 2842 if (create == 0 && !PageUptodate(page)) {
70dec807 2843 read_extent_buffer(leaf, map + pg_offset, ptr,
179e29e4
CM
2844 copy_size);
2845 flush_dcache_page(page);
2846 } else if (create && PageUptodate(page)) {
2847 if (!trans) {
2848 kunmap(page);
2849 free_extent_map(em);
2850 em = NULL;
2851 btrfs_release_path(root, path);
f9295749 2852 trans = btrfs_join_transaction(root, 1);
179e29e4
CM
2853 goto again;
2854 }
70dec807 2855 write_extent_buffer(leaf, map + pg_offset, ptr,
179e29e4
CM
2856 copy_size);
2857 btrfs_mark_buffer_dirty(leaf);
a52d9a80 2858 }
a52d9a80 2859 kunmap(page);
d1310b2e
CM
2860 set_extent_uptodate(io_tree, em->start,
2861 extent_map_end(em) - 1, GFP_NOFS);
a52d9a80
CM
2862 goto insert;
2863 } else {
2864 printk("unkknown found_type %d\n", found_type);
2865 WARN_ON(1);
2866 }
2867not_found:
2868 em->start = start;
d1310b2e 2869 em->len = len;
a52d9a80 2870not_found_em:
5f39d397 2871 em->block_start = EXTENT_MAP_HOLE;
a52d9a80
CM
2872insert:
2873 btrfs_release_path(root, path);
d1310b2e
CM
2874 if (em->start > start || extent_map_end(em) <= start) {
2875 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
a52d9a80
CM
2876 err = -EIO;
2877 goto out;
2878 }
d1310b2e
CM
2879
2880 err = 0;
2881 spin_lock(&em_tree->lock);
a52d9a80 2882 ret = add_extent_mapping(em_tree, em);
3b951516
CM
2883 /* it is possible that someone inserted the extent into the tree
2884 * while we had the lock dropped. It is also possible that
2885 * an overlapping map exists in the tree
2886 */
a52d9a80 2887 if (ret == -EEXIST) {
3b951516 2888 struct extent_map *existing;
e6dcd2dc
CM
2889
2890 ret = 0;
2891
3b951516 2892 existing = lookup_extent_mapping(em_tree, start, len);
e1c4b745
CM
2893 if (existing && (existing->start > start ||
2894 existing->start + existing->len <= start)) {
2895 free_extent_map(existing);
2896 existing = NULL;
2897 }
3b951516
CM
2898 if (!existing) {
2899 existing = lookup_extent_mapping(em_tree, em->start,
2900 em->len);
2901 if (existing) {
2902 err = merge_extent_mapping(em_tree, existing,
e6dcd2dc
CM
2903 em, start,
2904 root->sectorsize);
3b951516
CM
2905 free_extent_map(existing);
2906 if (err) {
2907 free_extent_map(em);
2908 em = NULL;
2909 }
2910 } else {
2911 err = -EIO;
2912 printk("failing to insert %Lu %Lu\n",
2913 start, len);
2914 free_extent_map(em);
2915 em = NULL;
2916 }
2917 } else {
2918 free_extent_map(em);
2919 em = existing;
e6dcd2dc 2920 err = 0;
a52d9a80 2921 }
a52d9a80 2922 }
d1310b2e 2923 spin_unlock(&em_tree->lock);
a52d9a80 2924out:
f421950f
CM
2925 if (path)
2926 btrfs_free_path(path);
a52d9a80
CM
2927 if (trans) {
2928 ret = btrfs_end_transaction(trans, root);
e6dcd2dc 2929 if (!err) {
a52d9a80 2930 err = ret;
e6dcd2dc 2931 }
a52d9a80 2932 }
a52d9a80
CM
2933 if (err) {
2934 free_extent_map(em);
2935 WARN_ON(1);
2936 return ERR_PTR(err);
2937 }
2938 return em;
2939}
2940
e1c4b745 2941#if 0 /* waiting for O_DIRECT reads */
16432985
CM
2942static int btrfs_get_block(struct inode *inode, sector_t iblock,
2943 struct buffer_head *bh_result, int create)
2944{
2945 struct extent_map *em;
2946 u64 start = (u64)iblock << inode->i_blkbits;
2947 struct btrfs_multi_bio *multi = NULL;
2948 struct btrfs_root *root = BTRFS_I(inode)->root;
2949 u64 len;
2950 u64 logical;
2951 u64 map_length;
2952 int ret = 0;
2953
2954 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2955
2956 if (!em || IS_ERR(em))
2957 goto out;
2958
e1c4b745 2959 if (em->start > start || em->start + em->len <= start) {
16432985 2960 goto out;
e1c4b745 2961 }
16432985
CM
2962
2963 if (em->block_start == EXTENT_MAP_INLINE) {
2964 ret = -EINVAL;
2965 goto out;
2966 }
2967
e1c4b745
CM
2968 len = em->start + em->len - start;
2969 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2970
16432985
CM
2971 if (em->block_start == EXTENT_MAP_HOLE ||
2972 em->block_start == EXTENT_MAP_DELALLOC) {
e1c4b745 2973 bh_result->b_size = len;
16432985
CM
2974 goto out;
2975 }
2976
16432985
CM
2977 logical = start - em->start;
2978 logical = em->block_start + logical;
2979
2980 map_length = len;
2981 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2982 logical, &map_length, &multi, 0);
2983 BUG_ON(ret);
2984 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2985 bh_result->b_size = min(map_length, len);
e1c4b745 2986
16432985
CM
2987 bh_result->b_bdev = multi->stripes[0].dev->bdev;
2988 set_buffer_mapped(bh_result);
2989 kfree(multi);
2990out:
2991 free_extent_map(em);
2992 return ret;
2993}
e1c4b745 2994#endif
16432985
CM
2995
2996static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
2997 const struct iovec *iov, loff_t offset,
2998 unsigned long nr_segs)
2999{
e1c4b745
CM
3000 return -EINVAL;
3001#if 0
16432985
CM
3002 struct file *file = iocb->ki_filp;
3003 struct inode *inode = file->f_mapping->host;
3004
3005 if (rw == WRITE)
3006 return -EINVAL;
3007
3008 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
3009 offset, nr_segs, btrfs_get_block, NULL);
e1c4b745 3010#endif
16432985
CM
3011}
3012
d396c6f5 3013static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
39279cc3 3014{
d396c6f5 3015 return extent_bmap(mapping, iblock, btrfs_get_extent);
39279cc3
CM
3016}
3017
a52d9a80 3018int btrfs_readpage(struct file *file, struct page *page)
9ebefb18 3019{
d1310b2e
CM
3020 struct extent_io_tree *tree;
3021 tree = &BTRFS_I(page->mapping->host)->io_tree;
a52d9a80 3022 return extent_read_full_page(tree, page, btrfs_get_extent);
9ebefb18 3023}
1832a6d5 3024
a52d9a80 3025static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
39279cc3 3026{
d1310b2e 3027 struct extent_io_tree *tree;
b888db2b
CM
3028
3029
3030 if (current->flags & PF_MEMALLOC) {
3031 redirty_page_for_writepage(wbc, page);
3032 unlock_page(page);
3033 return 0;
3034 }
d1310b2e 3035 tree = &BTRFS_I(page->mapping->host)->io_tree;
a52d9a80 3036 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
9ebefb18
CM
3037}
3038
f421950f
CM
3039int btrfs_writepages(struct address_space *mapping,
3040 struct writeback_control *wbc)
b293f02e 3041{
d1310b2e
CM
3042 struct extent_io_tree *tree;
3043 tree = &BTRFS_I(mapping->host)->io_tree;
b293f02e
CM
3044 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
3045}
3046
3ab2fb5a
CM
3047static int
3048btrfs_readpages(struct file *file, struct address_space *mapping,
3049 struct list_head *pages, unsigned nr_pages)
3050{
d1310b2e
CM
3051 struct extent_io_tree *tree;
3052 tree = &BTRFS_I(mapping->host)->io_tree;
3ab2fb5a
CM
3053 return extent_readpages(tree, mapping, pages, nr_pages,
3054 btrfs_get_extent);
3055}
e6dcd2dc 3056static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
9ebefb18 3057{
d1310b2e
CM
3058 struct extent_io_tree *tree;
3059 struct extent_map_tree *map;
a52d9a80 3060 int ret;
8c2383c3 3061
d1310b2e
CM
3062 tree = &BTRFS_I(page->mapping->host)->io_tree;
3063 map = &BTRFS_I(page->mapping->host)->extent_tree;
70dec807 3064 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
a52d9a80
CM
3065 if (ret == 1) {
3066 ClearPagePrivate(page);
3067 set_page_private(page, 0);
3068 page_cache_release(page);
39279cc3 3069 }
a52d9a80 3070 return ret;
39279cc3
CM
3071}
3072
e6dcd2dc
CM
3073static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
3074{
e6dcd2dc
CM
3075 return __btrfs_releasepage(page, gfp_flags);
3076}
3077
a52d9a80 3078static void btrfs_invalidatepage(struct page *page, unsigned long offset)
39279cc3 3079{
d1310b2e 3080 struct extent_io_tree *tree;
e6dcd2dc
CM
3081 struct btrfs_ordered_extent *ordered;
3082 u64 page_start = page_offset(page);
3083 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
39279cc3 3084
e6dcd2dc 3085 wait_on_page_writeback(page);
d1310b2e 3086 tree = &BTRFS_I(page->mapping->host)->io_tree;
e6dcd2dc
CM
3087 if (offset) {
3088 btrfs_releasepage(page, GFP_NOFS);
3089 return;
3090 }
3091
3092 lock_extent(tree, page_start, page_end, GFP_NOFS);
3093 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
3094 page_offset(page));
3095 if (ordered) {
eb84ae03
CM
3096 /*
3097 * IO on this page will never be started, so we need
3098 * to account for any ordered extents now
3099 */
e6dcd2dc
CM
3100 clear_extent_bit(tree, page_start, page_end,
3101 EXTENT_DIRTY | EXTENT_DELALLOC |
3102 EXTENT_LOCKED, 1, 0, GFP_NOFS);
211f90e6
CM
3103 btrfs_finish_ordered_io(page->mapping->host,
3104 page_start, page_end);
e6dcd2dc
CM
3105 btrfs_put_ordered_extent(ordered);
3106 lock_extent(tree, page_start, page_end, GFP_NOFS);
3107 }
3108 clear_extent_bit(tree, page_start, page_end,
3109 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3110 EXTENT_ORDERED,
3111 1, 1, GFP_NOFS);
3112 __btrfs_releasepage(page, GFP_NOFS);
3113
4a096752 3114 ClearPageChecked(page);
9ad6b7bc 3115 if (PagePrivate(page)) {
9ad6b7bc
CM
3116 ClearPagePrivate(page);
3117 set_page_private(page, 0);
3118 page_cache_release(page);
3119 }
39279cc3
CM
3120}
3121
9ebefb18
CM
3122/*
3123 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
3124 * called from a page fault handler when a page is first dirtied. Hence we must
3125 * be careful to check for EOF conditions here. We set the page up correctly
3126 * for a written page which means we get ENOSPC checking when writing into
3127 * holes and correct delalloc and unwritten extent mapping on filesystems that
3128 * support these features.
3129 *
3130 * We are not allowed to take the i_mutex here so we have to play games to
3131 * protect against truncate races as the page could now be beyond EOF. Because
3132 * vmtruncate() writes the inode size before removing pages, once we have the
3133 * page lock we can determine safely if the page is beyond EOF. If it is not
3134 * beyond EOF, then the page is guaranteed safe against truncation until we
3135 * unlock the page.
3136 */
3137int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
3138{
6da6abae 3139 struct inode *inode = fdentry(vma->vm_file)->d_inode;
1832a6d5 3140 struct btrfs_root *root = BTRFS_I(inode)->root;
e6dcd2dc
CM
3141 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3142 struct btrfs_ordered_extent *ordered;
3143 char *kaddr;
3144 unsigned long zero_start;
9ebefb18 3145 loff_t size;
1832a6d5 3146 int ret;
a52d9a80 3147 u64 page_start;
e6dcd2dc 3148 u64 page_end;
9ebefb18 3149
1832a6d5 3150 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
1832a6d5
CM
3151 if (ret)
3152 goto out;
3153
3154 ret = -EINVAL;
e6dcd2dc 3155again:
9ebefb18 3156 lock_page(page);
9ebefb18 3157 size = i_size_read(inode);
e6dcd2dc
CM
3158 page_start = page_offset(page);
3159 page_end = page_start + PAGE_CACHE_SIZE - 1;
a52d9a80 3160
9ebefb18 3161 if ((page->mapping != inode->i_mapping) ||
e6dcd2dc 3162 (page_start >= size)) {
9ebefb18
CM
3163 /* page got truncated out from underneath us */
3164 goto out_unlock;
3165 }
e6dcd2dc
CM
3166 wait_on_page_writeback(page);
3167
3168 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
3169 set_page_extent_mapped(page);
3170
eb84ae03
CM
3171 /*
3172 * we can't set the delalloc bits if there are pending ordered
3173 * extents. Drop our locks and wait for them to finish
3174 */
e6dcd2dc
CM
3175 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3176 if (ordered) {
3177 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3178 unlock_page(page);
eb84ae03 3179 btrfs_start_ordered_extent(inode, ordered, 1);
e6dcd2dc
CM
3180 btrfs_put_ordered_extent(ordered);
3181 goto again;
3182 }
3183
ea8c2819 3184 btrfs_set_extent_delalloc(inode, page_start, page_end);
e6dcd2dc 3185 ret = 0;
9ebefb18
CM
3186
3187 /* page is wholly or partially inside EOF */
a52d9a80 3188 if (page_start + PAGE_CACHE_SIZE > size)
e6dcd2dc 3189 zero_start = size & ~PAGE_CACHE_MASK;
9ebefb18 3190 else
e6dcd2dc 3191 zero_start = PAGE_CACHE_SIZE;
9ebefb18 3192
e6dcd2dc
CM
3193 if (zero_start != PAGE_CACHE_SIZE) {
3194 kaddr = kmap(page);
3195 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
3196 flush_dcache_page(page);
3197 kunmap(page);
3198 }
247e743c 3199 ClearPageChecked(page);
e6dcd2dc
CM
3200 set_page_dirty(page);
3201 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
9ebefb18
CM
3202
3203out_unlock:
3204 unlock_page(page);
1832a6d5 3205out:
9ebefb18
CM
3206 return ret;
3207}
3208
39279cc3
CM
3209static void btrfs_truncate(struct inode *inode)
3210{
3211 struct btrfs_root *root = BTRFS_I(inode)->root;
3212 int ret;
3213 struct btrfs_trans_handle *trans;
d3c2fdcf 3214 unsigned long nr;
dbe674a9 3215 u64 mask = root->sectorsize - 1;
39279cc3
CM
3216
3217 if (!S_ISREG(inode->i_mode))
3218 return;
3219 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3220 return;
3221
3222 btrfs_truncate_page(inode->i_mapping, inode->i_size);
4a096752 3223 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
39279cc3 3224
39279cc3
CM
3225 trans = btrfs_start_transaction(root, 1);
3226 btrfs_set_trans_block_group(trans, inode);
dbe674a9 3227 btrfs_i_size_write(inode, inode->i_size);
39279cc3 3228
7b128766
JB
3229 ret = btrfs_orphan_add(trans, inode);
3230 if (ret)
3231 goto out;
39279cc3 3232 /* FIXME, add redo link to tree so we don't leak on crash */
e02119d5 3233 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
85e21bac 3234 BTRFS_EXTENT_DATA_KEY);
39279cc3 3235 btrfs_update_inode(trans, root, inode);
5f39d397 3236
7b128766
JB
3237 ret = btrfs_orphan_del(trans, inode);
3238 BUG_ON(ret);
3239
3240out:
3241 nr = trans->blocks_used;
89ce8a63 3242 ret = btrfs_end_transaction_throttle(trans, root);
39279cc3 3243 BUG_ON(ret);
d3c2fdcf 3244 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
3245}
3246
3b96362c
SW
3247/*
3248 * Invalidate a single dcache entry at the root of the filesystem.
3249 * Needed after creation of snapshot or subvolume.
3250 */
3251void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
3252 int namelen)
3253{
3254 struct dentry *alias, *entry;
3255 struct qstr qstr;
3256
3257 alias = d_find_alias(root->fs_info->sb->s_root->d_inode);
3258 if (alias) {
3259 qstr.name = name;
3260 qstr.len = namelen;
3261 /* change me if btrfs ever gets a d_hash operation */
3262 qstr.hash = full_name_hash(qstr.name, qstr.len);
3263 entry = d_lookup(alias, &qstr);
3264 dput(alias);
3265 if (entry) {
3266 d_invalidate(entry);
3267 dput(entry);
3268 }
3269 }
3270}
3271
f46b5a66
CH
3272int btrfs_create_subvol_root(struct btrfs_root *new_root,
3273 struct btrfs_trans_handle *trans, u64 new_dirid,
3274 struct btrfs_block_group_cache *block_group)
39279cc3 3275{
39279cc3 3276 struct inode *inode;
00e4e6b3 3277 u64 index = 0;
39279cc3 3278
aec7477b 3279 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
00e4e6b3 3280 new_dirid, block_group, S_IFDIR | 0700, &index);
54aa1f4d 3281 if (IS_ERR(inode))
f46b5a66 3282 return PTR_ERR(inode);
39279cc3
CM
3283 inode->i_op = &btrfs_dir_inode_operations;
3284 inode->i_fop = &btrfs_dir_file_operations;
34088780 3285 new_root->inode = inode;
39279cc3 3286
39279cc3 3287 inode->i_nlink = 1;
dbe674a9 3288 btrfs_i_size_write(inode, 0);
3b96362c 3289
f46b5a66 3290 return btrfs_update_inode(trans, new_root, inode);
39279cc3
CM
3291}
3292
edbd8d4e 3293unsigned long btrfs_force_ra(struct address_space *mapping,
86479a04
CM
3294 struct file_ra_state *ra, struct file *file,
3295 pgoff_t offset, pgoff_t last_index)
3296{
8e7bf94f 3297 pgoff_t req_size = last_index - offset + 1;
86479a04
CM
3298
3299#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
86479a04
CM
3300 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
3301 return offset;
3302#else
86479a04
CM
3303 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
3304 return offset + req_size;
3305#endif
3306}
3307
39279cc3
CM
3308struct inode *btrfs_alloc_inode(struct super_block *sb)
3309{
3310 struct btrfs_inode *ei;
3311
3312 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
3313 if (!ei)
3314 return NULL;
15ee9bc7 3315 ei->last_trans = 0;
e02119d5 3316 ei->logged_trans = 0;
e6dcd2dc 3317 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
33268eaf
JB
3318 ei->i_acl = BTRFS_ACL_NOT_CACHED;
3319 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
7b128766 3320 INIT_LIST_HEAD(&ei->i_orphan);
39279cc3
CM
3321 return &ei->vfs_inode;
3322}
3323
3324void btrfs_destroy_inode(struct inode *inode)
3325{
e6dcd2dc 3326 struct btrfs_ordered_extent *ordered;
39279cc3
CM
3327 WARN_ON(!list_empty(&inode->i_dentry));
3328 WARN_ON(inode->i_data.nrpages);
3329
33268eaf
JB
3330 if (BTRFS_I(inode)->i_acl &&
3331 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
3332 posix_acl_release(BTRFS_I(inode)->i_acl);
3333 if (BTRFS_I(inode)->i_default_acl &&
3334 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
3335 posix_acl_release(BTRFS_I(inode)->i_default_acl);
3336
bcc63abb 3337 spin_lock(&BTRFS_I(inode)->root->list_lock);
7b128766
JB
3338 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
3339 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
3340 " list\n", inode->i_ino);
3341 dump_stack();
3342 }
bcc63abb 3343 spin_unlock(&BTRFS_I(inode)->root->list_lock);
7b128766 3344
e6dcd2dc
CM
3345 while(1) {
3346 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
3347 if (!ordered)
3348 break;
3349 else {
3350 printk("found ordered extent %Lu %Lu\n",
3351 ordered->file_offset, ordered->len);
3352 btrfs_remove_ordered_extent(inode, ordered);
3353 btrfs_put_ordered_extent(ordered);
3354 btrfs_put_ordered_extent(ordered);
3355 }
3356 }
8c416c9e 3357 btrfs_drop_extent_cache(inode, 0, (u64)-1);
39279cc3
CM
3358 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
3359}
3360
0ee0fda0
SW
3361#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3362static void init_once(void *foo)
3363#elif LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
44ec0b71
CM
3364static void init_once(struct kmem_cache * cachep, void *foo)
3365#else
39279cc3
CM
3366static void init_once(void * foo, struct kmem_cache * cachep,
3367 unsigned long flags)
44ec0b71 3368#endif
39279cc3
CM
3369{
3370 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
3371
3372 inode_init_once(&ei->vfs_inode);
3373}
3374
3375void btrfs_destroy_cachep(void)
3376{
3377 if (btrfs_inode_cachep)
3378 kmem_cache_destroy(btrfs_inode_cachep);
3379 if (btrfs_trans_handle_cachep)
3380 kmem_cache_destroy(btrfs_trans_handle_cachep);
3381 if (btrfs_transaction_cachep)
3382 kmem_cache_destroy(btrfs_transaction_cachep);
3383 if (btrfs_bit_radix_cachep)
3384 kmem_cache_destroy(btrfs_bit_radix_cachep);
3385 if (btrfs_path_cachep)
3386 kmem_cache_destroy(btrfs_path_cachep);
3387}
3388
86479a04 3389struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
92fee66d 3390 unsigned long extra_flags,
0ee0fda0
SW
3391#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3392 void (*ctor)(void *)
3393#elif LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
44ec0b71
CM
3394 void (*ctor)(struct kmem_cache *, void *)
3395#else
92fee66d 3396 void (*ctor)(void *, struct kmem_cache *,
44ec0b71
CM
3397 unsigned long)
3398#endif
3399 )
92fee66d
CM
3400{
3401 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
3402 SLAB_MEM_SPREAD | extra_flags), ctor
3403#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
3404 ,NULL
3405#endif
3406 );
3407}
3408
39279cc3
CM
3409int btrfs_init_cachep(void)
3410{
86479a04 3411 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
92fee66d
CM
3412 sizeof(struct btrfs_inode),
3413 0, init_once);
39279cc3
CM
3414 if (!btrfs_inode_cachep)
3415 goto fail;
86479a04
CM
3416 btrfs_trans_handle_cachep =
3417 btrfs_cache_create("btrfs_trans_handle_cache",
3418 sizeof(struct btrfs_trans_handle),
3419 0, NULL);
39279cc3
CM
3420 if (!btrfs_trans_handle_cachep)
3421 goto fail;
86479a04 3422 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
39279cc3 3423 sizeof(struct btrfs_transaction),
92fee66d 3424 0, NULL);
39279cc3
CM
3425 if (!btrfs_transaction_cachep)
3426 goto fail;
86479a04 3427 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
23223584 3428 sizeof(struct btrfs_path),
92fee66d 3429 0, NULL);
39279cc3
CM
3430 if (!btrfs_path_cachep)
3431 goto fail;
86479a04 3432 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
92fee66d 3433 SLAB_DESTROY_BY_RCU, NULL);
39279cc3
CM
3434 if (!btrfs_bit_radix_cachep)
3435 goto fail;
3436 return 0;
3437fail:
3438 btrfs_destroy_cachep();
3439 return -ENOMEM;
3440}
3441
3442static int btrfs_getattr(struct vfsmount *mnt,
3443 struct dentry *dentry, struct kstat *stat)
3444{
3445 struct inode *inode = dentry->d_inode;
3446 generic_fillattr(inode, stat);
d6667462 3447 stat->blksize = PAGE_CACHE_SIZE;
9069218d 3448 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
39279cc3
CM
3449 return 0;
3450}
3451
3452static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3453 struct inode * new_dir,struct dentry *new_dentry)
3454{
3455 struct btrfs_trans_handle *trans;
3456 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3457 struct inode *new_inode = new_dentry->d_inode;
3458 struct inode *old_inode = old_dentry->d_inode;
3459 struct timespec ctime = CURRENT_TIME;
00e4e6b3 3460 u64 index = 0;
39279cc3
CM
3461 int ret;
3462
3463 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3464 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3465 return -ENOTEMPTY;
3466 }
5f39d397 3467
1832a6d5
CM
3468 ret = btrfs_check_free_space(root, 1, 0);
3469 if (ret)
3470 goto out_unlock;
3471
39279cc3 3472 trans = btrfs_start_transaction(root, 1);
5f39d397 3473
39279cc3 3474 btrfs_set_trans_block_group(trans, new_dir);
39279cc3 3475
e02119d5 3476 btrfs_inc_nlink(old_dentry->d_inode);
39279cc3
CM
3477 old_dir->i_ctime = old_dir->i_mtime = ctime;
3478 new_dir->i_ctime = new_dir->i_mtime = ctime;
3479 old_inode->i_ctime = ctime;
5f39d397 3480
e02119d5
CM
3481 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
3482 old_dentry->d_name.name,
3483 old_dentry->d_name.len);
39279cc3
CM
3484 if (ret)
3485 goto out_fail;
3486
3487 if (new_inode) {
3488 new_inode->i_ctime = CURRENT_TIME;
e02119d5
CM
3489 ret = btrfs_unlink_inode(trans, root, new_dir,
3490 new_dentry->d_inode,
3491 new_dentry->d_name.name,
3492 new_dentry->d_name.len);
39279cc3
CM
3493 if (ret)
3494 goto out_fail;
7b128766 3495 if (new_inode->i_nlink == 0) {
e02119d5 3496 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
7b128766
JB
3497 if (ret)
3498 goto out_fail;
3499 }
e02119d5 3500
39279cc3 3501 }
00e4e6b3 3502 ret = btrfs_set_inode_index(new_dir, old_inode, &index);
aec7477b
JB
3503 if (ret)
3504 goto out_fail;
3505
e02119d5
CM
3506 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
3507 old_inode, new_dentry->d_name.name,
3508 new_dentry->d_name.len, 1, index);
39279cc3
CM
3509 if (ret)
3510 goto out_fail;
3511
3512out_fail:
ab78c84d 3513 btrfs_end_transaction_throttle(trans, root);
1832a6d5 3514out_unlock:
39279cc3
CM
3515 return ret;
3516}
3517
ea8c2819
CM
3518int btrfs_start_delalloc_inodes(struct btrfs_root *root)
3519{
3520 struct list_head *head = &root->fs_info->delalloc_inodes;
3521 struct btrfs_inode *binode;
3522 unsigned long flags;
3523
3524 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
3525 while(!list_empty(head)) {
3526 binode = list_entry(head->next, struct btrfs_inode,
3527 delalloc_inodes);
3528 atomic_inc(&binode->vfs_inode.i_count);
3529 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
3530 filemap_write_and_wait(binode->vfs_inode.i_mapping);
3531 iput(&binode->vfs_inode);
3532 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
3533 }
3534 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
3535 return 0;
3536}
3537
39279cc3
CM
3538static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3539 const char *symname)
3540{
3541 struct btrfs_trans_handle *trans;
3542 struct btrfs_root *root = BTRFS_I(dir)->root;
3543 struct btrfs_path *path;
3544 struct btrfs_key key;
1832a6d5 3545 struct inode *inode = NULL;
39279cc3
CM
3546 int err;
3547 int drop_inode = 0;
3548 u64 objectid;
00e4e6b3 3549 u64 index = 0 ;
39279cc3
CM
3550 int name_len;
3551 int datasize;
5f39d397 3552 unsigned long ptr;
39279cc3 3553 struct btrfs_file_extent_item *ei;
5f39d397 3554 struct extent_buffer *leaf;
1832a6d5 3555 unsigned long nr = 0;
39279cc3
CM
3556
3557 name_len = strlen(symname) + 1;
3558 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3559 return -ENAMETOOLONG;
1832a6d5 3560
1832a6d5
CM
3561 err = btrfs_check_free_space(root, 1, 0);
3562 if (err)
3563 goto out_fail;
3564
39279cc3
CM
3565 trans = btrfs_start_transaction(root, 1);
3566 btrfs_set_trans_block_group(trans, dir);
3567
3568 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3569 if (err) {
3570 err = -ENOSPC;
3571 goto out_unlock;
3572 }
3573
aec7477b 3574 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
9c58309d
CM
3575 dentry->d_name.len,
3576 dentry->d_parent->d_inode->i_ino, objectid,
00e4e6b3
CM
3577 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
3578 &index);
39279cc3
CM
3579 err = PTR_ERR(inode);
3580 if (IS_ERR(inode))
3581 goto out_unlock;
3582
33268eaf
JB
3583 err = btrfs_init_acl(inode, dir);
3584 if (err) {
3585 drop_inode = 1;
3586 goto out_unlock;
3587 }
3588
39279cc3 3589 btrfs_set_trans_block_group(trans, inode);
00e4e6b3 3590 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
39279cc3
CM
3591 if (err)
3592 drop_inode = 1;
3593 else {
3594 inode->i_mapping->a_ops = &btrfs_aops;
04160088 3595 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
39279cc3
CM
3596 inode->i_fop = &btrfs_file_operations;
3597 inode->i_op = &btrfs_file_inode_operations;
d1310b2e 3598 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
39279cc3
CM
3599 }
3600 dir->i_sb->s_dirt = 1;
3601 btrfs_update_inode_block_group(trans, inode);
3602 btrfs_update_inode_block_group(trans, dir);
3603 if (drop_inode)
3604 goto out_unlock;
3605
3606 path = btrfs_alloc_path();
3607 BUG_ON(!path);
3608 key.objectid = inode->i_ino;
3609 key.offset = 0;
39279cc3
CM
3610 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3611 datasize = btrfs_file_extent_calc_inline_size(name_len);
3612 err = btrfs_insert_empty_item(trans, root, path, &key,
3613 datasize);
54aa1f4d
CM
3614 if (err) {
3615 drop_inode = 1;
3616 goto out_unlock;
3617 }
5f39d397
CM
3618 leaf = path->nodes[0];
3619 ei = btrfs_item_ptr(leaf, path->slots[0],
3620 struct btrfs_file_extent_item);
3621 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3622 btrfs_set_file_extent_type(leaf, ei,
39279cc3
CM
3623 BTRFS_FILE_EXTENT_INLINE);
3624 ptr = btrfs_file_extent_inline_start(ei);
5f39d397
CM
3625 write_extent_buffer(leaf, symname, ptr, name_len);
3626 btrfs_mark_buffer_dirty(leaf);
39279cc3 3627 btrfs_free_path(path);
5f39d397 3628
39279cc3
CM
3629 inode->i_op = &btrfs_symlink_inode_operations;
3630 inode->i_mapping->a_ops = &btrfs_symlink_aops;
04160088 3631 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
dbe674a9 3632 btrfs_i_size_write(inode, name_len - 1);
54aa1f4d
CM
3633 err = btrfs_update_inode(trans, root, inode);
3634 if (err)
3635 drop_inode = 1;
39279cc3
CM
3636
3637out_unlock:
d3c2fdcf 3638 nr = trans->blocks_used;
ab78c84d 3639 btrfs_end_transaction_throttle(trans, root);
1832a6d5 3640out_fail:
39279cc3
CM
3641 if (drop_inode) {
3642 inode_dec_link_count(inode);
3643 iput(inode);
3644 }
d3c2fdcf 3645 btrfs_btree_balance_dirty(root, nr);
39279cc3
CM
3646 return err;
3647}
16432985 3648
e6dcd2dc
CM
3649static int btrfs_set_page_dirty(struct page *page)
3650{
e6dcd2dc
CM
3651 return __set_page_dirty_nobuffers(page);
3652}
3653
0ee0fda0
SW
3654#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3655static int btrfs_permission(struct inode *inode, int mask)
3656#else
fdebe2bd
Y
3657static int btrfs_permission(struct inode *inode, int mask,
3658 struct nameidata *nd)
0ee0fda0 3659#endif
fdebe2bd
Y
3660{
3661 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3662 return -EACCES;
33268eaf 3663 return generic_permission(inode, mask, btrfs_check_acl);
fdebe2bd 3664}
39279cc3
CM
3665
3666static struct inode_operations btrfs_dir_inode_operations = {
3667 .lookup = btrfs_lookup,
3668 .create = btrfs_create,
3669 .unlink = btrfs_unlink,
3670 .link = btrfs_link,
3671 .mkdir = btrfs_mkdir,
3672 .rmdir = btrfs_rmdir,
3673 .rename = btrfs_rename,
3674 .symlink = btrfs_symlink,
3675 .setattr = btrfs_setattr,
618e21d5 3676 .mknod = btrfs_mknod,
95819c05
CH
3677 .setxattr = btrfs_setxattr,
3678 .getxattr = btrfs_getxattr,
5103e947 3679 .listxattr = btrfs_listxattr,
95819c05 3680 .removexattr = btrfs_removexattr,
fdebe2bd 3681 .permission = btrfs_permission,
39279cc3 3682};
39279cc3
CM
3683static struct inode_operations btrfs_dir_ro_inode_operations = {
3684 .lookup = btrfs_lookup,
fdebe2bd 3685 .permission = btrfs_permission,
39279cc3 3686};
39279cc3
CM
3687static struct file_operations btrfs_dir_file_operations = {
3688 .llseek = generic_file_llseek,
3689 .read = generic_read_dir,
cbdf5a24
DW
3690#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
3691 .readdir = btrfs_nfshack_readdir,
3692#else /* NFSd readdir/lookup deadlock is fixed */
3693 .readdir = btrfs_real_readdir,
3694#endif
34287aa3 3695 .unlocked_ioctl = btrfs_ioctl,
39279cc3 3696#ifdef CONFIG_COMPAT
34287aa3 3697 .compat_ioctl = btrfs_ioctl,
39279cc3 3698#endif
6bf13c0c 3699 .release = btrfs_release_file,
e02119d5 3700 .fsync = btrfs_sync_file,
39279cc3
CM
3701};
3702
d1310b2e 3703static struct extent_io_ops btrfs_extent_io_ops = {
07157aac 3704 .fill_delalloc = run_delalloc_range,
065631f6 3705 .submit_bio_hook = btrfs_submit_bio_hook,
239b14b3 3706 .merge_bio_hook = btrfs_merge_bio_hook,
07157aac 3707 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
e6dcd2dc 3708 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
247e743c 3709 .writepage_start_hook = btrfs_writepage_start_hook,
1259ab75 3710 .readpage_io_failed_hook = btrfs_io_failed_hook,
b0c68f8b
CM
3711 .set_bit_hook = btrfs_set_bit_hook,
3712 .clear_bit_hook = btrfs_clear_bit_hook,
07157aac
CM
3713};
3714
39279cc3
CM
3715static struct address_space_operations btrfs_aops = {
3716 .readpage = btrfs_readpage,
3717 .writepage = btrfs_writepage,
b293f02e 3718 .writepages = btrfs_writepages,
3ab2fb5a 3719 .readpages = btrfs_readpages,
39279cc3 3720 .sync_page = block_sync_page,
39279cc3 3721 .bmap = btrfs_bmap,
16432985 3722 .direct_IO = btrfs_direct_IO,
a52d9a80
CM
3723 .invalidatepage = btrfs_invalidatepage,
3724 .releasepage = btrfs_releasepage,
e6dcd2dc 3725 .set_page_dirty = btrfs_set_page_dirty,
39279cc3
CM
3726};
3727
3728static struct address_space_operations btrfs_symlink_aops = {
3729 .readpage = btrfs_readpage,
3730 .writepage = btrfs_writepage,
2bf5a725
CM
3731 .invalidatepage = btrfs_invalidatepage,
3732 .releasepage = btrfs_releasepage,
39279cc3
CM
3733};
3734
3735static struct inode_operations btrfs_file_inode_operations = {
3736 .truncate = btrfs_truncate,
3737 .getattr = btrfs_getattr,
3738 .setattr = btrfs_setattr,
95819c05
CH
3739 .setxattr = btrfs_setxattr,
3740 .getxattr = btrfs_getxattr,
5103e947 3741 .listxattr = btrfs_listxattr,
95819c05 3742 .removexattr = btrfs_removexattr,
fdebe2bd 3743 .permission = btrfs_permission,
39279cc3 3744};
618e21d5
JB
3745static struct inode_operations btrfs_special_inode_operations = {
3746 .getattr = btrfs_getattr,
3747 .setattr = btrfs_setattr,
fdebe2bd 3748 .permission = btrfs_permission,
95819c05
CH
3749 .setxattr = btrfs_setxattr,
3750 .getxattr = btrfs_getxattr,
33268eaf 3751 .listxattr = btrfs_listxattr,
95819c05 3752 .removexattr = btrfs_removexattr,
618e21d5 3753};
39279cc3
CM
3754static struct inode_operations btrfs_symlink_inode_operations = {
3755 .readlink = generic_readlink,
3756 .follow_link = page_follow_link_light,
3757 .put_link = page_put_link,
fdebe2bd 3758 .permission = btrfs_permission,
39279cc3 3759};