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