blob: 40f8da884090b65c4c3af6358cdda9d029013c20 [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 Mason3b951512008-04-17 11:29:12 -0400125 BUG_ON(num_bytes > btrfs_super_total_bytes(&root->fs_info->super_copy));
126
Chris Masonc59f8952007-12-17 20:14:04 -0500127 while(num_bytes > 0) {
128 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
129 ret = btrfs_alloc_extent(trans, root, cur_alloc_size,
Chris Mason98d20f62008-04-14 09:46:10 -0400130 root->sectorsize,
Chris Masonc59f8952007-12-17 20:14:04 -0500131 root->root_key.objectid,
132 trans->transid,
133 inode->i_ino, start, 0,
134 alloc_hint, (u64)-1, &ins, 1);
135 if (ret) {
136 WARN_ON(1);
137 goto out;
138 }
Chris Mason98d20f62008-04-14 09:46:10 -0400139 cur_alloc_size = ins.offset;
Chris Masonc59f8952007-12-17 20:14:04 -0500140 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
141 start, ins.objectid, ins.offset,
142 ins.offset);
Chris Mason90692182008-02-08 13:49:28 -0500143 inode->i_blocks += ins.offset >> 9;
Chris Mason5f564062008-01-22 16:47:59 -0500144 btrfs_check_file(root, inode);
Chris Mason3b951512008-04-17 11:29:12 -0400145 if (num_bytes < cur_alloc_size) {
146 printk("num_bytes %Lu cur_alloc %Lu\n", num_bytes,
147 cur_alloc_size);
148 break;
149 }
Chris Masonc59f8952007-12-17 20:14:04 -0500150 num_bytes -= cur_alloc_size;
151 alloc_hint = ins.objectid + ins.offset;
152 start += cur_alloc_size;
Chris Masonb888db2b2007-08-27 16:49:44 -0400153 }
Chris Masond1310b22008-01-24 16:13:08 -0500154 btrfs_drop_extent_cache(inode, orig_start,
155 orig_start + orig_num_bytes - 1);
Chris Masondc17ff82008-01-08 15:46:30 -0500156 btrfs_add_ordered_inode(inode);
Chris Mason90692182008-02-08 13:49:28 -0500157 btrfs_update_inode(trans, root, inode);
Chris Masonb888db2b2007-08-27 16:49:44 -0400158out:
159 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500160 return ret;
161}
162
163static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
164{
165 u64 extent_start;
166 u64 extent_end;
167 u64 bytenr;
168 u64 cow_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500169 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500170 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500171 struct btrfs_root *root = BTRFS_I(inode)->root;
172 struct extent_buffer *leaf;
173 int found_type;
174 struct btrfs_path *path;
175 struct btrfs_file_extent_item *item;
176 int ret;
177 int err;
178 struct btrfs_key found_key;
179
Chris Masonc31f8832008-01-08 15:46:31 -0500180 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500181 path = btrfs_alloc_path();
182 BUG_ON(!path);
183again:
184 ret = btrfs_lookup_file_extent(NULL, root, path,
185 inode->i_ino, start, 0);
186 if (ret < 0) {
187 btrfs_free_path(path);
188 return ret;
189 }
190
191 cow_end = end;
192 if (ret != 0) {
193 if (path->slots[0] == 0)
194 goto not_found;
195 path->slots[0]--;
196 }
197
198 leaf = path->nodes[0];
199 item = btrfs_item_ptr(leaf, path->slots[0],
200 struct btrfs_file_extent_item);
201
202 /* are we inside the extent that was found? */
203 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
204 found_type = btrfs_key_type(&found_key);
205 if (found_key.objectid != inode->i_ino ||
206 found_type != BTRFS_EXTENT_DATA_KEY) {
207 goto not_found;
208 }
209
210 found_type = btrfs_file_extent_type(leaf, item);
211 extent_start = found_key.offset;
212 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Masonc31f8832008-01-08 15:46:31 -0500213 u64 extent_num_bytes;
214
215 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
216 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500217 err = 0;
218
Chris Mason1832a6d2007-12-21 16:27:21 -0500219 if (loops && start != extent_start)
220 goto not_found;
221
Chris Masonbe20aa92007-12-17 20:14:01 -0500222 if (start < extent_start || start >= extent_end)
223 goto not_found;
224
225 cow_end = min(end, extent_end - 1);
226 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
227 if (bytenr == 0)
228 goto not_found;
229
Chris Masonc31f8832008-01-08 15:46:31 -0500230 /*
231 * we may be called by the resizer, make sure we're inside
232 * the limits of the FS
233 */
234 if (bytenr + extent_num_bytes > total_fs_bytes)
235 goto not_found;
236
Chris Masonbe20aa92007-12-17 20:14:01 -0500237 if (btrfs_count_snapshots_in_path(root, path, bytenr) != 1) {
238 goto not_found;
239 }
240
241 start = extent_end;
Chris Masonbd098352008-01-03 13:23:19 -0500242 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500243 goto not_found;
244 }
245loop:
246 if (start > end) {
247 btrfs_free_path(path);
248 return 0;
249 }
250 btrfs_release_path(root, path);
Chris Mason1832a6d2007-12-21 16:27:21 -0500251 loops++;
Chris Masonbe20aa92007-12-17 20:14:01 -0500252 goto again;
253
254not_found:
255 cow_file_range(inode, start, cow_end);
256 start = cow_end + 1;
257 goto loop;
258}
259
260static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
261{
262 struct btrfs_root *root = BTRFS_I(inode)->root;
263 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -0500264 mutex_lock(&root->fs_info->fs_mutex);
Yanb98b6762008-01-08 15:54:37 -0500265 if (btrfs_test_opt(root, NODATACOW) ||
266 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500267 ret = run_delalloc_nocow(inode, start, end);
268 else
269 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500270
Chris Masonb888db2b2007-08-27 16:49:44 -0400271 mutex_unlock(&root->fs_info->fs_mutex);
272 return ret;
273}
274
Chris Mason291d6732008-01-29 15:55:23 -0500275int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500276 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500277{
Chris Masonb0c68f82008-01-31 11:05:37 -0500278 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500279 struct btrfs_root *root = BTRFS_I(inode)->root;
280 spin_lock(&root->fs_info->delalloc_lock);
Chris Mason90692182008-02-08 13:49:28 -0500281 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -0500282 root->fs_info->delalloc_bytes += end - start + 1;
283 spin_unlock(&root->fs_info->delalloc_lock);
284 }
285 return 0;
286}
287
288int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500289 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500290{
Chris Masonb0c68f82008-01-31 11:05:37 -0500291 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500292 struct btrfs_root *root = BTRFS_I(inode)->root;
293 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonb0c68f82008-01-31 11:05:37 -0500294 if (end - start + 1 > root->fs_info->delalloc_bytes) {
295 printk("warning: delalloc account %Lu %Lu\n",
296 end - start + 1, root->fs_info->delalloc_bytes);
297 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -0500298 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -0500299 } else {
300 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -0500301 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -0500302 }
Chris Mason291d6732008-01-29 15:55:23 -0500303 spin_unlock(&root->fs_info->delalloc_lock);
304 }
305 return 0;
306}
307
Chris Mason239b14b2008-03-24 15:02:07 -0400308int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
309 size_t size, struct bio *bio)
310{
311 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
312 struct btrfs_mapping_tree *map_tree;
Chris Mason239b14b2008-03-24 15:02:07 -0400313 u64 logical = bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -0400314 u64 length = 0;
315 u64 map_length;
316 struct bio_vec *bvec;
317 int i;
318 int ret;
319
320 bio_for_each_segment(bvec, bio, i) {
321 length += bvec->bv_len;
322 }
323 map_tree = &root->fs_info->mapping_tree;
324 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -0400325 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -0400326 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -0400327
Chris Mason239b14b2008-03-24 15:02:07 -0400328 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -0400329 return 1;
330 }
331 return 0;
332}
333
Chris Mason44b8bd72008-04-16 11:14:51 -0400334int __btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400335 int mirror_num)
Chris Mason065631f2008-02-20 12:07:25 -0500336{
Chris Mason065631f2008-02-20 12:07:25 -0500337 struct btrfs_root *root = BTRFS_I(inode)->root;
338 struct btrfs_trans_handle *trans;
339 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -0400340 char *sums = NULL;
341
342 ret = btrfs_csum_one_bio(root, bio, &sums);
343 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -0500344
Chris Mason44b8bd72008-04-16 11:14:51 -0400345 mutex_lock(&root->fs_info->fs_mutex);
346 trans = btrfs_start_transaction(root, 1);
Chris Masone0156402008-04-16 11:15:20 -0400347
Chris Mason44b8bd72008-04-16 11:14:51 -0400348 btrfs_set_trans_block_group(trans, inode);
Chris Masone0156402008-04-16 11:15:20 -0400349 btrfs_csum_file_blocks(trans, root, inode, bio, sums);
350
Chris Mason44b8bd72008-04-16 11:14:51 -0400351 ret = btrfs_end_transaction(trans, root);
352 BUG_ON(ret);
353 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masone0156402008-04-16 11:15:20 -0400354
355 kfree(sums);
356
Chris Mason44b8bd72008-04-16 11:14:51 -0400357 return btrfs_map_bio(root, rw, bio, mirror_num);
358}
359
360int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
361 int mirror_num)
362{
363 struct btrfs_root *root = BTRFS_I(inode)->root;
364 int ret = 0;
365
Chris Mason22c59942008-04-09 16:28:12 -0400366 if (!(rw & (1 << BIO_RW))) {
367 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
368 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400369 goto mapit;
370 }
Chris Mason065631f2008-02-20 12:07:25 -0500371
372 if (btrfs_test_opt(root, NODATASUM) ||
Chris Mason0b86a832008-03-24 15:01:56 -0400373 btrfs_test_flag(inode, NODATASUM)) {
374 goto mapit;
375 }
Chris Mason065631f2008-02-20 12:07:25 -0500376
Chris Mason44b8bd72008-04-16 11:14:51 -0400377 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
378 inode, rw, bio, mirror_num,
379 __btrfs_submit_bio_hook);
Chris Mason0b86a832008-03-24 15:01:56 -0400380mapit:
Chris Masonf1885912008-04-09 16:28:12 -0400381 return btrfs_map_bio(root, rw, bio, mirror_num);
Chris Mason065631f2008-02-20 12:07:25 -0500382}
Chris Mason6885f302008-02-20 16:11:05 -0500383
Chris Mason07157aa2007-08-30 08:50:51 -0400384int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
385{
386 int ret = 0;
387 struct inode *inode = page->mapping->host;
388 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500389 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400390 struct btrfs_csum_item *item;
391 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400392 u32 csum;
Chris Mason699122f2008-04-16 12:59:22 -0400393
Yanb98b6762008-01-08 15:54:37 -0500394 if (btrfs_test_opt(root, NODATASUM) ||
395 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500396 return 0;
Chris Mason699122f2008-04-16 12:59:22 -0400397
Chris Mason07157aa2007-08-30 08:50:51 -0400398 mutex_lock(&root->fs_info->fs_mutex);
399 path = btrfs_alloc_path();
400 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
401 if (IS_ERR(item)) {
402 ret = PTR_ERR(item);
403 /* a csum that isn't present is a preallocated region. */
404 if (ret == -ENOENT || ret == -EFBIG)
405 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400406 csum = 0;
Chris Masonaadfeb62008-01-29 09:10:27 -0500407 printk("no csum found for inode %lu start %Lu\n", inode->i_ino, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400408 goto out;
409 }
Chris Masonff79f812007-10-15 16:22:25 -0400410 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
411 BTRFS_CRC32_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -0500412 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400413out:
414 if (path)
415 btrfs_free_path(path);
416 mutex_unlock(&root->fs_info->fs_mutex);
417 return ret;
418}
419
Chris Mason7e383262008-04-09 16:28:12 -0400420struct io_failure_record {
421 struct page *page;
422 u64 start;
423 u64 len;
424 u64 logical;
425 int last_mirror;
426};
427
428int btrfs_readpage_io_failed_hook(struct bio *failed_bio,
429 struct page *page, u64 start, u64 end,
430 struct extent_state *state)
431{
432 struct io_failure_record *failrec = NULL;
433 u64 private;
434 struct extent_map *em;
435 struct inode *inode = page->mapping->host;
436 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -0400437 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -0400438 struct bio *bio;
439 int num_copies;
440 int ret;
441 u64 logical;
442
443 ret = get_state_private(failure_tree, start, &private);
444 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -0400445 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
446 if (!failrec)
447 return -ENOMEM;
448 failrec->start = start;
449 failrec->len = end - start + 1;
450 failrec->last_mirror = 0;
451
Chris Mason3b951512008-04-17 11:29:12 -0400452 spin_lock(&em_tree->lock);
453 em = lookup_extent_mapping(em_tree, start, failrec->len);
454 if (em->start > start || em->start + em->len < start) {
455 free_extent_map(em);
456 em = NULL;
457 }
458 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -0400459
460 if (!em || IS_ERR(em)) {
461 kfree(failrec);
462 return -EIO;
463 }
464 logical = start - em->start;
465 logical = em->block_start + logical;
466 failrec->logical = logical;
467 free_extent_map(em);
468 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
469 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -0400470 set_state_private(failure_tree, start,
471 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -0400472 } else {
Chris Mason587f7702008-04-11 12:16:46 -0400473 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -0400474 }
475 num_copies = btrfs_num_copies(
476 &BTRFS_I(inode)->root->fs_info->mapping_tree,
477 failrec->logical, failrec->len);
478 failrec->last_mirror++;
479 if (!state) {
480 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
481 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
482 failrec->start,
483 EXTENT_LOCKED);
484 if (state && state->start != failrec->start)
485 state = NULL;
486 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
487 }
488 if (!state || failrec->last_mirror > num_copies) {
489 set_state_private(failure_tree, failrec->start, 0);
490 clear_extent_bits(failure_tree, failrec->start,
491 failrec->start + failrec->len - 1,
492 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
493 kfree(failrec);
494 return -EIO;
495 }
496 bio = bio_alloc(GFP_NOFS, 1);
497 bio->bi_private = state;
498 bio->bi_end_io = failed_bio->bi_end_io;
499 bio->bi_sector = failrec->logical >> 9;
500 bio->bi_bdev = failed_bio->bi_bdev;
501 bio_add_page(bio, page, failrec->len, start - page_offset(page));
502 btrfs_submit_bio_hook(inode, READ, bio, failrec->last_mirror);
503 return 0;
504}
505
Chris Mason70dec802008-01-29 09:59:12 -0500506int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
507 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400508{
Chris Mason35ebb932007-10-30 16:56:53 -0400509 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400510 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500511 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400512 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500513 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400514 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400515 struct btrfs_root *root = BTRFS_I(inode)->root;
516 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400517 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500518
Yanb98b6762008-01-08 15:54:37 -0500519 if (btrfs_test_opt(root, NODATASUM) ||
520 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500521 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500522 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500523 private = state->private;
524 ret = 0;
525 } else {
526 ret = get_state_private(io_tree, start, &private);
527 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400528 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400529 kaddr = kmap_atomic(page, KM_IRQ0);
530 if (ret) {
531 goto zeroit;
532 }
Chris Masonff79f812007-10-15 16:22:25 -0400533 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
534 btrfs_csum_final(csum, (char *)&csum);
535 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400536 goto zeroit;
537 }
538 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400539 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -0400540
541 /* if the io failure tree for this inode is non-empty,
542 * check to see if we've recovered from a failed IO
543 */
544 private = 0;
545 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
546 (u64)-1, 1, EXTENT_DIRTY)) {
547 u64 private_failure;
548 struct io_failure_record *failure;
549 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
550 start, &private_failure);
551 if (ret == 0) {
Chris Mason587f7702008-04-11 12:16:46 -0400552 failure = (struct io_failure_record *)(unsigned long)
553 private_failure;
Chris Mason7e383262008-04-09 16:28:12 -0400554 set_state_private(&BTRFS_I(inode)->io_failure_tree,
555 failure->start, 0);
556 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
557 failure->start,
558 failure->start + failure->len - 1,
559 EXTENT_DIRTY | EXTENT_LOCKED,
560 GFP_NOFS);
561 kfree(failure);
562 }
563 }
Chris Mason07157aa2007-08-30 08:50:51 -0400564 return 0;
565
566zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500567 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
568 page->mapping->host->i_ino, (unsigned long long)start, csum,
569 private);
Chris Masondb945352007-10-15 16:15:53 -0400570 memset(kaddr + offset, 1, end - start + 1);
571 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400572 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400573 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -0400574 if (private == 0)
575 return 0;
Chris Mason7e383262008-04-09 16:28:12 -0400576 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -0400577}
Chris Masonb888db2b2007-08-27 16:49:44 -0400578
Chris Mason39279cc2007-06-12 06:35:45 -0400579void btrfs_read_locked_inode(struct inode *inode)
580{
581 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400582 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400583 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400584 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400585 struct btrfs_root *root = BTRFS_I(inode)->root;
586 struct btrfs_key location;
587 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400588 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400589 int ret;
590
591 path = btrfs_alloc_path();
592 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400593 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400594 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500595
Chris Mason39279cc2007-06-12 06:35:45 -0400596 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400597 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400598 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400599
Chris Mason5f39d392007-10-15 16:14:19 -0400600 leaf = path->nodes[0];
601 inode_item = btrfs_item_ptr(leaf, path->slots[0],
602 struct btrfs_inode_item);
603
604 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
605 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
606 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
607 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
608 inode->i_size = btrfs_inode_size(leaf, inode_item);
609
610 tspec = btrfs_inode_atime(inode_item);
611 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
612 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
613
614 tspec = btrfs_inode_mtime(inode_item);
615 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
616 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
617
618 tspec = btrfs_inode_ctime(inode_item);
619 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
620 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
621
622 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
623 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400624 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400625 rdev = btrfs_inode_rdev(leaf, inode_item);
626
627 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400628 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
629 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500630 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500631 if (!BTRFS_I(inode)->block_group) {
632 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -0400633 NULL, 0,
634 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -0500635 }
Chris Mason39279cc2007-06-12 06:35:45 -0400636 btrfs_free_path(path);
637 inode_item = NULL;
638
639 mutex_unlock(&root->fs_info->fs_mutex);
640
641 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400642 case S_IFREG:
643 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -0400644 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -0500645 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400646 inode->i_fop = &btrfs_file_operations;
647 inode->i_op = &btrfs_file_inode_operations;
648 break;
649 case S_IFDIR:
650 inode->i_fop = &btrfs_dir_file_operations;
651 if (root == root->fs_info->tree_root)
652 inode->i_op = &btrfs_dir_ro_inode_operations;
653 else
654 inode->i_op = &btrfs_dir_inode_operations;
655 break;
656 case S_IFLNK:
657 inode->i_op = &btrfs_symlink_inode_operations;
658 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -0400659 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -0400660 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400661 default:
662 init_special_inode(inode, inode->i_mode, rdev);
663 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400664 }
665 return;
666
667make_bad:
668 btrfs_release_path(root, path);
669 btrfs_free_path(path);
670 mutex_unlock(&root->fs_info->fs_mutex);
671 make_bad_inode(inode);
672}
673
Chris Mason5f39d392007-10-15 16:14:19 -0400674static void fill_inode_item(struct extent_buffer *leaf,
675 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400676 struct inode *inode)
677{
Chris Mason5f39d392007-10-15 16:14:19 -0400678 btrfs_set_inode_uid(leaf, item, inode->i_uid);
679 btrfs_set_inode_gid(leaf, item, inode->i_gid);
680 btrfs_set_inode_size(leaf, item, inode->i_size);
681 btrfs_set_inode_mode(leaf, item, inode->i_mode);
682 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
683
684 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
685 inode->i_atime.tv_sec);
686 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
687 inode->i_atime.tv_nsec);
688
689 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
690 inode->i_mtime.tv_sec);
691 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
692 inode->i_mtime.tv_nsec);
693
694 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
695 inode->i_ctime.tv_sec);
696 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
697 inode->i_ctime.tv_nsec);
698
699 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
700 btrfs_set_inode_generation(leaf, item, inode->i_generation);
701 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500702 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400703 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400704 BTRFS_I(inode)->block_group->key.objectid);
705}
706
Chris Masona52d9a82007-08-27 16:49:44 -0400707int btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400708 struct btrfs_root *root,
709 struct inode *inode)
710{
711 struct btrfs_inode_item *inode_item;
712 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400713 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400714 int ret;
715
716 path = btrfs_alloc_path();
717 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400718 ret = btrfs_lookup_inode(trans, root, path,
719 &BTRFS_I(inode)->location, 1);
720 if (ret) {
721 if (ret > 0)
722 ret = -ENOENT;
723 goto failed;
724 }
725
Chris Mason5f39d392007-10-15 16:14:19 -0400726 leaf = path->nodes[0];
727 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400728 struct btrfs_inode_item);
729
Chris Mason5f39d392007-10-15 16:14:19 -0400730 fill_inode_item(leaf, inode_item, inode);
731 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400732 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400733 ret = 0;
734failed:
735 btrfs_release_path(root, path);
736 btrfs_free_path(path);
737 return ret;
738}
739
740
741static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
742 struct btrfs_root *root,
743 struct inode *dir,
744 struct dentry *dentry)
745{
746 struct btrfs_path *path;
747 const char *name = dentry->d_name.name;
748 int name_len = dentry->d_name.len;
749 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400750 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400751 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400752 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400753
754 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400755 if (!path) {
756 ret = -ENOMEM;
757 goto err;
758 }
759
Chris Mason39279cc2007-06-12 06:35:45 -0400760 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
761 name, name_len, -1);
762 if (IS_ERR(di)) {
763 ret = PTR_ERR(di);
764 goto err;
765 }
766 if (!di) {
767 ret = -ENOENT;
768 goto err;
769 }
Chris Mason5f39d392007-10-15 16:14:19 -0400770 leaf = path->nodes[0];
771 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400772 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400773 if (ret)
774 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400775 btrfs_release_path(root, path);
776
777 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400778 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400779 if (IS_ERR(di)) {
780 ret = PTR_ERR(di);
781 goto err;
782 }
783 if (!di) {
784 ret = -ENOENT;
785 goto err;
786 }
787 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason39279cc2007-06-12 06:35:45 -0400788
789 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -0500790 ret = btrfs_del_inode_ref(trans, root, name, name_len,
791 dentry->d_inode->i_ino,
792 dentry->d_parent->d_inode->i_ino);
793 if (ret) {
794 printk("failed to delete reference to %.*s, "
795 "inode %lu parent %lu\n", name_len, name,
796 dentry->d_inode->i_ino,
797 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -0500798 }
Chris Mason39279cc2007-06-12 06:35:45 -0400799err:
800 btrfs_free_path(path);
801 if (!ret) {
802 dir->i_size -= name_len * 2;
Chris Mason79c44582007-06-25 10:09:33 -0400803 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400804 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -0500805#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
806 dentry->d_inode->i_nlink--;
807#else
Chris Mason39279cc2007-06-12 06:35:45 -0400808 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -0500809#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400810 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400811 dir->i_sb->s_dirt = 1;
812 }
813 return ret;
814}
815
816static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
817{
818 struct btrfs_root *root;
819 struct btrfs_trans_handle *trans;
Chris Mason2da98f02008-01-16 11:44:43 -0500820 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400821 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -0500822 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400823
824 root = BTRFS_I(dir)->root;
825 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500826
827 ret = btrfs_check_free_space(root, 1, 1);
828 if (ret)
829 goto fail;
830
Chris Mason39279cc2007-06-12 06:35:45 -0400831 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400832
Chris Mason39279cc2007-06-12 06:35:45 -0400833 btrfs_set_trans_block_group(trans, dir);
834 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400835 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400836
Chris Mason2da98f02008-01-16 11:44:43 -0500837 if (inode->i_nlink == 0) {
838 int found;
839 /* if the inode isn't linked anywhere,
840 * we don't need to worry about
841 * data=ordered
842 */
843 found = btrfs_del_ordered_inode(inode);
844 if (found == 1) {
845 atomic_dec(&inode->i_count);
846 }
847 }
848
Chris Mason39279cc2007-06-12 06:35:45 -0400849 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500850fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400851 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400852 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500853 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400854 return ret;
855}
856
857static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
858{
859 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -0500860 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400861 int ret;
862 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -0400863 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -0500864 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400865
Yan134d4512007-10-25 15:49:25 -0400866 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
867 return -ENOTEMPTY;
868
Chris Mason39279cc2007-06-12 06:35:45 -0400869 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500870 ret = btrfs_check_free_space(root, 1, 1);
871 if (ret)
872 goto fail;
873
Chris Mason39279cc2007-06-12 06:35:45 -0400874 trans = btrfs_start_transaction(root, 1);
875 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -0400876
877 /* now the directory is empty */
878 err = btrfs_unlink_trans(trans, root, dir, dentry);
879 if (!err) {
880 inode->i_size = 0;
881 }
Chris Mason39544012007-12-12 14:38:19 -0500882
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400883 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400884 ret = btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500885fail:
Yan134d4512007-10-25 15:49:25 -0400886 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400887 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500888 btrfs_throttle(root);
Chris Mason39544012007-12-12 14:38:19 -0500889
Chris Mason39279cc2007-06-12 06:35:45 -0400890 if (ret && !err)
891 err = ret;
892 return err;
893}
894
Chris Mason39279cc2007-06-12 06:35:45 -0400895/*
Chris Mason39279cc2007-06-12 06:35:45 -0400896 * this can truncate away extent items, csum items and directory items.
897 * It starts at a high offset and removes keys until it can't find
898 * any higher than i_size.
899 *
900 * csum items that cross the new i_size are truncated to the new size
901 * as well.
902 */
903static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
904 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -0500905 struct inode *inode,
906 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400907{
908 int ret;
909 struct btrfs_path *path;
910 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400911 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400912 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400913 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400914 struct btrfs_file_extent_item *fi;
915 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400916 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400917 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500918 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500919 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400920 int found_extent;
921 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -0500922 int pending_del_nr = 0;
923 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -0400924 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -0400925 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400926
Chris Mason3b951512008-04-17 11:29:12 -0400927 btrfs_drop_extent_cache(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400928 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400929 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400930 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400931
Chris Mason39279cc2007-06-12 06:35:45 -0400932 /* FIXME, add redo link to tree so we don't leak on crash */
933 key.objectid = inode->i_ino;
934 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400935 key.type = (u8)-1;
936
Chris Mason85e21ba2008-01-29 15:11:36 -0500937 btrfs_init_path(path);
938search_again:
939 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
940 if (ret < 0) {
941 goto error;
942 }
943 if (ret > 0) {
944 BUG_ON(path->slots[0] == 0);
945 path->slots[0]--;
946 }
947
Chris Mason39279cc2007-06-12 06:35:45 -0400948 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -0400949 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400950 leaf = path->nodes[0];
951 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
952 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400953
Chris Mason5f39d392007-10-15 16:14:19 -0400954 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400955 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400956
Chris Mason85e21ba2008-01-29 15:11:36 -0500957 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400958 break;
959
Chris Mason5f39d392007-10-15 16:14:19 -0400960 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400961 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400962 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400963 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400964 extent_type = btrfs_file_extent_type(leaf, fi);
965 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400966 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400967 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400968 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
969 struct btrfs_item *item = btrfs_item_nr(leaf,
970 path->slots[0]);
971 item_end += btrfs_file_extent_inline_len(leaf,
972 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400973 }
Yan008630c2007-11-07 13:31:09 -0500974 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400975 }
976 if (found_type == BTRFS_CSUM_ITEM_KEY) {
977 ret = btrfs_csum_truncate(trans, root, path,
978 inode->i_size);
979 BUG_ON(ret);
980 }
Yan008630c2007-11-07 13:31:09 -0500981 if (item_end < inode->i_size) {
Chris Masonb888db2b2007-08-27 16:49:44 -0400982 if (found_type == BTRFS_DIR_ITEM_KEY) {
983 found_type = BTRFS_INODE_ITEM_KEY;
984 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
985 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -0500986 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
987 found_type = BTRFS_XATTR_ITEM_KEY;
988 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
989 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db2b2007-08-27 16:49:44 -0400990 } else if (found_type) {
991 found_type--;
992 } else {
993 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400994 }
Yana61721d2007-09-17 11:08:38 -0400995 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -0500996 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -0400997 }
Chris Mason5f39d392007-10-15 16:14:19 -0400998 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -0400999 del_item = 1;
1000 else
1001 del_item = 0;
1002 found_extent = 0;
1003
1004 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001005 if (found_type != BTRFS_EXTENT_DATA_KEY)
1006 goto delete;
1007
1008 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001009 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001010 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001011 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001012 u64 orig_num_bytes =
1013 btrfs_file_extent_num_bytes(leaf, fi);
1014 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001015 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05001016 extent_num_bytes = extent_num_bytes &
1017 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001018 btrfs_set_file_extent_num_bytes(leaf, fi,
1019 extent_num_bytes);
1020 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001021 extent_num_bytes);
1022 if (extent_start != 0)
1023 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001024 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001025 } else {
Chris Masondb945352007-10-15 16:15:53 -04001026 extent_num_bytes =
1027 btrfs_file_extent_disk_num_bytes(leaf,
1028 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001029 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001030 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001031 if (extent_start != 0) {
1032 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -05001033 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001034 }
Chris Masond8d5f3e2007-12-11 12:42:00 -05001035 root_gen = btrfs_header_generation(leaf);
1036 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001037 }
Chris Mason90692182008-02-08 13:49:28 -05001038 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1039 if (!del_item) {
1040 u32 newsize = inode->i_size - found_key.offset;
1041 dec_i_blocks(inode, item_end + 1 -
1042 found_key.offset - newsize);
1043 newsize =
1044 btrfs_file_extent_calc_inline_size(newsize);
1045 ret = btrfs_truncate_item(trans, root, path,
1046 newsize, 1);
1047 BUG_ON(ret);
1048 } else {
1049 dec_i_blocks(inode, item_end + 1 -
1050 found_key.offset);
1051 }
Chris Mason39279cc2007-06-12 06:35:45 -04001052 }
Chris Mason179e29e2007-11-01 11:28:41 -04001053delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001054 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001055 if (!pending_del_nr) {
1056 /* no pending yet, add ourselves */
1057 pending_del_slot = path->slots[0];
1058 pending_del_nr = 1;
1059 } else if (pending_del_nr &&
1060 path->slots[0] + 1 == pending_del_slot) {
1061 /* hop on the pending chunk */
1062 pending_del_nr++;
1063 pending_del_slot = path->slots[0];
1064 } else {
1065 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1066 }
Chris Mason39279cc2007-06-12 06:35:45 -04001067 } else {
1068 break;
1069 }
Chris Mason39279cc2007-06-12 06:35:45 -04001070 if (found_extent) {
1071 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001072 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -05001073 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001074 root_gen, inode->i_ino,
1075 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001076 BUG_ON(ret);
1077 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001078next:
1079 if (path->slots[0] == 0) {
1080 if (pending_del_nr)
1081 goto del_pending;
1082 btrfs_release_path(root, path);
1083 goto search_again;
1084 }
1085
1086 path->slots[0]--;
1087 if (pending_del_nr &&
1088 path->slots[0] + 1 != pending_del_slot) {
1089 struct btrfs_key debug;
1090del_pending:
1091 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1092 pending_del_slot);
1093 ret = btrfs_del_items(trans, root, path,
1094 pending_del_slot,
1095 pending_del_nr);
1096 BUG_ON(ret);
1097 pending_del_nr = 0;
1098 btrfs_release_path(root, path);
1099 goto search_again;
1100 }
Chris Mason39279cc2007-06-12 06:35:45 -04001101 }
1102 ret = 0;
1103error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001104 if (pending_del_nr) {
1105 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1106 pending_del_nr);
1107 }
Chris Mason39279cc2007-06-12 06:35:45 -04001108 btrfs_release_path(root, path);
1109 btrfs_free_path(path);
1110 inode->i_sb->s_dirt = 1;
1111 return ret;
1112}
1113
Chris Masonb888db2b2007-08-27 16:49:44 -04001114static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -04001115 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001116{
Chris Mason39279cc2007-06-12 06:35:45 -04001117 char *kaddr;
Chris Masond1310b22008-01-24 16:13:08 -05001118 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason35ebb932007-10-30 16:56:53 -04001119 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db2b2007-08-27 16:49:44 -04001120 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -05001121 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001122
Chris Mason190662b2007-12-18 16:25:45 -05001123 WARN_ON(!PageLocked(page));
Christoph Hellwigb3cfa352007-09-17 11:25:58 -04001124 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001125
Chris Masond1310b22008-01-24 16:13:08 -05001126 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001127 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
Chris Masonb888db2b2007-08-27 16:49:44 -04001128 page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -05001129
Chris Masona52d9a82007-08-27 16:49:44 -04001130 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db2b2007-08-27 16:49:44 -04001131 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001132 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
1133 flush_dcache_page(page);
Chris Masonb888db2b2007-08-27 16:49:44 -04001134 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001135 }
Chris Masonb888db2b2007-08-27 16:49:44 -04001136 set_page_dirty(page);
Chris Masond1310b22008-01-24 16:13:08 -05001137 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001138
Chris Masona52d9a82007-08-27 16:49:44 -04001139 return ret;
1140}
1141
1142/*
1143 * taken from block_truncate_page, but does cow as it zeros out
1144 * any bytes left in the last page in the file.
1145 */
1146static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1147{
1148 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001149 struct btrfs_root *root = BTRFS_I(inode)->root;
1150 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001151 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1152 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1153 struct page *page;
1154 int ret = 0;
1155 u64 page_start;
1156
1157 if ((offset & (blocksize - 1)) == 0)
1158 goto out;
1159
1160 ret = -ENOMEM;
1161 page = grab_cache_page(mapping, index);
1162 if (!page)
1163 goto out;
1164 if (!PageUptodate(page)) {
1165 ret = btrfs_readpage(NULL, page);
1166 lock_page(page);
1167 if (!PageUptodate(page)) {
1168 ret = -EIO;
1169 goto out;
1170 }
1171 }
Chris Mason35ebb932007-10-30 16:56:53 -04001172 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04001173
Chris Masonb888db2b2007-08-27 16:49:44 -04001174 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -04001175
Chris Mason39279cc2007-06-12 06:35:45 -04001176 unlock_page(page);
1177 page_cache_release(page);
1178out:
1179 return ret;
1180}
1181
1182static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1183{
1184 struct inode *inode = dentry->d_inode;
1185 int err;
1186
1187 err = inode_change_ok(inode, attr);
1188 if (err)
1189 return err;
1190
1191 if (S_ISREG(inode->i_mode) &&
1192 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1193 struct btrfs_trans_handle *trans;
1194 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001195 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001196
Chris Mason5f39d392007-10-15 16:14:19 -04001197 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001198 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001199 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001200 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001201 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001202
Chris Mason1b0f7c22008-01-30 14:33:02 -05001203 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001204 goto out;
1205
Chris Mason1832a6d2007-12-21 16:27:21 -05001206 mutex_lock(&root->fs_info->fs_mutex);
1207 err = btrfs_check_free_space(root, 1, 0);
1208 mutex_unlock(&root->fs_info->fs_mutex);
1209 if (err)
1210 goto fail;
1211
Chris Mason39279cc2007-06-12 06:35:45 -04001212 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1213
Chris Mason1b0f7c22008-01-30 14:33:02 -05001214 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason5f564062008-01-22 16:47:59 -05001215 hole_size = block_end - hole_start;
Chris Mason39279cc2007-06-12 06:35:45 -04001216
1217 mutex_lock(&root->fs_info->fs_mutex);
1218 trans = btrfs_start_transaction(root, 1);
1219 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -04001220 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001221 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001222 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001223
Chris Mason179e29e2007-11-01 11:28:41 -04001224 if (alloc_hint != EXTENT_MAP_INLINE) {
1225 err = btrfs_insert_file_extent(trans, root,
1226 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001227 hole_start, 0, 0,
1228 hole_size);
Chris Masond1310b22008-01-24 16:13:08 -05001229 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001230 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001231 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001232 }
Chris Mason39279cc2007-06-12 06:35:45 -04001233 btrfs_end_transaction(trans, root);
1234 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001235 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001236 if (err)
1237 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001238 }
1239out:
1240 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001241fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001242 return err;
1243}
Chris Mason61295eb2008-01-14 16:24:38 -05001244
Chris Mason2da98f02008-01-16 11:44:43 -05001245void btrfs_put_inode(struct inode *inode)
Chris Mason61295eb2008-01-14 16:24:38 -05001246{
Chris Mason2da98f02008-01-16 11:44:43 -05001247 int ret;
1248
1249 if (!BTRFS_I(inode)->ordered_trans) {
Chris Mason61295eb2008-01-14 16:24:38 -05001250 return;
1251 }
Chris Mason2da98f02008-01-16 11:44:43 -05001252
1253 if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_DIRTY) ||
1254 mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1255 return;
1256
1257 ret = btrfs_del_ordered_inode(inode);
1258 if (ret == 1) {
1259 atomic_dec(&inode->i_count);
1260 }
Chris Mason61295eb2008-01-14 16:24:38 -05001261}
1262
Chris Mason39279cc2007-06-12 06:35:45 -04001263void btrfs_delete_inode(struct inode *inode)
1264{
1265 struct btrfs_trans_handle *trans;
1266 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001267 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001268 int ret;
1269
1270 truncate_inode_pages(&inode->i_data, 0);
1271 if (is_bad_inode(inode)) {
1272 goto no_delete;
1273 }
Chris Mason5f39d392007-10-15 16:14:19 -04001274
Chris Mason39279cc2007-06-12 06:35:45 -04001275 inode->i_size = 0;
1276 mutex_lock(&root->fs_info->fs_mutex);
1277 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001278
Chris Mason39279cc2007-06-12 06:35:45 -04001279 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001280 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001281 if (ret)
1282 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001283
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001284 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001285 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001286
Chris Mason39279cc2007-06-12 06:35:45 -04001287 btrfs_end_transaction(trans, root);
1288 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001289 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001290 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001291 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001292
1293no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001294 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001295 btrfs_end_transaction(trans, root);
1296 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001297 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001298 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001299no_delete:
1300 clear_inode(inode);
1301}
1302
1303/*
1304 * this returns the key found in the dir entry in the location pointer.
1305 * If no dir entries were found, location->objectid is 0.
1306 */
1307static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1308 struct btrfs_key *location)
1309{
1310 const char *name = dentry->d_name.name;
1311 int namelen = dentry->d_name.len;
1312 struct btrfs_dir_item *di;
1313 struct btrfs_path *path;
1314 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001315 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001316
Chris Mason39544012007-12-12 14:38:19 -05001317 if (namelen == 1 && strcmp(name, ".") == 0) {
1318 location->objectid = dir->i_ino;
1319 location->type = BTRFS_INODE_ITEM_KEY;
1320 location->offset = 0;
1321 return 0;
1322 }
Chris Mason39279cc2007-06-12 06:35:45 -04001323 path = btrfs_alloc_path();
1324 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001325
Chris Mason7a720532007-12-13 09:06:59 -05001326 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001327 struct btrfs_key key;
1328 struct extent_buffer *leaf;
1329 u32 nritems;
1330 int slot;
1331
1332 key.objectid = dir->i_ino;
1333 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1334 key.offset = 0;
1335 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1336 BUG_ON(ret == 0);
1337 ret = 0;
1338
1339 leaf = path->nodes[0];
1340 slot = path->slots[0];
1341 nritems = btrfs_header_nritems(leaf);
1342 if (slot >= nritems)
1343 goto out_err;
1344
1345 btrfs_item_key_to_cpu(leaf, &key, slot);
1346 if (key.objectid != dir->i_ino ||
1347 key.type != BTRFS_INODE_REF_KEY) {
1348 goto out_err;
1349 }
1350 location->objectid = key.offset;
1351 location->type = BTRFS_INODE_ITEM_KEY;
1352 location->offset = 0;
1353 goto out;
1354 }
1355
Chris Mason39279cc2007-06-12 06:35:45 -04001356 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1357 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001358 if (IS_ERR(di))
1359 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001360 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001361 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001362 }
Chris Mason5f39d392007-10-15 16:14:19 -04001363 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001364out:
Chris Mason39279cc2007-06-12 06:35:45 -04001365 btrfs_free_path(path);
1366 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001367out_err:
1368 location->objectid = 0;
1369 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001370}
1371
1372/*
1373 * when we hit a tree root in a directory, the btrfs part of the inode
1374 * needs to be changed to reflect the root directory of the tree root. This
1375 * is kind of like crossing a mount point.
1376 */
1377static int fixup_tree_root_location(struct btrfs_root *root,
1378 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001379 struct btrfs_root **sub_root,
1380 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001381{
1382 struct btrfs_path *path;
1383 struct btrfs_root_item *ri;
1384
1385 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1386 return 0;
1387 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1388 return 0;
1389
1390 path = btrfs_alloc_path();
1391 BUG_ON(!path);
1392 mutex_lock(&root->fs_info->fs_mutex);
1393
Josef Bacik58176a92007-08-29 15:47:34 -04001394 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1395 dentry->d_name.name,
1396 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001397 if (IS_ERR(*sub_root))
1398 return PTR_ERR(*sub_root);
1399
1400 ri = &(*sub_root)->root_item;
1401 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001402 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1403 location->offset = 0;
1404
1405 btrfs_free_path(path);
1406 mutex_unlock(&root->fs_info->fs_mutex);
1407 return 0;
1408}
1409
1410static int btrfs_init_locked_inode(struct inode *inode, void *p)
1411{
1412 struct btrfs_iget_args *args = p;
1413 inode->i_ino = args->ino;
1414 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001415 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001416 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1417 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db2b2007-08-27 16:49:44 -04001418 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001419 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1420 inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001421 return 0;
1422}
1423
1424static int btrfs_find_actor(struct inode *inode, void *opaque)
1425{
1426 struct btrfs_iget_args *args = opaque;
1427 return (args->ino == inode->i_ino &&
1428 args->root == BTRFS_I(inode)->root);
1429}
1430
Chris Masondc17ff82008-01-08 15:46:30 -05001431struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1432 u64 root_objectid)
1433{
1434 struct btrfs_iget_args args;
1435 args.ino = objectid;
1436 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1437
1438 if (!args.root)
1439 return NULL;
1440
1441 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1442}
1443
Chris Mason39279cc2007-06-12 06:35:45 -04001444struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1445 struct btrfs_root *root)
1446{
1447 struct inode *inode;
1448 struct btrfs_iget_args args;
1449 args.ino = objectid;
1450 args.root = root;
1451
1452 inode = iget5_locked(s, objectid, btrfs_find_actor,
1453 btrfs_init_locked_inode,
1454 (void *)&args);
1455 return inode;
1456}
1457
1458static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1459 struct nameidata *nd)
1460{
1461 struct inode * inode;
1462 struct btrfs_inode *bi = BTRFS_I(dir);
1463 struct btrfs_root *root = bi->root;
1464 struct btrfs_root *sub_root = root;
1465 struct btrfs_key location;
1466 int ret;
1467
1468 if (dentry->d_name.len > BTRFS_NAME_LEN)
1469 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001470
Chris Mason39279cc2007-06-12 06:35:45 -04001471 mutex_lock(&root->fs_info->fs_mutex);
1472 ret = btrfs_inode_by_name(dir, dentry, &location);
1473 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001474
Chris Mason39279cc2007-06-12 06:35:45 -04001475 if (ret < 0)
1476 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001477
Chris Mason39279cc2007-06-12 06:35:45 -04001478 inode = NULL;
1479 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001480 ret = fixup_tree_root_location(root, &location, &sub_root,
1481 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001482 if (ret < 0)
1483 return ERR_PTR(ret);
1484 if (ret > 0)
1485 return ERR_PTR(-ENOENT);
1486 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1487 sub_root);
1488 if (!inode)
1489 return ERR_PTR(-EACCES);
1490 if (inode->i_state & I_NEW) {
1491 /* the inode and parent dir are two different roots */
1492 if (sub_root != root) {
1493 igrab(inode);
1494 sub_root->inode = inode;
1495 }
1496 BTRFS_I(inode)->root = sub_root;
1497 memcpy(&BTRFS_I(inode)->location, &location,
1498 sizeof(location));
1499 btrfs_read_locked_inode(inode);
1500 unlock_new_inode(inode);
1501 }
1502 }
1503 return d_splice_alias(inode, dentry);
1504}
1505
Chris Mason39279cc2007-06-12 06:35:45 -04001506static unsigned char btrfs_filetype_table[] = {
1507 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1508};
1509
1510static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1511{
Chris Mason6da6aba2007-12-18 16:15:09 -05001512 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001513 struct btrfs_root *root = BTRFS_I(inode)->root;
1514 struct btrfs_item *item;
1515 struct btrfs_dir_item *di;
1516 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001517 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001518 struct btrfs_path *path;
1519 int ret;
1520 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001521 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001522 int slot;
1523 int advance;
1524 unsigned char d_type;
1525 int over = 0;
1526 u32 di_cur;
1527 u32 di_total;
1528 u32 di_len;
1529 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001530 char tmp_name[32];
1531 char *name_ptr;
1532 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001533
1534 /* FIXME, use a real flag for deciding about the key type */
1535 if (root->fs_info->tree_root == root)
1536 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001537
Chris Mason39544012007-12-12 14:38:19 -05001538 /* special case for "." */
1539 if (filp->f_pos == 0) {
1540 over = filldir(dirent, ".", 1,
1541 1, inode->i_ino,
1542 DT_DIR);
1543 if (over)
1544 return 0;
1545 filp->f_pos = 1;
1546 }
1547
Chris Mason39279cc2007-06-12 06:35:45 -04001548 mutex_lock(&root->fs_info->fs_mutex);
1549 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001550 path = btrfs_alloc_path();
1551 path->reada = 2;
1552
1553 /* special case for .., just use the back ref */
1554 if (filp->f_pos == 1) {
1555 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1556 key.offset = 0;
1557 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1558 BUG_ON(ret == 0);
1559 leaf = path->nodes[0];
1560 slot = path->slots[0];
1561 nritems = btrfs_header_nritems(leaf);
1562 if (slot >= nritems) {
1563 btrfs_release_path(root, path);
1564 goto read_dir_items;
1565 }
1566 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1567 btrfs_release_path(root, path);
1568 if (found_key.objectid != key.objectid ||
1569 found_key.type != BTRFS_INODE_REF_KEY)
1570 goto read_dir_items;
1571 over = filldir(dirent, "..", 2,
1572 2, found_key.offset, DT_DIR);
1573 if (over)
1574 goto nopos;
1575 filp->f_pos = 2;
1576 }
1577
1578read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001579 btrfs_set_key_type(&key, key_type);
1580 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001581
Chris Mason39279cc2007-06-12 06:35:45 -04001582 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1583 if (ret < 0)
1584 goto err;
1585 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001586 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001587 leaf = path->nodes[0];
1588 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001589 slot = path->slots[0];
1590 if (advance || slot >= nritems) {
1591 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001592 ret = btrfs_next_leaf(root, path);
1593 if (ret)
1594 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001595 leaf = path->nodes[0];
1596 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001597 slot = path->slots[0];
1598 } else {
1599 slot++;
1600 path->slots[0]++;
1601 }
1602 }
1603 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001604 item = btrfs_item_nr(leaf, slot);
1605 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1606
1607 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001608 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001609 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001610 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001611 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001612 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001613
1614 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001615 advance = 1;
1616 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1617 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001618 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001619 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001620 struct btrfs_key location;
1621
1622 name_len = btrfs_dir_name_len(leaf, di);
1623 if (name_len < 32) {
1624 name_ptr = tmp_name;
1625 } else {
1626 name_ptr = kmalloc(name_len, GFP_NOFS);
1627 BUG_ON(!name_ptr);
1628 }
1629 read_extent_buffer(leaf, name_ptr,
1630 (unsigned long)(di + 1), name_len);
1631
1632 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1633 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001634 over = filldir(dirent, name_ptr, name_len,
1635 found_key.offset,
1636 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001637 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001638
1639 if (name_ptr != tmp_name)
1640 kfree(name_ptr);
1641
Chris Mason39279cc2007-06-12 06:35:45 -04001642 if (over)
1643 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001644 di_len = btrfs_dir_name_len(leaf, di) +
1645 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001646 di_cur += di_len;
1647 di = (struct btrfs_dir_item *)((char *)di + di_len);
1648 }
1649 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001650 if (key_type == BTRFS_DIR_INDEX_KEY)
1651 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1652 else
1653 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001654nopos:
1655 ret = 0;
1656err:
1657 btrfs_release_path(root, path);
1658 btrfs_free_path(path);
1659 mutex_unlock(&root->fs_info->fs_mutex);
1660 return ret;
1661}
1662
1663int btrfs_write_inode(struct inode *inode, int wait)
1664{
1665 struct btrfs_root *root = BTRFS_I(inode)->root;
1666 struct btrfs_trans_handle *trans;
1667 int ret = 0;
1668
1669 if (wait) {
1670 mutex_lock(&root->fs_info->fs_mutex);
1671 trans = btrfs_start_transaction(root, 1);
1672 btrfs_set_trans_block_group(trans, inode);
1673 ret = btrfs_commit_transaction(trans, root);
1674 mutex_unlock(&root->fs_info->fs_mutex);
1675 }
1676 return ret;
1677}
1678
1679/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001680 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001681 * inode changes. But, it is most likely to find the inode in cache.
1682 * FIXME, needs more benchmarking...there are no reasons other than performance
1683 * to keep or drop this code.
1684 */
1685void btrfs_dirty_inode(struct inode *inode)
1686{
1687 struct btrfs_root *root = BTRFS_I(inode)->root;
1688 struct btrfs_trans_handle *trans;
1689
1690 mutex_lock(&root->fs_info->fs_mutex);
1691 trans = btrfs_start_transaction(root, 1);
1692 btrfs_set_trans_block_group(trans, inode);
1693 btrfs_update_inode(trans, root, inode);
1694 btrfs_end_transaction(trans, root);
1695 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001696}
1697
1698static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1699 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001700 const char *name, int name_len,
1701 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001702 u64 objectid,
1703 struct btrfs_block_group_cache *group,
1704 int mode)
1705{
1706 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001707 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04001708 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04001709 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001710 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001711 struct btrfs_inode_ref *ref;
1712 struct btrfs_key key[2];
1713 u32 sizes[2];
1714 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001715 int ret;
1716 int owner;
1717
Chris Mason5f39d392007-10-15 16:14:19 -04001718 path = btrfs_alloc_path();
1719 BUG_ON(!path);
1720
Chris Mason39279cc2007-06-12 06:35:45 -04001721 inode = new_inode(root->fs_info->sb);
1722 if (!inode)
1723 return ERR_PTR(-ENOMEM);
1724
Chris Masond1310b22008-01-24 16:13:08 -05001725 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1726 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db2b2007-08-27 16:49:44 -04001727 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001728 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1729 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001730 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001731 BTRFS_I(inode)->root = root;
Chris Masonb888db2b2007-08-27 16:49:44 -04001732
Chris Mason39279cc2007-06-12 06:35:45 -04001733 if (mode & S_IFDIR)
1734 owner = 0;
1735 else
1736 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04001737 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001738 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04001739 if (!new_inode_group) {
1740 printk("find_block group failed\n");
1741 new_inode_group = group;
1742 }
1743 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05001744 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001745
1746 key[0].objectid = objectid;
1747 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1748 key[0].offset = 0;
1749
1750 key[1].objectid = objectid;
1751 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1752 key[1].offset = ref_objectid;
1753
1754 sizes[0] = sizeof(struct btrfs_inode_item);
1755 sizes[1] = name_len + sizeof(*ref);
1756
1757 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1758 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001759 goto fail;
1760
Chris Mason9c583092008-01-29 15:15:18 -05001761 if (objectid > root->highest_inode)
1762 root->highest_inode = objectid;
1763
Chris Mason39279cc2007-06-12 06:35:45 -04001764 inode->i_uid = current->fsuid;
1765 inode->i_gid = current->fsgid;
1766 inode->i_mode = mode;
1767 inode->i_ino = objectid;
1768 inode->i_blocks = 0;
1769 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001770 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1771 struct btrfs_inode_item);
1772 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001773
1774 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1775 struct btrfs_inode_ref);
1776 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1777 ptr = (unsigned long)(ref + 1);
1778 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1779
Chris Mason5f39d392007-10-15 16:14:19 -04001780 btrfs_mark_buffer_dirty(path->nodes[0]);
1781 btrfs_free_path(path);
1782
Chris Mason39279cc2007-06-12 06:35:45 -04001783 location = &BTRFS_I(inode)->location;
1784 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001785 location->offset = 0;
1786 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1787
Chris Mason39279cc2007-06-12 06:35:45 -04001788 insert_inode_hash(inode);
1789 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001790fail:
1791 btrfs_free_path(path);
1792 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001793}
1794
1795static inline u8 btrfs_inode_type(struct inode *inode)
1796{
1797 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1798}
1799
1800static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001801 struct dentry *dentry, struct inode *inode,
1802 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001803{
1804 int ret;
1805 struct btrfs_key key;
1806 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001807 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001808
Chris Mason39279cc2007-06-12 06:35:45 -04001809 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001810 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1811 key.offset = 0;
1812
1813 ret = btrfs_insert_dir_item(trans, root,
1814 dentry->d_name.name, dentry->d_name.len,
1815 dentry->d_parent->d_inode->i_ino,
1816 &key, btrfs_inode_type(inode));
1817 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05001818 if (add_backref) {
1819 ret = btrfs_insert_inode_ref(trans, root,
1820 dentry->d_name.name,
1821 dentry->d_name.len,
1822 inode->i_ino,
1823 dentry->d_parent->d_inode->i_ino);
1824 }
Chris Mason79c44582007-06-25 10:09:33 -04001825 parent_inode = dentry->d_parent->d_inode;
1826 parent_inode->i_size += dentry->d_name.len * 2;
1827 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001828 ret = btrfs_update_inode(trans, root,
1829 dentry->d_parent->d_inode);
1830 }
1831 return ret;
1832}
1833
1834static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001835 struct dentry *dentry, struct inode *inode,
1836 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001837{
Chris Mason9c583092008-01-29 15:15:18 -05001838 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04001839 if (!err) {
1840 d_instantiate(dentry, inode);
1841 return 0;
1842 }
1843 if (err > 0)
1844 err = -EEXIST;
1845 return err;
1846}
1847
Josef Bacik618e21d2007-07-11 10:18:17 -04001848static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1849 int mode, dev_t rdev)
1850{
1851 struct btrfs_trans_handle *trans;
1852 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001853 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04001854 int err;
1855 int drop_inode = 0;
1856 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05001857 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04001858
1859 if (!new_valid_dev(rdev))
1860 return -EINVAL;
1861
1862 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001863 err = btrfs_check_free_space(root, 1, 0);
1864 if (err)
1865 goto fail;
1866
Josef Bacik618e21d2007-07-11 10:18:17 -04001867 trans = btrfs_start_transaction(root, 1);
1868 btrfs_set_trans_block_group(trans, dir);
1869
1870 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1871 if (err) {
1872 err = -ENOSPC;
1873 goto out_unlock;
1874 }
1875
Chris Mason9c583092008-01-29 15:15:18 -05001876 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1877 dentry->d_name.len,
1878 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04001879 BTRFS_I(dir)->block_group, mode);
1880 err = PTR_ERR(inode);
1881 if (IS_ERR(inode))
1882 goto out_unlock;
1883
1884 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001885 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04001886 if (err)
1887 drop_inode = 1;
1888 else {
1889 inode->i_op = &btrfs_special_inode_operations;
1890 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001891 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001892 }
1893 dir->i_sb->s_dirt = 1;
1894 btrfs_update_inode_block_group(trans, inode);
1895 btrfs_update_inode_block_group(trans, dir);
1896out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001897 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001898 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001899fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04001900 mutex_unlock(&root->fs_info->fs_mutex);
1901
1902 if (drop_inode) {
1903 inode_dec_link_count(inode);
1904 iput(inode);
1905 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001906 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001907 btrfs_throttle(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04001908 return err;
1909}
1910
Chris Mason39279cc2007-06-12 06:35:45 -04001911static int btrfs_create(struct inode *dir, struct dentry *dentry,
1912 int mode, struct nameidata *nd)
1913{
1914 struct btrfs_trans_handle *trans;
1915 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001916 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001917 int err;
1918 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05001919 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001920 u64 objectid;
1921
1922 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001923 err = btrfs_check_free_space(root, 1, 0);
1924 if (err)
1925 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001926 trans = btrfs_start_transaction(root, 1);
1927 btrfs_set_trans_block_group(trans, dir);
1928
1929 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1930 if (err) {
1931 err = -ENOSPC;
1932 goto out_unlock;
1933 }
1934
Chris Mason9c583092008-01-29 15:15:18 -05001935 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1936 dentry->d_name.len,
1937 dentry->d_parent->d_inode->i_ino,
1938 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04001939 err = PTR_ERR(inode);
1940 if (IS_ERR(inode))
1941 goto out_unlock;
1942
1943 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001944 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001945 if (err)
1946 drop_inode = 1;
1947 else {
1948 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001949 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001950 inode->i_fop = &btrfs_file_operations;
1951 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05001952 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1953 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04001954 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001955 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1956 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001957 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001958 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001959 }
1960 dir->i_sb->s_dirt = 1;
1961 btrfs_update_inode_block_group(trans, inode);
1962 btrfs_update_inode_block_group(trans, dir);
1963out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001964 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001965 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001966fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001967 mutex_unlock(&root->fs_info->fs_mutex);
1968
1969 if (drop_inode) {
1970 inode_dec_link_count(inode);
1971 iput(inode);
1972 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001973 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001974 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001975 return err;
1976}
1977
1978static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1979 struct dentry *dentry)
1980{
1981 struct btrfs_trans_handle *trans;
1982 struct btrfs_root *root = BTRFS_I(dir)->root;
1983 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001984 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001985 int err;
1986 int drop_inode = 0;
1987
1988 if (inode->i_nlink == 0)
1989 return -ENOENT;
1990
Chris Mason6da6aba2007-12-18 16:15:09 -05001991#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1992 inode->i_nlink++;
1993#else
Chris Mason39279cc2007-06-12 06:35:45 -04001994 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001995#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001996 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001997 err = btrfs_check_free_space(root, 1, 0);
1998 if (err)
1999 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002000 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002001
Chris Mason39279cc2007-06-12 06:35:45 -04002002 btrfs_set_trans_block_group(trans, dir);
2003 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05002004 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002005
Chris Mason39279cc2007-06-12 06:35:45 -04002006 if (err)
2007 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002008
Chris Mason39279cc2007-06-12 06:35:45 -04002009 dir->i_sb->s_dirt = 1;
2010 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002011 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002012
Chris Mason54aa1f42007-06-22 14:16:25 -04002013 if (err)
2014 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002015
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002016 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002017 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002018fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002019 mutex_unlock(&root->fs_info->fs_mutex);
2020
2021 if (drop_inode) {
2022 inode_dec_link_count(inode);
2023 iput(inode);
2024 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002025 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002026 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002027 return err;
2028}
2029
Chris Mason39279cc2007-06-12 06:35:45 -04002030static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2031{
2032 struct inode *inode;
2033 struct btrfs_trans_handle *trans;
2034 struct btrfs_root *root = BTRFS_I(dir)->root;
2035 int err = 0;
2036 int drop_on_err = 0;
2037 u64 objectid;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002038 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002039
2040 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002041 err = btrfs_check_free_space(root, 1, 0);
2042 if (err)
2043 goto out_unlock;
2044
Chris Mason39279cc2007-06-12 06:35:45 -04002045 trans = btrfs_start_transaction(root, 1);
2046 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002047
Chris Mason39279cc2007-06-12 06:35:45 -04002048 if (IS_ERR(trans)) {
2049 err = PTR_ERR(trans);
2050 goto out_unlock;
2051 }
2052
2053 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2054 if (err) {
2055 err = -ENOSPC;
2056 goto out_unlock;
2057 }
2058
Chris Mason9c583092008-01-29 15:15:18 -05002059 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2060 dentry->d_name.len,
2061 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002062 BTRFS_I(dir)->block_group, S_IFDIR | mode);
2063 if (IS_ERR(inode)) {
2064 err = PTR_ERR(inode);
2065 goto out_fail;
2066 }
Chris Mason5f39d392007-10-15 16:14:19 -04002067
Chris Mason39279cc2007-06-12 06:35:45 -04002068 drop_on_err = 1;
2069 inode->i_op = &btrfs_dir_inode_operations;
2070 inode->i_fop = &btrfs_dir_file_operations;
2071 btrfs_set_trans_block_group(trans, inode);
2072
Chris Mason39544012007-12-12 14:38:19 -05002073 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002074 err = btrfs_update_inode(trans, root, inode);
2075 if (err)
2076 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002077
Chris Mason9c583092008-01-29 15:15:18 -05002078 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002079 if (err)
2080 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002081
Chris Mason39279cc2007-06-12 06:35:45 -04002082 d_instantiate(dentry, inode);
2083 drop_on_err = 0;
2084 dir->i_sb->s_dirt = 1;
2085 btrfs_update_inode_block_group(trans, inode);
2086 btrfs_update_inode_block_group(trans, dir);
2087
2088out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002089 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002090 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002091
Chris Mason39279cc2007-06-12 06:35:45 -04002092out_unlock:
2093 mutex_unlock(&root->fs_info->fs_mutex);
2094 if (drop_on_err)
2095 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002096 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002097 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002098 return err;
2099}
2100
Chris Mason3b951512008-04-17 11:29:12 -04002101static int merge_extent_mapping(struct extent_map_tree *em_tree,
2102 struct extent_map *existing,
2103 struct extent_map *em)
2104{
2105 u64 start_diff;
2106 u64 new_end;
2107 int ret = 0;
2108 int real_blocks = existing->block_start < EXTENT_MAP_LAST_BYTE;
2109
2110 if (real_blocks && em->block_start >= EXTENT_MAP_LAST_BYTE)
2111 goto invalid;
2112
2113 if (!real_blocks && em->block_start != existing->block_start)
2114 goto invalid;
2115
2116 new_end = max(existing->start + existing->len, em->start + em->len);
2117
2118 if (existing->start >= em->start) {
2119 if (em->start + em->len < existing->start)
2120 goto invalid;
2121
2122 start_diff = existing->start - em->start;
2123 if (real_blocks && em->block_start + start_diff !=
2124 existing->block_start)
2125 goto invalid;
2126
2127 em->len = new_end - em->start;
2128
2129 remove_extent_mapping(em_tree, existing);
2130 /* free for the tree */
2131 free_extent_map(existing);
2132 ret = add_extent_mapping(em_tree, em);
2133
2134 } else if (em->start > existing->start) {
2135
2136 if (existing->start + existing->len < em->start)
2137 goto invalid;
2138
2139 start_diff = em->start - existing->start;
2140 if (real_blocks && existing->block_start + start_diff !=
2141 em->block_start)
2142 goto invalid;
2143
2144 remove_extent_mapping(em_tree, existing);
2145 em->block_start = existing->block_start;
2146 em->start = existing->start;
2147 em->len = new_end - existing->start;
2148 free_extent_map(existing);
2149
2150 ret = add_extent_mapping(em_tree, em);
2151 } else {
2152 goto invalid;
2153 }
2154 return ret;
2155
2156invalid:
2157 printk("invalid extent map merge [%Lu %Lu %Lu] [%Lu %Lu %Lu]\n",
2158 existing->start, existing->len, existing->block_start,
2159 em->start, em->len, em->block_start);
2160 return -EIO;
2161}
2162
Chris Masona52d9a82007-08-27 16:49:44 -04002163struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002164 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002165 int create)
2166{
2167 int ret;
2168 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002169 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002170 u64 extent_start = 0;
2171 u64 extent_end = 0;
2172 u64 objectid = inode->i_ino;
2173 u32 found_type;
Chris Masona52d9a82007-08-27 16:49:44 -04002174 struct btrfs_path *path;
2175 struct btrfs_root *root = BTRFS_I(inode)->root;
2176 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002177 struct extent_buffer *leaf;
2178 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002179 struct extent_map *em = NULL;
2180 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002181 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002182 struct btrfs_trans_handle *trans = NULL;
2183
2184 path = btrfs_alloc_path();
2185 BUG_ON(!path);
2186 mutex_lock(&root->fs_info->fs_mutex);
2187
2188again:
Chris Masond1310b22008-01-24 16:13:08 -05002189 spin_lock(&em_tree->lock);
2190 em = lookup_extent_mapping(em_tree, start, len);
2191 spin_unlock(&em_tree->lock);
2192
Chris Masona52d9a82007-08-27 16:49:44 -04002193 if (em) {
Chris Mason56b453c2008-01-03 09:08:27 -05002194 if (em->start > start) {
Chris Masond1310b22008-01-24 16:13:08 -05002195 printk("get_extent lookup [%Lu %Lu] em [%Lu %Lu]\n",
2196 start, len, em->start, em->len);
Chris Mason56b453c2008-01-03 09:08:27 -05002197 WARN_ON(1);
2198 }
Chris Mason70dec802008-01-29 09:59:12 -05002199 if (em->block_start == EXTENT_MAP_INLINE && page)
2200 free_extent_map(em);
2201 else
2202 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002203 }
Chris Masond1310b22008-01-24 16:13:08 -05002204 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002205 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002206 err = -ENOMEM;
2207 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002208 }
Chris Masond1310b22008-01-24 16:13:08 -05002209
2210 em->start = EXTENT_MAP_HOLE;
2211 em->len = (u64)-1;
Chris Masona52d9a82007-08-27 16:49:44 -04002212 em->bdev = inode->i_sb->s_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04002213 ret = btrfs_lookup_file_extent(trans, root, path,
2214 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002215 if (ret < 0) {
2216 err = ret;
2217 goto out;
2218 }
2219
2220 if (ret != 0) {
2221 if (path->slots[0] == 0)
2222 goto not_found;
2223 path->slots[0]--;
2224 }
2225
Chris Mason5f39d392007-10-15 16:14:19 -04002226 leaf = path->nodes[0];
2227 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002228 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002229 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002230 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2231 found_type = btrfs_key_type(&found_key);
2232 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002233 found_type != BTRFS_EXTENT_DATA_KEY) {
2234 goto not_found;
2235 }
2236
Chris Mason5f39d392007-10-15 16:14:19 -04002237 found_type = btrfs_file_extent_type(leaf, item);
2238 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002239 if (found_type == BTRFS_FILE_EXTENT_REG) {
2240 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002241 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002242 err = 0;
Chris Masonb888db2b2007-08-27 16:49:44 -04002243 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002244 em->start = start;
2245 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002246 if (start + len <= extent_start)
Chris Masonb888db2b2007-08-27 16:49:44 -04002247 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002248 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002249 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002250 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002251 }
2252 goto not_found_em;
2253 }
Chris Masondb945352007-10-15 16:15:53 -04002254 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2255 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002256 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002257 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002258 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002259 goto insert;
2260 }
Chris Masondb945352007-10-15 16:15:53 -04002261 bytenr += btrfs_file_extent_offset(leaf, item);
2262 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002263 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002264 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002265 goto insert;
2266 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002267 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002268 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002269 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002270 size_t size;
2271 size_t extent_offset;
2272 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002273
Chris Mason5f39d392007-10-15 16:14:19 -04002274 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2275 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002276 extent_end = (extent_start + size + root->sectorsize - 1) &
2277 ~((u64)root->sectorsize - 1);
Chris Masonb888db2b2007-08-27 16:49:44 -04002278 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002279 em->start = start;
2280 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002281 if (start + len <= extent_start)
Chris Masonb888db2b2007-08-27 16:49:44 -04002282 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002283 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002284 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002285 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002286 }
2287 goto not_found_em;
2288 }
2289 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002290
2291 if (!page) {
2292 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002293 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002294 goto out;
2295 }
2296
Chris Mason70dec802008-01-29 09:59:12 -05002297 page_start = page_offset(page) + pg_offset;
2298 extent_offset = page_start - extent_start;
2299 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002300 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002301 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002302 em->len = (copy_size + root->sectorsize - 1) &
2303 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002304 map = kmap(page);
2305 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002306 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002307 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002308 copy_size);
2309 flush_dcache_page(page);
2310 } else if (create && PageUptodate(page)) {
2311 if (!trans) {
2312 kunmap(page);
2313 free_extent_map(em);
2314 em = NULL;
2315 btrfs_release_path(root, path);
2316 trans = btrfs_start_transaction(root, 1);
2317 goto again;
2318 }
Chris Mason70dec802008-01-29 09:59:12 -05002319 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002320 copy_size);
2321 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002322 }
Chris Masona52d9a82007-08-27 16:49:44 -04002323 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002324 set_extent_uptodate(io_tree, em->start,
2325 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002326 goto insert;
2327 } else {
2328 printk("unkknown found_type %d\n", found_type);
2329 WARN_ON(1);
2330 }
2331not_found:
2332 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002333 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002334not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002335 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002336insert:
2337 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002338 if (em->start > start || extent_map_end(em) <= start) {
2339 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002340 err = -EIO;
2341 goto out;
2342 }
Chris Masond1310b22008-01-24 16:13:08 -05002343
2344 err = 0;
2345 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002346 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002347
2348 /* it is possible that someone inserted the extent into the tree
2349 * while we had the lock dropped. It is also possible that
2350 * an overlapping map exists in the tree
2351 */
Chris Masona52d9a82007-08-27 16:49:44 -04002352 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002353 struct extent_map *existing;
2354 existing = lookup_extent_mapping(em_tree, start, len);
2355 if (!existing) {
2356 existing = lookup_extent_mapping(em_tree, em->start,
2357 em->len);
2358 if (existing) {
2359 err = merge_extent_mapping(em_tree, existing,
2360 em);
2361 free_extent_map(existing);
2362 if (err) {
2363 free_extent_map(em);
2364 em = NULL;
2365 }
2366 } else {
2367 err = -EIO;
2368 printk("failing to insert %Lu %Lu\n",
2369 start, len);
2370 free_extent_map(em);
2371 em = NULL;
2372 }
2373 } else {
2374 free_extent_map(em);
2375 em = existing;
Chris Masona52d9a82007-08-27 16:49:44 -04002376 }
Chris Masona52d9a82007-08-27 16:49:44 -04002377 }
Chris Masond1310b22008-01-24 16:13:08 -05002378 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002379out:
2380 btrfs_free_path(path);
2381 if (trans) {
2382 ret = btrfs_end_transaction(trans, root);
2383 if (!err)
2384 err = ret;
2385 }
2386 mutex_unlock(&root->fs_info->fs_mutex);
2387 if (err) {
2388 free_extent_map(em);
2389 WARN_ON(1);
2390 return ERR_PTR(err);
2391 }
2392 return em;
2393}
2394
Chris Mason16432982008-04-10 10:23:21 -04002395static int btrfs_get_block(struct inode *inode, sector_t iblock,
2396 struct buffer_head *bh_result, int create)
2397{
2398 struct extent_map *em;
2399 u64 start = (u64)iblock << inode->i_blkbits;
2400 struct btrfs_multi_bio *multi = NULL;
2401 struct btrfs_root *root = BTRFS_I(inode)->root;
2402 u64 len;
2403 u64 logical;
2404 u64 map_length;
2405 int ret = 0;
2406
2407 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2408
2409 if (!em || IS_ERR(em))
2410 goto out;
2411
2412 if (em->start > start || em->start + em->len <= start)
2413 goto out;
2414
2415 if (em->block_start == EXTENT_MAP_INLINE) {
2416 ret = -EINVAL;
2417 goto out;
2418 }
2419
2420 if (em->block_start == EXTENT_MAP_HOLE ||
2421 em->block_start == EXTENT_MAP_DELALLOC) {
2422 goto out;
2423 }
2424
2425 len = em->start + em->len - start;
2426 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2427
2428 logical = start - em->start;
2429 logical = em->block_start + logical;
2430
2431 map_length = len;
2432 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2433 logical, &map_length, &multi, 0);
2434 BUG_ON(ret);
2435 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2436 bh_result->b_size = min(map_length, len);
2437 bh_result->b_bdev = multi->stripes[0].dev->bdev;
2438 set_buffer_mapped(bh_result);
2439 kfree(multi);
2440out:
2441 free_extent_map(em);
2442 return ret;
2443}
2444
2445static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
2446 const struct iovec *iov, loff_t offset,
2447 unsigned long nr_segs)
2448{
2449 struct file *file = iocb->ki_filp;
2450 struct inode *inode = file->f_mapping->host;
2451
2452 if (rw == WRITE)
2453 return -EINVAL;
2454
2455 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2456 offset, nr_segs, btrfs_get_block, NULL);
2457}
2458
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002459static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002460{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002461 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002462}
2463
Chris Mason9ebefb182007-06-15 13:50:00 -04002464int btrfs_readpage(struct file *file, struct page *page)
2465{
Chris Masond1310b22008-01-24 16:13:08 -05002466 struct extent_io_tree *tree;
2467 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002468 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002469}
Chris Mason1832a6d2007-12-21 16:27:21 -05002470
Chris Mason39279cc2007-06-12 06:35:45 -04002471static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2472{
Chris Masond1310b22008-01-24 16:13:08 -05002473 struct extent_io_tree *tree;
Chris Masonb888db2b2007-08-27 16:49:44 -04002474
2475
2476 if (current->flags & PF_MEMALLOC) {
2477 redirty_page_for_writepage(wbc, page);
2478 unlock_page(page);
2479 return 0;
2480 }
Chris Masond1310b22008-01-24 16:13:08 -05002481 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002482 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2483}
Chris Mason39279cc2007-06-12 06:35:45 -04002484
Chris Masonb293f02e2007-11-01 19:45:34 -04002485static int btrfs_writepages(struct address_space *mapping,
2486 struct writeback_control *wbc)
2487{
Chris Masond1310b22008-01-24 16:13:08 -05002488 struct extent_io_tree *tree;
2489 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04002490 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2491}
2492
Chris Mason3ab2fb52007-11-08 10:59:22 -05002493static int
2494btrfs_readpages(struct file *file, struct address_space *mapping,
2495 struct list_head *pages, unsigned nr_pages)
2496{
Chris Masond1310b22008-01-24 16:13:08 -05002497 struct extent_io_tree *tree;
2498 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002499 return extent_readpages(tree, mapping, pages, nr_pages,
2500 btrfs_get_extent);
2501}
2502
Chris Mason70dec802008-01-29 09:59:12 -05002503static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002504{
Chris Masond1310b22008-01-24 16:13:08 -05002505 struct extent_io_tree *tree;
2506 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002507 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002508
Chris Masond1310b22008-01-24 16:13:08 -05002509 tree = &BTRFS_I(page->mapping->host)->io_tree;
2510 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002511 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002512 if (ret == 1) {
2513 ClearPagePrivate(page);
2514 set_page_private(page, 0);
2515 page_cache_release(page);
2516 }
2517 return ret;
2518}
Chris Mason39279cc2007-06-12 06:35:45 -04002519
Chris Masona52d9a82007-08-27 16:49:44 -04002520static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2521{
Chris Masond1310b22008-01-24 16:13:08 -05002522 struct extent_io_tree *tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002523
Chris Masond1310b22008-01-24 16:13:08 -05002524 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002525 extent_invalidatepage(tree, page, offset);
2526 btrfs_releasepage(page, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002527}
2528
Chris Mason9ebefb182007-06-15 13:50:00 -04002529/*
2530 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2531 * called from a page fault handler when a page is first dirtied. Hence we must
2532 * be careful to check for EOF conditions here. We set the page up correctly
2533 * for a written page which means we get ENOSPC checking when writing into
2534 * holes and correct delalloc and unwritten extent mapping on filesystems that
2535 * support these features.
2536 *
2537 * We are not allowed to take the i_mutex here so we have to play games to
2538 * protect against truncate races as the page could now be beyond EOF. Because
2539 * vmtruncate() writes the inode size before removing pages, once we have the
2540 * page lock we can determine safely if the page is beyond EOF. If it is not
2541 * beyond EOF, then the page is guaranteed safe against truncation until we
2542 * unlock the page.
2543 */
2544int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2545{
Chris Mason6da6aba2007-12-18 16:15:09 -05002546 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002547 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9ebefb182007-06-15 13:50:00 -04002548 unsigned long end;
2549 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002550 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002551 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002552
Chris Mason1832a6d2007-12-21 16:27:21 -05002553 mutex_lock(&root->fs_info->fs_mutex);
2554 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason8f662a72008-01-02 10:01:11 -05002555 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002556 if (ret)
2557 goto out;
2558
2559 ret = -EINVAL;
2560
Chris Mason9ebefb182007-06-15 13:50:00 -04002561 lock_page(page);
2562 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002563 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04002564 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04002565
Chris Mason9ebefb182007-06-15 13:50:00 -04002566 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04002567 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002568 /* page got truncated out from underneath us */
2569 goto out_unlock;
2570 }
2571
2572 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002573 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04002574 end = size & ~PAGE_CACHE_MASK;
2575 else
2576 end = PAGE_CACHE_SIZE;
2577
Chris Masonb888db2b2007-08-27 16:49:44 -04002578 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04002579
2580out_unlock:
2581 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002582out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002583 return ret;
2584}
2585
Chris Mason39279cc2007-06-12 06:35:45 -04002586static void btrfs_truncate(struct inode *inode)
2587{
2588 struct btrfs_root *root = BTRFS_I(inode)->root;
2589 int ret;
2590 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002591 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002592
2593 if (!S_ISREG(inode->i_mode))
2594 return;
2595 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2596 return;
2597
2598 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2599
2600 mutex_lock(&root->fs_info->fs_mutex);
2601 trans = btrfs_start_transaction(root, 1);
2602 btrfs_set_trans_block_group(trans, inode);
2603
2604 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002605 ret = btrfs_truncate_in_trans(trans, root, inode,
2606 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002607 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002608 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002609
Chris Mason39279cc2007-06-12 06:35:45 -04002610 ret = btrfs_end_transaction(trans, root);
2611 BUG_ON(ret);
2612 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002613 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002614 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002615}
2616
Chris Mason4313b392008-01-03 09:08:48 -05002617static int noinline create_subvol(struct btrfs_root *root, char *name,
2618 int namelen)
Chris Mason39279cc2007-06-12 06:35:45 -04002619{
2620 struct btrfs_trans_handle *trans;
2621 struct btrfs_key key;
2622 struct btrfs_root_item root_item;
2623 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002624 struct extent_buffer *leaf;
Chris Masondc17ff82008-01-08 15:46:30 -05002625 struct btrfs_root *new_root = root;
Chris Mason39279cc2007-06-12 06:35:45 -04002626 struct inode *inode;
2627 struct inode *dir;
2628 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002629 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002630 u64 objectid;
2631 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002632 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002633
2634 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002635 ret = btrfs_check_free_space(root, 1, 0);
2636 if (ret)
2637 goto fail_commit;
2638
Chris Mason39279cc2007-06-12 06:35:45 -04002639 trans = btrfs_start_transaction(root, 1);
2640 BUG_ON(!trans);
2641
Chris Mason7bb86312007-12-11 09:25:06 -05002642 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2643 0, &objectid);
2644 if (ret)
2645 goto fail;
2646
2647 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2648 objectid, trans->transid, 0, 0,
2649 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002650 if (IS_ERR(leaf))
2651 return PTR_ERR(leaf);
2652
2653 btrfs_set_header_nritems(leaf, 0);
2654 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04002655 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002656 btrfs_set_header_generation(leaf, trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002657 btrfs_set_header_owner(leaf, objectid);
2658
Chris Mason5f39d392007-10-15 16:14:19 -04002659 write_extent_buffer(leaf, root->fs_info->fsid,
2660 (unsigned long)btrfs_header_fsid(leaf),
2661 BTRFS_FSID_SIZE);
2662 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002663
2664 inode_item = &root_item.inode;
2665 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002666 inode_item->generation = cpu_to_le64(1);
2667 inode_item->size = cpu_to_le64(3);
2668 inode_item->nlink = cpu_to_le32(1);
2669 inode_item->nblocks = cpu_to_le64(1);
2670 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04002671
Chris Masondb945352007-10-15 16:15:53 -04002672 btrfs_set_root_bytenr(&root_item, leaf->start);
2673 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002674 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002675 btrfs_set_root_used(&root_item, 0);
2676
Chris Mason5eda7b52007-06-22 14:16:25 -04002677 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2678 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002679
2680 free_extent_buffer(leaf);
2681 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002682
Chris Mason39279cc2007-06-12 06:35:45 -04002683 btrfs_set_root_dirid(&root_item, new_dirid);
2684
2685 key.objectid = objectid;
2686 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002687 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2688 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2689 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002690 if (ret)
2691 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002692
2693 /*
2694 * insert the directory item
2695 */
2696 key.offset = (u64)-1;
2697 dir = root->fs_info->sb->s_root->d_inode;
2698 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2699 name, namelen, dir->i_ino, &key,
2700 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04002701 if (ret)
2702 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002703
Chris Mason39544012007-12-12 14:38:19 -05002704 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2705 name, namelen, objectid,
2706 root->fs_info->sb->s_root->d_inode->i_ino);
2707 if (ret)
2708 goto fail;
2709
Chris Mason39279cc2007-06-12 06:35:45 -04002710 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002711 if (ret)
2712 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04002713
Josef Bacik58176a92007-08-29 15:47:34 -04002714 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04002715 BUG_ON(!new_root);
2716
2717 trans = btrfs_start_transaction(new_root, 1);
2718 BUG_ON(!trans);
2719
Chris Mason9c583092008-01-29 15:15:18 -05002720 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
2721 new_dirid,
Chris Mason39279cc2007-06-12 06:35:45 -04002722 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002723 if (IS_ERR(inode))
2724 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002725 inode->i_op = &btrfs_dir_inode_operations;
2726 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002727 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002728
Chris Mason39544012007-12-12 14:38:19 -05002729 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2730 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002731 inode->i_nlink = 1;
Chris Mason39544012007-12-12 14:38:19 -05002732 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002733 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002734 if (ret)
2735 goto fail;
2736fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002737 nr = trans->blocks_used;
Chris Masondc17ff82008-01-08 15:46:30 -05002738 err = btrfs_commit_transaction(trans, new_root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002739 if (err && !ret)
2740 ret = err;
2741fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04002742 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002743 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002744 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002745 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002746}
2747
2748static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2749{
Chris Mason3063d292008-01-08 15:46:30 -05002750 struct btrfs_pending_snapshot *pending_snapshot;
Chris Mason39279cc2007-06-12 06:35:45 -04002751 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04002752 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002753 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05002754 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002755
2756 if (!root->ref_cows)
2757 return -EINVAL;
2758
2759 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002760 ret = btrfs_check_free_space(root, 1, 0);
2761 if (ret)
2762 goto fail_unlock;
2763
Chris Mason3063d292008-01-08 15:46:30 -05002764 pending_snapshot = kmalloc(sizeof(*pending_snapshot), GFP_NOFS);
2765 if (!pending_snapshot) {
2766 ret = -ENOMEM;
2767 goto fail_unlock;
2768 }
Yanfb4bc1e2008-01-17 11:59:51 -05002769 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
Chris Mason3063d292008-01-08 15:46:30 -05002770 if (!pending_snapshot->name) {
2771 ret = -ENOMEM;
2772 kfree(pending_snapshot);
2773 goto fail_unlock;
2774 }
Yanfb4bc1e2008-01-17 11:59:51 -05002775 memcpy(pending_snapshot->name, name, namelen);
2776 pending_snapshot->name[namelen] = '\0';
Chris Mason39279cc2007-06-12 06:35:45 -04002777 trans = btrfs_start_transaction(root, 1);
2778 BUG_ON(!trans);
Chris Mason3063d292008-01-08 15:46:30 -05002779 pending_snapshot->root = root;
2780 list_add(&pending_snapshot->list,
2781 &trans->transaction->pending_snapshots);
Chris Mason39279cc2007-06-12 06:35:45 -04002782 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002783 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002784
Chris Mason1832a6d2007-12-21 16:27:21 -05002785fail_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002786 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002787 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002788 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002789 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002790}
2791
Chris Masonedbd8d42007-12-21 16:27:24 -05002792unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002793 struct file_ra_state *ra, struct file *file,
2794 pgoff_t offset, pgoff_t last_index)
2795{
2796 pgoff_t req_size;
2797
2798#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2799 req_size = last_index - offset + 1;
2800 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2801 return offset;
2802#else
2803 req_size = min(last_index - offset + 1, (pgoff_t)128);
2804 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2805 return offset + req_size;
2806#endif
2807}
2808
2809int btrfs_defrag_file(struct file *file) {
Chris Mason6da6aba2007-12-18 16:15:09 -05002810 struct inode *inode = fdentry(file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002811 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002812 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason86479a02007-09-10 19:58:16 -04002813 struct page *page;
2814 unsigned long last_index;
2815 unsigned long ra_index = 0;
2816 u64 page_start;
2817 u64 page_end;
2818 unsigned long i;
Chris Mason1832a6d2007-12-21 16:27:21 -05002819 int ret;
2820
2821 mutex_lock(&root->fs_info->fs_mutex);
2822 ret = btrfs_check_free_space(root, inode->i_size, 0);
2823 mutex_unlock(&root->fs_info->fs_mutex);
2824 if (ret)
2825 return -ENOSPC;
Chris Mason86479a02007-09-10 19:58:16 -04002826
2827 mutex_lock(&inode->i_mutex);
2828 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2829 for (i = 0; i <= last_index; i++) {
2830 if (i == ra_index) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002831 ra_index = btrfs_force_ra(inode->i_mapping,
2832 &file->f_ra,
2833 file, ra_index, last_index);
Chris Mason86479a02007-09-10 19:58:16 -04002834 }
2835 page = grab_cache_page(inode->i_mapping, i);
2836 if (!page)
2837 goto out_unlock;
2838 if (!PageUptodate(page)) {
2839 btrfs_readpage(NULL, page);
2840 lock_page(page);
2841 if (!PageUptodate(page)) {
2842 unlock_page(page);
2843 page_cache_release(page);
2844 goto out_unlock;
2845 }
2846 }
Chris Mason35ebb932007-10-30 16:56:53 -04002847 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002848 page_end = page_start + PAGE_CACHE_SIZE - 1;
2849
Chris Masond1310b22008-01-24 16:13:08 -05002850 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002851 set_extent_delalloc(io_tree, page_start,
Chris Mason86479a02007-09-10 19:58:16 -04002852 page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002853
Chris Masond1310b22008-01-24 16:13:08 -05002854 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason86479a02007-09-10 19:58:16 -04002855 set_page_dirty(page);
2856 unlock_page(page);
2857 page_cache_release(page);
2858 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2859 }
2860
2861out_unlock:
2862 mutex_unlock(&inode->i_mutex);
2863 return 0;
2864}
2865
Chris Masonedbd8d42007-12-21 16:27:24 -05002866static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2867{
2868 u64 new_size;
2869 u64 old_size;
2870 struct btrfs_ioctl_vol_args *vol_args;
2871 struct btrfs_trans_handle *trans;
2872 char *sizestr;
2873 int ret = 0;
2874 int namelen;
2875 int mod = 0;
2876
2877 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2878
2879 if (!vol_args)
2880 return -ENOMEM;
2881
2882 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2883 ret = -EFAULT;
2884 goto out;
2885 }
2886 namelen = strlen(vol_args->name);
2887 if (namelen > BTRFS_VOL_NAME_MAX) {
2888 ret = -EINVAL;
2889 goto out;
2890 }
2891
2892 sizestr = vol_args->name;
2893 if (!strcmp(sizestr, "max"))
2894 new_size = root->fs_info->sb->s_bdev->bd_inode->i_size;
2895 else {
2896 if (sizestr[0] == '-') {
2897 mod = -1;
2898 sizestr++;
2899 } else if (sizestr[0] == '+') {
2900 mod = 1;
2901 sizestr++;
2902 }
2903 new_size = btrfs_parse_size(sizestr);
2904 if (new_size == 0) {
2905 ret = -EINVAL;
2906 goto out;
2907 }
2908 }
2909
2910 mutex_lock(&root->fs_info->fs_mutex);
2911 old_size = btrfs_super_total_bytes(&root->fs_info->super_copy);
2912
2913 if (mod < 0) {
2914 if (new_size > old_size) {
2915 ret = -EINVAL;
2916 goto out_unlock;
2917 }
2918 new_size = old_size - new_size;
2919 } else if (mod > 0) {
2920 new_size = old_size + new_size;
2921 }
2922
2923 if (new_size < 256 * 1024 * 1024) {
2924 ret = -EINVAL;
2925 goto out_unlock;
2926 }
2927 if (new_size > root->fs_info->sb->s_bdev->bd_inode->i_size) {
2928 ret = -EFBIG;
2929 goto out_unlock;
2930 }
Chris Masonf9ef6602008-01-03 09:22:38 -05002931
2932 do_div(new_size, root->sectorsize);
2933 new_size *= root->sectorsize;
Chris Masonedbd8d42007-12-21 16:27:24 -05002934
2935printk("new size is %Lu\n", new_size);
2936 if (new_size > old_size) {
2937 trans = btrfs_start_transaction(root, 1);
2938 ret = btrfs_grow_extent_tree(trans, root, new_size);
2939 btrfs_commit_transaction(trans, root);
2940 } else {
2941 ret = btrfs_shrink_extent_tree(root, new_size);
2942 }
2943
2944out_unlock:
2945 mutex_unlock(&root->fs_info->fs_mutex);
2946out:
2947 kfree(vol_args);
2948 return ret;
2949}
2950
Chris Mason4313b392008-01-03 09:08:48 -05002951static int noinline btrfs_ioctl_snap_create(struct btrfs_root *root,
2952 void __user *arg)
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002953{
Chris Mason4aec2b52007-12-18 16:25:45 -05002954 struct btrfs_ioctl_vol_args *vol_args;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002955 struct btrfs_dir_item *di;
2956 struct btrfs_path *path;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002957 u64 root_dirid;
Chris Mason4aec2b52007-12-18 16:25:45 -05002958 int namelen;
2959 int ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002960
Chris Mason4aec2b52007-12-18 16:25:45 -05002961 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04002962
Chris Mason4aec2b52007-12-18 16:25:45 -05002963 if (!vol_args)
2964 return -ENOMEM;
2965
2966 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2967 ret = -EFAULT;
2968 goto out;
2969 }
2970
2971 namelen = strlen(vol_args->name);
2972 if (namelen > BTRFS_VOL_NAME_MAX) {
2973 ret = -EINVAL;
2974 goto out;
2975 }
2976 if (strchr(vol_args->name, '/')) {
2977 ret = -EINVAL;
2978 goto out;
2979 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002980
2981 path = btrfs_alloc_path();
Chris Mason4aec2b52007-12-18 16:25:45 -05002982 if (!path) {
2983 ret = -ENOMEM;
2984 goto out;
2985 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002986
2987 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
2988 mutex_lock(&root->fs_info->fs_mutex);
2989 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
2990 path, root_dirid,
Chris Mason4aec2b52007-12-18 16:25:45 -05002991 vol_args->name, namelen, 0);
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002992 mutex_unlock(&root->fs_info->fs_mutex);
2993 btrfs_free_path(path);
Chris Mason4aec2b52007-12-18 16:25:45 -05002994
2995 if (di && !IS_ERR(di)) {
2996 ret = -EEXIST;
2997 goto out;
2998 }
2999
3000 if (IS_ERR(di)) {
3001 ret = PTR_ERR(di);
3002 goto out;
3003 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003004
3005 if (root == root->fs_info->tree_root)
Chris Mason4aec2b52007-12-18 16:25:45 -05003006 ret = create_subvol(root, vol_args->name, namelen);
3007 else
3008 ret = create_snapshot(root, vol_args->name, namelen);
3009out:
3010 kfree(vol_args);
3011 return ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003012}
3013
3014static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04003015{
Chris Mason6da6aba2007-12-18 16:15:09 -05003016 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003017 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003018
3019 switch (inode->i_mode & S_IFMT) {
3020 case S_IFDIR:
3021 mutex_lock(&root->fs_info->fs_mutex);
3022 btrfs_defrag_root(root, 0);
3023 btrfs_defrag_root(root->fs_info->extent_root, 0);
3024 mutex_unlock(&root->fs_info->fs_mutex);
3025 break;
3026 case S_IFREG:
3027 btrfs_defrag_file(file);
3028 break;
3029 }
3030
3031 return 0;
3032}
3033
3034long btrfs_ioctl(struct file *file, unsigned int
3035 cmd, unsigned long arg)
3036{
Chris Mason6da6aba2007-12-18 16:15:09 -05003037 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003038
3039 switch (cmd) {
3040 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003041 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04003042 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003043 return btrfs_ioctl_defrag(file);
Chris Masonedbd8d42007-12-21 16:27:24 -05003044 case BTRFS_IOC_RESIZE:
3045 return btrfs_ioctl_resize(root, (void __user *)arg);
Chris Mason39279cc2007-06-12 06:35:45 -04003046 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003047
3048 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04003049}
3050
Chris Mason39279cc2007-06-12 06:35:45 -04003051/*
3052 * Called inside transaction, so use GFP_NOFS
3053 */
3054struct inode *btrfs_alloc_inode(struct super_block *sb)
3055{
3056 struct btrfs_inode *ei;
3057
3058 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
3059 if (!ei)
3060 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003061 ei->last_trans = 0;
Chris Masondc17ff82008-01-08 15:46:30 -05003062 ei->ordered_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003063 return &ei->vfs_inode;
3064}
3065
3066void btrfs_destroy_inode(struct inode *inode)
3067{
3068 WARN_ON(!list_empty(&inode->i_dentry));
3069 WARN_ON(inode->i_data.nrpages);
3070
Chris Mason8c416c92008-01-14 15:10:26 -05003071 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003072 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
3073}
3074
Chris Mason44ec0b72007-10-29 10:55:05 -04003075#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
3076static void init_once(struct kmem_cache * cachep, void *foo)
3077#else
Chris Mason39279cc2007-06-12 06:35:45 -04003078static void init_once(void * foo, struct kmem_cache * cachep,
3079 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04003080#endif
Chris Mason39279cc2007-06-12 06:35:45 -04003081{
3082 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
3083
3084 inode_init_once(&ei->vfs_inode);
3085}
3086
3087void btrfs_destroy_cachep(void)
3088{
3089 if (btrfs_inode_cachep)
3090 kmem_cache_destroy(btrfs_inode_cachep);
3091 if (btrfs_trans_handle_cachep)
3092 kmem_cache_destroy(btrfs_trans_handle_cachep);
3093 if (btrfs_transaction_cachep)
3094 kmem_cache_destroy(btrfs_transaction_cachep);
3095 if (btrfs_bit_radix_cachep)
3096 kmem_cache_destroy(btrfs_bit_radix_cachep);
3097 if (btrfs_path_cachep)
3098 kmem_cache_destroy(btrfs_path_cachep);
3099}
3100
Chris Mason86479a02007-09-10 19:58:16 -04003101struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04003102 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04003103#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
3104 void (*ctor)(struct kmem_cache *, void *)
3105#else
Chris Mason92fee662007-07-25 12:31:35 -04003106 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04003107 unsigned long)
3108#endif
3109 )
Chris Mason92fee662007-07-25 12:31:35 -04003110{
3111 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
3112 SLAB_MEM_SPREAD | extra_flags), ctor
3113#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
3114 ,NULL
3115#endif
3116 );
3117}
3118
Chris Mason39279cc2007-06-12 06:35:45 -04003119int btrfs_init_cachep(void)
3120{
Chris Mason86479a02007-09-10 19:58:16 -04003121 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04003122 sizeof(struct btrfs_inode),
3123 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04003124 if (!btrfs_inode_cachep)
3125 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003126 btrfs_trans_handle_cachep =
3127 btrfs_cache_create("btrfs_trans_handle_cache",
3128 sizeof(struct btrfs_trans_handle),
3129 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003130 if (!btrfs_trans_handle_cachep)
3131 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003132 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04003133 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04003134 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003135 if (!btrfs_transaction_cachep)
3136 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003137 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04003138 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04003139 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003140 if (!btrfs_path_cachep)
3141 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003142 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04003143 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003144 if (!btrfs_bit_radix_cachep)
3145 goto fail;
3146 return 0;
3147fail:
3148 btrfs_destroy_cachep();
3149 return -ENOMEM;
3150}
3151
3152static int btrfs_getattr(struct vfsmount *mnt,
3153 struct dentry *dentry, struct kstat *stat)
3154{
3155 struct inode *inode = dentry->d_inode;
3156 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05003157 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05003158 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04003159 return 0;
3160}
3161
3162static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3163 struct inode * new_dir,struct dentry *new_dentry)
3164{
3165 struct btrfs_trans_handle *trans;
3166 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3167 struct inode *new_inode = new_dentry->d_inode;
3168 struct inode *old_inode = old_dentry->d_inode;
3169 struct timespec ctime = CURRENT_TIME;
3170 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003171 int ret;
3172
3173 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3174 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3175 return -ENOTEMPTY;
3176 }
Chris Mason5f39d392007-10-15 16:14:19 -04003177
Chris Mason39279cc2007-06-12 06:35:45 -04003178 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05003179 ret = btrfs_check_free_space(root, 1, 0);
3180 if (ret)
3181 goto out_unlock;
3182
Chris Mason39279cc2007-06-12 06:35:45 -04003183 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003184
Chris Mason39279cc2007-06-12 06:35:45 -04003185 btrfs_set_trans_block_group(trans, new_dir);
3186 path = btrfs_alloc_path();
3187 if (!path) {
3188 ret = -ENOMEM;
3189 goto out_fail;
3190 }
3191
3192 old_dentry->d_inode->i_nlink++;
3193 old_dir->i_ctime = old_dir->i_mtime = ctime;
3194 new_dir->i_ctime = new_dir->i_mtime = ctime;
3195 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003196
Chris Mason39279cc2007-06-12 06:35:45 -04003197 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
3198 if (ret)
3199 goto out_fail;
3200
3201 if (new_inode) {
3202 new_inode->i_ctime = CURRENT_TIME;
3203 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
3204 if (ret)
3205 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003206 }
Chris Mason9c583092008-01-29 15:15:18 -05003207 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003208 if (ret)
3209 goto out_fail;
3210
3211out_fail:
3212 btrfs_free_path(path);
3213 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003214out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003215 mutex_unlock(&root->fs_info->fs_mutex);
3216 return ret;
3217}
3218
3219static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3220 const char *symname)
3221{
3222 struct btrfs_trans_handle *trans;
3223 struct btrfs_root *root = BTRFS_I(dir)->root;
3224 struct btrfs_path *path;
3225 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003226 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003227 int err;
3228 int drop_inode = 0;
3229 u64 objectid;
3230 int name_len;
3231 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003232 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003233 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003234 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003235 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003236
3237 name_len = strlen(symname) + 1;
3238 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3239 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003240
Chris Mason39279cc2007-06-12 06:35:45 -04003241 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05003242 err = btrfs_check_free_space(root, 1, 0);
3243 if (err)
3244 goto out_fail;
3245
Chris Mason39279cc2007-06-12 06:35:45 -04003246 trans = btrfs_start_transaction(root, 1);
3247 btrfs_set_trans_block_group(trans, dir);
3248
3249 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3250 if (err) {
3251 err = -ENOSPC;
3252 goto out_unlock;
3253 }
3254
Chris Mason9c583092008-01-29 15:15:18 -05003255 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
3256 dentry->d_name.len,
3257 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003258 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
3259 err = PTR_ERR(inode);
3260 if (IS_ERR(inode))
3261 goto out_unlock;
3262
3263 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003264 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003265 if (err)
3266 drop_inode = 1;
3267 else {
3268 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003269 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003270 inode->i_fop = &btrfs_file_operations;
3271 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003272 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3273 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04003274 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003275 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3276 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05003277 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003278 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003279 }
3280 dir->i_sb->s_dirt = 1;
3281 btrfs_update_inode_block_group(trans, inode);
3282 btrfs_update_inode_block_group(trans, dir);
3283 if (drop_inode)
3284 goto out_unlock;
3285
3286 path = btrfs_alloc_path();
3287 BUG_ON(!path);
3288 key.objectid = inode->i_ino;
3289 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003290 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3291 datasize = btrfs_file_extent_calc_inline_size(name_len);
3292 err = btrfs_insert_empty_item(trans, root, path, &key,
3293 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003294 if (err) {
3295 drop_inode = 1;
3296 goto out_unlock;
3297 }
Chris Mason5f39d392007-10-15 16:14:19 -04003298 leaf = path->nodes[0];
3299 ei = btrfs_item_ptr(leaf, path->slots[0],
3300 struct btrfs_file_extent_item);
3301 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3302 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003303 BTRFS_FILE_EXTENT_INLINE);
3304 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003305 write_extent_buffer(leaf, symname, ptr, name_len);
3306 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003307 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003308
Chris Mason39279cc2007-06-12 06:35:45 -04003309 inode->i_op = &btrfs_symlink_inode_operations;
3310 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003311 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003312 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04003313 err = btrfs_update_inode(trans, root, inode);
3314 if (err)
3315 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003316
3317out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003318 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04003319 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003320out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003321 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04003322 if (drop_inode) {
3323 inode_dec_link_count(inode);
3324 iput(inode);
3325 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003326 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05003327 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003328 return err;
3329}
Chris Mason16432982008-04-10 10:23:21 -04003330
Yanfdebe2b2008-01-14 13:26:08 -05003331static int btrfs_permission(struct inode *inode, int mask,
3332 struct nameidata *nd)
3333{
3334 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3335 return -EACCES;
3336 return generic_permission(inode, mask, NULL);
3337}
Chris Mason39279cc2007-06-12 06:35:45 -04003338
3339static struct inode_operations btrfs_dir_inode_operations = {
3340 .lookup = btrfs_lookup,
3341 .create = btrfs_create,
3342 .unlink = btrfs_unlink,
3343 .link = btrfs_link,
3344 .mkdir = btrfs_mkdir,
3345 .rmdir = btrfs_rmdir,
3346 .rename = btrfs_rename,
3347 .symlink = btrfs_symlink,
3348 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003349 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003350 .setxattr = generic_setxattr,
3351 .getxattr = generic_getxattr,
3352 .listxattr = btrfs_listxattr,
3353 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003354 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003355};
Chris Mason39279cc2007-06-12 06:35:45 -04003356static struct inode_operations btrfs_dir_ro_inode_operations = {
3357 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003358 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003359};
Chris Mason39279cc2007-06-12 06:35:45 -04003360static struct file_operations btrfs_dir_file_operations = {
3361 .llseek = generic_file_llseek,
3362 .read = generic_read_dir,
3363 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003364 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003365#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003366 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003367#endif
3368};
3369
Chris Masond1310b22008-01-24 16:13:08 -05003370static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003371 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003372 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003373 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003374 .readpage_io_hook = btrfs_readpage_io_hook,
3375 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Mason7e383262008-04-09 16:28:12 -04003376 .readpage_io_failed_hook = btrfs_readpage_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003377 .set_bit_hook = btrfs_set_bit_hook,
3378 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003379};
3380
Chris Mason39279cc2007-06-12 06:35:45 -04003381static struct address_space_operations btrfs_aops = {
3382 .readpage = btrfs_readpage,
3383 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04003384 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003385 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003386 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003387 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003388 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003389 .invalidatepage = btrfs_invalidatepage,
3390 .releasepage = btrfs_releasepage,
3391 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04003392};
3393
3394static struct address_space_operations btrfs_symlink_aops = {
3395 .readpage = btrfs_readpage,
3396 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003397 .invalidatepage = btrfs_invalidatepage,
3398 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003399};
3400
3401static struct inode_operations btrfs_file_inode_operations = {
3402 .truncate = btrfs_truncate,
3403 .getattr = btrfs_getattr,
3404 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003405 .setxattr = generic_setxattr,
3406 .getxattr = generic_getxattr,
3407 .listxattr = btrfs_listxattr,
3408 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003409 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003410};
Josef Bacik618e21d2007-07-11 10:18:17 -04003411static struct inode_operations btrfs_special_inode_operations = {
3412 .getattr = btrfs_getattr,
3413 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003414 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003415};
Chris Mason39279cc2007-06-12 06:35:45 -04003416static struct inode_operations btrfs_symlink_inode_operations = {
3417 .readlink = generic_readlink,
3418 .follow_link = page_follow_link_light,
3419 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003420 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003421};