blob: 8c2d5d036bd658a601f860b54bd852b94fa560fe [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
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
Chris Mason065631f2008-02-20 12:07:25 -050019#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040020#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>
Chris Mason9ebefb182007-06-15 13:50:00 -040034#include <linux/bit_spinlock.h>
Chris Mason92fee662007-07-25 12:31:35 -040035#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Chris Mason39279cc2007-06-12 06:35:45 -040037#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"
Chris Mason0b86a832008-03-24 15:01:56 -040043#include "volumes.h"
Chris Mason39279cc2007-06-12 06:35:45 -040044
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;
Josef Bacik618e21d2007-07-11 10:18:17 -040053static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040054static 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;
Chris Masond1310b22008-01-24 16:13:08 -050058static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040059
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
Chris Mason1832a6d2007-12-21 16:27:21 -050077int 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)
Chris Masonf9ef6602008-01-03 09:22:38 -050086 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -050087 else
Chris Masonf9ef6602008-01-03 09:22:38 -050088 thresh = total * 85;
89
90 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -050091
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
Chris Masonbe20aa92007-12-17 20:14:01 -050099static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db2b2007-08-27 16:49:44 -0400100{
101 struct btrfs_root *root = BTRFS_I(inode)->root;
102 struct btrfs_trans_handle *trans;
Chris Masonb888db2b2007-08-27 16:49:44 -0400103 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400104 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500105 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400106 u64 blocksize = root->sectorsize;
Chris Masond1310b22008-01-24 16:13:08 -0500107 u64 orig_start = start;
108 u64 orig_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500109 struct btrfs_key ins;
110 int ret;
Chris Masonb888db2b2007-08-27 16:49:44 -0400111
Chris Masonb888db2b2007-08-27 16:49:44 -0400112 trans = btrfs_start_transaction(root, 1);
Chris Masonb888db2b2007-08-27 16:49:44 -0400113 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500114 btrfs_set_trans_block_group(trans, inode);
115
Chris Masondb945352007-10-15 16:15:53 -0400116 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500117 num_bytes = max(blocksize, num_bytes);
Chris Masonb888db2b2007-08-27 16:49:44 -0400118 ret = btrfs_drop_extents(trans, root, inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400119 start, start + num_bytes, start, &alloc_hint);
Chris Masond1310b22008-01-24 16:13:08 -0500120 orig_num_bytes = num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400121
Chris Mason179e29e2007-11-01 11:28:41 -0400122 if (alloc_hint == EXTENT_MAP_INLINE)
123 goto out;
124
Chris Masonc59f8952007-12-17 20:14:04 -0500125 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);
Chris Mason90692182008-02-08 13:49:28 -0500139 inode->i_blocks += ins.offset >> 9;
Chris Mason5f564062008-01-22 16:47:59 -0500140 btrfs_check_file(root, inode);
Chris Masonc59f8952007-12-17 20:14:04 -0500141 num_bytes -= cur_alloc_size;
142 alloc_hint = ins.objectid + ins.offset;
143 start += cur_alloc_size;
Chris Masonb888db2b2007-08-27 16:49:44 -0400144 }
Chris Masond1310b22008-01-24 16:13:08 -0500145 btrfs_drop_extent_cache(inode, orig_start,
146 orig_start + orig_num_bytes - 1);
Chris Masondc17ff82008-01-08 15:46:30 -0500147 btrfs_add_ordered_inode(inode);
Chris Mason90692182008-02-08 13:49:28 -0500148 btrfs_update_inode(trans, root, inode);
Chris Masonb888db2b2007-08-27 16:49:44 -0400149out:
150 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500151 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;
Chris Mason1832a6d2007-12-21 16:27:21 -0500160 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500161 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500162 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
Chris Masonc31f8832008-01-08 15:46:31 -0500171 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500172 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) {
Chris Masonc31f8832008-01-08 15:46:31 -0500204 u64 extent_num_bytes;
205
206 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
207 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500208 err = 0;
209
Chris Mason1832a6d2007-12-21 16:27:21 -0500210 if (loops && start != extent_start)
211 goto not_found;
212
Chris Masonbe20aa92007-12-17 20:14:01 -0500213 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
Chris Masonc31f8832008-01-08 15:46:31 -0500221 /*
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
Chris Masonbe20aa92007-12-17 20:14:01 -0500228 if (btrfs_count_snapshots_in_path(root, path, bytenr) != 1) {
229 goto not_found;
230 }
231
232 start = extent_end;
Chris Masonbd098352008-01-03 13:23:19 -0500233 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500234 goto not_found;
235 }
236loop:
237 if (start > end) {
238 btrfs_free_path(path);
239 return 0;
240 }
241 btrfs_release_path(root, path);
Chris Mason1832a6d2007-12-21 16:27:21 -0500242 loops++;
Chris Masonbe20aa92007-12-17 20:14:01 -0500243 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;
Chris Masonbe20aa92007-12-17 20:14:01 -0500255 mutex_lock(&root->fs_info->fs_mutex);
Yanb98b6762008-01-08 15:54:37 -0500256 if (btrfs_test_opt(root, NODATACOW) ||
257 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500258 ret = run_delalloc_nocow(inode, start, end);
259 else
260 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500261
Chris Masonb888db2b2007-08-27 16:49:44 -0400262 mutex_unlock(&root->fs_info->fs_mutex);
263 return ret;
264}
265
Chris Mason291d6732008-01-29 15:55:23 -0500266int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500267 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500268{
Chris Masonb0c68f82008-01-31 11:05:37 -0500269 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500270 struct btrfs_root *root = BTRFS_I(inode)->root;
271 spin_lock(&root->fs_info->delalloc_lock);
Chris Mason90692182008-02-08 13:49:28 -0500272 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -0500273 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,
Chris Masonb0c68f82008-01-31 11:05:37 -0500280 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500281{
Chris Masonb0c68f82008-01-31 11:05:37 -0500282 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500283 struct btrfs_root *root = BTRFS_I(inode)->root;
284 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonb0c68f82008-01-31 11:05:37 -0500285 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;
Chris Mason90692182008-02-08 13:49:28 -0500289 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -0500290 } else {
291 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -0500292 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -0500293 }
Chris Mason291d6732008-01-29 15:55:23 -0500294 spin_unlock(&root->fs_info->delalloc_lock);
295 }
296 return 0;
297}
298
Chris Mason239b14b2008-03-24 15:02:07 -0400299int 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;
Chris Mason239b14b2008-03-24 15:02:07 -0400304 u64 logical = bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -0400305 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;
Chris Masoncea9e442008-04-09 16:28:12 -0400316 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -0400317 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -0400318
Chris Mason239b14b2008-03-24 15:02:07 -0400319 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -0400320 return 1;
321 }
322 return 0;
323}
324
Chris Masonf1885912008-04-09 16:28:12 -0400325int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
326 int mirror_num)
Chris Mason065631f2008-02-20 12:07:25 -0500327{
Chris Mason065631f2008-02-20 12:07:25 -0500328 struct btrfs_root *root = BTRFS_I(inode)->root;
329 struct btrfs_trans_handle *trans;
330 int ret = 0;
331
Chris Mason22c59942008-04-09 16:28:12 -0400332 if (!(rw & (1 << BIO_RW))) {
333 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
334 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400335 goto mapit;
336 }
Chris Mason065631f2008-02-20 12:07:25 -0500337
338 if (btrfs_test_opt(root, NODATASUM) ||
Chris Mason0b86a832008-03-24 15:01:56 -0400339 btrfs_test_flag(inode, NODATASUM)) {
340 goto mapit;
341 }
Chris Mason065631f2008-02-20 12:07:25 -0500342
343 mutex_lock(&root->fs_info->fs_mutex);
344 trans = btrfs_start_transaction(root, 1);
345 btrfs_set_trans_block_group(trans, inode);
346 btrfs_csum_file_blocks(trans, root, inode, bio);
347 ret = btrfs_end_transaction(trans, root);
348 BUG_ON(ret);
349 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -0400350mapit:
Chris Masonf1885912008-04-09 16:28:12 -0400351 return btrfs_map_bio(root, rw, bio, mirror_num);
Chris Mason065631f2008-02-20 12:07:25 -0500352}
Chris Mason6885f302008-02-20 16:11:05 -0500353
Chris Mason07157aa2007-08-30 08:50:51 -0400354int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
355{
356 int ret = 0;
357 struct inode *inode = page->mapping->host;
358 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500359 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400360 struct btrfs_csum_item *item;
361 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400362 u32 csum;
Yanb98b6762008-01-08 15:54:37 -0500363 if (btrfs_test_opt(root, NODATASUM) ||
364 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500365 return 0;
Chris Mason07157aa2007-08-30 08:50:51 -0400366 mutex_lock(&root->fs_info->fs_mutex);
367 path = btrfs_alloc_path();
368 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
369 if (IS_ERR(item)) {
370 ret = PTR_ERR(item);
371 /* a csum that isn't present is a preallocated region. */
372 if (ret == -ENOENT || ret == -EFBIG)
373 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400374 csum = 0;
Chris Masonaadfeb62008-01-29 09:10:27 -0500375 printk("no csum found for inode %lu start %Lu\n", inode->i_ino, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400376 goto out;
377 }
Chris Masonff79f812007-10-15 16:22:25 -0400378 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
379 BTRFS_CRC32_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -0500380 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400381out:
382 if (path)
383 btrfs_free_path(path);
384 mutex_unlock(&root->fs_info->fs_mutex);
385 return ret;
386}
387
Chris Mason70dec802008-01-29 09:59:12 -0500388int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
389 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400390{
Chris Mason35ebb932007-10-30 16:56:53 -0400391 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400392 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500393 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400394 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500395 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400396 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400397 struct btrfs_root *root = BTRFS_I(inode)->root;
398 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400399 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500400
Yanb98b6762008-01-08 15:54:37 -0500401 if (btrfs_test_opt(root, NODATASUM) ||
402 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500403 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500404 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500405 private = state->private;
406 ret = 0;
407 } else {
408 ret = get_state_private(io_tree, start, &private);
409 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400410 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400411 kaddr = kmap_atomic(page, KM_IRQ0);
412 if (ret) {
413 goto zeroit;
414 }
Chris Masonff79f812007-10-15 16:22:25 -0400415 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
416 btrfs_csum_final(csum, (char *)&csum);
417 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400418 goto zeroit;
419 }
420 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400421 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400422 return 0;
423
424zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500425 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
426 page->mapping->host->i_ino, (unsigned long long)start, csum,
427 private);
Chris Masondb945352007-10-15 16:15:53 -0400428 memset(kaddr + offset, 1, end - start + 1);
429 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400430 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400431 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400432 return 0;
433}
Chris Masonb888db2b2007-08-27 16:49:44 -0400434
Chris Mason39279cc2007-06-12 06:35:45 -0400435void btrfs_read_locked_inode(struct inode *inode)
436{
437 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400438 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400439 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400440 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400441 struct btrfs_root *root = BTRFS_I(inode)->root;
442 struct btrfs_key location;
443 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400444 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400445 int ret;
446
447 path = btrfs_alloc_path();
448 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400449 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400450 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500451
Chris Mason39279cc2007-06-12 06:35:45 -0400452 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400453 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400454 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400455
Chris Mason5f39d392007-10-15 16:14:19 -0400456 leaf = path->nodes[0];
457 inode_item = btrfs_item_ptr(leaf, path->slots[0],
458 struct btrfs_inode_item);
459
460 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
461 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
462 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
463 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
464 inode->i_size = btrfs_inode_size(leaf, inode_item);
465
466 tspec = btrfs_inode_atime(inode_item);
467 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
468 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
469
470 tspec = btrfs_inode_mtime(inode_item);
471 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
472 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
473
474 tspec = btrfs_inode_ctime(inode_item);
475 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
476 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
477
478 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
479 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400480 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400481 rdev = btrfs_inode_rdev(leaf, inode_item);
482
483 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400484 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
485 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500486 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500487 if (!BTRFS_I(inode)->block_group) {
488 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -0400489 NULL, 0,
490 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -0500491 }
Chris Mason39279cc2007-06-12 06:35:45 -0400492 btrfs_free_path(path);
493 inode_item = NULL;
494
495 mutex_unlock(&root->fs_info->fs_mutex);
496
497 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400498 case S_IFREG:
499 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -0400500 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -0500501 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400502 inode->i_fop = &btrfs_file_operations;
503 inode->i_op = &btrfs_file_inode_operations;
504 break;
505 case S_IFDIR:
506 inode->i_fop = &btrfs_dir_file_operations;
507 if (root == root->fs_info->tree_root)
508 inode->i_op = &btrfs_dir_ro_inode_operations;
509 else
510 inode->i_op = &btrfs_dir_inode_operations;
511 break;
512 case S_IFLNK:
513 inode->i_op = &btrfs_symlink_inode_operations;
514 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -0400515 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -0400516 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400517 default:
518 init_special_inode(inode, inode->i_mode, rdev);
519 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400520 }
521 return;
522
523make_bad:
524 btrfs_release_path(root, path);
525 btrfs_free_path(path);
526 mutex_unlock(&root->fs_info->fs_mutex);
527 make_bad_inode(inode);
528}
529
Chris Mason5f39d392007-10-15 16:14:19 -0400530static void fill_inode_item(struct extent_buffer *leaf,
531 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400532 struct inode *inode)
533{
Chris Mason5f39d392007-10-15 16:14:19 -0400534 btrfs_set_inode_uid(leaf, item, inode->i_uid);
535 btrfs_set_inode_gid(leaf, item, inode->i_gid);
536 btrfs_set_inode_size(leaf, item, inode->i_size);
537 btrfs_set_inode_mode(leaf, item, inode->i_mode);
538 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
539
540 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
541 inode->i_atime.tv_sec);
542 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
543 inode->i_atime.tv_nsec);
544
545 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
546 inode->i_mtime.tv_sec);
547 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
548 inode->i_mtime.tv_nsec);
549
550 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
551 inode->i_ctime.tv_sec);
552 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
553 inode->i_ctime.tv_nsec);
554
555 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
556 btrfs_set_inode_generation(leaf, item, inode->i_generation);
557 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500558 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400559 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400560 BTRFS_I(inode)->block_group->key.objectid);
561}
562
Chris Masona52d9a82007-08-27 16:49:44 -0400563int btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400564 struct btrfs_root *root,
565 struct inode *inode)
566{
567 struct btrfs_inode_item *inode_item;
568 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400569 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400570 int ret;
571
572 path = btrfs_alloc_path();
573 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400574 ret = btrfs_lookup_inode(trans, root, path,
575 &BTRFS_I(inode)->location, 1);
576 if (ret) {
577 if (ret > 0)
578 ret = -ENOENT;
579 goto failed;
580 }
581
Chris Mason5f39d392007-10-15 16:14:19 -0400582 leaf = path->nodes[0];
583 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400584 struct btrfs_inode_item);
585
Chris Mason5f39d392007-10-15 16:14:19 -0400586 fill_inode_item(leaf, inode_item, inode);
587 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400588 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400589 ret = 0;
590failed:
591 btrfs_release_path(root, path);
592 btrfs_free_path(path);
593 return ret;
594}
595
596
597static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
598 struct btrfs_root *root,
599 struct inode *dir,
600 struct dentry *dentry)
601{
602 struct btrfs_path *path;
603 const char *name = dentry->d_name.name;
604 int name_len = dentry->d_name.len;
605 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400606 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400607 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400608 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400609
610 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400611 if (!path) {
612 ret = -ENOMEM;
613 goto err;
614 }
615
Chris Mason39279cc2007-06-12 06:35:45 -0400616 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
617 name, name_len, -1);
618 if (IS_ERR(di)) {
619 ret = PTR_ERR(di);
620 goto err;
621 }
622 if (!di) {
623 ret = -ENOENT;
624 goto err;
625 }
Chris Mason5f39d392007-10-15 16:14:19 -0400626 leaf = path->nodes[0];
627 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400628 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400629 if (ret)
630 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400631 btrfs_release_path(root, path);
632
633 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400634 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400635 if (IS_ERR(di)) {
636 ret = PTR_ERR(di);
637 goto err;
638 }
639 if (!di) {
640 ret = -ENOENT;
641 goto err;
642 }
643 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason39279cc2007-06-12 06:35:45 -0400644
645 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -0500646 ret = btrfs_del_inode_ref(trans, root, name, name_len,
647 dentry->d_inode->i_ino,
648 dentry->d_parent->d_inode->i_ino);
649 if (ret) {
650 printk("failed to delete reference to %.*s, "
651 "inode %lu parent %lu\n", name_len, name,
652 dentry->d_inode->i_ino,
653 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -0500654 }
Chris Mason39279cc2007-06-12 06:35:45 -0400655err:
656 btrfs_free_path(path);
657 if (!ret) {
658 dir->i_size -= name_len * 2;
Chris Mason79c44582007-06-25 10:09:33 -0400659 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400660 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -0500661#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
662 dentry->d_inode->i_nlink--;
663#else
Chris Mason39279cc2007-06-12 06:35:45 -0400664 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -0500665#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400666 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400667 dir->i_sb->s_dirt = 1;
668 }
669 return ret;
670}
671
672static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
673{
674 struct btrfs_root *root;
675 struct btrfs_trans_handle *trans;
Chris Mason2da98f02008-01-16 11:44:43 -0500676 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400677 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -0500678 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400679
680 root = BTRFS_I(dir)->root;
681 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500682
683 ret = btrfs_check_free_space(root, 1, 1);
684 if (ret)
685 goto fail;
686
Chris Mason39279cc2007-06-12 06:35:45 -0400687 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400688
Chris Mason39279cc2007-06-12 06:35:45 -0400689 btrfs_set_trans_block_group(trans, dir);
690 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400691 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400692
Chris Mason2da98f02008-01-16 11:44:43 -0500693 if (inode->i_nlink == 0) {
694 int found;
695 /* if the inode isn't linked anywhere,
696 * we don't need to worry about
697 * data=ordered
698 */
699 found = btrfs_del_ordered_inode(inode);
700 if (found == 1) {
701 atomic_dec(&inode->i_count);
702 }
703 }
704
Chris Mason39279cc2007-06-12 06:35:45 -0400705 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500706fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400707 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400708 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500709 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400710 return ret;
711}
712
713static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
714{
715 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -0500716 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400717 int ret;
718 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -0400719 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -0500720 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400721
Yan134d4512007-10-25 15:49:25 -0400722 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
723 return -ENOTEMPTY;
724
Chris Mason39279cc2007-06-12 06:35:45 -0400725 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500726 ret = btrfs_check_free_space(root, 1, 1);
727 if (ret)
728 goto fail;
729
Chris Mason39279cc2007-06-12 06:35:45 -0400730 trans = btrfs_start_transaction(root, 1);
731 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -0400732
733 /* now the directory is empty */
734 err = btrfs_unlink_trans(trans, root, dir, dentry);
735 if (!err) {
736 inode->i_size = 0;
737 }
Chris Mason39544012007-12-12 14:38:19 -0500738
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400739 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400740 ret = btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500741fail:
Yan134d4512007-10-25 15:49:25 -0400742 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400743 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500744 btrfs_throttle(root);
Chris Mason39544012007-12-12 14:38:19 -0500745
Chris Mason39279cc2007-06-12 06:35:45 -0400746 if (ret && !err)
747 err = ret;
748 return err;
749}
750
Chris Mason39279cc2007-06-12 06:35:45 -0400751/*
Chris Mason39279cc2007-06-12 06:35:45 -0400752 * this can truncate away extent items, csum items and directory items.
753 * It starts at a high offset and removes keys until it can't find
754 * any higher than i_size.
755 *
756 * csum items that cross the new i_size are truncated to the new size
757 * as well.
758 */
759static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
760 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -0500761 struct inode *inode,
762 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400763{
764 int ret;
765 struct btrfs_path *path;
766 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400767 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400768 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400769 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400770 struct btrfs_file_extent_item *fi;
771 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400772 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400773 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500774 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500775 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400776 int found_extent;
777 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -0500778 int pending_del_nr = 0;
779 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -0400780 int extent_type = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400781
Chris Masona52d9a82007-08-27 16:49:44 -0400782 btrfs_drop_extent_cache(inode, inode->i_size, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400783 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400784 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400785 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400786
Chris Mason39279cc2007-06-12 06:35:45 -0400787 /* FIXME, add redo link to tree so we don't leak on crash */
788 key.objectid = inode->i_ino;
789 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400790 key.type = (u8)-1;
791
Chris Mason85e21ba2008-01-29 15:11:36 -0500792 btrfs_init_path(path);
793search_again:
794 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
795 if (ret < 0) {
796 goto error;
797 }
798 if (ret > 0) {
799 BUG_ON(path->slots[0] == 0);
800 path->slots[0]--;
801 }
802
Chris Mason39279cc2007-06-12 06:35:45 -0400803 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -0400804 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400805 leaf = path->nodes[0];
806 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
807 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400808
Chris Mason5f39d392007-10-15 16:14:19 -0400809 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400810 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400811
Chris Mason85e21ba2008-01-29 15:11:36 -0500812 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400813 break;
814
Chris Mason5f39d392007-10-15 16:14:19 -0400815 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400816 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400817 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400818 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400819 extent_type = btrfs_file_extent_type(leaf, fi);
820 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400821 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400822 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400823 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
824 struct btrfs_item *item = btrfs_item_nr(leaf,
825 path->slots[0]);
826 item_end += btrfs_file_extent_inline_len(leaf,
827 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400828 }
Yan008630c2007-11-07 13:31:09 -0500829 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400830 }
831 if (found_type == BTRFS_CSUM_ITEM_KEY) {
832 ret = btrfs_csum_truncate(trans, root, path,
833 inode->i_size);
834 BUG_ON(ret);
835 }
Yan008630c2007-11-07 13:31:09 -0500836 if (item_end < inode->i_size) {
Chris Masonb888db2b2007-08-27 16:49:44 -0400837 if (found_type == BTRFS_DIR_ITEM_KEY) {
838 found_type = BTRFS_INODE_ITEM_KEY;
839 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
840 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -0500841 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
842 found_type = BTRFS_XATTR_ITEM_KEY;
843 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
844 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db2b2007-08-27 16:49:44 -0400845 } else if (found_type) {
846 found_type--;
847 } else {
848 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400849 }
Yana61721d2007-09-17 11:08:38 -0400850 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -0500851 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -0400852 }
Chris Mason5f39d392007-10-15 16:14:19 -0400853 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -0400854 del_item = 1;
855 else
856 del_item = 0;
857 found_extent = 0;
858
859 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -0400860 if (found_type != BTRFS_EXTENT_DATA_KEY)
861 goto delete;
862
863 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -0400864 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -0400865 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400866 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -0400867 u64 orig_num_bytes =
868 btrfs_file_extent_num_bytes(leaf, fi);
869 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -0400870 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -0500871 extent_num_bytes = extent_num_bytes &
872 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400873 btrfs_set_file_extent_num_bytes(leaf, fi,
874 extent_num_bytes);
875 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -0500876 extent_num_bytes);
877 if (extent_start != 0)
878 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -0400879 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400880 } else {
Chris Masondb945352007-10-15 16:15:53 -0400881 extent_num_bytes =
882 btrfs_file_extent_disk_num_bytes(leaf,
883 fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400884 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -0500885 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400886 if (extent_start != 0) {
887 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -0500888 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -0400889 }
Chris Masond8d5f3e2007-12-11 12:42:00 -0500890 root_gen = btrfs_header_generation(leaf);
891 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400892 }
Chris Mason90692182008-02-08 13:49:28 -0500893 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
894 if (!del_item) {
895 u32 newsize = inode->i_size - found_key.offset;
896 dec_i_blocks(inode, item_end + 1 -
897 found_key.offset - newsize);
898 newsize =
899 btrfs_file_extent_calc_inline_size(newsize);
900 ret = btrfs_truncate_item(trans, root, path,
901 newsize, 1);
902 BUG_ON(ret);
903 } else {
904 dec_i_blocks(inode, item_end + 1 -
905 found_key.offset);
906 }
Chris Mason39279cc2007-06-12 06:35:45 -0400907 }
Chris Mason179e29e2007-11-01 11:28:41 -0400908delete:
Chris Mason39279cc2007-06-12 06:35:45 -0400909 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -0500910 if (!pending_del_nr) {
911 /* no pending yet, add ourselves */
912 pending_del_slot = path->slots[0];
913 pending_del_nr = 1;
914 } else if (pending_del_nr &&
915 path->slots[0] + 1 == pending_del_slot) {
916 /* hop on the pending chunk */
917 pending_del_nr++;
918 pending_del_slot = path->slots[0];
919 } else {
920 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
921 }
Chris Mason39279cc2007-06-12 06:35:45 -0400922 } else {
923 break;
924 }
Chris Mason39279cc2007-06-12 06:35:45 -0400925 if (found_extent) {
926 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -0500927 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -0500928 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -0500929 root_gen, inode->i_ino,
930 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400931 BUG_ON(ret);
932 }
Chris Mason85e21ba2008-01-29 15:11:36 -0500933next:
934 if (path->slots[0] == 0) {
935 if (pending_del_nr)
936 goto del_pending;
937 btrfs_release_path(root, path);
938 goto search_again;
939 }
940
941 path->slots[0]--;
942 if (pending_del_nr &&
943 path->slots[0] + 1 != pending_del_slot) {
944 struct btrfs_key debug;
945del_pending:
946 btrfs_item_key_to_cpu(path->nodes[0], &debug,
947 pending_del_slot);
948 ret = btrfs_del_items(trans, root, path,
949 pending_del_slot,
950 pending_del_nr);
951 BUG_ON(ret);
952 pending_del_nr = 0;
953 btrfs_release_path(root, path);
954 goto search_again;
955 }
Chris Mason39279cc2007-06-12 06:35:45 -0400956 }
957 ret = 0;
958error:
Chris Mason85e21ba2008-01-29 15:11:36 -0500959 if (pending_del_nr) {
960 ret = btrfs_del_items(trans, root, path, pending_del_slot,
961 pending_del_nr);
962 }
Chris Mason39279cc2007-06-12 06:35:45 -0400963 btrfs_release_path(root, path);
964 btrfs_free_path(path);
965 inode->i_sb->s_dirt = 1;
966 return ret;
967}
968
Chris Masonb888db2b2007-08-27 16:49:44 -0400969static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -0400970 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -0400971{
Chris Mason39279cc2007-06-12 06:35:45 -0400972 char *kaddr;
Chris Masond1310b22008-01-24 16:13:08 -0500973 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400974 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db2b2007-08-27 16:49:44 -0400975 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -0500976 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400977
Chris Mason190662b2007-12-18 16:25:45 -0500978 WARN_ON(!PageLocked(page));
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400979 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400980
Chris Masond1310b22008-01-24 16:13:08 -0500981 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500982 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
Chris Masonb888db2b2007-08-27 16:49:44 -0400983 page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -0500984
Chris Masona52d9a82007-08-27 16:49:44 -0400985 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db2b2007-08-27 16:49:44 -0400986 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400987 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
988 flush_dcache_page(page);
Chris Masonb888db2b2007-08-27 16:49:44 -0400989 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400990 }
Chris Masonb888db2b2007-08-27 16:49:44 -0400991 set_page_dirty(page);
Chris Masond1310b22008-01-24 16:13:08 -0500992 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400993
Chris Masona52d9a82007-08-27 16:49:44 -0400994 return ret;
995}
996
997/*
998 * taken from block_truncate_page, but does cow as it zeros out
999 * any bytes left in the last page in the file.
1000 */
1001static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1002{
1003 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001004 struct btrfs_root *root = BTRFS_I(inode)->root;
1005 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001006 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1007 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1008 struct page *page;
1009 int ret = 0;
1010 u64 page_start;
1011
1012 if ((offset & (blocksize - 1)) == 0)
1013 goto out;
1014
1015 ret = -ENOMEM;
1016 page = grab_cache_page(mapping, index);
1017 if (!page)
1018 goto out;
1019 if (!PageUptodate(page)) {
1020 ret = btrfs_readpage(NULL, page);
1021 lock_page(page);
1022 if (!PageUptodate(page)) {
1023 ret = -EIO;
1024 goto out;
1025 }
1026 }
Chris Mason35ebb932007-10-30 16:56:53 -04001027 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04001028
Chris Masonb888db2b2007-08-27 16:49:44 -04001029 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -04001030
Chris Mason39279cc2007-06-12 06:35:45 -04001031 unlock_page(page);
1032 page_cache_release(page);
1033out:
1034 return ret;
1035}
1036
1037static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1038{
1039 struct inode *inode = dentry->d_inode;
1040 int err;
1041
1042 err = inode_change_ok(inode, attr);
1043 if (err)
1044 return err;
1045
1046 if (S_ISREG(inode->i_mode) &&
1047 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1048 struct btrfs_trans_handle *trans;
1049 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001050 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001051
Chris Mason5f39d392007-10-15 16:14:19 -04001052 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001053 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001054 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001055 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001056 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001057
Chris Mason1b0f7c22008-01-30 14:33:02 -05001058 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001059 goto out;
1060
Chris Mason1832a6d2007-12-21 16:27:21 -05001061 mutex_lock(&root->fs_info->fs_mutex);
1062 err = btrfs_check_free_space(root, 1, 0);
1063 mutex_unlock(&root->fs_info->fs_mutex);
1064 if (err)
1065 goto fail;
1066
Chris Mason39279cc2007-06-12 06:35:45 -04001067 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1068
Chris Mason1b0f7c22008-01-30 14:33:02 -05001069 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason5f564062008-01-22 16:47:59 -05001070 hole_size = block_end - hole_start;
Chris Mason39279cc2007-06-12 06:35:45 -04001071
1072 mutex_lock(&root->fs_info->fs_mutex);
1073 trans = btrfs_start_transaction(root, 1);
1074 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -04001075 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001076 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001077 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001078
Chris Mason179e29e2007-11-01 11:28:41 -04001079 if (alloc_hint != EXTENT_MAP_INLINE) {
1080 err = btrfs_insert_file_extent(trans, root,
1081 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001082 hole_start, 0, 0,
1083 hole_size);
Chris Masond1310b22008-01-24 16:13:08 -05001084 btrfs_drop_extent_cache(inode, hole_start,
1085 hole_size - 1);
Chris Mason5f564062008-01-22 16:47:59 -05001086 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001087 }
Chris Mason39279cc2007-06-12 06:35:45 -04001088 btrfs_end_transaction(trans, root);
1089 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001090 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001091 if (err)
1092 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001093 }
1094out:
1095 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001096fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001097 return err;
1098}
Chris Mason61295eb2008-01-14 16:24:38 -05001099
Chris Mason2da98f02008-01-16 11:44:43 -05001100void btrfs_put_inode(struct inode *inode)
Chris Mason61295eb2008-01-14 16:24:38 -05001101{
Chris Mason2da98f02008-01-16 11:44:43 -05001102 int ret;
1103
1104 if (!BTRFS_I(inode)->ordered_trans) {
Chris Mason61295eb2008-01-14 16:24:38 -05001105 return;
1106 }
Chris Mason2da98f02008-01-16 11:44:43 -05001107
1108 if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_DIRTY) ||
1109 mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1110 return;
1111
1112 ret = btrfs_del_ordered_inode(inode);
1113 if (ret == 1) {
1114 atomic_dec(&inode->i_count);
1115 }
Chris Mason61295eb2008-01-14 16:24:38 -05001116}
1117
Chris Mason39279cc2007-06-12 06:35:45 -04001118void btrfs_delete_inode(struct inode *inode)
1119{
1120 struct btrfs_trans_handle *trans;
1121 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001122 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001123 int ret;
1124
1125 truncate_inode_pages(&inode->i_data, 0);
1126 if (is_bad_inode(inode)) {
1127 goto no_delete;
1128 }
Chris Mason5f39d392007-10-15 16:14:19 -04001129
Chris Mason39279cc2007-06-12 06:35:45 -04001130 inode->i_size = 0;
1131 mutex_lock(&root->fs_info->fs_mutex);
1132 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001133
Chris Mason39279cc2007-06-12 06:35:45 -04001134 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001135 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001136 if (ret)
1137 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001138
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001139 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001140 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001141
Chris Mason39279cc2007-06-12 06:35:45 -04001142 btrfs_end_transaction(trans, root);
1143 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001144 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001145 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001146 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001147
1148no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001149 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001150 btrfs_end_transaction(trans, root);
1151 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001152 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001153 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001154no_delete:
1155 clear_inode(inode);
1156}
1157
1158/*
1159 * this returns the key found in the dir entry in the location pointer.
1160 * If no dir entries were found, location->objectid is 0.
1161 */
1162static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1163 struct btrfs_key *location)
1164{
1165 const char *name = dentry->d_name.name;
1166 int namelen = dentry->d_name.len;
1167 struct btrfs_dir_item *di;
1168 struct btrfs_path *path;
1169 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001170 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001171
Chris Mason39544012007-12-12 14:38:19 -05001172 if (namelen == 1 && strcmp(name, ".") == 0) {
1173 location->objectid = dir->i_ino;
1174 location->type = BTRFS_INODE_ITEM_KEY;
1175 location->offset = 0;
1176 return 0;
1177 }
Chris Mason39279cc2007-06-12 06:35:45 -04001178 path = btrfs_alloc_path();
1179 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001180
Chris Mason7a720532007-12-13 09:06:59 -05001181 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001182 struct btrfs_key key;
1183 struct extent_buffer *leaf;
1184 u32 nritems;
1185 int slot;
1186
1187 key.objectid = dir->i_ino;
1188 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1189 key.offset = 0;
1190 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1191 BUG_ON(ret == 0);
1192 ret = 0;
1193
1194 leaf = path->nodes[0];
1195 slot = path->slots[0];
1196 nritems = btrfs_header_nritems(leaf);
1197 if (slot >= nritems)
1198 goto out_err;
1199
1200 btrfs_item_key_to_cpu(leaf, &key, slot);
1201 if (key.objectid != dir->i_ino ||
1202 key.type != BTRFS_INODE_REF_KEY) {
1203 goto out_err;
1204 }
1205 location->objectid = key.offset;
1206 location->type = BTRFS_INODE_ITEM_KEY;
1207 location->offset = 0;
1208 goto out;
1209 }
1210
Chris Mason39279cc2007-06-12 06:35:45 -04001211 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1212 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001213 if (IS_ERR(di))
1214 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001215 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001216 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001217 }
Chris Mason5f39d392007-10-15 16:14:19 -04001218 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001219out:
Chris Mason39279cc2007-06-12 06:35:45 -04001220 btrfs_free_path(path);
1221 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001222out_err:
1223 location->objectid = 0;
1224 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001225}
1226
1227/*
1228 * when we hit a tree root in a directory, the btrfs part of the inode
1229 * needs to be changed to reflect the root directory of the tree root. This
1230 * is kind of like crossing a mount point.
1231 */
1232static int fixup_tree_root_location(struct btrfs_root *root,
1233 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001234 struct btrfs_root **sub_root,
1235 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001236{
1237 struct btrfs_path *path;
1238 struct btrfs_root_item *ri;
1239
1240 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1241 return 0;
1242 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1243 return 0;
1244
1245 path = btrfs_alloc_path();
1246 BUG_ON(!path);
1247 mutex_lock(&root->fs_info->fs_mutex);
1248
Josef Bacik58176a92007-08-29 15:47:34 -04001249 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1250 dentry->d_name.name,
1251 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001252 if (IS_ERR(*sub_root))
1253 return PTR_ERR(*sub_root);
1254
1255 ri = &(*sub_root)->root_item;
1256 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001257 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1258 location->offset = 0;
1259
1260 btrfs_free_path(path);
1261 mutex_unlock(&root->fs_info->fs_mutex);
1262 return 0;
1263}
1264
1265static int btrfs_init_locked_inode(struct inode *inode, void *p)
1266{
1267 struct btrfs_iget_args *args = p;
1268 inode->i_ino = args->ino;
1269 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001270 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001271 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1272 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db2b2007-08-27 16:49:44 -04001273 inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001274 return 0;
1275}
1276
1277static int btrfs_find_actor(struct inode *inode, void *opaque)
1278{
1279 struct btrfs_iget_args *args = opaque;
1280 return (args->ino == inode->i_ino &&
1281 args->root == BTRFS_I(inode)->root);
1282}
1283
Chris Masondc17ff82008-01-08 15:46:30 -05001284struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1285 u64 root_objectid)
1286{
1287 struct btrfs_iget_args args;
1288 args.ino = objectid;
1289 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1290
1291 if (!args.root)
1292 return NULL;
1293
1294 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1295}
1296
Chris Mason39279cc2007-06-12 06:35:45 -04001297struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1298 struct btrfs_root *root)
1299{
1300 struct inode *inode;
1301 struct btrfs_iget_args args;
1302 args.ino = objectid;
1303 args.root = root;
1304
1305 inode = iget5_locked(s, objectid, btrfs_find_actor,
1306 btrfs_init_locked_inode,
1307 (void *)&args);
1308 return inode;
1309}
1310
1311static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1312 struct nameidata *nd)
1313{
1314 struct inode * inode;
1315 struct btrfs_inode *bi = BTRFS_I(dir);
1316 struct btrfs_root *root = bi->root;
1317 struct btrfs_root *sub_root = root;
1318 struct btrfs_key location;
1319 int ret;
1320
1321 if (dentry->d_name.len > BTRFS_NAME_LEN)
1322 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001323
Chris Mason39279cc2007-06-12 06:35:45 -04001324 mutex_lock(&root->fs_info->fs_mutex);
1325 ret = btrfs_inode_by_name(dir, dentry, &location);
1326 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001327
Chris Mason39279cc2007-06-12 06:35:45 -04001328 if (ret < 0)
1329 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001330
Chris Mason39279cc2007-06-12 06:35:45 -04001331 inode = NULL;
1332 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001333 ret = fixup_tree_root_location(root, &location, &sub_root,
1334 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001335 if (ret < 0)
1336 return ERR_PTR(ret);
1337 if (ret > 0)
1338 return ERR_PTR(-ENOENT);
1339 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1340 sub_root);
1341 if (!inode)
1342 return ERR_PTR(-EACCES);
1343 if (inode->i_state & I_NEW) {
1344 /* the inode and parent dir are two different roots */
1345 if (sub_root != root) {
1346 igrab(inode);
1347 sub_root->inode = inode;
1348 }
1349 BTRFS_I(inode)->root = sub_root;
1350 memcpy(&BTRFS_I(inode)->location, &location,
1351 sizeof(location));
1352 btrfs_read_locked_inode(inode);
1353 unlock_new_inode(inode);
1354 }
1355 }
1356 return d_splice_alias(inode, dentry);
1357}
1358
Chris Mason39279cc2007-06-12 06:35:45 -04001359static unsigned char btrfs_filetype_table[] = {
1360 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1361};
1362
1363static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1364{
Chris Mason6da6aba2007-12-18 16:15:09 -05001365 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001366 struct btrfs_root *root = BTRFS_I(inode)->root;
1367 struct btrfs_item *item;
1368 struct btrfs_dir_item *di;
1369 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001370 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001371 struct btrfs_path *path;
1372 int ret;
1373 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001374 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001375 int slot;
1376 int advance;
1377 unsigned char d_type;
1378 int over = 0;
1379 u32 di_cur;
1380 u32 di_total;
1381 u32 di_len;
1382 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001383 char tmp_name[32];
1384 char *name_ptr;
1385 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001386
1387 /* FIXME, use a real flag for deciding about the key type */
1388 if (root->fs_info->tree_root == root)
1389 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001390
Chris Mason39544012007-12-12 14:38:19 -05001391 /* special case for "." */
1392 if (filp->f_pos == 0) {
1393 over = filldir(dirent, ".", 1,
1394 1, inode->i_ino,
1395 DT_DIR);
1396 if (over)
1397 return 0;
1398 filp->f_pos = 1;
1399 }
1400
Chris Mason39279cc2007-06-12 06:35:45 -04001401 mutex_lock(&root->fs_info->fs_mutex);
1402 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001403 path = btrfs_alloc_path();
1404 path->reada = 2;
1405
1406 /* special case for .., just use the back ref */
1407 if (filp->f_pos == 1) {
1408 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1409 key.offset = 0;
1410 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1411 BUG_ON(ret == 0);
1412 leaf = path->nodes[0];
1413 slot = path->slots[0];
1414 nritems = btrfs_header_nritems(leaf);
1415 if (slot >= nritems) {
1416 btrfs_release_path(root, path);
1417 goto read_dir_items;
1418 }
1419 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1420 btrfs_release_path(root, path);
1421 if (found_key.objectid != key.objectid ||
1422 found_key.type != BTRFS_INODE_REF_KEY)
1423 goto read_dir_items;
1424 over = filldir(dirent, "..", 2,
1425 2, found_key.offset, DT_DIR);
1426 if (over)
1427 goto nopos;
1428 filp->f_pos = 2;
1429 }
1430
1431read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001432 btrfs_set_key_type(&key, key_type);
1433 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001434
Chris Mason39279cc2007-06-12 06:35:45 -04001435 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1436 if (ret < 0)
1437 goto err;
1438 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001439 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001440 leaf = path->nodes[0];
1441 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001442 slot = path->slots[0];
1443 if (advance || slot >= nritems) {
1444 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001445 ret = btrfs_next_leaf(root, path);
1446 if (ret)
1447 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001448 leaf = path->nodes[0];
1449 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001450 slot = path->slots[0];
1451 } else {
1452 slot++;
1453 path->slots[0]++;
1454 }
1455 }
1456 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001457 item = btrfs_item_nr(leaf, slot);
1458 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1459
1460 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001461 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001462 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001463 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001464 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001465 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001466
1467 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001468 advance = 1;
1469 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1470 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001471 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001472 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001473 struct btrfs_key location;
1474
1475 name_len = btrfs_dir_name_len(leaf, di);
1476 if (name_len < 32) {
1477 name_ptr = tmp_name;
1478 } else {
1479 name_ptr = kmalloc(name_len, GFP_NOFS);
1480 BUG_ON(!name_ptr);
1481 }
1482 read_extent_buffer(leaf, name_ptr,
1483 (unsigned long)(di + 1), name_len);
1484
1485 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1486 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001487 over = filldir(dirent, name_ptr, name_len,
1488 found_key.offset,
1489 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001490 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001491
1492 if (name_ptr != tmp_name)
1493 kfree(name_ptr);
1494
Chris Mason39279cc2007-06-12 06:35:45 -04001495 if (over)
1496 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001497 di_len = btrfs_dir_name_len(leaf, di) +
1498 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001499 di_cur += di_len;
1500 di = (struct btrfs_dir_item *)((char *)di + di_len);
1501 }
1502 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001503 if (key_type == BTRFS_DIR_INDEX_KEY)
1504 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1505 else
1506 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001507nopos:
1508 ret = 0;
1509err:
1510 btrfs_release_path(root, path);
1511 btrfs_free_path(path);
1512 mutex_unlock(&root->fs_info->fs_mutex);
1513 return ret;
1514}
1515
1516int btrfs_write_inode(struct inode *inode, int wait)
1517{
1518 struct btrfs_root *root = BTRFS_I(inode)->root;
1519 struct btrfs_trans_handle *trans;
1520 int ret = 0;
1521
1522 if (wait) {
1523 mutex_lock(&root->fs_info->fs_mutex);
1524 trans = btrfs_start_transaction(root, 1);
1525 btrfs_set_trans_block_group(trans, inode);
1526 ret = btrfs_commit_transaction(trans, root);
1527 mutex_unlock(&root->fs_info->fs_mutex);
1528 }
1529 return ret;
1530}
1531
1532/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001533 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001534 * inode changes. But, it is most likely to find the inode in cache.
1535 * FIXME, needs more benchmarking...there are no reasons other than performance
1536 * to keep or drop this code.
1537 */
1538void btrfs_dirty_inode(struct inode *inode)
1539{
1540 struct btrfs_root *root = BTRFS_I(inode)->root;
1541 struct btrfs_trans_handle *trans;
1542
1543 mutex_lock(&root->fs_info->fs_mutex);
1544 trans = btrfs_start_transaction(root, 1);
1545 btrfs_set_trans_block_group(trans, inode);
1546 btrfs_update_inode(trans, root, inode);
1547 btrfs_end_transaction(trans, root);
1548 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001549}
1550
1551static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1552 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001553 const char *name, int name_len,
1554 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001555 u64 objectid,
1556 struct btrfs_block_group_cache *group,
1557 int mode)
1558{
1559 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001560 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04001561 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04001562 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001563 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001564 struct btrfs_inode_ref *ref;
1565 struct btrfs_key key[2];
1566 u32 sizes[2];
1567 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001568 int ret;
1569 int owner;
1570
Chris Mason5f39d392007-10-15 16:14:19 -04001571 path = btrfs_alloc_path();
1572 BUG_ON(!path);
1573
Chris Mason39279cc2007-06-12 06:35:45 -04001574 inode = new_inode(root->fs_info->sb);
1575 if (!inode)
1576 return ERR_PTR(-ENOMEM);
1577
Chris Masond1310b22008-01-24 16:13:08 -05001578 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1579 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db2b2007-08-27 16:49:44 -04001580 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001581 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001582 BTRFS_I(inode)->root = root;
Chris Masonb888db2b2007-08-27 16:49:44 -04001583
Chris Mason39279cc2007-06-12 06:35:45 -04001584 if (mode & S_IFDIR)
1585 owner = 0;
1586 else
1587 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04001588 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001589 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04001590 if (!new_inode_group) {
1591 printk("find_block group failed\n");
1592 new_inode_group = group;
1593 }
1594 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05001595 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001596
1597 key[0].objectid = objectid;
1598 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1599 key[0].offset = 0;
1600
1601 key[1].objectid = objectid;
1602 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1603 key[1].offset = ref_objectid;
1604
1605 sizes[0] = sizeof(struct btrfs_inode_item);
1606 sizes[1] = name_len + sizeof(*ref);
1607
1608 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1609 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001610 goto fail;
1611
Chris Mason9c583092008-01-29 15:15:18 -05001612 if (objectid > root->highest_inode)
1613 root->highest_inode = objectid;
1614
Chris Mason39279cc2007-06-12 06:35:45 -04001615 inode->i_uid = current->fsuid;
1616 inode->i_gid = current->fsgid;
1617 inode->i_mode = mode;
1618 inode->i_ino = objectid;
1619 inode->i_blocks = 0;
1620 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001621 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1622 struct btrfs_inode_item);
1623 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001624
1625 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1626 struct btrfs_inode_ref);
1627 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1628 ptr = (unsigned long)(ref + 1);
1629 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1630
Chris Mason5f39d392007-10-15 16:14:19 -04001631 btrfs_mark_buffer_dirty(path->nodes[0]);
1632 btrfs_free_path(path);
1633
Chris Mason39279cc2007-06-12 06:35:45 -04001634 location = &BTRFS_I(inode)->location;
1635 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001636 location->offset = 0;
1637 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1638
Chris Mason39279cc2007-06-12 06:35:45 -04001639 insert_inode_hash(inode);
1640 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001641fail:
1642 btrfs_free_path(path);
1643 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001644}
1645
1646static inline u8 btrfs_inode_type(struct inode *inode)
1647{
1648 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1649}
1650
1651static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001652 struct dentry *dentry, struct inode *inode,
1653 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001654{
1655 int ret;
1656 struct btrfs_key key;
1657 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001658 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001659
Chris Mason39279cc2007-06-12 06:35:45 -04001660 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001661 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1662 key.offset = 0;
1663
1664 ret = btrfs_insert_dir_item(trans, root,
1665 dentry->d_name.name, dentry->d_name.len,
1666 dentry->d_parent->d_inode->i_ino,
1667 &key, btrfs_inode_type(inode));
1668 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05001669 if (add_backref) {
1670 ret = btrfs_insert_inode_ref(trans, root,
1671 dentry->d_name.name,
1672 dentry->d_name.len,
1673 inode->i_ino,
1674 dentry->d_parent->d_inode->i_ino);
1675 }
Chris Mason79c44582007-06-25 10:09:33 -04001676 parent_inode = dentry->d_parent->d_inode;
1677 parent_inode->i_size += dentry->d_name.len * 2;
1678 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001679 ret = btrfs_update_inode(trans, root,
1680 dentry->d_parent->d_inode);
1681 }
1682 return ret;
1683}
1684
1685static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001686 struct dentry *dentry, struct inode *inode,
1687 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001688{
Chris Mason9c583092008-01-29 15:15:18 -05001689 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04001690 if (!err) {
1691 d_instantiate(dentry, inode);
1692 return 0;
1693 }
1694 if (err > 0)
1695 err = -EEXIST;
1696 return err;
1697}
1698
Josef Bacik618e21d2007-07-11 10:18:17 -04001699static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1700 int mode, dev_t rdev)
1701{
1702 struct btrfs_trans_handle *trans;
1703 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001704 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04001705 int err;
1706 int drop_inode = 0;
1707 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05001708 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04001709
1710 if (!new_valid_dev(rdev))
1711 return -EINVAL;
1712
1713 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001714 err = btrfs_check_free_space(root, 1, 0);
1715 if (err)
1716 goto fail;
1717
Josef Bacik618e21d2007-07-11 10:18:17 -04001718 trans = btrfs_start_transaction(root, 1);
1719 btrfs_set_trans_block_group(trans, dir);
1720
1721 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1722 if (err) {
1723 err = -ENOSPC;
1724 goto out_unlock;
1725 }
1726
Chris Mason9c583092008-01-29 15:15:18 -05001727 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1728 dentry->d_name.len,
1729 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04001730 BTRFS_I(dir)->block_group, mode);
1731 err = PTR_ERR(inode);
1732 if (IS_ERR(inode))
1733 goto out_unlock;
1734
1735 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001736 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04001737 if (err)
1738 drop_inode = 1;
1739 else {
1740 inode->i_op = &btrfs_special_inode_operations;
1741 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001742 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001743 }
1744 dir->i_sb->s_dirt = 1;
1745 btrfs_update_inode_block_group(trans, inode);
1746 btrfs_update_inode_block_group(trans, dir);
1747out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001748 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001749 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001750fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04001751 mutex_unlock(&root->fs_info->fs_mutex);
1752
1753 if (drop_inode) {
1754 inode_dec_link_count(inode);
1755 iput(inode);
1756 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001757 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001758 btrfs_throttle(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04001759 return err;
1760}
1761
Chris Mason39279cc2007-06-12 06:35:45 -04001762static int btrfs_create(struct inode *dir, struct dentry *dentry,
1763 int mode, struct nameidata *nd)
1764{
1765 struct btrfs_trans_handle *trans;
1766 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001767 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001768 int err;
1769 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05001770 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001771 u64 objectid;
1772
1773 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001774 err = btrfs_check_free_space(root, 1, 0);
1775 if (err)
1776 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001777 trans = btrfs_start_transaction(root, 1);
1778 btrfs_set_trans_block_group(trans, dir);
1779
1780 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1781 if (err) {
1782 err = -ENOSPC;
1783 goto out_unlock;
1784 }
1785
Chris Mason9c583092008-01-29 15:15:18 -05001786 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1787 dentry->d_name.len,
1788 dentry->d_parent->d_inode->i_ino,
1789 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04001790 err = PTR_ERR(inode);
1791 if (IS_ERR(inode))
1792 goto out_unlock;
1793
1794 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001795 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001796 if (err)
1797 drop_inode = 1;
1798 else {
1799 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001800 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001801 inode->i_fop = &btrfs_file_operations;
1802 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05001803 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1804 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04001805 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001806 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001807 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001808 }
1809 dir->i_sb->s_dirt = 1;
1810 btrfs_update_inode_block_group(trans, inode);
1811 btrfs_update_inode_block_group(trans, dir);
1812out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001813 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001814 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001815fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001816 mutex_unlock(&root->fs_info->fs_mutex);
1817
1818 if (drop_inode) {
1819 inode_dec_link_count(inode);
1820 iput(inode);
1821 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001822 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001823 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001824 return err;
1825}
1826
1827static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1828 struct dentry *dentry)
1829{
1830 struct btrfs_trans_handle *trans;
1831 struct btrfs_root *root = BTRFS_I(dir)->root;
1832 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001833 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001834 int err;
1835 int drop_inode = 0;
1836
1837 if (inode->i_nlink == 0)
1838 return -ENOENT;
1839
Chris Mason6da6aba2007-12-18 16:15:09 -05001840#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1841 inode->i_nlink++;
1842#else
Chris Mason39279cc2007-06-12 06:35:45 -04001843 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001844#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001845 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001846 err = btrfs_check_free_space(root, 1, 0);
1847 if (err)
1848 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001849 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001850
Chris Mason39279cc2007-06-12 06:35:45 -04001851 btrfs_set_trans_block_group(trans, dir);
1852 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05001853 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001854
Chris Mason39279cc2007-06-12 06:35:45 -04001855 if (err)
1856 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001857
Chris Mason39279cc2007-06-12 06:35:45 -04001858 dir->i_sb->s_dirt = 1;
1859 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04001860 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001861
Chris Mason54aa1f42007-06-22 14:16:25 -04001862 if (err)
1863 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001864
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001865 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001866 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001867fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001868 mutex_unlock(&root->fs_info->fs_mutex);
1869
1870 if (drop_inode) {
1871 inode_dec_link_count(inode);
1872 iput(inode);
1873 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001874 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001875 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001876 return err;
1877}
1878
Chris Mason39279cc2007-06-12 06:35:45 -04001879static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1880{
1881 struct inode *inode;
1882 struct btrfs_trans_handle *trans;
1883 struct btrfs_root *root = BTRFS_I(dir)->root;
1884 int err = 0;
1885 int drop_on_err = 0;
1886 u64 objectid;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001887 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001888
1889 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001890 err = btrfs_check_free_space(root, 1, 0);
1891 if (err)
1892 goto out_unlock;
1893
Chris Mason39279cc2007-06-12 06:35:45 -04001894 trans = btrfs_start_transaction(root, 1);
1895 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04001896
Chris Mason39279cc2007-06-12 06:35:45 -04001897 if (IS_ERR(trans)) {
1898 err = PTR_ERR(trans);
1899 goto out_unlock;
1900 }
1901
1902 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1903 if (err) {
1904 err = -ENOSPC;
1905 goto out_unlock;
1906 }
1907
Chris Mason9c583092008-01-29 15:15:18 -05001908 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1909 dentry->d_name.len,
1910 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001911 BTRFS_I(dir)->block_group, S_IFDIR | mode);
1912 if (IS_ERR(inode)) {
1913 err = PTR_ERR(inode);
1914 goto out_fail;
1915 }
Chris Mason5f39d392007-10-15 16:14:19 -04001916
Chris Mason39279cc2007-06-12 06:35:45 -04001917 drop_on_err = 1;
1918 inode->i_op = &btrfs_dir_inode_operations;
1919 inode->i_fop = &btrfs_dir_file_operations;
1920 btrfs_set_trans_block_group(trans, inode);
1921
Chris Mason39544012007-12-12 14:38:19 -05001922 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001923 err = btrfs_update_inode(trans, root, inode);
1924 if (err)
1925 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001926
Chris Mason9c583092008-01-29 15:15:18 -05001927 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001928 if (err)
1929 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001930
Chris Mason39279cc2007-06-12 06:35:45 -04001931 d_instantiate(dentry, inode);
1932 drop_on_err = 0;
1933 dir->i_sb->s_dirt = 1;
1934 btrfs_update_inode_block_group(trans, inode);
1935 btrfs_update_inode_block_group(trans, dir);
1936
1937out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001938 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001939 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04001940
Chris Mason39279cc2007-06-12 06:35:45 -04001941out_unlock:
1942 mutex_unlock(&root->fs_info->fs_mutex);
1943 if (drop_on_err)
1944 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001945 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001946 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001947 return err;
1948}
1949
Chris Masona52d9a82007-08-27 16:49:44 -04001950struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05001951 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04001952 int create)
1953{
1954 int ret;
1955 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04001956 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04001957 u64 extent_start = 0;
1958 u64 extent_end = 0;
1959 u64 objectid = inode->i_ino;
1960 u32 found_type;
Chris Masona52d9a82007-08-27 16:49:44 -04001961 struct btrfs_path *path;
1962 struct btrfs_root *root = BTRFS_I(inode)->root;
1963 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04001964 struct extent_buffer *leaf;
1965 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04001966 struct extent_map *em = NULL;
1967 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05001968 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04001969 struct btrfs_trans_handle *trans = NULL;
1970
1971 path = btrfs_alloc_path();
1972 BUG_ON(!path);
1973 mutex_lock(&root->fs_info->fs_mutex);
1974
1975again:
Chris Masond1310b22008-01-24 16:13:08 -05001976 spin_lock(&em_tree->lock);
1977 em = lookup_extent_mapping(em_tree, start, len);
1978 spin_unlock(&em_tree->lock);
1979
Chris Masona52d9a82007-08-27 16:49:44 -04001980 if (em) {
Chris Mason56b453c2008-01-03 09:08:27 -05001981 if (em->start > start) {
Chris Masond1310b22008-01-24 16:13:08 -05001982 printk("get_extent lookup [%Lu %Lu] em [%Lu %Lu]\n",
1983 start, len, em->start, em->len);
Chris Mason56b453c2008-01-03 09:08:27 -05001984 WARN_ON(1);
1985 }
Chris Mason70dec802008-01-29 09:59:12 -05001986 if (em->block_start == EXTENT_MAP_INLINE && page)
1987 free_extent_map(em);
1988 else
1989 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04001990 }
Chris Masond1310b22008-01-24 16:13:08 -05001991 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001992 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05001993 err = -ENOMEM;
1994 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04001995 }
Chris Masond1310b22008-01-24 16:13:08 -05001996
1997 em->start = EXTENT_MAP_HOLE;
1998 em->len = (u64)-1;
Chris Masona52d9a82007-08-27 16:49:44 -04001999 em->bdev = inode->i_sb->s_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04002000 ret = btrfs_lookup_file_extent(trans, root, path,
2001 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002002 if (ret < 0) {
2003 err = ret;
2004 goto out;
2005 }
2006
2007 if (ret != 0) {
2008 if (path->slots[0] == 0)
2009 goto not_found;
2010 path->slots[0]--;
2011 }
2012
Chris Mason5f39d392007-10-15 16:14:19 -04002013 leaf = path->nodes[0];
2014 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002015 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002016 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002017 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2018 found_type = btrfs_key_type(&found_key);
2019 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002020 found_type != BTRFS_EXTENT_DATA_KEY) {
2021 goto not_found;
2022 }
2023
Chris Mason5f39d392007-10-15 16:14:19 -04002024 found_type = btrfs_file_extent_type(leaf, item);
2025 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002026 if (found_type == BTRFS_FILE_EXTENT_REG) {
2027 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002028 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002029 err = 0;
Chris Masonb888db2b2007-08-27 16:49:44 -04002030 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002031 em->start = start;
2032 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002033 if (start + len <= extent_start)
Chris Masonb888db2b2007-08-27 16:49:44 -04002034 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002035 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002036 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002037 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002038 }
2039 goto not_found_em;
2040 }
Chris Masondb945352007-10-15 16:15:53 -04002041 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2042 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002043 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002044 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002045 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002046 goto insert;
2047 }
Chris Masondb945352007-10-15 16:15:53 -04002048 bytenr += btrfs_file_extent_offset(leaf, item);
2049 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002050 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002051 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002052 goto insert;
2053 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002054 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002055 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002056 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002057 size_t size;
2058 size_t extent_offset;
2059 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002060
Chris Mason5f39d392007-10-15 16:14:19 -04002061 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2062 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002063 extent_end = (extent_start + size + root->sectorsize - 1) &
2064 ~((u64)root->sectorsize - 1);
Chris Masonb888db2b2007-08-27 16:49:44 -04002065 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002066 em->start = start;
2067 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002068 if (start + len <= extent_start)
Chris Masonb888db2b2007-08-27 16:49:44 -04002069 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002070 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002071 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002072 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002073 }
2074 goto not_found_em;
2075 }
2076 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002077
2078 if (!page) {
2079 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002080 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002081 goto out;
2082 }
2083
Chris Mason70dec802008-01-29 09:59:12 -05002084 page_start = page_offset(page) + pg_offset;
2085 extent_offset = page_start - extent_start;
2086 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002087 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002088 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002089 em->len = (copy_size + root->sectorsize - 1) &
2090 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002091 map = kmap(page);
2092 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002093 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002094 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002095 copy_size);
2096 flush_dcache_page(page);
2097 } else if (create && PageUptodate(page)) {
2098 if (!trans) {
2099 kunmap(page);
2100 free_extent_map(em);
2101 em = NULL;
2102 btrfs_release_path(root, path);
2103 trans = btrfs_start_transaction(root, 1);
2104 goto again;
2105 }
Chris Mason70dec802008-01-29 09:59:12 -05002106 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002107 copy_size);
2108 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002109 }
Chris Masona52d9a82007-08-27 16:49:44 -04002110 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002111 set_extent_uptodate(io_tree, em->start,
2112 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002113 goto insert;
2114 } else {
2115 printk("unkknown found_type %d\n", found_type);
2116 WARN_ON(1);
2117 }
2118not_found:
2119 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002120 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002121not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002122 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002123insert:
2124 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002125 if (em->start > start || extent_map_end(em) <= start) {
2126 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002127 err = -EIO;
2128 goto out;
2129 }
Chris Masond1310b22008-01-24 16:13:08 -05002130
2131 err = 0;
2132 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002133 ret = add_extent_mapping(em_tree, em);
2134 if (ret == -EEXIST) {
2135 free_extent_map(em);
Chris Masond1310b22008-01-24 16:13:08 -05002136 em = lookup_extent_mapping(em_tree, start, len);
2137 if (!em) {
Chris Masona52d9a82007-08-27 16:49:44 -04002138 err = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05002139 printk("failing to insert %Lu %Lu\n", start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002140 }
Chris Masona52d9a82007-08-27 16:49:44 -04002141 }
Chris Masond1310b22008-01-24 16:13:08 -05002142 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002143out:
2144 btrfs_free_path(path);
2145 if (trans) {
2146 ret = btrfs_end_transaction(trans, root);
2147 if (!err)
2148 err = ret;
2149 }
2150 mutex_unlock(&root->fs_info->fs_mutex);
2151 if (err) {
2152 free_extent_map(em);
2153 WARN_ON(1);
2154 return ERR_PTR(err);
2155 }
2156 return em;
2157}
2158
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002159static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002160{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002161 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002162}
2163
Chris Mason9ebefb182007-06-15 13:50:00 -04002164int btrfs_readpage(struct file *file, struct page *page)
2165{
Chris Masond1310b22008-01-24 16:13:08 -05002166 struct extent_io_tree *tree;
2167 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002168 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002169}
Chris Mason1832a6d2007-12-21 16:27:21 -05002170
Chris Mason39279cc2007-06-12 06:35:45 -04002171static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2172{
Chris Masond1310b22008-01-24 16:13:08 -05002173 struct extent_io_tree *tree;
Chris Masonb888db2b2007-08-27 16:49:44 -04002174
2175
2176 if (current->flags & PF_MEMALLOC) {
2177 redirty_page_for_writepage(wbc, page);
2178 unlock_page(page);
2179 return 0;
2180 }
Chris Masond1310b22008-01-24 16:13:08 -05002181 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002182 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2183}
Chris Mason39279cc2007-06-12 06:35:45 -04002184
Chris Masonb293f02e2007-11-01 19:45:34 -04002185static int btrfs_writepages(struct address_space *mapping,
2186 struct writeback_control *wbc)
2187{
Chris Masond1310b22008-01-24 16:13:08 -05002188 struct extent_io_tree *tree;
2189 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04002190 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2191}
2192
Chris Mason3ab2fb52007-11-08 10:59:22 -05002193static int
2194btrfs_readpages(struct file *file, struct address_space *mapping,
2195 struct list_head *pages, unsigned nr_pages)
2196{
Chris Masond1310b22008-01-24 16:13:08 -05002197 struct extent_io_tree *tree;
2198 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002199 return extent_readpages(tree, mapping, pages, nr_pages,
2200 btrfs_get_extent);
2201}
2202
Chris Mason70dec802008-01-29 09:59:12 -05002203static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002204{
Chris Masond1310b22008-01-24 16:13:08 -05002205 struct extent_io_tree *tree;
2206 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002207 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002208
Chris Masond1310b22008-01-24 16:13:08 -05002209 tree = &BTRFS_I(page->mapping->host)->io_tree;
2210 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002211 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002212 if (ret == 1) {
2213 ClearPagePrivate(page);
2214 set_page_private(page, 0);
2215 page_cache_release(page);
2216 }
2217 return ret;
2218}
Chris Mason39279cc2007-06-12 06:35:45 -04002219
Chris Masona52d9a82007-08-27 16:49:44 -04002220static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2221{
Chris Masond1310b22008-01-24 16:13:08 -05002222 struct extent_io_tree *tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002223
Chris Masond1310b22008-01-24 16:13:08 -05002224 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002225 extent_invalidatepage(tree, page, offset);
2226 btrfs_releasepage(page, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002227}
2228
Chris Mason9ebefb182007-06-15 13:50:00 -04002229/*
2230 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2231 * called from a page fault handler when a page is first dirtied. Hence we must
2232 * be careful to check for EOF conditions here. We set the page up correctly
2233 * for a written page which means we get ENOSPC checking when writing into
2234 * holes and correct delalloc and unwritten extent mapping on filesystems that
2235 * support these features.
2236 *
2237 * We are not allowed to take the i_mutex here so we have to play games to
2238 * protect against truncate races as the page could now be beyond EOF. Because
2239 * vmtruncate() writes the inode size before removing pages, once we have the
2240 * page lock we can determine safely if the page is beyond EOF. If it is not
2241 * beyond EOF, then the page is guaranteed safe against truncation until we
2242 * unlock the page.
2243 */
2244int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2245{
Chris Mason6da6aba2007-12-18 16:15:09 -05002246 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002247 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9ebefb182007-06-15 13:50:00 -04002248 unsigned long end;
2249 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002250 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002251 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002252
Chris Mason1832a6d2007-12-21 16:27:21 -05002253 mutex_lock(&root->fs_info->fs_mutex);
2254 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason8f662a72008-01-02 10:01:11 -05002255 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002256 if (ret)
2257 goto out;
2258
2259 ret = -EINVAL;
2260
Chris Mason9ebefb182007-06-15 13:50:00 -04002261 lock_page(page);
2262 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002263 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04002264 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04002265
Chris Mason9ebefb182007-06-15 13:50:00 -04002266 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04002267 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002268 /* page got truncated out from underneath us */
2269 goto out_unlock;
2270 }
2271
2272 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002273 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04002274 end = size & ~PAGE_CACHE_MASK;
2275 else
2276 end = PAGE_CACHE_SIZE;
2277
Chris Masonb888db2b2007-08-27 16:49:44 -04002278 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04002279
2280out_unlock:
2281 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002282out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002283 return ret;
2284}
2285
Chris Mason39279cc2007-06-12 06:35:45 -04002286static void btrfs_truncate(struct inode *inode)
2287{
2288 struct btrfs_root *root = BTRFS_I(inode)->root;
2289 int ret;
2290 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002291 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002292
2293 if (!S_ISREG(inode->i_mode))
2294 return;
2295 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2296 return;
2297
2298 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2299
2300 mutex_lock(&root->fs_info->fs_mutex);
2301 trans = btrfs_start_transaction(root, 1);
2302 btrfs_set_trans_block_group(trans, inode);
2303
2304 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002305 ret = btrfs_truncate_in_trans(trans, root, inode,
2306 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002307 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002308 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002309
Chris Mason39279cc2007-06-12 06:35:45 -04002310 ret = btrfs_end_transaction(trans, root);
2311 BUG_ON(ret);
2312 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002313 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002314 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002315}
2316
Chris Mason4313b392008-01-03 09:08:48 -05002317static int noinline create_subvol(struct btrfs_root *root, char *name,
2318 int namelen)
Chris Mason39279cc2007-06-12 06:35:45 -04002319{
2320 struct btrfs_trans_handle *trans;
2321 struct btrfs_key key;
2322 struct btrfs_root_item root_item;
2323 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002324 struct extent_buffer *leaf;
Chris Masondc17ff82008-01-08 15:46:30 -05002325 struct btrfs_root *new_root = root;
Chris Mason39279cc2007-06-12 06:35:45 -04002326 struct inode *inode;
2327 struct inode *dir;
2328 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002329 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002330 u64 objectid;
2331 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002332 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002333
2334 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002335 ret = btrfs_check_free_space(root, 1, 0);
2336 if (ret)
2337 goto fail_commit;
2338
Chris Mason39279cc2007-06-12 06:35:45 -04002339 trans = btrfs_start_transaction(root, 1);
2340 BUG_ON(!trans);
2341
Chris Mason7bb86312007-12-11 09:25:06 -05002342 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2343 0, &objectid);
2344 if (ret)
2345 goto fail;
2346
2347 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2348 objectid, trans->transid, 0, 0,
2349 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002350 if (IS_ERR(leaf))
2351 return PTR_ERR(leaf);
2352
2353 btrfs_set_header_nritems(leaf, 0);
2354 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04002355 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002356 btrfs_set_header_generation(leaf, trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002357 btrfs_set_header_owner(leaf, objectid);
2358
Chris Mason5f39d392007-10-15 16:14:19 -04002359 write_extent_buffer(leaf, root->fs_info->fsid,
2360 (unsigned long)btrfs_header_fsid(leaf),
2361 BTRFS_FSID_SIZE);
2362 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002363
2364 inode_item = &root_item.inode;
2365 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002366 inode_item->generation = cpu_to_le64(1);
2367 inode_item->size = cpu_to_le64(3);
2368 inode_item->nlink = cpu_to_le32(1);
2369 inode_item->nblocks = cpu_to_le64(1);
2370 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04002371
Chris Masondb945352007-10-15 16:15:53 -04002372 btrfs_set_root_bytenr(&root_item, leaf->start);
2373 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002374 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002375 btrfs_set_root_used(&root_item, 0);
2376
Chris Mason5eda7b52007-06-22 14:16:25 -04002377 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2378 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002379
2380 free_extent_buffer(leaf);
2381 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002382
Chris Mason39279cc2007-06-12 06:35:45 -04002383 btrfs_set_root_dirid(&root_item, new_dirid);
2384
2385 key.objectid = objectid;
2386 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002387 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2388 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2389 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002390 if (ret)
2391 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002392
2393 /*
2394 * insert the directory item
2395 */
2396 key.offset = (u64)-1;
2397 dir = root->fs_info->sb->s_root->d_inode;
2398 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2399 name, namelen, dir->i_ino, &key,
2400 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04002401 if (ret)
2402 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002403
Chris Mason39544012007-12-12 14:38:19 -05002404 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2405 name, namelen, objectid,
2406 root->fs_info->sb->s_root->d_inode->i_ino);
2407 if (ret)
2408 goto fail;
2409
Chris Mason39279cc2007-06-12 06:35:45 -04002410 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002411 if (ret)
2412 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04002413
Josef Bacik58176a92007-08-29 15:47:34 -04002414 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04002415 BUG_ON(!new_root);
2416
2417 trans = btrfs_start_transaction(new_root, 1);
2418 BUG_ON(!trans);
2419
Chris Mason9c583092008-01-29 15:15:18 -05002420 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
2421 new_dirid,
Chris Mason39279cc2007-06-12 06:35:45 -04002422 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002423 if (IS_ERR(inode))
2424 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002425 inode->i_op = &btrfs_dir_inode_operations;
2426 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002427 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002428
Chris Mason39544012007-12-12 14:38:19 -05002429 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2430 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002431 inode->i_nlink = 1;
Chris Mason39544012007-12-12 14:38:19 -05002432 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002433 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002434 if (ret)
2435 goto fail;
2436fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002437 nr = trans->blocks_used;
Chris Masondc17ff82008-01-08 15:46:30 -05002438 err = btrfs_commit_transaction(trans, new_root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002439 if (err && !ret)
2440 ret = err;
2441fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04002442 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002443 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002444 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002445 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002446}
2447
2448static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2449{
Chris Mason3063d292008-01-08 15:46:30 -05002450 struct btrfs_pending_snapshot *pending_snapshot;
Chris Mason39279cc2007-06-12 06:35:45 -04002451 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04002452 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002453 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05002454 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002455
2456 if (!root->ref_cows)
2457 return -EINVAL;
2458
2459 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002460 ret = btrfs_check_free_space(root, 1, 0);
2461 if (ret)
2462 goto fail_unlock;
2463
Chris Mason3063d292008-01-08 15:46:30 -05002464 pending_snapshot = kmalloc(sizeof(*pending_snapshot), GFP_NOFS);
2465 if (!pending_snapshot) {
2466 ret = -ENOMEM;
2467 goto fail_unlock;
2468 }
Yanfb4bc1e2008-01-17 11:59:51 -05002469 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
Chris Mason3063d292008-01-08 15:46:30 -05002470 if (!pending_snapshot->name) {
2471 ret = -ENOMEM;
2472 kfree(pending_snapshot);
2473 goto fail_unlock;
2474 }
Yanfb4bc1e2008-01-17 11:59:51 -05002475 memcpy(pending_snapshot->name, name, namelen);
2476 pending_snapshot->name[namelen] = '\0';
Chris Mason39279cc2007-06-12 06:35:45 -04002477 trans = btrfs_start_transaction(root, 1);
2478 BUG_ON(!trans);
Chris Mason3063d292008-01-08 15:46:30 -05002479 pending_snapshot->root = root;
2480 list_add(&pending_snapshot->list,
2481 &trans->transaction->pending_snapshots);
Chris Mason39279cc2007-06-12 06:35:45 -04002482 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002483 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002484
Chris Mason1832a6d2007-12-21 16:27:21 -05002485fail_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002486 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002487 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002488 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002489 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002490}
2491
Chris Masonedbd8d42007-12-21 16:27:24 -05002492unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002493 struct file_ra_state *ra, struct file *file,
2494 pgoff_t offset, pgoff_t last_index)
2495{
2496 pgoff_t req_size;
2497
2498#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2499 req_size = last_index - offset + 1;
2500 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2501 return offset;
2502#else
2503 req_size = min(last_index - offset + 1, (pgoff_t)128);
2504 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2505 return offset + req_size;
2506#endif
2507}
2508
2509int btrfs_defrag_file(struct file *file) {
Chris Mason6da6aba2007-12-18 16:15:09 -05002510 struct inode *inode = fdentry(file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002511 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002512 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason86479a02007-09-10 19:58:16 -04002513 struct page *page;
2514 unsigned long last_index;
2515 unsigned long ra_index = 0;
2516 u64 page_start;
2517 u64 page_end;
2518 unsigned long i;
Chris Mason1832a6d2007-12-21 16:27:21 -05002519 int ret;
2520
2521 mutex_lock(&root->fs_info->fs_mutex);
2522 ret = btrfs_check_free_space(root, inode->i_size, 0);
2523 mutex_unlock(&root->fs_info->fs_mutex);
2524 if (ret)
2525 return -ENOSPC;
Chris Mason86479a02007-09-10 19:58:16 -04002526
2527 mutex_lock(&inode->i_mutex);
2528 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2529 for (i = 0; i <= last_index; i++) {
2530 if (i == ra_index) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002531 ra_index = btrfs_force_ra(inode->i_mapping,
2532 &file->f_ra,
2533 file, ra_index, last_index);
Chris Mason86479a02007-09-10 19:58:16 -04002534 }
2535 page = grab_cache_page(inode->i_mapping, i);
2536 if (!page)
2537 goto out_unlock;
2538 if (!PageUptodate(page)) {
2539 btrfs_readpage(NULL, page);
2540 lock_page(page);
2541 if (!PageUptodate(page)) {
2542 unlock_page(page);
2543 page_cache_release(page);
2544 goto out_unlock;
2545 }
2546 }
Chris Mason35ebb932007-10-30 16:56:53 -04002547 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002548 page_end = page_start + PAGE_CACHE_SIZE - 1;
2549
Chris Masond1310b22008-01-24 16:13:08 -05002550 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002551 set_extent_delalloc(io_tree, page_start,
Chris Mason86479a02007-09-10 19:58:16 -04002552 page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002553
Chris Masond1310b22008-01-24 16:13:08 -05002554 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason86479a02007-09-10 19:58:16 -04002555 set_page_dirty(page);
2556 unlock_page(page);
2557 page_cache_release(page);
2558 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2559 }
2560
2561out_unlock:
2562 mutex_unlock(&inode->i_mutex);
2563 return 0;
2564}
2565
Chris Masonedbd8d42007-12-21 16:27:24 -05002566static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2567{
2568 u64 new_size;
2569 u64 old_size;
2570 struct btrfs_ioctl_vol_args *vol_args;
2571 struct btrfs_trans_handle *trans;
2572 char *sizestr;
2573 int ret = 0;
2574 int namelen;
2575 int mod = 0;
2576
2577 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2578
2579 if (!vol_args)
2580 return -ENOMEM;
2581
2582 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2583 ret = -EFAULT;
2584 goto out;
2585 }
2586 namelen = strlen(vol_args->name);
2587 if (namelen > BTRFS_VOL_NAME_MAX) {
2588 ret = -EINVAL;
2589 goto out;
2590 }
2591
2592 sizestr = vol_args->name;
2593 if (!strcmp(sizestr, "max"))
2594 new_size = root->fs_info->sb->s_bdev->bd_inode->i_size;
2595 else {
2596 if (sizestr[0] == '-') {
2597 mod = -1;
2598 sizestr++;
2599 } else if (sizestr[0] == '+') {
2600 mod = 1;
2601 sizestr++;
2602 }
2603 new_size = btrfs_parse_size(sizestr);
2604 if (new_size == 0) {
2605 ret = -EINVAL;
2606 goto out;
2607 }
2608 }
2609
2610 mutex_lock(&root->fs_info->fs_mutex);
2611 old_size = btrfs_super_total_bytes(&root->fs_info->super_copy);
2612
2613 if (mod < 0) {
2614 if (new_size > old_size) {
2615 ret = -EINVAL;
2616 goto out_unlock;
2617 }
2618 new_size = old_size - new_size;
2619 } else if (mod > 0) {
2620 new_size = old_size + new_size;
2621 }
2622
2623 if (new_size < 256 * 1024 * 1024) {
2624 ret = -EINVAL;
2625 goto out_unlock;
2626 }
2627 if (new_size > root->fs_info->sb->s_bdev->bd_inode->i_size) {
2628 ret = -EFBIG;
2629 goto out_unlock;
2630 }
Chris Masonf9ef6602008-01-03 09:22:38 -05002631
2632 do_div(new_size, root->sectorsize);
2633 new_size *= root->sectorsize;
Chris Masonedbd8d42007-12-21 16:27:24 -05002634
2635printk("new size is %Lu\n", new_size);
2636 if (new_size > old_size) {
2637 trans = btrfs_start_transaction(root, 1);
2638 ret = btrfs_grow_extent_tree(trans, root, new_size);
2639 btrfs_commit_transaction(trans, root);
2640 } else {
2641 ret = btrfs_shrink_extent_tree(root, new_size);
2642 }
2643
2644out_unlock:
2645 mutex_unlock(&root->fs_info->fs_mutex);
2646out:
2647 kfree(vol_args);
2648 return ret;
2649}
2650
Chris Mason4313b392008-01-03 09:08:48 -05002651static int noinline btrfs_ioctl_snap_create(struct btrfs_root *root,
2652 void __user *arg)
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002653{
Chris Mason4aec2b52007-12-18 16:25:45 -05002654 struct btrfs_ioctl_vol_args *vol_args;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002655 struct btrfs_dir_item *di;
2656 struct btrfs_path *path;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002657 u64 root_dirid;
Chris Mason4aec2b52007-12-18 16:25:45 -05002658 int namelen;
2659 int ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002660
Chris Mason4aec2b52007-12-18 16:25:45 -05002661 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04002662
Chris Mason4aec2b52007-12-18 16:25:45 -05002663 if (!vol_args)
2664 return -ENOMEM;
2665
2666 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2667 ret = -EFAULT;
2668 goto out;
2669 }
2670
2671 namelen = strlen(vol_args->name);
2672 if (namelen > BTRFS_VOL_NAME_MAX) {
2673 ret = -EINVAL;
2674 goto out;
2675 }
2676 if (strchr(vol_args->name, '/')) {
2677 ret = -EINVAL;
2678 goto out;
2679 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002680
2681 path = btrfs_alloc_path();
Chris Mason4aec2b52007-12-18 16:25:45 -05002682 if (!path) {
2683 ret = -ENOMEM;
2684 goto out;
2685 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002686
2687 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
2688 mutex_lock(&root->fs_info->fs_mutex);
2689 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
2690 path, root_dirid,
Chris Mason4aec2b52007-12-18 16:25:45 -05002691 vol_args->name, namelen, 0);
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002692 mutex_unlock(&root->fs_info->fs_mutex);
2693 btrfs_free_path(path);
Chris Mason4aec2b52007-12-18 16:25:45 -05002694
2695 if (di && !IS_ERR(di)) {
2696 ret = -EEXIST;
2697 goto out;
2698 }
2699
2700 if (IS_ERR(di)) {
2701 ret = PTR_ERR(di);
2702 goto out;
2703 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002704
2705 if (root == root->fs_info->tree_root)
Chris Mason4aec2b52007-12-18 16:25:45 -05002706 ret = create_subvol(root, vol_args->name, namelen);
2707 else
2708 ret = create_snapshot(root, vol_args->name, namelen);
2709out:
2710 kfree(vol_args);
2711 return ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002712}
2713
2714static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04002715{
Chris Mason6da6aba2007-12-18 16:15:09 -05002716 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002717 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002718
2719 switch (inode->i_mode & S_IFMT) {
2720 case S_IFDIR:
2721 mutex_lock(&root->fs_info->fs_mutex);
2722 btrfs_defrag_root(root, 0);
2723 btrfs_defrag_root(root->fs_info->extent_root, 0);
2724 mutex_unlock(&root->fs_info->fs_mutex);
2725 break;
2726 case S_IFREG:
2727 btrfs_defrag_file(file);
2728 break;
2729 }
2730
2731 return 0;
2732}
2733
2734long btrfs_ioctl(struct file *file, unsigned int
2735 cmd, unsigned long arg)
2736{
Chris Mason6da6aba2007-12-18 16:15:09 -05002737 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002738
2739 switch (cmd) {
2740 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002741 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04002742 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002743 return btrfs_ioctl_defrag(file);
Chris Masonedbd8d42007-12-21 16:27:24 -05002744 case BTRFS_IOC_RESIZE:
2745 return btrfs_ioctl_resize(root, (void __user *)arg);
Chris Mason39279cc2007-06-12 06:35:45 -04002746 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002747
2748 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04002749}
2750
Chris Mason39279cc2007-06-12 06:35:45 -04002751/*
2752 * Called inside transaction, so use GFP_NOFS
2753 */
2754struct inode *btrfs_alloc_inode(struct super_block *sb)
2755{
2756 struct btrfs_inode *ei;
2757
2758 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2759 if (!ei)
2760 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002761 ei->last_trans = 0;
Chris Masondc17ff82008-01-08 15:46:30 -05002762 ei->ordered_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002763 return &ei->vfs_inode;
2764}
2765
2766void btrfs_destroy_inode(struct inode *inode)
2767{
2768 WARN_ON(!list_empty(&inode->i_dentry));
2769 WARN_ON(inode->i_data.nrpages);
2770
Chris Mason8c416c92008-01-14 15:10:26 -05002771 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04002772 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2773}
2774
Chris Mason44ec0b72007-10-29 10:55:05 -04002775#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2776static void init_once(struct kmem_cache * cachep, void *foo)
2777#else
Chris Mason39279cc2007-06-12 06:35:45 -04002778static void init_once(void * foo, struct kmem_cache * cachep,
2779 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04002780#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002781{
2782 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2783
2784 inode_init_once(&ei->vfs_inode);
2785}
2786
2787void btrfs_destroy_cachep(void)
2788{
2789 if (btrfs_inode_cachep)
2790 kmem_cache_destroy(btrfs_inode_cachep);
2791 if (btrfs_trans_handle_cachep)
2792 kmem_cache_destroy(btrfs_trans_handle_cachep);
2793 if (btrfs_transaction_cachep)
2794 kmem_cache_destroy(btrfs_transaction_cachep);
2795 if (btrfs_bit_radix_cachep)
2796 kmem_cache_destroy(btrfs_bit_radix_cachep);
2797 if (btrfs_path_cachep)
2798 kmem_cache_destroy(btrfs_path_cachep);
2799}
2800
Chris Mason86479a02007-09-10 19:58:16 -04002801struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04002802 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04002803#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2804 void (*ctor)(struct kmem_cache *, void *)
2805#else
Chris Mason92fee662007-07-25 12:31:35 -04002806 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04002807 unsigned long)
2808#endif
2809 )
Chris Mason92fee662007-07-25 12:31:35 -04002810{
2811 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2812 SLAB_MEM_SPREAD | extra_flags), ctor
2813#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2814 ,NULL
2815#endif
2816 );
2817}
2818
Chris Mason39279cc2007-06-12 06:35:45 -04002819int btrfs_init_cachep(void)
2820{
Chris Mason86479a02007-09-10 19:58:16 -04002821 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04002822 sizeof(struct btrfs_inode),
2823 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04002824 if (!btrfs_inode_cachep)
2825 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002826 btrfs_trans_handle_cachep =
2827 btrfs_cache_create("btrfs_trans_handle_cache",
2828 sizeof(struct btrfs_trans_handle),
2829 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002830 if (!btrfs_trans_handle_cachep)
2831 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002832 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04002833 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04002834 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002835 if (!btrfs_transaction_cachep)
2836 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002837 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04002838 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04002839 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002840 if (!btrfs_path_cachep)
2841 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002842 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04002843 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002844 if (!btrfs_bit_radix_cachep)
2845 goto fail;
2846 return 0;
2847fail:
2848 btrfs_destroy_cachep();
2849 return -ENOMEM;
2850}
2851
2852static int btrfs_getattr(struct vfsmount *mnt,
2853 struct dentry *dentry, struct kstat *stat)
2854{
2855 struct inode *inode = dentry->d_inode;
2856 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05002857 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05002858 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04002859 return 0;
2860}
2861
2862static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
2863 struct inode * new_dir,struct dentry *new_dentry)
2864{
2865 struct btrfs_trans_handle *trans;
2866 struct btrfs_root *root = BTRFS_I(old_dir)->root;
2867 struct inode *new_inode = new_dentry->d_inode;
2868 struct inode *old_inode = old_dentry->d_inode;
2869 struct timespec ctime = CURRENT_TIME;
2870 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002871 int ret;
2872
2873 if (S_ISDIR(old_inode->i_mode) && new_inode &&
2874 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
2875 return -ENOTEMPTY;
2876 }
Chris Mason5f39d392007-10-15 16:14:19 -04002877
Chris Mason39279cc2007-06-12 06:35:45 -04002878 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002879 ret = btrfs_check_free_space(root, 1, 0);
2880 if (ret)
2881 goto out_unlock;
2882
Chris Mason39279cc2007-06-12 06:35:45 -04002883 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002884
Chris Mason39279cc2007-06-12 06:35:45 -04002885 btrfs_set_trans_block_group(trans, new_dir);
2886 path = btrfs_alloc_path();
2887 if (!path) {
2888 ret = -ENOMEM;
2889 goto out_fail;
2890 }
2891
2892 old_dentry->d_inode->i_nlink++;
2893 old_dir->i_ctime = old_dir->i_mtime = ctime;
2894 new_dir->i_ctime = new_dir->i_mtime = ctime;
2895 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04002896
Chris Mason39279cc2007-06-12 06:35:45 -04002897 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
2898 if (ret)
2899 goto out_fail;
2900
2901 if (new_inode) {
2902 new_inode->i_ctime = CURRENT_TIME;
2903 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
2904 if (ret)
2905 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002906 }
Chris Mason9c583092008-01-29 15:15:18 -05002907 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002908 if (ret)
2909 goto out_fail;
2910
2911out_fail:
2912 btrfs_free_path(path);
2913 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002914out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002915 mutex_unlock(&root->fs_info->fs_mutex);
2916 return ret;
2917}
2918
2919static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
2920 const char *symname)
2921{
2922 struct btrfs_trans_handle *trans;
2923 struct btrfs_root *root = BTRFS_I(dir)->root;
2924 struct btrfs_path *path;
2925 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05002926 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002927 int err;
2928 int drop_inode = 0;
2929 u64 objectid;
2930 int name_len;
2931 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04002932 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04002933 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04002934 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05002935 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002936
2937 name_len = strlen(symname) + 1;
2938 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
2939 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05002940
Chris Mason39279cc2007-06-12 06:35:45 -04002941 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002942 err = btrfs_check_free_space(root, 1, 0);
2943 if (err)
2944 goto out_fail;
2945
Chris Mason39279cc2007-06-12 06:35:45 -04002946 trans = btrfs_start_transaction(root, 1);
2947 btrfs_set_trans_block_group(trans, dir);
2948
2949 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2950 if (err) {
2951 err = -ENOSPC;
2952 goto out_unlock;
2953 }
2954
Chris Mason9c583092008-01-29 15:15:18 -05002955 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2956 dentry->d_name.len,
2957 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002958 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
2959 err = PTR_ERR(inode);
2960 if (IS_ERR(inode))
2961 goto out_unlock;
2962
2963 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002964 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002965 if (err)
2966 drop_inode = 1;
2967 else {
2968 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002969 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002970 inode->i_fop = &btrfs_file_operations;
2971 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05002972 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2973 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04002974 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05002975 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002976 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002977 }
2978 dir->i_sb->s_dirt = 1;
2979 btrfs_update_inode_block_group(trans, inode);
2980 btrfs_update_inode_block_group(trans, dir);
2981 if (drop_inode)
2982 goto out_unlock;
2983
2984 path = btrfs_alloc_path();
2985 BUG_ON(!path);
2986 key.objectid = inode->i_ino;
2987 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002988 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
2989 datasize = btrfs_file_extent_calc_inline_size(name_len);
2990 err = btrfs_insert_empty_item(trans, root, path, &key,
2991 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04002992 if (err) {
2993 drop_inode = 1;
2994 goto out_unlock;
2995 }
Chris Mason5f39d392007-10-15 16:14:19 -04002996 leaf = path->nodes[0];
2997 ei = btrfs_item_ptr(leaf, path->slots[0],
2998 struct btrfs_file_extent_item);
2999 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3000 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003001 BTRFS_FILE_EXTENT_INLINE);
3002 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003003 write_extent_buffer(leaf, symname, ptr, name_len);
3004 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003005 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003006
Chris Mason39279cc2007-06-12 06:35:45 -04003007 inode->i_op = &btrfs_symlink_inode_operations;
3008 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003009 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003010 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04003011 err = btrfs_update_inode(trans, root, inode);
3012 if (err)
3013 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003014
3015out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003016 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04003017 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003018out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003019 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04003020 if (drop_inode) {
3021 inode_dec_link_count(inode);
3022 iput(inode);
3023 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003024 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05003025 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003026 return err;
3027}
Yanfdebe2b2008-01-14 13:26:08 -05003028static int btrfs_permission(struct inode *inode, int mask,
3029 struct nameidata *nd)
3030{
3031 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3032 return -EACCES;
3033 return generic_permission(inode, mask, NULL);
3034}
Chris Mason39279cc2007-06-12 06:35:45 -04003035
3036static struct inode_operations btrfs_dir_inode_operations = {
3037 .lookup = btrfs_lookup,
3038 .create = btrfs_create,
3039 .unlink = btrfs_unlink,
3040 .link = btrfs_link,
3041 .mkdir = btrfs_mkdir,
3042 .rmdir = btrfs_rmdir,
3043 .rename = btrfs_rename,
3044 .symlink = btrfs_symlink,
3045 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003046 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003047 .setxattr = generic_setxattr,
3048 .getxattr = generic_getxattr,
3049 .listxattr = btrfs_listxattr,
3050 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003051 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003052};
Chris Mason39279cc2007-06-12 06:35:45 -04003053static struct inode_operations btrfs_dir_ro_inode_operations = {
3054 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003055 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003056};
Chris Mason39279cc2007-06-12 06:35:45 -04003057static struct file_operations btrfs_dir_file_operations = {
3058 .llseek = generic_file_llseek,
3059 .read = generic_read_dir,
3060 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003061 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003062#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003063 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003064#endif
3065};
3066
Chris Masond1310b22008-01-24 16:13:08 -05003067static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003068 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003069 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003070 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003071 .readpage_io_hook = btrfs_readpage_io_hook,
3072 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003073 .set_bit_hook = btrfs_set_bit_hook,
3074 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003075};
3076
Chris Mason39279cc2007-06-12 06:35:45 -04003077static struct address_space_operations btrfs_aops = {
3078 .readpage = btrfs_readpage,
3079 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04003080 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003081 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003082 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003083 .bmap = btrfs_bmap,
Chris Masona52d9a82007-08-27 16:49:44 -04003084 .invalidatepage = btrfs_invalidatepage,
3085 .releasepage = btrfs_releasepage,
3086 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04003087};
3088
3089static struct address_space_operations btrfs_symlink_aops = {
3090 .readpage = btrfs_readpage,
3091 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003092 .invalidatepage = btrfs_invalidatepage,
3093 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003094};
3095
3096static struct inode_operations btrfs_file_inode_operations = {
3097 .truncate = btrfs_truncate,
3098 .getattr = btrfs_getattr,
3099 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003100 .setxattr = generic_setxattr,
3101 .getxattr = generic_getxattr,
3102 .listxattr = btrfs_listxattr,
3103 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003104 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003105};
Josef Bacik618e21d2007-07-11 10:18:17 -04003106static struct inode_operations btrfs_special_inode_operations = {
3107 .getattr = btrfs_getattr,
3108 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003109 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003110};
Chris Mason39279cc2007-06-12 06:35:45 -04003111static struct inode_operations btrfs_symlink_inode_operations = {
3112 .readlink = generic_readlink,
3113 .follow_link = page_follow_link_light,
3114 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003115 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003116};