blob: 08760ff9bab757bb330c358a010823972099d6b5 [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 Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
29#include <linux/smp_lock.h>
30#include <linux/backing-dev.h>
31#include <linux/mpage.h>
32#include <linux/swap.h>
33#include <linux/writeback.h>
34#include <linux/statfs.h>
35#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040036#include <linux/bit_spinlock.h>
Chris Mason92fee662007-07-25 12:31:35 -040037#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050038#include <linux/xattr.h>
Chris Mason39279cc2007-06-12 06:35:45 -040039#include "ctree.h"
40#include "disk-io.h"
41#include "transaction.h"
42#include "btrfs_inode.h"
43#include "ioctl.h"
44#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040045#include "volumes.h"
Chris Mason39279cc2007-06-12 06:35:45 -040046
47struct btrfs_iget_args {
48 u64 ino;
49 struct btrfs_root *root;
50};
51
52static struct inode_operations btrfs_dir_inode_operations;
53static struct inode_operations btrfs_symlink_inode_operations;
54static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040055static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040056static struct inode_operations btrfs_file_inode_operations;
57static struct address_space_operations btrfs_aops;
58static struct address_space_operations btrfs_symlink_aops;
59static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050060static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040061
62static struct kmem_cache *btrfs_inode_cachep;
63struct kmem_cache *btrfs_trans_handle_cachep;
64struct kmem_cache *btrfs_transaction_cachep;
65struct kmem_cache *btrfs_bit_radix_cachep;
66struct kmem_cache *btrfs_path_cachep;
67
68#define S_SHIFT 12
69static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
70 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
71 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
72 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
73 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
74 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
75 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
76 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
77};
78
Chris Mason1832a6d2007-12-21 16:27:21 -050079int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
80 int for_del)
81{
82 u64 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
83 u64 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
84 u64 thresh;
Chris Masonbcbfce82008-04-22 13:26:47 -040085 unsigned long flags;
Chris Mason1832a6d2007-12-21 16:27:21 -050086 int ret = 0;
87
88 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -050089 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -050090 else
Chris Masonf9ef6602008-01-03 09:22:38 -050091 thresh = total * 85;
92
93 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -050094
Chris Masonbcbfce82008-04-22 13:26:47 -040095 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -050096 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
97 ret = -ENOSPC;
Chris Masonbcbfce82008-04-22 13:26:47 -040098 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -050099 return ret;
100}
101
Chris Masonbe20aa92007-12-17 20:14:01 -0500102static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db22007-08-27 16:49:44 -0400103{
104 struct btrfs_root *root = BTRFS_I(inode)->root;
105 struct btrfs_trans_handle *trans;
Chris Masonb888db22007-08-27 16:49:44 -0400106 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400107 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500108 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400109 u64 blocksize = root->sectorsize;
Chris Masond1310b22008-01-24 16:13:08 -0500110 u64 orig_start = start;
111 u64 orig_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500112 struct btrfs_key ins;
113 int ret;
Chris Masonb888db22007-08-27 16:49:44 -0400114
Chris Masonb888db22007-08-27 16:49:44 -0400115 trans = btrfs_start_transaction(root, 1);
Chris Masonb888db22007-08-27 16:49:44 -0400116 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500117 btrfs_set_trans_block_group(trans, inode);
118
Chris Masondb945352007-10-15 16:15:53 -0400119 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500120 num_bytes = max(blocksize, num_bytes);
Chris Masonb888db22007-08-27 16:49:44 -0400121 ret = btrfs_drop_extents(trans, root, inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400122 start, start + num_bytes, start, &alloc_hint);
Chris Masond1310b22008-01-24 16:13:08 -0500123 orig_num_bytes = num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400124
Chris Mason179e29e2007-11-01 11:28:41 -0400125 if (alloc_hint == EXTENT_MAP_INLINE)
126 goto out;
127
Chris Mason3b951512008-04-17 11:29:12 -0400128 BUG_ON(num_bytes > btrfs_super_total_bytes(&root->fs_info->super_copy));
129
Chris Masonc59f8952007-12-17 20:14:04 -0500130 while(num_bytes > 0) {
131 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
132 ret = btrfs_alloc_extent(trans, root, cur_alloc_size,
Chris Mason98d20f62008-04-14 09:46:10 -0400133 root->sectorsize,
Chris Masonc59f8952007-12-17 20:14:04 -0500134 root->root_key.objectid,
135 trans->transid,
136 inode->i_ino, start, 0,
137 alloc_hint, (u64)-1, &ins, 1);
138 if (ret) {
139 WARN_ON(1);
140 goto out;
141 }
Chris Mason98d20f62008-04-14 09:46:10 -0400142 cur_alloc_size = ins.offset;
Chris Masonc59f8952007-12-17 20:14:04 -0500143 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
144 start, ins.objectid, ins.offset,
Sage Weilf2eb0a22008-05-02 14:43:14 -0400145 ins.offset, 0);
Chris Mason90692182008-02-08 13:49:28 -0500146 inode->i_blocks += ins.offset >> 9;
Chris Mason5f564062008-01-22 16:47:59 -0500147 btrfs_check_file(root, inode);
Chris Mason3b951512008-04-17 11:29:12 -0400148 if (num_bytes < cur_alloc_size) {
149 printk("num_bytes %Lu cur_alloc %Lu\n", num_bytes,
150 cur_alloc_size);
151 break;
152 }
Chris Masonc59f8952007-12-17 20:14:04 -0500153 num_bytes -= cur_alloc_size;
154 alloc_hint = ins.objectid + ins.offset;
155 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400156 }
Chris Masond1310b22008-01-24 16:13:08 -0500157 btrfs_drop_extent_cache(inode, orig_start,
158 orig_start + orig_num_bytes - 1);
Chris Masondc17ff82008-01-08 15:46:30 -0500159 btrfs_add_ordered_inode(inode);
Chris Mason90692182008-02-08 13:49:28 -0500160 btrfs_update_inode(trans, root, inode);
Chris Masonb888db22007-08-27 16:49:44 -0400161out:
162 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500163 return ret;
164}
165
166static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
167{
168 u64 extent_start;
169 u64 extent_end;
170 u64 bytenr;
171 u64 cow_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500172 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500173 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500174 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona68d5932008-05-08 14:11:56 -0400175 struct btrfs_block_group_cache *block_group;
Chris Masonbe20aa92007-12-17 20:14:01 -0500176 struct extent_buffer *leaf;
177 int found_type;
178 struct btrfs_path *path;
179 struct btrfs_file_extent_item *item;
180 int ret;
181 int err;
182 struct btrfs_key found_key;
183
Chris Masonc31f8832008-01-08 15:46:31 -0500184 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500185 path = btrfs_alloc_path();
186 BUG_ON(!path);
187again:
188 ret = btrfs_lookup_file_extent(NULL, root, path,
189 inode->i_ino, start, 0);
190 if (ret < 0) {
191 btrfs_free_path(path);
192 return ret;
193 }
194
195 cow_end = end;
196 if (ret != 0) {
197 if (path->slots[0] == 0)
198 goto not_found;
199 path->slots[0]--;
200 }
201
202 leaf = path->nodes[0];
203 item = btrfs_item_ptr(leaf, path->slots[0],
204 struct btrfs_file_extent_item);
205
206 /* are we inside the extent that was found? */
207 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
208 found_type = btrfs_key_type(&found_key);
209 if (found_key.objectid != inode->i_ino ||
Chris Masonbbaf5492008-05-08 16:31:21 -0400210 found_type != BTRFS_EXTENT_DATA_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -0500211 goto not_found;
Chris Masonbe20aa92007-12-17 20:14:01 -0500212
213 found_type = btrfs_file_extent_type(leaf, item);
214 extent_start = found_key.offset;
215 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Masonc31f8832008-01-08 15:46:31 -0500216 u64 extent_num_bytes;
217
218 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
219 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500220 err = 0;
221
Chris Mason1832a6d2007-12-21 16:27:21 -0500222 if (loops && start != extent_start)
223 goto not_found;
224
Chris Masonbe20aa92007-12-17 20:14:01 -0500225 if (start < extent_start || start >= extent_end)
226 goto not_found;
227
228 cow_end = min(end, extent_end - 1);
229 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
230 if (bytenr == 0)
231 goto not_found;
232
Chris Masona68d5932008-05-08 14:11:56 -0400233 if (btrfs_count_snapshots_in_path(root, path, inode->i_ino,
234 bytenr) != 1) {
235 goto not_found;
236 }
237
Chris Masonc31f8832008-01-08 15:46:31 -0500238 /*
239 * we may be called by the resizer, make sure we're inside
240 * the limits of the FS
241 */
Chris Masona68d5932008-05-08 14:11:56 -0400242 block_group = btrfs_lookup_block_group(root->fs_info,
243 bytenr);
244 if (!block_group || block_group->ro)
Chris Masonc31f8832008-01-08 15:46:31 -0500245 goto not_found;
246
Chris Masonbe20aa92007-12-17 20:14:01 -0500247 start = extent_end;
Chris Masonbd098352008-01-03 13:23:19 -0500248 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500249 goto not_found;
250 }
251loop:
252 if (start > end) {
253 btrfs_free_path(path);
254 return 0;
255 }
256 btrfs_release_path(root, path);
Chris Mason1832a6d2007-12-21 16:27:21 -0500257 loops++;
Chris Masonbe20aa92007-12-17 20:14:01 -0500258 goto again;
259
260not_found:
Chris Masonbbaf5492008-05-08 16:31:21 -0400261 cow_file_range(inode, start, end);
262 start = end + 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500263 goto loop;
264}
265
266static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
267{
268 struct btrfs_root *root = BTRFS_I(inode)->root;
269 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -0500270 mutex_lock(&root->fs_info->fs_mutex);
Yanb98b6762008-01-08 15:54:37 -0500271 if (btrfs_test_opt(root, NODATACOW) ||
272 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500273 ret = run_delalloc_nocow(inode, start, end);
274 else
275 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500276
Chris Masonb888db22007-08-27 16:49:44 -0400277 mutex_unlock(&root->fs_info->fs_mutex);
278 return ret;
279}
280
Chris Mason291d6732008-01-29 15:55:23 -0500281int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500282 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500283{
Chris Masonbcbfce82008-04-22 13:26:47 -0400284 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -0500285 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500286 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400287 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -0500288 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -0500289 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonbcbfce82008-04-22 13:26:47 -0400290 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500291 }
292 return 0;
293}
294
295int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500296 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500297{
Chris Masonb0c68f82008-01-31 11:05:37 -0500298 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500299 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400300 unsigned long flags;
301
302 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -0500303 if (end - start + 1 > root->fs_info->delalloc_bytes) {
304 printk("warning: delalloc account %Lu %Lu\n",
305 end - start + 1, root->fs_info->delalloc_bytes);
306 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -0500307 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -0500308 } else {
309 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -0500310 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -0500311 }
Chris Masonbcbfce82008-04-22 13:26:47 -0400312 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500313 }
314 return 0;
315}
316
Chris Mason239b14b2008-03-24 15:02:07 -0400317int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
318 size_t size, struct bio *bio)
319{
320 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
321 struct btrfs_mapping_tree *map_tree;
Chris Mason239b14b2008-03-24 15:02:07 -0400322 u64 logical = bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -0400323 u64 length = 0;
324 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -0400325 int ret;
326
Chris Masonf2d8d742008-04-21 10:03:05 -0400327 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -0400328 map_tree = &root->fs_info->mapping_tree;
329 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -0400330 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -0400331 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -0400332
Chris Mason239b14b2008-03-24 15:02:07 -0400333 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -0400334 return 1;
335 }
336 return 0;
337}
338
Chris Mason44b8bd72008-04-16 11:14:51 -0400339int __btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400340 int mirror_num)
Chris Mason065631f2008-02-20 12:07:25 -0500341{
Chris Mason065631f2008-02-20 12:07:25 -0500342 struct btrfs_root *root = BTRFS_I(inode)->root;
343 struct btrfs_trans_handle *trans;
344 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -0400345 char *sums = NULL;
346
347 ret = btrfs_csum_one_bio(root, bio, &sums);
348 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -0500349
Chris Mason44b8bd72008-04-16 11:14:51 -0400350 mutex_lock(&root->fs_info->fs_mutex);
351 trans = btrfs_start_transaction(root, 1);
Chris Masone0156402008-04-16 11:15:20 -0400352
Chris Mason44b8bd72008-04-16 11:14:51 -0400353 btrfs_set_trans_block_group(trans, inode);
Chris Masone0156402008-04-16 11:15:20 -0400354 btrfs_csum_file_blocks(trans, root, inode, bio, sums);
355
Chris Mason44b8bd72008-04-16 11:14:51 -0400356 ret = btrfs_end_transaction(trans, root);
357 BUG_ON(ret);
358 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masone0156402008-04-16 11:15:20 -0400359
360 kfree(sums);
361
Chris Mason44b8bd72008-04-16 11:14:51 -0400362 return btrfs_map_bio(root, rw, bio, mirror_num);
363}
364
365int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
366 int mirror_num)
367{
368 struct btrfs_root *root = BTRFS_I(inode)->root;
369 int ret = 0;
370
Chris Mason22c59942008-04-09 16:28:12 -0400371 if (!(rw & (1 << BIO_RW))) {
372 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
373 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400374 goto mapit;
375 }
Chris Mason065631f2008-02-20 12:07:25 -0500376
377 if (btrfs_test_opt(root, NODATASUM) ||
Chris Mason0b86a832008-03-24 15:01:56 -0400378 btrfs_test_flag(inode, NODATASUM)) {
379 goto mapit;
380 }
Chris Mason065631f2008-02-20 12:07:25 -0500381
Chris Mason44b8bd72008-04-16 11:14:51 -0400382 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
383 inode, rw, bio, mirror_num,
384 __btrfs_submit_bio_hook);
Chris Mason0b86a832008-03-24 15:01:56 -0400385mapit:
Chris Masonf1885912008-04-09 16:28:12 -0400386 return btrfs_map_bio(root, rw, bio, mirror_num);
Chris Mason065631f2008-02-20 12:07:25 -0500387}
Chris Mason6885f302008-02-20 16:11:05 -0500388
Chris Mason07157aa2007-08-30 08:50:51 -0400389int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
390{
391 int ret = 0;
392 struct inode *inode = page->mapping->host;
393 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500394 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400395 struct btrfs_csum_item *item;
396 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400397 u32 csum;
Chris Mason699122f2008-04-16 12:59:22 -0400398
Yanb98b6762008-01-08 15:54:37 -0500399 if (btrfs_test_opt(root, NODATASUM) ||
400 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500401 return 0;
Chris Mason699122f2008-04-16 12:59:22 -0400402
Chris Mason07157aa2007-08-30 08:50:51 -0400403 mutex_lock(&root->fs_info->fs_mutex);
404 path = btrfs_alloc_path();
405 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
406 if (IS_ERR(item)) {
407 ret = PTR_ERR(item);
408 /* a csum that isn't present is a preallocated region. */
409 if (ret == -ENOENT || ret == -EFBIG)
410 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400411 csum = 0;
Chris Masonaadfeb62008-01-29 09:10:27 -0500412 printk("no csum found for inode %lu start %Lu\n", inode->i_ino, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400413 goto out;
414 }
Chris Masonff79f812007-10-15 16:22:25 -0400415 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
416 BTRFS_CRC32_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -0500417 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400418out:
419 if (path)
420 btrfs_free_path(path);
421 mutex_unlock(&root->fs_info->fs_mutex);
422 return ret;
423}
424
Chris Mason7e383262008-04-09 16:28:12 -0400425struct io_failure_record {
426 struct page *page;
427 u64 start;
428 u64 len;
429 u64 logical;
430 int last_mirror;
431};
432
Chris Mason1259ab72008-05-12 13:39:03 -0400433int btrfs_io_failed_hook(struct bio *failed_bio,
434 struct page *page, u64 start, u64 end,
435 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -0400436{
437 struct io_failure_record *failrec = NULL;
438 u64 private;
439 struct extent_map *em;
440 struct inode *inode = page->mapping->host;
441 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -0400442 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -0400443 struct bio *bio;
444 int num_copies;
445 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400446 int rw;
Chris Mason7e383262008-04-09 16:28:12 -0400447 u64 logical;
448
449 ret = get_state_private(failure_tree, start, &private);
450 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -0400451 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
452 if (!failrec)
453 return -ENOMEM;
454 failrec->start = start;
455 failrec->len = end - start + 1;
456 failrec->last_mirror = 0;
457
Chris Mason3b951512008-04-17 11:29:12 -0400458 spin_lock(&em_tree->lock);
459 em = lookup_extent_mapping(em_tree, start, failrec->len);
460 if (em->start > start || em->start + em->len < start) {
461 free_extent_map(em);
462 em = NULL;
463 }
464 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -0400465
466 if (!em || IS_ERR(em)) {
467 kfree(failrec);
468 return -EIO;
469 }
470 logical = start - em->start;
471 logical = em->block_start + logical;
472 failrec->logical = logical;
473 free_extent_map(em);
474 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
475 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -0400476 set_state_private(failure_tree, start,
477 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -0400478 } else {
Chris Mason587f7702008-04-11 12:16:46 -0400479 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -0400480 }
481 num_copies = btrfs_num_copies(
482 &BTRFS_I(inode)->root->fs_info->mapping_tree,
483 failrec->logical, failrec->len);
484 failrec->last_mirror++;
485 if (!state) {
486 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
487 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
488 failrec->start,
489 EXTENT_LOCKED);
490 if (state && state->start != failrec->start)
491 state = NULL;
492 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
493 }
494 if (!state || failrec->last_mirror > num_copies) {
495 set_state_private(failure_tree, failrec->start, 0);
496 clear_extent_bits(failure_tree, failrec->start,
497 failrec->start + failrec->len - 1,
498 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
499 kfree(failrec);
500 return -EIO;
501 }
502 bio = bio_alloc(GFP_NOFS, 1);
503 bio->bi_private = state;
504 bio->bi_end_io = failed_bio->bi_end_io;
505 bio->bi_sector = failrec->logical >> 9;
506 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -0400507 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -0400508 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -0400509 if (failed_bio->bi_rw & (1 << BIO_RW))
510 rw = WRITE;
511 else
512 rw = READ;
513
514 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
515 failrec->last_mirror);
516 return 0;
517}
518
519int btrfs_clean_io_failures(struct inode *inode, u64 start)
520{
521 u64 private;
522 u64 private_failure;
523 struct io_failure_record *failure;
524 int ret;
525
526 private = 0;
527 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
528 (u64)-1, 1, EXTENT_DIRTY)) {
529 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
530 start, &private_failure);
531 if (ret == 0) {
532 failure = (struct io_failure_record *)(unsigned long)
533 private_failure;
534 set_state_private(&BTRFS_I(inode)->io_failure_tree,
535 failure->start, 0);
536 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
537 failure->start,
538 failure->start + failure->len - 1,
539 EXTENT_DIRTY | EXTENT_LOCKED,
540 GFP_NOFS);
541 kfree(failure);
542 }
543 }
Chris Mason7e383262008-04-09 16:28:12 -0400544 return 0;
545}
546
Chris Mason70dec802008-01-29 09:59:12 -0500547int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
548 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400549{
Chris Mason35ebb932007-10-30 16:56:53 -0400550 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400551 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500552 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400553 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500554 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400555 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400556 struct btrfs_root *root = BTRFS_I(inode)->root;
557 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400558 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500559
Yanb98b6762008-01-08 15:54:37 -0500560 if (btrfs_test_opt(root, NODATASUM) ||
561 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500562 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500563 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500564 private = state->private;
565 ret = 0;
566 } else {
567 ret = get_state_private(io_tree, start, &private);
568 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400569 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400570 kaddr = kmap_atomic(page, KM_IRQ0);
571 if (ret) {
572 goto zeroit;
573 }
Chris Masonff79f812007-10-15 16:22:25 -0400574 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
575 btrfs_csum_final(csum, (char *)&csum);
576 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400577 goto zeroit;
578 }
579 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400580 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -0400581
582 /* if the io failure tree for this inode is non-empty,
583 * check to see if we've recovered from a failed IO
584 */
Chris Mason1259ab72008-05-12 13:39:03 -0400585 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400586 return 0;
587
588zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500589 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
590 page->mapping->host->i_ino, (unsigned long long)start, csum,
591 private);
Chris Masondb945352007-10-15 16:15:53 -0400592 memset(kaddr + offset, 1, end - start + 1);
593 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400594 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400595 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -0400596 if (private == 0)
597 return 0;
Chris Mason7e383262008-04-09 16:28:12 -0400598 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -0400599}
Chris Masonb888db22007-08-27 16:49:44 -0400600
Chris Mason39279cc2007-06-12 06:35:45 -0400601void btrfs_read_locked_inode(struct inode *inode)
602{
603 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400604 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400605 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400606 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400607 struct btrfs_root *root = BTRFS_I(inode)->root;
608 struct btrfs_key location;
609 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400610 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400611 int ret;
612
613 path = btrfs_alloc_path();
614 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400615 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400616 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500617
Chris Mason39279cc2007-06-12 06:35:45 -0400618 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400619 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400620 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400621
Chris Mason5f39d392007-10-15 16:14:19 -0400622 leaf = path->nodes[0];
623 inode_item = btrfs_item_ptr(leaf, path->slots[0],
624 struct btrfs_inode_item);
625
626 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
627 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
628 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
629 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
630 inode->i_size = btrfs_inode_size(leaf, inode_item);
631
632 tspec = btrfs_inode_atime(inode_item);
633 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
634 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
635
636 tspec = btrfs_inode_mtime(inode_item);
637 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
638 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
639
640 tspec = btrfs_inode_ctime(inode_item);
641 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
642 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
643
644 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
645 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400646 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400647 rdev = btrfs_inode_rdev(leaf, inode_item);
648
649 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400650 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
651 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500652 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500653 if (!BTRFS_I(inode)->block_group) {
654 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -0400655 NULL, 0,
656 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -0500657 }
Chris Mason39279cc2007-06-12 06:35:45 -0400658 btrfs_free_path(path);
659 inode_item = NULL;
660
661 mutex_unlock(&root->fs_info->fs_mutex);
662
663 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400664 case S_IFREG:
665 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -0400666 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -0500667 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400668 inode->i_fop = &btrfs_file_operations;
669 inode->i_op = &btrfs_file_inode_operations;
670 break;
671 case S_IFDIR:
672 inode->i_fop = &btrfs_dir_file_operations;
673 if (root == root->fs_info->tree_root)
674 inode->i_op = &btrfs_dir_ro_inode_operations;
675 else
676 inode->i_op = &btrfs_dir_inode_operations;
677 break;
678 case S_IFLNK:
679 inode->i_op = &btrfs_symlink_inode_operations;
680 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -0400681 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -0400682 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400683 default:
684 init_special_inode(inode, inode->i_mode, rdev);
685 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400686 }
687 return;
688
689make_bad:
690 btrfs_release_path(root, path);
691 btrfs_free_path(path);
692 mutex_unlock(&root->fs_info->fs_mutex);
693 make_bad_inode(inode);
694}
695
Chris Mason5f39d392007-10-15 16:14:19 -0400696static void fill_inode_item(struct extent_buffer *leaf,
697 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400698 struct inode *inode)
699{
Chris Mason5f39d392007-10-15 16:14:19 -0400700 btrfs_set_inode_uid(leaf, item, inode->i_uid);
701 btrfs_set_inode_gid(leaf, item, inode->i_gid);
702 btrfs_set_inode_size(leaf, item, inode->i_size);
703 btrfs_set_inode_mode(leaf, item, inode->i_mode);
704 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
705
706 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
707 inode->i_atime.tv_sec);
708 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
709 inode->i_atime.tv_nsec);
710
711 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
712 inode->i_mtime.tv_sec);
713 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
714 inode->i_mtime.tv_nsec);
715
716 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
717 inode->i_ctime.tv_sec);
718 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
719 inode->i_ctime.tv_nsec);
720
721 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
722 btrfs_set_inode_generation(leaf, item, inode->i_generation);
723 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500724 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400725 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400726 BTRFS_I(inode)->block_group->key.objectid);
727}
728
Chris Masona52d9a82007-08-27 16:49:44 -0400729int btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400730 struct btrfs_root *root,
731 struct inode *inode)
732{
733 struct btrfs_inode_item *inode_item;
734 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400735 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400736 int ret;
737
738 path = btrfs_alloc_path();
739 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400740 ret = btrfs_lookup_inode(trans, root, path,
741 &BTRFS_I(inode)->location, 1);
742 if (ret) {
743 if (ret > 0)
744 ret = -ENOENT;
745 goto failed;
746 }
747
Chris Mason5f39d392007-10-15 16:14:19 -0400748 leaf = path->nodes[0];
749 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400750 struct btrfs_inode_item);
751
Chris Mason5f39d392007-10-15 16:14:19 -0400752 fill_inode_item(leaf, inode_item, inode);
753 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400754 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400755 ret = 0;
756failed:
757 btrfs_release_path(root, path);
758 btrfs_free_path(path);
759 return ret;
760}
761
762
763static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
764 struct btrfs_root *root,
765 struct inode *dir,
766 struct dentry *dentry)
767{
768 struct btrfs_path *path;
769 const char *name = dentry->d_name.name;
770 int name_len = dentry->d_name.len;
771 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400772 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400773 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400774 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400775
776 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400777 if (!path) {
778 ret = -ENOMEM;
779 goto err;
780 }
781
Chris Mason39279cc2007-06-12 06:35:45 -0400782 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
783 name, name_len, -1);
784 if (IS_ERR(di)) {
785 ret = PTR_ERR(di);
786 goto err;
787 }
788 if (!di) {
789 ret = -ENOENT;
790 goto err;
791 }
Chris Mason5f39d392007-10-15 16:14:19 -0400792 leaf = path->nodes[0];
793 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400794 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400795 if (ret)
796 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400797 btrfs_release_path(root, path);
798
799 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400800 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400801 if (IS_ERR(di)) {
802 ret = PTR_ERR(di);
803 goto err;
804 }
805 if (!di) {
806 ret = -ENOENT;
807 goto err;
808 }
809 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason39279cc2007-06-12 06:35:45 -0400810
811 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -0500812 ret = btrfs_del_inode_ref(trans, root, name, name_len,
813 dentry->d_inode->i_ino,
814 dentry->d_parent->d_inode->i_ino);
815 if (ret) {
816 printk("failed to delete reference to %.*s, "
817 "inode %lu parent %lu\n", name_len, name,
818 dentry->d_inode->i_ino,
819 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -0500820 }
Chris Mason39279cc2007-06-12 06:35:45 -0400821err:
822 btrfs_free_path(path);
823 if (!ret) {
824 dir->i_size -= name_len * 2;
Chris Mason79c44582007-06-25 10:09:33 -0400825 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400826 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -0500827#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
828 dentry->d_inode->i_nlink--;
829#else
Chris Mason39279cc2007-06-12 06:35:45 -0400830 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -0500831#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400832 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400833 dir->i_sb->s_dirt = 1;
834 }
835 return ret;
836}
837
838static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
839{
840 struct btrfs_root *root;
841 struct btrfs_trans_handle *trans;
Chris Mason2da98f02008-01-16 11:44:43 -0500842 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400843 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -0500844 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400845
846 root = BTRFS_I(dir)->root;
847 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500848
849 ret = btrfs_check_free_space(root, 1, 1);
850 if (ret)
851 goto fail;
852
Chris Mason39279cc2007-06-12 06:35:45 -0400853 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400854
Chris Mason39279cc2007-06-12 06:35:45 -0400855 btrfs_set_trans_block_group(trans, dir);
856 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400857 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400858
Chris Mason2da98f02008-01-16 11:44:43 -0500859 if (inode->i_nlink == 0) {
860 int found;
861 /* if the inode isn't linked anywhere,
862 * we don't need to worry about
863 * data=ordered
864 */
865 found = btrfs_del_ordered_inode(inode);
866 if (found == 1) {
867 atomic_dec(&inode->i_count);
868 }
869 }
870
Chris Mason39279cc2007-06-12 06:35:45 -0400871 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500872fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400873 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400874 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500875 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400876 return ret;
877}
878
879static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
880{
881 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -0500882 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400883 int ret;
884 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -0400885 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -0500886 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400887
Yan134d4512007-10-25 15:49:25 -0400888 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
889 return -ENOTEMPTY;
890
Chris Mason39279cc2007-06-12 06:35:45 -0400891 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500892 ret = btrfs_check_free_space(root, 1, 1);
893 if (ret)
894 goto fail;
895
Chris Mason39279cc2007-06-12 06:35:45 -0400896 trans = btrfs_start_transaction(root, 1);
897 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -0400898
899 /* now the directory is empty */
900 err = btrfs_unlink_trans(trans, root, dir, dentry);
901 if (!err) {
902 inode->i_size = 0;
903 }
Chris Mason39544012007-12-12 14:38:19 -0500904
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400905 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400906 ret = btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500907fail:
Yan134d4512007-10-25 15:49:25 -0400908 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400909 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500910 btrfs_throttle(root);
Chris Mason39544012007-12-12 14:38:19 -0500911
Chris Mason39279cc2007-06-12 06:35:45 -0400912 if (ret && !err)
913 err = ret;
914 return err;
915}
916
Chris Mason39279cc2007-06-12 06:35:45 -0400917/*
Chris Mason39279cc2007-06-12 06:35:45 -0400918 * this can truncate away extent items, csum items and directory items.
919 * It starts at a high offset and removes keys until it can't find
920 * any higher than i_size.
921 *
922 * csum items that cross the new i_size are truncated to the new size
923 * as well.
924 */
925static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
926 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -0500927 struct inode *inode,
928 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400929{
930 int ret;
931 struct btrfs_path *path;
932 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400933 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400934 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400935 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400936 struct btrfs_file_extent_item *fi;
937 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400938 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400939 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500940 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500941 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400942 int found_extent;
943 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -0500944 int pending_del_nr = 0;
945 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -0400946 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -0400947 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400948
Chris Mason3b951512008-04-17 11:29:12 -0400949 btrfs_drop_extent_cache(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400950 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400951 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400952 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400953
Chris Mason39279cc2007-06-12 06:35:45 -0400954 /* FIXME, add redo link to tree so we don't leak on crash */
955 key.objectid = inode->i_ino;
956 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400957 key.type = (u8)-1;
958
Chris Mason85e21ba2008-01-29 15:11:36 -0500959 btrfs_init_path(path);
960search_again:
961 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
962 if (ret < 0) {
963 goto error;
964 }
965 if (ret > 0) {
966 BUG_ON(path->slots[0] == 0);
967 path->slots[0]--;
968 }
969
Chris Mason39279cc2007-06-12 06:35:45 -0400970 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -0400971 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400972 leaf = path->nodes[0];
973 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
974 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400975
Chris Mason5f39d392007-10-15 16:14:19 -0400976 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400977 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400978
Chris Mason85e21ba2008-01-29 15:11:36 -0500979 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400980 break;
981
Chris Mason5f39d392007-10-15 16:14:19 -0400982 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400983 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400984 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400985 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400986 extent_type = btrfs_file_extent_type(leaf, fi);
987 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400988 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400989 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400990 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
991 struct btrfs_item *item = btrfs_item_nr(leaf,
992 path->slots[0]);
993 item_end += btrfs_file_extent_inline_len(leaf,
994 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400995 }
Yan008630c2007-11-07 13:31:09 -0500996 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400997 }
998 if (found_type == BTRFS_CSUM_ITEM_KEY) {
999 ret = btrfs_csum_truncate(trans, root, path,
1000 inode->i_size);
1001 BUG_ON(ret);
1002 }
Yan008630c2007-11-07 13:31:09 -05001003 if (item_end < inode->i_size) {
Chris Masonb888db22007-08-27 16:49:44 -04001004 if (found_type == BTRFS_DIR_ITEM_KEY) {
1005 found_type = BTRFS_INODE_ITEM_KEY;
1006 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
1007 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05001008 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
1009 found_type = BTRFS_XATTR_ITEM_KEY;
1010 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
1011 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04001012 } else if (found_type) {
1013 found_type--;
1014 } else {
1015 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001016 }
Yana61721d2007-09-17 11:08:38 -04001017 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05001018 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04001019 }
Chris Mason5f39d392007-10-15 16:14:19 -04001020 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -04001021 del_item = 1;
1022 else
1023 del_item = 0;
1024 found_extent = 0;
1025
1026 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001027 if (found_type != BTRFS_EXTENT_DATA_KEY)
1028 goto delete;
1029
1030 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001031 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001032 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001033 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001034 u64 orig_num_bytes =
1035 btrfs_file_extent_num_bytes(leaf, fi);
1036 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001037 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05001038 extent_num_bytes = extent_num_bytes &
1039 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001040 btrfs_set_file_extent_num_bytes(leaf, fi,
1041 extent_num_bytes);
1042 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001043 extent_num_bytes);
1044 if (extent_start != 0)
1045 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001046 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001047 } else {
Chris Masondb945352007-10-15 16:15:53 -04001048 extent_num_bytes =
1049 btrfs_file_extent_disk_num_bytes(leaf,
1050 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001051 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001052 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001053 if (extent_start != 0) {
1054 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -05001055 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001056 }
Chris Masond8d5f3e2007-12-11 12:42:00 -05001057 root_gen = btrfs_header_generation(leaf);
1058 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001059 }
Chris Mason90692182008-02-08 13:49:28 -05001060 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1061 if (!del_item) {
1062 u32 newsize = inode->i_size - found_key.offset;
1063 dec_i_blocks(inode, item_end + 1 -
1064 found_key.offset - newsize);
1065 newsize =
1066 btrfs_file_extent_calc_inline_size(newsize);
1067 ret = btrfs_truncate_item(trans, root, path,
1068 newsize, 1);
1069 BUG_ON(ret);
1070 } else {
1071 dec_i_blocks(inode, item_end + 1 -
1072 found_key.offset);
1073 }
Chris Mason39279cc2007-06-12 06:35:45 -04001074 }
Chris Mason179e29e2007-11-01 11:28:41 -04001075delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001076 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001077 if (!pending_del_nr) {
1078 /* no pending yet, add ourselves */
1079 pending_del_slot = path->slots[0];
1080 pending_del_nr = 1;
1081 } else if (pending_del_nr &&
1082 path->slots[0] + 1 == pending_del_slot) {
1083 /* hop on the pending chunk */
1084 pending_del_nr++;
1085 pending_del_slot = path->slots[0];
1086 } else {
1087 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1088 }
Chris Mason39279cc2007-06-12 06:35:45 -04001089 } else {
1090 break;
1091 }
Chris Mason39279cc2007-06-12 06:35:45 -04001092 if (found_extent) {
1093 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001094 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -05001095 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001096 root_gen, inode->i_ino,
1097 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001098 BUG_ON(ret);
1099 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001100next:
1101 if (path->slots[0] == 0) {
1102 if (pending_del_nr)
1103 goto del_pending;
1104 btrfs_release_path(root, path);
1105 goto search_again;
1106 }
1107
1108 path->slots[0]--;
1109 if (pending_del_nr &&
1110 path->slots[0] + 1 != pending_del_slot) {
1111 struct btrfs_key debug;
1112del_pending:
1113 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1114 pending_del_slot);
1115 ret = btrfs_del_items(trans, root, path,
1116 pending_del_slot,
1117 pending_del_nr);
1118 BUG_ON(ret);
1119 pending_del_nr = 0;
1120 btrfs_release_path(root, path);
1121 goto search_again;
1122 }
Chris Mason39279cc2007-06-12 06:35:45 -04001123 }
1124 ret = 0;
1125error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001126 if (pending_del_nr) {
1127 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1128 pending_del_nr);
1129 }
Chris Mason39279cc2007-06-12 06:35:45 -04001130 btrfs_release_path(root, path);
1131 btrfs_free_path(path);
1132 inode->i_sb->s_dirt = 1;
1133 return ret;
1134}
1135
Chris Masonb888db22007-08-27 16:49:44 -04001136static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -04001137 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001138{
Chris Mason39279cc2007-06-12 06:35:45 -04001139 char *kaddr;
Chris Masond1310b22008-01-24 16:13:08 -05001140 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason35ebb932007-10-30 16:56:53 -04001141 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db22007-08-27 16:49:44 -04001142 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -05001143 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001144
Chris Mason190662b2007-12-18 16:25:45 -05001145 WARN_ON(!PageLocked(page));
Christoph Hellwigb3cfa352007-09-17 11:25:58 -04001146 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001147
Chris Masond1310b22008-01-24 16:13:08 -05001148 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001149 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
Chris Masonb888db22007-08-27 16:49:44 -04001150 page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -05001151
Chris Masona52d9a82007-08-27 16:49:44 -04001152 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db22007-08-27 16:49:44 -04001153 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001154 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
1155 flush_dcache_page(page);
Chris Masonb888db22007-08-27 16:49:44 -04001156 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001157 }
Chris Masonb888db22007-08-27 16:49:44 -04001158 set_page_dirty(page);
Chris Masond1310b22008-01-24 16:13:08 -05001159 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001160
Chris Masona52d9a82007-08-27 16:49:44 -04001161 return ret;
1162}
1163
1164/*
1165 * taken from block_truncate_page, but does cow as it zeros out
1166 * any bytes left in the last page in the file.
1167 */
1168static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1169{
1170 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001171 struct btrfs_root *root = BTRFS_I(inode)->root;
1172 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001173 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1174 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1175 struct page *page;
1176 int ret = 0;
1177 u64 page_start;
1178
1179 if ((offset & (blocksize - 1)) == 0)
1180 goto out;
1181
1182 ret = -ENOMEM;
1183 page = grab_cache_page(mapping, index);
1184 if (!page)
1185 goto out;
1186 if (!PageUptodate(page)) {
1187 ret = btrfs_readpage(NULL, page);
1188 lock_page(page);
1189 if (!PageUptodate(page)) {
1190 ret = -EIO;
1191 goto out;
1192 }
1193 }
Chris Mason35ebb932007-10-30 16:56:53 -04001194 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04001195
Chris Masonb888db22007-08-27 16:49:44 -04001196 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -04001197
Chris Mason39279cc2007-06-12 06:35:45 -04001198 unlock_page(page);
1199 page_cache_release(page);
1200out:
1201 return ret;
1202}
1203
1204static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1205{
1206 struct inode *inode = dentry->d_inode;
1207 int err;
1208
1209 err = inode_change_ok(inode, attr);
1210 if (err)
1211 return err;
1212
1213 if (S_ISREG(inode->i_mode) &&
1214 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1215 struct btrfs_trans_handle *trans;
1216 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001217 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001218
Chris Mason5f39d392007-10-15 16:14:19 -04001219 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001220 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001221 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001222 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001223 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001224
Chris Mason1b0f7c22008-01-30 14:33:02 -05001225 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001226 goto out;
1227
Chris Mason1832a6d2007-12-21 16:27:21 -05001228 mutex_lock(&root->fs_info->fs_mutex);
1229 err = btrfs_check_free_space(root, 1, 0);
1230 mutex_unlock(&root->fs_info->fs_mutex);
1231 if (err)
1232 goto fail;
1233
Chris Mason39279cc2007-06-12 06:35:45 -04001234 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1235
Chris Mason1b0f7c22008-01-30 14:33:02 -05001236 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason5f564062008-01-22 16:47:59 -05001237 hole_size = block_end - hole_start;
Chris Mason39279cc2007-06-12 06:35:45 -04001238
1239 mutex_lock(&root->fs_info->fs_mutex);
1240 trans = btrfs_start_transaction(root, 1);
1241 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -04001242 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001243 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001244 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001245
Chris Mason179e29e2007-11-01 11:28:41 -04001246 if (alloc_hint != EXTENT_MAP_INLINE) {
1247 err = btrfs_insert_file_extent(trans, root,
1248 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001249 hole_start, 0, 0,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001250 hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001251 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001252 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001253 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001254 }
Chris Mason39279cc2007-06-12 06:35:45 -04001255 btrfs_end_transaction(trans, root);
1256 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001257 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001258 if (err)
1259 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001260 }
1261out:
1262 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001263fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001264 return err;
1265}
Chris Mason61295eb2008-01-14 16:24:38 -05001266
Chris Mason2da98f02008-01-16 11:44:43 -05001267void btrfs_put_inode(struct inode *inode)
Chris Mason61295eb2008-01-14 16:24:38 -05001268{
Chris Mason2da98f02008-01-16 11:44:43 -05001269 int ret;
1270
1271 if (!BTRFS_I(inode)->ordered_trans) {
Chris Mason61295eb2008-01-14 16:24:38 -05001272 return;
1273 }
Chris Mason2da98f02008-01-16 11:44:43 -05001274
1275 if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_DIRTY) ||
1276 mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1277 return;
1278
1279 ret = btrfs_del_ordered_inode(inode);
1280 if (ret == 1) {
1281 atomic_dec(&inode->i_count);
1282 }
Chris Mason61295eb2008-01-14 16:24:38 -05001283}
1284
Chris Mason39279cc2007-06-12 06:35:45 -04001285void btrfs_delete_inode(struct inode *inode)
1286{
1287 struct btrfs_trans_handle *trans;
1288 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001289 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001290 int ret;
1291
1292 truncate_inode_pages(&inode->i_data, 0);
1293 if (is_bad_inode(inode)) {
1294 goto no_delete;
1295 }
Chris Mason5f39d392007-10-15 16:14:19 -04001296
Chris Mason39279cc2007-06-12 06:35:45 -04001297 inode->i_size = 0;
1298 mutex_lock(&root->fs_info->fs_mutex);
1299 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001300
Chris Mason39279cc2007-06-12 06:35:45 -04001301 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001302 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001303 if (ret)
1304 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001305
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001306 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001307 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001308
Chris Mason39279cc2007-06-12 06:35:45 -04001309 btrfs_end_transaction(trans, root);
1310 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001311 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001312 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001313 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001314
1315no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001316 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001317 btrfs_end_transaction(trans, root);
1318 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001319 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001320 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001321no_delete:
1322 clear_inode(inode);
1323}
1324
1325/*
1326 * this returns the key found in the dir entry in the location pointer.
1327 * If no dir entries were found, location->objectid is 0.
1328 */
1329static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1330 struct btrfs_key *location)
1331{
1332 const char *name = dentry->d_name.name;
1333 int namelen = dentry->d_name.len;
1334 struct btrfs_dir_item *di;
1335 struct btrfs_path *path;
1336 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001337 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001338
Chris Mason39544012007-12-12 14:38:19 -05001339 if (namelen == 1 && strcmp(name, ".") == 0) {
1340 location->objectid = dir->i_ino;
1341 location->type = BTRFS_INODE_ITEM_KEY;
1342 location->offset = 0;
1343 return 0;
1344 }
Chris Mason39279cc2007-06-12 06:35:45 -04001345 path = btrfs_alloc_path();
1346 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001347
Chris Mason7a720532007-12-13 09:06:59 -05001348 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001349 struct btrfs_key key;
1350 struct extent_buffer *leaf;
1351 u32 nritems;
1352 int slot;
1353
1354 key.objectid = dir->i_ino;
1355 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1356 key.offset = 0;
1357 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1358 BUG_ON(ret == 0);
1359 ret = 0;
1360
1361 leaf = path->nodes[0];
1362 slot = path->slots[0];
1363 nritems = btrfs_header_nritems(leaf);
1364 if (slot >= nritems)
1365 goto out_err;
1366
1367 btrfs_item_key_to_cpu(leaf, &key, slot);
1368 if (key.objectid != dir->i_ino ||
1369 key.type != BTRFS_INODE_REF_KEY) {
1370 goto out_err;
1371 }
1372 location->objectid = key.offset;
1373 location->type = BTRFS_INODE_ITEM_KEY;
1374 location->offset = 0;
1375 goto out;
1376 }
1377
Chris Mason39279cc2007-06-12 06:35:45 -04001378 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1379 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001380 if (IS_ERR(di))
1381 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001382 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001383 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001384 }
Chris Mason5f39d392007-10-15 16:14:19 -04001385 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001386out:
Chris Mason39279cc2007-06-12 06:35:45 -04001387 btrfs_free_path(path);
1388 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001389out_err:
1390 location->objectid = 0;
1391 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001392}
1393
1394/*
1395 * when we hit a tree root in a directory, the btrfs part of the inode
1396 * needs to be changed to reflect the root directory of the tree root. This
1397 * is kind of like crossing a mount point.
1398 */
1399static int fixup_tree_root_location(struct btrfs_root *root,
1400 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001401 struct btrfs_root **sub_root,
1402 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001403{
1404 struct btrfs_path *path;
1405 struct btrfs_root_item *ri;
1406
1407 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1408 return 0;
1409 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1410 return 0;
1411
1412 path = btrfs_alloc_path();
1413 BUG_ON(!path);
1414 mutex_lock(&root->fs_info->fs_mutex);
1415
Josef Bacik58176a92007-08-29 15:47:34 -04001416 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1417 dentry->d_name.name,
1418 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001419 if (IS_ERR(*sub_root))
1420 return PTR_ERR(*sub_root);
1421
1422 ri = &(*sub_root)->root_item;
1423 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001424 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1425 location->offset = 0;
1426
1427 btrfs_free_path(path);
1428 mutex_unlock(&root->fs_info->fs_mutex);
1429 return 0;
1430}
1431
1432static int btrfs_init_locked_inode(struct inode *inode, void *p)
1433{
1434 struct btrfs_iget_args *args = p;
1435 inode->i_ino = args->ino;
1436 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001437 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001438 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1439 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001440 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001441 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1442 inode->i_mapping, GFP_NOFS);
Chris Mason81d7ed22008-04-25 08:51:48 -04001443 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001444 return 0;
1445}
1446
1447static int btrfs_find_actor(struct inode *inode, void *opaque)
1448{
1449 struct btrfs_iget_args *args = opaque;
1450 return (args->ino == inode->i_ino &&
1451 args->root == BTRFS_I(inode)->root);
1452}
1453
Chris Masondc17ff82008-01-08 15:46:30 -05001454struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1455 u64 root_objectid)
1456{
1457 struct btrfs_iget_args args;
1458 args.ino = objectid;
1459 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1460
1461 if (!args.root)
1462 return NULL;
1463
1464 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1465}
1466
Chris Mason39279cc2007-06-12 06:35:45 -04001467struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1468 struct btrfs_root *root)
1469{
1470 struct inode *inode;
1471 struct btrfs_iget_args args;
1472 args.ino = objectid;
1473 args.root = root;
1474
1475 inode = iget5_locked(s, objectid, btrfs_find_actor,
1476 btrfs_init_locked_inode,
1477 (void *)&args);
1478 return inode;
1479}
1480
1481static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1482 struct nameidata *nd)
1483{
1484 struct inode * inode;
1485 struct btrfs_inode *bi = BTRFS_I(dir);
1486 struct btrfs_root *root = bi->root;
1487 struct btrfs_root *sub_root = root;
1488 struct btrfs_key location;
1489 int ret;
1490
1491 if (dentry->d_name.len > BTRFS_NAME_LEN)
1492 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001493
Chris Mason39279cc2007-06-12 06:35:45 -04001494 mutex_lock(&root->fs_info->fs_mutex);
1495 ret = btrfs_inode_by_name(dir, dentry, &location);
1496 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001497
Chris Mason39279cc2007-06-12 06:35:45 -04001498 if (ret < 0)
1499 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001500
Chris Mason39279cc2007-06-12 06:35:45 -04001501 inode = NULL;
1502 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001503 ret = fixup_tree_root_location(root, &location, &sub_root,
1504 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001505 if (ret < 0)
1506 return ERR_PTR(ret);
1507 if (ret > 0)
1508 return ERR_PTR(-ENOENT);
1509 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1510 sub_root);
1511 if (!inode)
1512 return ERR_PTR(-EACCES);
1513 if (inode->i_state & I_NEW) {
1514 /* the inode and parent dir are two different roots */
1515 if (sub_root != root) {
1516 igrab(inode);
1517 sub_root->inode = inode;
1518 }
1519 BTRFS_I(inode)->root = sub_root;
1520 memcpy(&BTRFS_I(inode)->location, &location,
1521 sizeof(location));
1522 btrfs_read_locked_inode(inode);
1523 unlock_new_inode(inode);
1524 }
1525 }
1526 return d_splice_alias(inode, dentry);
1527}
1528
Chris Mason39279cc2007-06-12 06:35:45 -04001529static unsigned char btrfs_filetype_table[] = {
1530 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1531};
1532
1533static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1534{
Chris Mason6da6aba2007-12-18 16:15:09 -05001535 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001536 struct btrfs_root *root = BTRFS_I(inode)->root;
1537 struct btrfs_item *item;
1538 struct btrfs_dir_item *di;
1539 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001540 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001541 struct btrfs_path *path;
1542 int ret;
1543 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001544 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001545 int slot;
1546 int advance;
1547 unsigned char d_type;
1548 int over = 0;
1549 u32 di_cur;
1550 u32 di_total;
1551 u32 di_len;
1552 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001553 char tmp_name[32];
1554 char *name_ptr;
1555 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001556
1557 /* FIXME, use a real flag for deciding about the key type */
1558 if (root->fs_info->tree_root == root)
1559 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001560
Chris Mason39544012007-12-12 14:38:19 -05001561 /* special case for "." */
1562 if (filp->f_pos == 0) {
1563 over = filldir(dirent, ".", 1,
1564 1, inode->i_ino,
1565 DT_DIR);
1566 if (over)
1567 return 0;
1568 filp->f_pos = 1;
1569 }
1570
Chris Mason39279cc2007-06-12 06:35:45 -04001571 mutex_lock(&root->fs_info->fs_mutex);
1572 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001573 path = btrfs_alloc_path();
1574 path->reada = 2;
1575
1576 /* special case for .., just use the back ref */
1577 if (filp->f_pos == 1) {
1578 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1579 key.offset = 0;
1580 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1581 BUG_ON(ret == 0);
1582 leaf = path->nodes[0];
1583 slot = path->slots[0];
1584 nritems = btrfs_header_nritems(leaf);
1585 if (slot >= nritems) {
1586 btrfs_release_path(root, path);
1587 goto read_dir_items;
1588 }
1589 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1590 btrfs_release_path(root, path);
1591 if (found_key.objectid != key.objectid ||
1592 found_key.type != BTRFS_INODE_REF_KEY)
1593 goto read_dir_items;
1594 over = filldir(dirent, "..", 2,
1595 2, found_key.offset, DT_DIR);
1596 if (over)
1597 goto nopos;
1598 filp->f_pos = 2;
1599 }
1600
1601read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001602 btrfs_set_key_type(&key, key_type);
1603 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001604
Chris Mason39279cc2007-06-12 06:35:45 -04001605 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1606 if (ret < 0)
1607 goto err;
1608 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001609 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001610 leaf = path->nodes[0];
1611 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001612 slot = path->slots[0];
1613 if (advance || slot >= nritems) {
1614 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001615 ret = btrfs_next_leaf(root, path);
1616 if (ret)
1617 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001618 leaf = path->nodes[0];
1619 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001620 slot = path->slots[0];
1621 } else {
1622 slot++;
1623 path->slots[0]++;
1624 }
1625 }
1626 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001627 item = btrfs_item_nr(leaf, slot);
1628 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1629
1630 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001631 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001632 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001633 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001634 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001635 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001636
1637 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001638 advance = 1;
1639 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1640 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001641 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001642 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001643 struct btrfs_key location;
1644
1645 name_len = btrfs_dir_name_len(leaf, di);
1646 if (name_len < 32) {
1647 name_ptr = tmp_name;
1648 } else {
1649 name_ptr = kmalloc(name_len, GFP_NOFS);
1650 BUG_ON(!name_ptr);
1651 }
1652 read_extent_buffer(leaf, name_ptr,
1653 (unsigned long)(di + 1), name_len);
1654
1655 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1656 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001657 over = filldir(dirent, name_ptr, name_len,
1658 found_key.offset,
1659 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001660 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001661
1662 if (name_ptr != tmp_name)
1663 kfree(name_ptr);
1664
Chris Mason39279cc2007-06-12 06:35:45 -04001665 if (over)
1666 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001667 di_len = btrfs_dir_name_len(leaf, di) +
1668 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001669 di_cur += di_len;
1670 di = (struct btrfs_dir_item *)((char *)di + di_len);
1671 }
1672 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001673 if (key_type == BTRFS_DIR_INDEX_KEY)
1674 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1675 else
1676 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001677nopos:
1678 ret = 0;
1679err:
1680 btrfs_release_path(root, path);
1681 btrfs_free_path(path);
1682 mutex_unlock(&root->fs_info->fs_mutex);
1683 return ret;
1684}
1685
1686int btrfs_write_inode(struct inode *inode, int wait)
1687{
1688 struct btrfs_root *root = BTRFS_I(inode)->root;
1689 struct btrfs_trans_handle *trans;
1690 int ret = 0;
1691
1692 if (wait) {
1693 mutex_lock(&root->fs_info->fs_mutex);
1694 trans = btrfs_start_transaction(root, 1);
1695 btrfs_set_trans_block_group(trans, inode);
1696 ret = btrfs_commit_transaction(trans, root);
1697 mutex_unlock(&root->fs_info->fs_mutex);
1698 }
1699 return ret;
1700}
1701
1702/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001703 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001704 * inode changes. But, it is most likely to find the inode in cache.
1705 * FIXME, needs more benchmarking...there are no reasons other than performance
1706 * to keep or drop this code.
1707 */
1708void btrfs_dirty_inode(struct inode *inode)
1709{
1710 struct btrfs_root *root = BTRFS_I(inode)->root;
1711 struct btrfs_trans_handle *trans;
1712
1713 mutex_lock(&root->fs_info->fs_mutex);
1714 trans = btrfs_start_transaction(root, 1);
1715 btrfs_set_trans_block_group(trans, inode);
1716 btrfs_update_inode(trans, root, inode);
1717 btrfs_end_transaction(trans, root);
1718 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001719}
1720
1721static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1722 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001723 const char *name, int name_len,
1724 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001725 u64 objectid,
1726 struct btrfs_block_group_cache *group,
1727 int mode)
1728{
1729 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001730 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04001731 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04001732 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001733 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001734 struct btrfs_inode_ref *ref;
1735 struct btrfs_key key[2];
1736 u32 sizes[2];
1737 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001738 int ret;
1739 int owner;
1740
Chris Mason5f39d392007-10-15 16:14:19 -04001741 path = btrfs_alloc_path();
1742 BUG_ON(!path);
1743
Chris Mason39279cc2007-06-12 06:35:45 -04001744 inode = new_inode(root->fs_info->sb);
1745 if (!inode)
1746 return ERR_PTR(-ENOMEM);
1747
Chris Masond1310b22008-01-24 16:13:08 -05001748 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1749 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001750 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001751 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1752 inode->i_mapping, GFP_NOFS);
Chris Mason81d7ed22008-04-25 08:51:48 -04001753 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Mason90692182008-02-08 13:49:28 -05001754 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001755 BTRFS_I(inode)->root = root;
Chris Masonb888db22007-08-27 16:49:44 -04001756
Chris Mason39279cc2007-06-12 06:35:45 -04001757 if (mode & S_IFDIR)
1758 owner = 0;
1759 else
1760 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04001761 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001762 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04001763 if (!new_inode_group) {
1764 printk("find_block group failed\n");
1765 new_inode_group = group;
1766 }
1767 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05001768 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001769
1770 key[0].objectid = objectid;
1771 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1772 key[0].offset = 0;
1773
1774 key[1].objectid = objectid;
1775 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1776 key[1].offset = ref_objectid;
1777
1778 sizes[0] = sizeof(struct btrfs_inode_item);
1779 sizes[1] = name_len + sizeof(*ref);
1780
1781 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1782 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001783 goto fail;
1784
Chris Mason9c583092008-01-29 15:15:18 -05001785 if (objectid > root->highest_inode)
1786 root->highest_inode = objectid;
1787
Chris Mason39279cc2007-06-12 06:35:45 -04001788 inode->i_uid = current->fsuid;
1789 inode->i_gid = current->fsgid;
1790 inode->i_mode = mode;
1791 inode->i_ino = objectid;
1792 inode->i_blocks = 0;
1793 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001794 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1795 struct btrfs_inode_item);
1796 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001797
1798 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1799 struct btrfs_inode_ref);
1800 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1801 ptr = (unsigned long)(ref + 1);
1802 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1803
Chris Mason5f39d392007-10-15 16:14:19 -04001804 btrfs_mark_buffer_dirty(path->nodes[0]);
1805 btrfs_free_path(path);
1806
Chris Mason39279cc2007-06-12 06:35:45 -04001807 location = &BTRFS_I(inode)->location;
1808 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001809 location->offset = 0;
1810 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1811
Chris Mason39279cc2007-06-12 06:35:45 -04001812 insert_inode_hash(inode);
1813 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001814fail:
1815 btrfs_free_path(path);
1816 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001817}
1818
1819static inline u8 btrfs_inode_type(struct inode *inode)
1820{
1821 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1822}
1823
1824static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001825 struct dentry *dentry, struct inode *inode,
1826 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001827{
1828 int ret;
1829 struct btrfs_key key;
1830 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001831 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001832
Chris Mason39279cc2007-06-12 06:35:45 -04001833 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001834 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1835 key.offset = 0;
1836
1837 ret = btrfs_insert_dir_item(trans, root,
1838 dentry->d_name.name, dentry->d_name.len,
1839 dentry->d_parent->d_inode->i_ino,
1840 &key, btrfs_inode_type(inode));
1841 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05001842 if (add_backref) {
1843 ret = btrfs_insert_inode_ref(trans, root,
1844 dentry->d_name.name,
1845 dentry->d_name.len,
1846 inode->i_ino,
1847 dentry->d_parent->d_inode->i_ino);
1848 }
Chris Mason79c44582007-06-25 10:09:33 -04001849 parent_inode = dentry->d_parent->d_inode;
1850 parent_inode->i_size += dentry->d_name.len * 2;
1851 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001852 ret = btrfs_update_inode(trans, root,
1853 dentry->d_parent->d_inode);
1854 }
1855 return ret;
1856}
1857
1858static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001859 struct dentry *dentry, struct inode *inode,
1860 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001861{
Chris Mason9c583092008-01-29 15:15:18 -05001862 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04001863 if (!err) {
1864 d_instantiate(dentry, inode);
1865 return 0;
1866 }
1867 if (err > 0)
1868 err = -EEXIST;
1869 return err;
1870}
1871
Josef Bacik618e21d2007-07-11 10:18:17 -04001872static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1873 int mode, dev_t rdev)
1874{
1875 struct btrfs_trans_handle *trans;
1876 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001877 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04001878 int err;
1879 int drop_inode = 0;
1880 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05001881 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04001882
1883 if (!new_valid_dev(rdev))
1884 return -EINVAL;
1885
1886 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001887 err = btrfs_check_free_space(root, 1, 0);
1888 if (err)
1889 goto fail;
1890
Josef Bacik618e21d2007-07-11 10:18:17 -04001891 trans = btrfs_start_transaction(root, 1);
1892 btrfs_set_trans_block_group(trans, dir);
1893
1894 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1895 if (err) {
1896 err = -ENOSPC;
1897 goto out_unlock;
1898 }
1899
Chris Mason9c583092008-01-29 15:15:18 -05001900 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1901 dentry->d_name.len,
1902 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04001903 BTRFS_I(dir)->block_group, mode);
1904 err = PTR_ERR(inode);
1905 if (IS_ERR(inode))
1906 goto out_unlock;
1907
1908 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001909 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04001910 if (err)
1911 drop_inode = 1;
1912 else {
1913 inode->i_op = &btrfs_special_inode_operations;
1914 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001915 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001916 }
1917 dir->i_sb->s_dirt = 1;
1918 btrfs_update_inode_block_group(trans, inode);
1919 btrfs_update_inode_block_group(trans, dir);
1920out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001921 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001922 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001923fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04001924 mutex_unlock(&root->fs_info->fs_mutex);
1925
1926 if (drop_inode) {
1927 inode_dec_link_count(inode);
1928 iput(inode);
1929 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001930 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001931 btrfs_throttle(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04001932 return err;
1933}
1934
Chris Mason39279cc2007-06-12 06:35:45 -04001935static int btrfs_create(struct inode *dir, struct dentry *dentry,
1936 int mode, struct nameidata *nd)
1937{
1938 struct btrfs_trans_handle *trans;
1939 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001940 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001941 int err;
1942 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05001943 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001944 u64 objectid;
1945
1946 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001947 err = btrfs_check_free_space(root, 1, 0);
1948 if (err)
1949 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001950 trans = btrfs_start_transaction(root, 1);
1951 btrfs_set_trans_block_group(trans, dir);
1952
1953 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1954 if (err) {
1955 err = -ENOSPC;
1956 goto out_unlock;
1957 }
1958
Chris Mason9c583092008-01-29 15:15:18 -05001959 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1960 dentry->d_name.len,
1961 dentry->d_parent->d_inode->i_ino,
1962 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04001963 err = PTR_ERR(inode);
1964 if (IS_ERR(inode))
1965 goto out_unlock;
1966
1967 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001968 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001969 if (err)
1970 drop_inode = 1;
1971 else {
1972 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001973 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001974 inode->i_fop = &btrfs_file_operations;
1975 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05001976 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1977 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04001978 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001979 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1980 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001981 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason81d7ed22008-04-25 08:51:48 -04001982 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001983 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001984 }
1985 dir->i_sb->s_dirt = 1;
1986 btrfs_update_inode_block_group(trans, inode);
1987 btrfs_update_inode_block_group(trans, dir);
1988out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001989 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001990 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001991fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001992 mutex_unlock(&root->fs_info->fs_mutex);
1993
1994 if (drop_inode) {
1995 inode_dec_link_count(inode);
1996 iput(inode);
1997 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001998 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001999 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002000 return err;
2001}
2002
2003static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
2004 struct dentry *dentry)
2005{
2006 struct btrfs_trans_handle *trans;
2007 struct btrfs_root *root = BTRFS_I(dir)->root;
2008 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002009 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002010 int err;
2011 int drop_inode = 0;
2012
2013 if (inode->i_nlink == 0)
2014 return -ENOENT;
2015
Chris Mason6da6aba2007-12-18 16:15:09 -05002016#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2017 inode->i_nlink++;
2018#else
Chris Mason39279cc2007-06-12 06:35:45 -04002019 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05002020#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002021 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002022 err = btrfs_check_free_space(root, 1, 0);
2023 if (err)
2024 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002025 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002026
Chris Mason39279cc2007-06-12 06:35:45 -04002027 btrfs_set_trans_block_group(trans, dir);
2028 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05002029 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002030
Chris Mason39279cc2007-06-12 06:35:45 -04002031 if (err)
2032 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002033
Chris Mason39279cc2007-06-12 06:35:45 -04002034 dir->i_sb->s_dirt = 1;
2035 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002036 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002037
Chris Mason54aa1f42007-06-22 14:16:25 -04002038 if (err)
2039 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002040
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002041 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002042 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002043fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002044 mutex_unlock(&root->fs_info->fs_mutex);
2045
2046 if (drop_inode) {
2047 inode_dec_link_count(inode);
2048 iput(inode);
2049 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002050 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002051 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002052 return err;
2053}
2054
Chris Mason39279cc2007-06-12 06:35:45 -04002055static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2056{
Chris Masonb9d86662008-05-02 16:13:49 -04002057 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002058 struct btrfs_trans_handle *trans;
2059 struct btrfs_root *root = BTRFS_I(dir)->root;
2060 int err = 0;
2061 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04002062 u64 objectid = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002063 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002064
2065 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002066 err = btrfs_check_free_space(root, 1, 0);
2067 if (err)
2068 goto out_unlock;
2069
Chris Mason39279cc2007-06-12 06:35:45 -04002070 trans = btrfs_start_transaction(root, 1);
2071 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002072
Chris Mason39279cc2007-06-12 06:35:45 -04002073 if (IS_ERR(trans)) {
2074 err = PTR_ERR(trans);
2075 goto out_unlock;
2076 }
2077
2078 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2079 if (err) {
2080 err = -ENOSPC;
2081 goto out_unlock;
2082 }
2083
Chris Mason9c583092008-01-29 15:15:18 -05002084 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2085 dentry->d_name.len,
2086 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002087 BTRFS_I(dir)->block_group, S_IFDIR | mode);
2088 if (IS_ERR(inode)) {
2089 err = PTR_ERR(inode);
2090 goto out_fail;
2091 }
Chris Mason5f39d392007-10-15 16:14:19 -04002092
Chris Mason39279cc2007-06-12 06:35:45 -04002093 drop_on_err = 1;
2094 inode->i_op = &btrfs_dir_inode_operations;
2095 inode->i_fop = &btrfs_dir_file_operations;
2096 btrfs_set_trans_block_group(trans, inode);
2097
Chris Mason39544012007-12-12 14:38:19 -05002098 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002099 err = btrfs_update_inode(trans, root, inode);
2100 if (err)
2101 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002102
Chris Mason9c583092008-01-29 15:15:18 -05002103 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002104 if (err)
2105 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002106
Chris Mason39279cc2007-06-12 06:35:45 -04002107 d_instantiate(dentry, inode);
2108 drop_on_err = 0;
2109 dir->i_sb->s_dirt = 1;
2110 btrfs_update_inode_block_group(trans, inode);
2111 btrfs_update_inode_block_group(trans, dir);
2112
2113out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002114 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002115 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002116
Chris Mason39279cc2007-06-12 06:35:45 -04002117out_unlock:
2118 mutex_unlock(&root->fs_info->fs_mutex);
2119 if (drop_on_err)
2120 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002121 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002122 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002123 return err;
2124}
2125
Chris Mason3b951512008-04-17 11:29:12 -04002126static int merge_extent_mapping(struct extent_map_tree *em_tree,
2127 struct extent_map *existing,
2128 struct extent_map *em)
2129{
2130 u64 start_diff;
2131 u64 new_end;
2132 int ret = 0;
2133 int real_blocks = existing->block_start < EXTENT_MAP_LAST_BYTE;
2134
2135 if (real_blocks && em->block_start >= EXTENT_MAP_LAST_BYTE)
2136 goto invalid;
2137
2138 if (!real_blocks && em->block_start != existing->block_start)
2139 goto invalid;
2140
2141 new_end = max(existing->start + existing->len, em->start + em->len);
2142
2143 if (existing->start >= em->start) {
2144 if (em->start + em->len < existing->start)
2145 goto invalid;
2146
2147 start_diff = existing->start - em->start;
2148 if (real_blocks && em->block_start + start_diff !=
2149 existing->block_start)
2150 goto invalid;
2151
2152 em->len = new_end - em->start;
2153
2154 remove_extent_mapping(em_tree, existing);
2155 /* free for the tree */
2156 free_extent_map(existing);
2157 ret = add_extent_mapping(em_tree, em);
2158
2159 } else if (em->start > existing->start) {
2160
2161 if (existing->start + existing->len < em->start)
2162 goto invalid;
2163
2164 start_diff = em->start - existing->start;
2165 if (real_blocks && existing->block_start + start_diff !=
2166 em->block_start)
2167 goto invalid;
2168
2169 remove_extent_mapping(em_tree, existing);
2170 em->block_start = existing->block_start;
2171 em->start = existing->start;
2172 em->len = new_end - existing->start;
2173 free_extent_map(existing);
2174
2175 ret = add_extent_mapping(em_tree, em);
2176 } else {
2177 goto invalid;
2178 }
2179 return ret;
2180
2181invalid:
2182 printk("invalid extent map merge [%Lu %Lu %Lu] [%Lu %Lu %Lu]\n",
2183 existing->start, existing->len, existing->block_start,
2184 em->start, em->len, em->block_start);
2185 return -EIO;
2186}
2187
Chris Masona52d9a82007-08-27 16:49:44 -04002188struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002189 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002190 int create)
2191{
2192 int ret;
2193 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002194 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002195 u64 extent_start = 0;
2196 u64 extent_end = 0;
2197 u64 objectid = inode->i_ino;
2198 u32 found_type;
Chris Masona52d9a82007-08-27 16:49:44 -04002199 struct btrfs_path *path;
2200 struct btrfs_root *root = BTRFS_I(inode)->root;
2201 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002202 struct extent_buffer *leaf;
2203 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002204 struct extent_map *em = NULL;
2205 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002206 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002207 struct btrfs_trans_handle *trans = NULL;
2208
2209 path = btrfs_alloc_path();
2210 BUG_ON(!path);
2211 mutex_lock(&root->fs_info->fs_mutex);
2212
2213again:
Chris Masond1310b22008-01-24 16:13:08 -05002214 spin_lock(&em_tree->lock);
2215 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04002216 if (em)
2217 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002218 spin_unlock(&em_tree->lock);
2219
Chris Masona52d9a82007-08-27 16:49:44 -04002220 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04002221 if (em->start > start || em->start + em->len <= start)
2222 free_extent_map(em);
2223 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05002224 free_extent_map(em);
2225 else
2226 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002227 }
Chris Masond1310b22008-01-24 16:13:08 -05002228 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002229 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002230 err = -ENOMEM;
2231 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002232 }
Chris Masond1310b22008-01-24 16:13:08 -05002233
2234 em->start = EXTENT_MAP_HOLE;
2235 em->len = (u64)-1;
Chris Masona061fc82008-05-07 11:43:44 -04002236 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04002237 ret = btrfs_lookup_file_extent(trans, root, path,
2238 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002239 if (ret < 0) {
2240 err = ret;
2241 goto out;
2242 }
2243
2244 if (ret != 0) {
2245 if (path->slots[0] == 0)
2246 goto not_found;
2247 path->slots[0]--;
2248 }
2249
Chris Mason5f39d392007-10-15 16:14:19 -04002250 leaf = path->nodes[0];
2251 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002252 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002253 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002254 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2255 found_type = btrfs_key_type(&found_key);
2256 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002257 found_type != BTRFS_EXTENT_DATA_KEY) {
2258 goto not_found;
2259 }
2260
Chris Mason5f39d392007-10-15 16:14:19 -04002261 found_type = btrfs_file_extent_type(leaf, item);
2262 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002263 if (found_type == BTRFS_FILE_EXTENT_REG) {
2264 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002265 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002266 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04002267 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002268 em->start = start;
2269 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002270 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002271 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002272 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002273 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002274 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002275 }
2276 goto not_found_em;
2277 }
Chris Masondb945352007-10-15 16:15:53 -04002278 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2279 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002280 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002281 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002282 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002283 goto insert;
2284 }
Chris Masondb945352007-10-15 16:15:53 -04002285 bytenr += btrfs_file_extent_offset(leaf, item);
2286 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002287 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002288 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002289 goto insert;
2290 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002291 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002292 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002293 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002294 size_t size;
2295 size_t extent_offset;
2296 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002297
Chris Mason5f39d392007-10-15 16:14:19 -04002298 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2299 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002300 extent_end = (extent_start + size + root->sectorsize - 1) &
2301 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002302 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002303 em->start = start;
2304 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002305 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002306 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002307 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002308 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002309 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002310 }
2311 goto not_found_em;
2312 }
2313 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002314
2315 if (!page) {
2316 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002317 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002318 goto out;
2319 }
2320
Chris Mason70dec802008-01-29 09:59:12 -05002321 page_start = page_offset(page) + pg_offset;
2322 extent_offset = page_start - extent_start;
2323 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002324 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002325 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002326 em->len = (copy_size + root->sectorsize - 1) &
2327 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002328 map = kmap(page);
2329 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002330 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002331 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002332 copy_size);
2333 flush_dcache_page(page);
2334 } else if (create && PageUptodate(page)) {
2335 if (!trans) {
2336 kunmap(page);
2337 free_extent_map(em);
2338 em = NULL;
2339 btrfs_release_path(root, path);
2340 trans = btrfs_start_transaction(root, 1);
2341 goto again;
2342 }
Chris Mason70dec802008-01-29 09:59:12 -05002343 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002344 copy_size);
2345 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002346 }
Chris Masona52d9a82007-08-27 16:49:44 -04002347 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002348 set_extent_uptodate(io_tree, em->start,
2349 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002350 goto insert;
2351 } else {
2352 printk("unkknown found_type %d\n", found_type);
2353 WARN_ON(1);
2354 }
2355not_found:
2356 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002357 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002358not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002359 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002360insert:
2361 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002362 if (em->start > start || extent_map_end(em) <= start) {
2363 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002364 err = -EIO;
2365 goto out;
2366 }
Chris Masond1310b22008-01-24 16:13:08 -05002367
2368 err = 0;
2369 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002370 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002371 /* it is possible that someone inserted the extent into the tree
2372 * while we had the lock dropped. It is also possible that
2373 * an overlapping map exists in the tree
2374 */
Chris Masona52d9a82007-08-27 16:49:44 -04002375 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002376 struct extent_map *existing;
2377 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002378 if (existing && (existing->start > start ||
2379 existing->start + existing->len <= start)) {
2380 free_extent_map(existing);
2381 existing = NULL;
2382 }
Chris Mason3b951512008-04-17 11:29:12 -04002383 if (!existing) {
2384 existing = lookup_extent_mapping(em_tree, em->start,
2385 em->len);
2386 if (existing) {
2387 err = merge_extent_mapping(em_tree, existing,
2388 em);
2389 free_extent_map(existing);
2390 if (err) {
2391 free_extent_map(em);
2392 em = NULL;
2393 }
2394 } else {
2395 err = -EIO;
2396 printk("failing to insert %Lu %Lu\n",
2397 start, len);
2398 free_extent_map(em);
2399 em = NULL;
2400 }
2401 } else {
2402 free_extent_map(em);
2403 em = existing;
Chris Masona52d9a82007-08-27 16:49:44 -04002404 }
Chris Masona52d9a82007-08-27 16:49:44 -04002405 }
Chris Masond1310b22008-01-24 16:13:08 -05002406 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002407out:
2408 btrfs_free_path(path);
2409 if (trans) {
2410 ret = btrfs_end_transaction(trans, root);
2411 if (!err)
2412 err = ret;
2413 }
2414 mutex_unlock(&root->fs_info->fs_mutex);
2415 if (err) {
2416 free_extent_map(em);
2417 WARN_ON(1);
2418 return ERR_PTR(err);
2419 }
2420 return em;
2421}
2422
Chris Masone1c4b742008-04-22 13:26:46 -04002423#if 0 /* waiting for O_DIRECT reads */
Chris Mason16432982008-04-10 10:23:21 -04002424static int btrfs_get_block(struct inode *inode, sector_t iblock,
2425 struct buffer_head *bh_result, int create)
2426{
2427 struct extent_map *em;
2428 u64 start = (u64)iblock << inode->i_blkbits;
2429 struct btrfs_multi_bio *multi = NULL;
2430 struct btrfs_root *root = BTRFS_I(inode)->root;
2431 u64 len;
2432 u64 logical;
2433 u64 map_length;
2434 int ret = 0;
2435
2436 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2437
2438 if (!em || IS_ERR(em))
2439 goto out;
2440
Chris Masone1c4b742008-04-22 13:26:46 -04002441 if (em->start > start || em->start + em->len <= start) {
Chris Mason16432982008-04-10 10:23:21 -04002442 goto out;
Chris Masone1c4b742008-04-22 13:26:46 -04002443 }
Chris Mason16432982008-04-10 10:23:21 -04002444
2445 if (em->block_start == EXTENT_MAP_INLINE) {
2446 ret = -EINVAL;
2447 goto out;
2448 }
2449
Chris Mason16432982008-04-10 10:23:21 -04002450 len = em->start + em->len - start;
2451 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2452
Chris Masone1c4b742008-04-22 13:26:46 -04002453 if (em->block_start == EXTENT_MAP_HOLE ||
2454 em->block_start == EXTENT_MAP_DELALLOC) {
2455 bh_result->b_size = len;
2456 goto out;
2457 }
2458
Chris Mason16432982008-04-10 10:23:21 -04002459 logical = start - em->start;
2460 logical = em->block_start + logical;
2461
2462 map_length = len;
2463 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2464 logical, &map_length, &multi, 0);
2465 BUG_ON(ret);
2466 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2467 bh_result->b_size = min(map_length, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002468
Chris Mason16432982008-04-10 10:23:21 -04002469 bh_result->b_bdev = multi->stripes[0].dev->bdev;
2470 set_buffer_mapped(bh_result);
2471 kfree(multi);
2472out:
2473 free_extent_map(em);
2474 return ret;
2475}
Chris Masone1c4b742008-04-22 13:26:46 -04002476#endif
Chris Mason16432982008-04-10 10:23:21 -04002477
2478static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
2479 const struct iovec *iov, loff_t offset,
2480 unsigned long nr_segs)
2481{
Chris Masone1c4b742008-04-22 13:26:46 -04002482 return -EINVAL;
2483#if 0
Chris Mason16432982008-04-10 10:23:21 -04002484 struct file *file = iocb->ki_filp;
2485 struct inode *inode = file->f_mapping->host;
2486
2487 if (rw == WRITE)
2488 return -EINVAL;
2489
2490 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2491 offset, nr_segs, btrfs_get_block, NULL);
Chris Masone1c4b742008-04-22 13:26:46 -04002492#endif
Chris Mason16432982008-04-10 10:23:21 -04002493}
2494
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002495static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002496{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002497 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002498}
2499
Chris Mason9ebefb182007-06-15 13:50:00 -04002500int btrfs_readpage(struct file *file, struct page *page)
2501{
Chris Masond1310b22008-01-24 16:13:08 -05002502 struct extent_io_tree *tree;
2503 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002504 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002505}
Chris Mason1832a6d2007-12-21 16:27:21 -05002506
Chris Mason39279cc2007-06-12 06:35:45 -04002507static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2508{
Chris Masond1310b22008-01-24 16:13:08 -05002509 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04002510
2511
2512 if (current->flags & PF_MEMALLOC) {
2513 redirty_page_for_writepage(wbc, page);
2514 unlock_page(page);
2515 return 0;
2516 }
Chris Masond1310b22008-01-24 16:13:08 -05002517 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002518 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2519}
Chris Mason39279cc2007-06-12 06:35:45 -04002520
Chris Masonb293f02e2007-11-01 19:45:34 -04002521static int btrfs_writepages(struct address_space *mapping,
2522 struct writeback_control *wbc)
2523{
Chris Masond1310b22008-01-24 16:13:08 -05002524 struct extent_io_tree *tree;
2525 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04002526 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2527}
2528
Chris Mason3ab2fb52007-11-08 10:59:22 -05002529static int
2530btrfs_readpages(struct file *file, struct address_space *mapping,
2531 struct list_head *pages, unsigned nr_pages)
2532{
Chris Masond1310b22008-01-24 16:13:08 -05002533 struct extent_io_tree *tree;
2534 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002535 return extent_readpages(tree, mapping, pages, nr_pages,
2536 btrfs_get_extent);
2537}
2538
Chris Mason70dec802008-01-29 09:59:12 -05002539static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002540{
Chris Masond1310b22008-01-24 16:13:08 -05002541 struct extent_io_tree *tree;
2542 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002543 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002544
Chris Masond1310b22008-01-24 16:13:08 -05002545 tree = &BTRFS_I(page->mapping->host)->io_tree;
2546 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002547 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002548 if (ret == 1) {
Chris Mason4ef64ea2008-04-21 08:52:50 -04002549 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04002550 ClearPagePrivate(page);
2551 set_page_private(page, 0);
2552 page_cache_release(page);
2553 }
2554 return ret;
2555}
Chris Mason39279cc2007-06-12 06:35:45 -04002556
Chris Masona52d9a82007-08-27 16:49:44 -04002557static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2558{
Chris Masond1310b22008-01-24 16:13:08 -05002559 struct extent_io_tree *tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002560
Chris Masond1310b22008-01-24 16:13:08 -05002561 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002562 extent_invalidatepage(tree, page, offset);
2563 btrfs_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04002564 if (PagePrivate(page)) {
Chris Mason4ef64ea2008-04-21 08:52:50 -04002565 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Mason9ad6b7bc2008-04-18 16:11:30 -04002566 ClearPagePrivate(page);
2567 set_page_private(page, 0);
2568 page_cache_release(page);
2569 }
Chris Mason39279cc2007-06-12 06:35:45 -04002570}
2571
Chris Mason9ebefb182007-06-15 13:50:00 -04002572/*
2573 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2574 * called from a page fault handler when a page is first dirtied. Hence we must
2575 * be careful to check for EOF conditions here. We set the page up correctly
2576 * for a written page which means we get ENOSPC checking when writing into
2577 * holes and correct delalloc and unwritten extent mapping on filesystems that
2578 * support these features.
2579 *
2580 * We are not allowed to take the i_mutex here so we have to play games to
2581 * protect against truncate races as the page could now be beyond EOF. Because
2582 * vmtruncate() writes the inode size before removing pages, once we have the
2583 * page lock we can determine safely if the page is beyond EOF. If it is not
2584 * beyond EOF, then the page is guaranteed safe against truncation until we
2585 * unlock the page.
2586 */
2587int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2588{
Chris Mason6da6aba2007-12-18 16:15:09 -05002589 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002590 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9ebefb182007-06-15 13:50:00 -04002591 unsigned long end;
2592 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002593 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002594 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002595
Chris Mason1832a6d2007-12-21 16:27:21 -05002596 mutex_lock(&root->fs_info->fs_mutex);
2597 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason8f662a72008-01-02 10:01:11 -05002598 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002599 if (ret)
2600 goto out;
2601
2602 ret = -EINVAL;
2603
Chris Mason9ebefb182007-06-15 13:50:00 -04002604 lock_page(page);
2605 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002606 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04002607 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04002608
Chris Mason9ebefb182007-06-15 13:50:00 -04002609 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04002610 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002611 /* page got truncated out from underneath us */
2612 goto out_unlock;
2613 }
2614
2615 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002616 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04002617 end = size & ~PAGE_CACHE_MASK;
2618 else
2619 end = PAGE_CACHE_SIZE;
2620
Chris Masonb888db22007-08-27 16:49:44 -04002621 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04002622
2623out_unlock:
2624 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002625out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002626 return ret;
2627}
2628
Chris Mason39279cc2007-06-12 06:35:45 -04002629static void btrfs_truncate(struct inode *inode)
2630{
2631 struct btrfs_root *root = BTRFS_I(inode)->root;
2632 int ret;
2633 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002634 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002635
2636 if (!S_ISREG(inode->i_mode))
2637 return;
2638 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2639 return;
2640
2641 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2642
2643 mutex_lock(&root->fs_info->fs_mutex);
2644 trans = btrfs_start_transaction(root, 1);
2645 btrfs_set_trans_block_group(trans, inode);
2646
2647 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002648 ret = btrfs_truncate_in_trans(trans, root, inode,
2649 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002650 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002651 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002652
Chris Mason39279cc2007-06-12 06:35:45 -04002653 ret = btrfs_end_transaction(trans, root);
2654 BUG_ON(ret);
2655 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002656 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002657 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002658}
2659
Chris Mason4313b392008-01-03 09:08:48 -05002660static int noinline create_subvol(struct btrfs_root *root, char *name,
2661 int namelen)
Chris Mason39279cc2007-06-12 06:35:45 -04002662{
2663 struct btrfs_trans_handle *trans;
2664 struct btrfs_key key;
2665 struct btrfs_root_item root_item;
2666 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002667 struct extent_buffer *leaf;
Chris Masondc17ff82008-01-08 15:46:30 -05002668 struct btrfs_root *new_root = root;
Chris Mason39279cc2007-06-12 06:35:45 -04002669 struct inode *inode;
2670 struct inode *dir;
2671 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002672 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002673 u64 objectid;
2674 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002675 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002676
2677 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002678 ret = btrfs_check_free_space(root, 1, 0);
2679 if (ret)
2680 goto fail_commit;
2681
Chris Mason39279cc2007-06-12 06:35:45 -04002682 trans = btrfs_start_transaction(root, 1);
2683 BUG_ON(!trans);
2684
Chris Mason7bb86312007-12-11 09:25:06 -05002685 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2686 0, &objectid);
2687 if (ret)
2688 goto fail;
2689
2690 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2691 objectid, trans->transid, 0, 0,
2692 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002693 if (IS_ERR(leaf))
2694 return PTR_ERR(leaf);
2695
2696 btrfs_set_header_nritems(leaf, 0);
2697 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04002698 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002699 btrfs_set_header_generation(leaf, trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002700 btrfs_set_header_owner(leaf, objectid);
2701
Chris Mason5f39d392007-10-15 16:14:19 -04002702 write_extent_buffer(leaf, root->fs_info->fsid,
2703 (unsigned long)btrfs_header_fsid(leaf),
2704 BTRFS_FSID_SIZE);
2705 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002706
2707 inode_item = &root_item.inode;
2708 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002709 inode_item->generation = cpu_to_le64(1);
2710 inode_item->size = cpu_to_le64(3);
2711 inode_item->nlink = cpu_to_le32(1);
2712 inode_item->nblocks = cpu_to_le64(1);
2713 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04002714
Chris Masondb945352007-10-15 16:15:53 -04002715 btrfs_set_root_bytenr(&root_item, leaf->start);
2716 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002717 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002718 btrfs_set_root_used(&root_item, 0);
2719
Chris Mason5eda7b52007-06-22 14:16:25 -04002720 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2721 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002722
2723 free_extent_buffer(leaf);
2724 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002725
Chris Mason39279cc2007-06-12 06:35:45 -04002726 btrfs_set_root_dirid(&root_item, new_dirid);
2727
2728 key.objectid = objectid;
2729 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002730 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2731 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2732 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002733 if (ret)
2734 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002735
2736 /*
2737 * insert the directory item
2738 */
2739 key.offset = (u64)-1;
2740 dir = root->fs_info->sb->s_root->d_inode;
2741 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2742 name, namelen, dir->i_ino, &key,
2743 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04002744 if (ret)
2745 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002746
Chris Mason39544012007-12-12 14:38:19 -05002747 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2748 name, namelen, objectid,
2749 root->fs_info->sb->s_root->d_inode->i_ino);
2750 if (ret)
2751 goto fail;
2752
Chris Mason39279cc2007-06-12 06:35:45 -04002753 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002754 if (ret)
2755 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04002756
Josef Bacik58176a92007-08-29 15:47:34 -04002757 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04002758 BUG_ON(!new_root);
2759
2760 trans = btrfs_start_transaction(new_root, 1);
2761 BUG_ON(!trans);
2762
Chris Mason9c583092008-01-29 15:15:18 -05002763 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
2764 new_dirid,
Chris Mason39279cc2007-06-12 06:35:45 -04002765 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002766 if (IS_ERR(inode))
2767 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002768 inode->i_op = &btrfs_dir_inode_operations;
2769 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002770 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002771
Chris Mason39544012007-12-12 14:38:19 -05002772 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2773 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002774 inode->i_nlink = 1;
Chris Mason39544012007-12-12 14:38:19 -05002775 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002776 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002777 if (ret)
2778 goto fail;
2779fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002780 nr = trans->blocks_used;
Chris Masondc17ff82008-01-08 15:46:30 -05002781 err = btrfs_commit_transaction(trans, new_root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002782 if (err && !ret)
2783 ret = err;
2784fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04002785 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002786 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002787 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002788 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002789}
2790
2791static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2792{
Chris Mason3063d292008-01-08 15:46:30 -05002793 struct btrfs_pending_snapshot *pending_snapshot;
Chris Mason39279cc2007-06-12 06:35:45 -04002794 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04002795 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002796 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05002797 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002798
2799 if (!root->ref_cows)
2800 return -EINVAL;
2801
2802 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002803 ret = btrfs_check_free_space(root, 1, 0);
2804 if (ret)
2805 goto fail_unlock;
2806
Chris Mason3063d292008-01-08 15:46:30 -05002807 pending_snapshot = kmalloc(sizeof(*pending_snapshot), GFP_NOFS);
2808 if (!pending_snapshot) {
2809 ret = -ENOMEM;
2810 goto fail_unlock;
2811 }
Yanfb4bc1e2008-01-17 11:59:51 -05002812 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
Chris Mason3063d292008-01-08 15:46:30 -05002813 if (!pending_snapshot->name) {
2814 ret = -ENOMEM;
2815 kfree(pending_snapshot);
2816 goto fail_unlock;
2817 }
Yanfb4bc1e2008-01-17 11:59:51 -05002818 memcpy(pending_snapshot->name, name, namelen);
2819 pending_snapshot->name[namelen] = '\0';
Chris Mason39279cc2007-06-12 06:35:45 -04002820 trans = btrfs_start_transaction(root, 1);
2821 BUG_ON(!trans);
Chris Mason3063d292008-01-08 15:46:30 -05002822 pending_snapshot->root = root;
2823 list_add(&pending_snapshot->list,
2824 &trans->transaction->pending_snapshots);
Chris Mason39279cc2007-06-12 06:35:45 -04002825 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002826 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002827
Chris Mason1832a6d2007-12-21 16:27:21 -05002828fail_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002829 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002830 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002831 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002832 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002833}
2834
Chris Masonedbd8d42007-12-21 16:27:24 -05002835unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002836 struct file_ra_state *ra, struct file *file,
2837 pgoff_t offset, pgoff_t last_index)
2838{
Chris Mason8e7bf942008-04-28 09:02:36 -04002839 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04002840
2841#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
Chris Mason86479a02007-09-10 19:58:16 -04002842 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2843 return offset;
2844#else
Chris Mason86479a02007-09-10 19:58:16 -04002845 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2846 return offset + req_size;
2847#endif
2848}
2849
2850int btrfs_defrag_file(struct file *file) {
Chris Mason6da6aba2007-12-18 16:15:09 -05002851 struct inode *inode = fdentry(file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002852 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002853 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason86479a02007-09-10 19:58:16 -04002854 struct page *page;
2855 unsigned long last_index;
Chris Mason8e7bf942008-04-28 09:02:36 -04002856 unsigned long ra_pages = root->fs_info->bdi.ra_pages;
2857 unsigned long total_read = 0;
Chris Mason86479a02007-09-10 19:58:16 -04002858 u64 page_start;
2859 u64 page_end;
2860 unsigned long i;
Chris Mason1832a6d2007-12-21 16:27:21 -05002861 int ret;
2862
2863 mutex_lock(&root->fs_info->fs_mutex);
2864 ret = btrfs_check_free_space(root, inode->i_size, 0);
2865 mutex_unlock(&root->fs_info->fs_mutex);
2866 if (ret)
2867 return -ENOSPC;
Chris Mason86479a02007-09-10 19:58:16 -04002868
2869 mutex_lock(&inode->i_mutex);
2870 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2871 for (i = 0; i <= last_index; i++) {
Chris Mason8e7bf942008-04-28 09:02:36 -04002872 if (total_read % ra_pages == 0) {
2873 btrfs_force_ra(inode->i_mapping, &file->f_ra, file, i,
2874 min(last_index, i + ra_pages - 1));
Chris Mason86479a02007-09-10 19:58:16 -04002875 }
Chris Mason8e7bf942008-04-28 09:02:36 -04002876 total_read++;
Chris Mason86479a02007-09-10 19:58:16 -04002877 page = grab_cache_page(inode->i_mapping, i);
2878 if (!page)
2879 goto out_unlock;
2880 if (!PageUptodate(page)) {
2881 btrfs_readpage(NULL, page);
2882 lock_page(page);
2883 if (!PageUptodate(page)) {
2884 unlock_page(page);
2885 page_cache_release(page);
2886 goto out_unlock;
2887 }
2888 }
Chris Masonec44a352008-04-28 15:29:52 -04002889
2890#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2891 ClearPageDirty(page);
2892#else
2893 cancel_dirty_page(page, PAGE_CACHE_SIZE);
2894#endif
2895 wait_on_page_writeback(page);
2896 set_page_extent_mapped(page);
2897
Chris Mason35ebb932007-10-30 16:56:53 -04002898 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002899 page_end = page_start + PAGE_CACHE_SIZE - 1;
2900
Chris Masond1310b22008-01-24 16:13:08 -05002901 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002902 set_extent_delalloc(io_tree, page_start,
Chris Mason86479a02007-09-10 19:58:16 -04002903 page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002904
Chris Masond1310b22008-01-24 16:13:08 -05002905 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason86479a02007-09-10 19:58:16 -04002906 set_page_dirty(page);
2907 unlock_page(page);
2908 page_cache_release(page);
2909 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2910 }
2911
2912out_unlock:
2913 mutex_unlock(&inode->i_mutex);
2914 return 0;
2915}
2916
Chris Masonedbd8d42007-12-21 16:27:24 -05002917static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2918{
2919 u64 new_size;
2920 u64 old_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04002921 u64 devid = 1;
Chris Masonedbd8d42007-12-21 16:27:24 -05002922 struct btrfs_ioctl_vol_args *vol_args;
2923 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002924 struct btrfs_device *device = NULL;
Chris Masonedbd8d42007-12-21 16:27:24 -05002925 char *sizestr;
Chris Mason8f18cf12008-04-25 16:53:30 -04002926 char *devstr = NULL;
Chris Masonedbd8d42007-12-21 16:27:24 -05002927 int ret = 0;
2928 int namelen;
2929 int mod = 0;
2930
2931 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2932
2933 if (!vol_args)
2934 return -ENOMEM;
2935
2936 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2937 ret = -EFAULT;
2938 goto out;
2939 }
2940 namelen = strlen(vol_args->name);
2941 if (namelen > BTRFS_VOL_NAME_MAX) {
2942 ret = -EINVAL;
2943 goto out;
2944 }
2945
Chris Mason8f18cf12008-04-25 16:53:30 -04002946 mutex_lock(&root->fs_info->fs_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05002947 sizestr = vol_args->name;
Chris Mason8f18cf12008-04-25 16:53:30 -04002948 devstr = strchr(sizestr, ':');
2949 if (devstr) {
2950 char *end;
2951 sizestr = devstr + 1;
2952 *devstr = '\0';
2953 devstr = vol_args->name;
2954 devid = simple_strtoull(devstr, &end, 10);
2955printk("resizing devid %Lu\n", devid);
2956 }
2957 device = btrfs_find_device(root, devid, NULL);
2958 if (!device) {
2959 printk("resizer unable to find device %Lu\n", devid);
2960 ret = -EINVAL;
2961 goto out_unlock;
2962 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002963 if (!strcmp(sizestr, "max"))
Chris Mason8f18cf12008-04-25 16:53:30 -04002964 new_size = device->bdev->bd_inode->i_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002965 else {
2966 if (sizestr[0] == '-') {
2967 mod = -1;
2968 sizestr++;
2969 } else if (sizestr[0] == '+') {
2970 mod = 1;
2971 sizestr++;
2972 }
2973 new_size = btrfs_parse_size(sizestr);
2974 if (new_size == 0) {
2975 ret = -EINVAL;
Chris Mason8f18cf12008-04-25 16:53:30 -04002976 goto out_unlock;
Chris Masonedbd8d42007-12-21 16:27:24 -05002977 }
2978 }
2979
Chris Mason8f18cf12008-04-25 16:53:30 -04002980 old_size = device->total_bytes;
Chris Masonedbd8d42007-12-21 16:27:24 -05002981
2982 if (mod < 0) {
2983 if (new_size > old_size) {
2984 ret = -EINVAL;
2985 goto out_unlock;
2986 }
2987 new_size = old_size - new_size;
2988 } else if (mod > 0) {
2989 new_size = old_size + new_size;
2990 }
2991
2992 if (new_size < 256 * 1024 * 1024) {
2993 ret = -EINVAL;
2994 goto out_unlock;
2995 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002996 if (new_size > device->bdev->bd_inode->i_size) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002997 ret = -EFBIG;
2998 goto out_unlock;
2999 }
Chris Masonf9ef6602008-01-03 09:22:38 -05003000
3001 do_div(new_size, root->sectorsize);
3002 new_size *= root->sectorsize;
Chris Masonedbd8d42007-12-21 16:27:24 -05003003
Chris Mason8f18cf12008-04-25 16:53:30 -04003004printk("new size for %s is %llu\n", device->name, (unsigned long long)new_size);
3005
Chris Masonedbd8d42007-12-21 16:27:24 -05003006 if (new_size > old_size) {
3007 trans = btrfs_start_transaction(root, 1);
Chris Mason8f18cf12008-04-25 16:53:30 -04003008 ret = btrfs_grow_device(trans, device, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05003009 btrfs_commit_transaction(trans, root);
3010 } else {
Chris Mason8f18cf12008-04-25 16:53:30 -04003011 ret = btrfs_shrink_device(device, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05003012 }
3013
3014out_unlock:
3015 mutex_unlock(&root->fs_info->fs_mutex);
3016out:
3017 kfree(vol_args);
3018 return ret;
3019}
3020
Chris Mason4313b392008-01-03 09:08:48 -05003021static int noinline btrfs_ioctl_snap_create(struct btrfs_root *root,
3022 void __user *arg)
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003023{
Chris Mason4aec2b52007-12-18 16:25:45 -05003024 struct btrfs_ioctl_vol_args *vol_args;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003025 struct btrfs_dir_item *di;
3026 struct btrfs_path *path;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003027 u64 root_dirid;
Chris Mason4aec2b52007-12-18 16:25:45 -05003028 int namelen;
3029 int ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003030
Chris Mason4aec2b52007-12-18 16:25:45 -05003031 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04003032
Chris Mason4aec2b52007-12-18 16:25:45 -05003033 if (!vol_args)
3034 return -ENOMEM;
3035
3036 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
3037 ret = -EFAULT;
3038 goto out;
3039 }
3040
3041 namelen = strlen(vol_args->name);
3042 if (namelen > BTRFS_VOL_NAME_MAX) {
3043 ret = -EINVAL;
3044 goto out;
3045 }
3046 if (strchr(vol_args->name, '/')) {
3047 ret = -EINVAL;
3048 goto out;
3049 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003050
3051 path = btrfs_alloc_path();
Chris Mason4aec2b52007-12-18 16:25:45 -05003052 if (!path) {
3053 ret = -ENOMEM;
3054 goto out;
3055 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003056
3057 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
3058 mutex_lock(&root->fs_info->fs_mutex);
3059 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
3060 path, root_dirid,
Chris Mason4aec2b52007-12-18 16:25:45 -05003061 vol_args->name, namelen, 0);
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003062 mutex_unlock(&root->fs_info->fs_mutex);
3063 btrfs_free_path(path);
Chris Mason4aec2b52007-12-18 16:25:45 -05003064
3065 if (di && !IS_ERR(di)) {
3066 ret = -EEXIST;
3067 goto out;
3068 }
3069
3070 if (IS_ERR(di)) {
3071 ret = PTR_ERR(di);
3072 goto out;
3073 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003074
3075 if (root == root->fs_info->tree_root)
Chris Mason4aec2b52007-12-18 16:25:45 -05003076 ret = create_subvol(root, vol_args->name, namelen);
3077 else
3078 ret = create_snapshot(root, vol_args->name, namelen);
3079out:
3080 kfree(vol_args);
3081 return ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003082}
3083
3084static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04003085{
Chris Mason6da6aba2007-12-18 16:15:09 -05003086 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003087 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003088
3089 switch (inode->i_mode & S_IFMT) {
3090 case S_IFDIR:
3091 mutex_lock(&root->fs_info->fs_mutex);
3092 btrfs_defrag_root(root, 0);
3093 btrfs_defrag_root(root->fs_info->extent_root, 0);
3094 mutex_unlock(&root->fs_info->fs_mutex);
3095 break;
3096 case S_IFREG:
3097 btrfs_defrag_file(file);
3098 break;
3099 }
3100
3101 return 0;
3102}
3103
Chris Mason788f20e2008-04-28 15:29:42 -04003104long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
3105{
3106 struct btrfs_ioctl_vol_args *vol_args;
3107 int ret;
3108
3109 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
3110
3111 if (!vol_args)
3112 return -ENOMEM;
3113
3114 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
3115 ret = -EFAULT;
3116 goto out;
3117 }
3118 ret = btrfs_init_new_device(root, vol_args->name);
3119
3120out:
3121 kfree(vol_args);
3122 return ret;
3123}
3124
Chris Masona061fc82008-05-07 11:43:44 -04003125long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg)
3126{
3127 struct btrfs_ioctl_vol_args *vol_args;
3128 int ret;
3129
3130 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
3131
3132 if (!vol_args)
3133 return -ENOMEM;
3134
3135 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
3136 ret = -EFAULT;
3137 goto out;
3138 }
3139 ret = btrfs_rm_device(root, vol_args->name);
3140
3141out:
3142 kfree(vol_args);
3143 return ret;
3144}
3145
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003146int dup_item_to_inode(struct btrfs_trans_handle *trans,
Sage Weilf2eb0a22008-05-02 14:43:14 -04003147 struct btrfs_root *root,
3148 struct btrfs_path *path,
3149 struct extent_buffer *leaf,
3150 int slot,
3151 struct btrfs_key *key,
3152 u64 destino)
3153{
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003154 char *dup;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003155 int len = btrfs_item_size_nr(leaf, slot);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003156 struct btrfs_key ckey = *key;
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003157 int ret = 0;
3158
3159 dup = kmalloc(len, GFP_NOFS);
3160 if (!dup)
3161 return -ENOMEM;
3162
3163 read_extent_buffer(leaf, dup, btrfs_item_ptr_offset(leaf, slot), len);
3164 btrfs_release_path(root, path);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003165
3166 ckey.objectid = destino;
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003167 ret = btrfs_insert_item(trans, root, &ckey, dup, len);
3168 kfree(dup);
3169 return ret;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003170}
3171
3172long btrfs_ioctl_clone(struct file *file, unsigned long src_fd)
3173{
3174 struct inode *inode = fdentry(file)->d_inode;
3175 struct btrfs_root *root = BTRFS_I(inode)->root;
3176 struct file *src_file;
3177 struct inode *src;
3178 struct btrfs_trans_handle *trans;
3179 int ret;
3180 u64 pos;
3181 struct btrfs_path *path;
3182 struct btrfs_key key;
3183 struct extent_buffer *leaf;
3184 u32 nritems;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003185 int slot;
3186
3187 src_file = fget(src_fd);
3188 if (!src_file)
3189 return -EBADF;
3190 src = src_file->f_dentry->d_inode;
3191
3192 ret = -EXDEV;
3193 if (src->i_sb != inode->i_sb)
3194 goto out_fput;
3195
3196 if (inode < src) {
3197 mutex_lock(&inode->i_mutex);
3198 mutex_lock(&src->i_mutex);
3199 } else {
3200 mutex_lock(&src->i_mutex);
3201 mutex_lock(&inode->i_mutex);
3202 }
3203
3204 ret = -ENOTEMPTY;
3205 if (inode->i_size)
3206 goto out_unlock;
3207
3208 /* do any pending delalloc/csum calc on src, one way or
3209 another, and lock file content */
3210 while (1) {
3211 filemap_write_and_wait(src->i_mapping);
3212 lock_extent(&BTRFS_I(src)->io_tree, 0, (u64)-1, GFP_NOFS);
3213 if (BTRFS_I(src)->delalloc_bytes == 0)
3214 break;
3215 unlock_extent(&BTRFS_I(src)->io_tree, 0, (u64)-1, GFP_NOFS);
3216 }
3217
3218 mutex_lock(&root->fs_info->fs_mutex);
3219 trans = btrfs_start_transaction(root, 0);
3220 path = btrfs_alloc_path();
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003221 if (!path) {
3222 ret = -ENOMEM;
3223 goto out;
3224 }
3225 key.offset = 0;
3226 key.type = BTRFS_EXTENT_DATA_KEY;
3227 key.objectid = src->i_ino;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003228 pos = 0;
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003229 path->reada = 2;
3230
Sage Weilf2eb0a22008-05-02 14:43:14 -04003231 while (1) {
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003232 /*
3233 * note the key will change type as we walk through the
3234 * tree.
3235 */
3236 ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003237 if (ret < 0)
3238 goto out;
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003239
3240 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3241 ret = btrfs_next_leaf(root, path);
3242 if (ret < 0)
Sage Weilf2eb0a22008-05-02 14:43:14 -04003243 goto out;
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003244 if (ret > 0)
3245 break;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003246 }
Sage Weilf2eb0a22008-05-02 14:43:14 -04003247 leaf = path->nodes[0];
3248 slot = path->slots[0];
3249 btrfs_item_key_to_cpu(leaf, &key, slot);
3250 nritems = btrfs_header_nritems(leaf);
3251
3252 if (btrfs_key_type(&key) > BTRFS_CSUM_ITEM_KEY ||
3253 key.objectid != src->i_ino)
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003254 break;
3255
Sage Weilf2eb0a22008-05-02 14:43:14 -04003256 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
3257 struct btrfs_file_extent_item *extent;
3258 int found_type;
3259 pos = key.offset;
3260 extent = btrfs_item_ptr(leaf, slot,
3261 struct btrfs_file_extent_item);
3262 found_type = btrfs_file_extent_type(leaf, extent);
3263 if (found_type == BTRFS_FILE_EXTENT_REG) {
3264 u64 len = btrfs_file_extent_num_bytes(leaf,
3265 extent);
3266 u64 ds = btrfs_file_extent_disk_bytenr(leaf,
3267 extent);
3268 u64 dl = btrfs_file_extent_disk_num_bytes(leaf,
3269 extent);
3270 u64 off = btrfs_file_extent_offset(leaf,
3271 extent);
3272 btrfs_insert_file_extent(trans, root,
3273 inode->i_ino, pos,
3274 ds, dl, len, off);
3275 /* ds == 0 means there's a hole */
3276 if (ds != 0) {
3277 btrfs_inc_extent_ref(trans, root,
3278 ds, dl,
3279 root->root_key.objectid,
3280 trans->transid,
3281 inode->i_ino, pos);
3282 }
3283 pos = key.offset + len;
3284 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003285 ret = dup_item_to_inode(trans, root, path,
3286 leaf, slot, &key,
3287 inode->i_ino);
3288 if (ret)
3289 goto out;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003290 pos = key.offset + btrfs_item_size_nr(leaf,
3291 slot);
3292 }
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003293 } else if (btrfs_key_type(&key) == BTRFS_CSUM_ITEM_KEY) {
3294 ret = dup_item_to_inode(trans, root, path, leaf,
3295 slot, &key, inode->i_ino);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003296
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003297 if (ret)
Sage Weilf2eb0a22008-05-02 14:43:14 -04003298 goto out;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003299 }
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003300 key.offset++;
3301 btrfs_release_path(root, path);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003302 }
3303
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003304 ret = 0;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003305out:
3306 btrfs_free_path(path);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003307
3308 inode->i_blocks = src->i_blocks;
3309 i_size_write(inode, src->i_size);
3310 btrfs_update_inode(trans, root, inode);
3311
3312 unlock_extent(&BTRFS_I(src)->io_tree, 0, (u64)-1, GFP_NOFS);
3313
3314 btrfs_end_transaction(trans, root);
3315 mutex_unlock(&root->fs_info->fs_mutex);
3316
3317out_unlock:
3318 mutex_unlock(&src->i_mutex);
3319 mutex_unlock(&inode->i_mutex);
3320out_fput:
3321 fput(src_file);
3322 return ret;
3323}
3324
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003325long btrfs_ioctl(struct file *file, unsigned int
3326 cmd, unsigned long arg)
3327{
Chris Mason6da6aba2007-12-18 16:15:09 -05003328 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003329
3330 switch (cmd) {
3331 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003332 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04003333 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003334 return btrfs_ioctl_defrag(file);
Chris Masonedbd8d42007-12-21 16:27:24 -05003335 case BTRFS_IOC_RESIZE:
3336 return btrfs_ioctl_resize(root, (void __user *)arg);
Chris Mason788f20e2008-04-28 15:29:42 -04003337 case BTRFS_IOC_ADD_DEV:
3338 return btrfs_ioctl_add_dev(root, (void __user *)arg);
Chris Masona061fc82008-05-07 11:43:44 -04003339 case BTRFS_IOC_RM_DEV:
3340 return btrfs_ioctl_rm_dev(root, (void __user *)arg);
Chris Masonec44a352008-04-28 15:29:52 -04003341 case BTRFS_IOC_BALANCE:
3342 return btrfs_balance(root->fs_info->dev_root);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003343 case BTRFS_IOC_CLONE:
3344 return btrfs_ioctl_clone(file, arg);
Chris Mason39279cc2007-06-12 06:35:45 -04003345 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003346
3347 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04003348}
3349
Chris Mason39279cc2007-06-12 06:35:45 -04003350/*
3351 * Called inside transaction, so use GFP_NOFS
3352 */
3353struct inode *btrfs_alloc_inode(struct super_block *sb)
3354{
3355 struct btrfs_inode *ei;
3356
3357 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
3358 if (!ei)
3359 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003360 ei->last_trans = 0;
Chris Masondc17ff82008-01-08 15:46:30 -05003361 ei->ordered_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003362 return &ei->vfs_inode;
3363}
3364
3365void btrfs_destroy_inode(struct inode *inode)
3366{
3367 WARN_ON(!list_empty(&inode->i_dentry));
3368 WARN_ON(inode->i_data.nrpages);
3369
Chris Mason8c416c92008-01-14 15:10:26 -05003370 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003371 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
3372}
3373
Chris Mason44ec0b72007-10-29 10:55:05 -04003374#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
3375static void init_once(struct kmem_cache * cachep, void *foo)
3376#else
Chris Mason39279cc2007-06-12 06:35:45 -04003377static void init_once(void * foo, struct kmem_cache * cachep,
3378 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04003379#endif
Chris Mason39279cc2007-06-12 06:35:45 -04003380{
3381 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
3382
3383 inode_init_once(&ei->vfs_inode);
3384}
3385
3386void btrfs_destroy_cachep(void)
3387{
3388 if (btrfs_inode_cachep)
3389 kmem_cache_destroy(btrfs_inode_cachep);
3390 if (btrfs_trans_handle_cachep)
3391 kmem_cache_destroy(btrfs_trans_handle_cachep);
3392 if (btrfs_transaction_cachep)
3393 kmem_cache_destroy(btrfs_transaction_cachep);
3394 if (btrfs_bit_radix_cachep)
3395 kmem_cache_destroy(btrfs_bit_radix_cachep);
3396 if (btrfs_path_cachep)
3397 kmem_cache_destroy(btrfs_path_cachep);
3398}
3399
Chris Mason86479a02007-09-10 19:58:16 -04003400struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04003401 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04003402#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
3403 void (*ctor)(struct kmem_cache *, void *)
3404#else
Chris Mason92fee662007-07-25 12:31:35 -04003405 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04003406 unsigned long)
3407#endif
3408 )
Chris Mason92fee662007-07-25 12:31:35 -04003409{
3410 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
3411 SLAB_MEM_SPREAD | extra_flags), ctor
3412#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
3413 ,NULL
3414#endif
3415 );
3416}
3417
Chris Mason39279cc2007-06-12 06:35:45 -04003418int btrfs_init_cachep(void)
3419{
Chris Mason86479a02007-09-10 19:58:16 -04003420 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04003421 sizeof(struct btrfs_inode),
3422 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04003423 if (!btrfs_inode_cachep)
3424 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003425 btrfs_trans_handle_cachep =
3426 btrfs_cache_create("btrfs_trans_handle_cache",
3427 sizeof(struct btrfs_trans_handle),
3428 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003429 if (!btrfs_trans_handle_cachep)
3430 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003431 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04003432 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04003433 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003434 if (!btrfs_transaction_cachep)
3435 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003436 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04003437 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04003438 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003439 if (!btrfs_path_cachep)
3440 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003441 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04003442 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003443 if (!btrfs_bit_radix_cachep)
3444 goto fail;
3445 return 0;
3446fail:
3447 btrfs_destroy_cachep();
3448 return -ENOMEM;
3449}
3450
3451static int btrfs_getattr(struct vfsmount *mnt,
3452 struct dentry *dentry, struct kstat *stat)
3453{
3454 struct inode *inode = dentry->d_inode;
3455 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05003456 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05003457 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04003458 return 0;
3459}
3460
3461static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3462 struct inode * new_dir,struct dentry *new_dentry)
3463{
3464 struct btrfs_trans_handle *trans;
3465 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3466 struct inode *new_inode = new_dentry->d_inode;
3467 struct inode *old_inode = old_dentry->d_inode;
3468 struct timespec ctime = CURRENT_TIME;
3469 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003470 int ret;
3471
3472 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3473 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3474 return -ENOTEMPTY;
3475 }
Chris Mason5f39d392007-10-15 16:14:19 -04003476
Chris Mason39279cc2007-06-12 06:35:45 -04003477 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05003478 ret = btrfs_check_free_space(root, 1, 0);
3479 if (ret)
3480 goto out_unlock;
3481
Chris Mason39279cc2007-06-12 06:35:45 -04003482 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003483
Chris Mason39279cc2007-06-12 06:35:45 -04003484 btrfs_set_trans_block_group(trans, new_dir);
3485 path = btrfs_alloc_path();
3486 if (!path) {
3487 ret = -ENOMEM;
3488 goto out_fail;
3489 }
3490
3491 old_dentry->d_inode->i_nlink++;
3492 old_dir->i_ctime = old_dir->i_mtime = ctime;
3493 new_dir->i_ctime = new_dir->i_mtime = ctime;
3494 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003495
Chris Mason39279cc2007-06-12 06:35:45 -04003496 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
3497 if (ret)
3498 goto out_fail;
3499
3500 if (new_inode) {
3501 new_inode->i_ctime = CURRENT_TIME;
3502 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
3503 if (ret)
3504 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003505 }
Chris Mason9c583092008-01-29 15:15:18 -05003506 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003507 if (ret)
3508 goto out_fail;
3509
3510out_fail:
3511 btrfs_free_path(path);
3512 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003513out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003514 mutex_unlock(&root->fs_info->fs_mutex);
3515 return ret;
3516}
3517
3518static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3519 const char *symname)
3520{
3521 struct btrfs_trans_handle *trans;
3522 struct btrfs_root *root = BTRFS_I(dir)->root;
3523 struct btrfs_path *path;
3524 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003525 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003526 int err;
3527 int drop_inode = 0;
3528 u64 objectid;
3529 int name_len;
3530 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003531 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003532 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003533 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003534 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003535
3536 name_len = strlen(symname) + 1;
3537 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3538 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003539
Chris Mason39279cc2007-06-12 06:35:45 -04003540 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05003541 err = btrfs_check_free_space(root, 1, 0);
3542 if (err)
3543 goto out_fail;
3544
Chris Mason39279cc2007-06-12 06:35:45 -04003545 trans = btrfs_start_transaction(root, 1);
3546 btrfs_set_trans_block_group(trans, dir);
3547
3548 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3549 if (err) {
3550 err = -ENOSPC;
3551 goto out_unlock;
3552 }
3553
Chris Mason9c583092008-01-29 15:15:18 -05003554 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
3555 dentry->d_name.len,
3556 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003557 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
3558 err = PTR_ERR(inode);
3559 if (IS_ERR(inode))
3560 goto out_unlock;
3561
3562 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003563 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003564 if (err)
3565 drop_inode = 1;
3566 else {
3567 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003568 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003569 inode->i_fop = &btrfs_file_operations;
3570 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003571 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3572 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04003573 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003574 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3575 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05003576 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason81d7ed22008-04-25 08:51:48 -04003577 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003578 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003579 }
3580 dir->i_sb->s_dirt = 1;
3581 btrfs_update_inode_block_group(trans, inode);
3582 btrfs_update_inode_block_group(trans, dir);
3583 if (drop_inode)
3584 goto out_unlock;
3585
3586 path = btrfs_alloc_path();
3587 BUG_ON(!path);
3588 key.objectid = inode->i_ino;
3589 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003590 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3591 datasize = btrfs_file_extent_calc_inline_size(name_len);
3592 err = btrfs_insert_empty_item(trans, root, path, &key,
3593 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003594 if (err) {
3595 drop_inode = 1;
3596 goto out_unlock;
3597 }
Chris Mason5f39d392007-10-15 16:14:19 -04003598 leaf = path->nodes[0];
3599 ei = btrfs_item_ptr(leaf, path->slots[0],
3600 struct btrfs_file_extent_item);
3601 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3602 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003603 BTRFS_FILE_EXTENT_INLINE);
3604 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003605 write_extent_buffer(leaf, symname, ptr, name_len);
3606 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003607 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003608
Chris Mason39279cc2007-06-12 06:35:45 -04003609 inode->i_op = &btrfs_symlink_inode_operations;
3610 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003611 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003612 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04003613 err = btrfs_update_inode(trans, root, inode);
3614 if (err)
3615 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003616
3617out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003618 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04003619 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003620out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003621 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04003622 if (drop_inode) {
3623 inode_dec_link_count(inode);
3624 iput(inode);
3625 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003626 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05003627 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003628 return err;
3629}
Chris Mason16432982008-04-10 10:23:21 -04003630
Yanfdebe2b2008-01-14 13:26:08 -05003631static int btrfs_permission(struct inode *inode, int mask,
3632 struct nameidata *nd)
3633{
3634 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3635 return -EACCES;
3636 return generic_permission(inode, mask, NULL);
3637}
Chris Mason39279cc2007-06-12 06:35:45 -04003638
3639static struct inode_operations btrfs_dir_inode_operations = {
3640 .lookup = btrfs_lookup,
3641 .create = btrfs_create,
3642 .unlink = btrfs_unlink,
3643 .link = btrfs_link,
3644 .mkdir = btrfs_mkdir,
3645 .rmdir = btrfs_rmdir,
3646 .rename = btrfs_rename,
3647 .symlink = btrfs_symlink,
3648 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003649 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003650 .setxattr = generic_setxattr,
3651 .getxattr = generic_getxattr,
3652 .listxattr = btrfs_listxattr,
3653 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003654 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003655};
Chris Mason39279cc2007-06-12 06:35:45 -04003656static struct inode_operations btrfs_dir_ro_inode_operations = {
3657 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003658 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003659};
Chris Mason39279cc2007-06-12 06:35:45 -04003660static struct file_operations btrfs_dir_file_operations = {
3661 .llseek = generic_file_llseek,
3662 .read = generic_read_dir,
3663 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003664 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003665#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003666 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003667#endif
3668};
3669
Chris Masond1310b22008-01-24 16:13:08 -05003670static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003671 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003672 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003673 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003674 .readpage_io_hook = btrfs_readpage_io_hook,
3675 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04003676 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003677 .set_bit_hook = btrfs_set_bit_hook,
3678 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003679};
3680
Chris Mason39279cc2007-06-12 06:35:45 -04003681static struct address_space_operations btrfs_aops = {
3682 .readpage = btrfs_readpage,
3683 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04003684 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003685 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003686 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003687 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003688 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003689 .invalidatepage = btrfs_invalidatepage,
3690 .releasepage = btrfs_releasepage,
3691 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04003692};
3693
3694static struct address_space_operations btrfs_symlink_aops = {
3695 .readpage = btrfs_readpage,
3696 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003697 .invalidatepage = btrfs_invalidatepage,
3698 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003699};
3700
3701static struct inode_operations btrfs_file_inode_operations = {
3702 .truncate = btrfs_truncate,
3703 .getattr = btrfs_getattr,
3704 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003705 .setxattr = generic_setxattr,
3706 .getxattr = generic_getxattr,
3707 .listxattr = btrfs_listxattr,
3708 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003709 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003710};
Josef Bacik618e21d2007-07-11 10:18:17 -04003711static struct inode_operations btrfs_special_inode_operations = {
3712 .getattr = btrfs_getattr,
3713 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003714 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003715};
Chris Mason39279cc2007-06-12 06:35:45 -04003716static struct inode_operations btrfs_symlink_inode_operations = {
3717 .readlink = generic_readlink,
3718 .follow_link = page_follow_link_light,
3719 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003720 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003721};