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