blob: 31aa4ba06fcefdf0fa48d94d6cd0c3b8ad7ef612 [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 Masond3c2fdc2007-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) {
Chris Mason2da98f02008-01-16 11:44:43 -0500860 /* if the inode isn't linked anywhere,
861 * we don't need to worry about
862 * data=ordered
863 */
Mingminge1b81e62008-05-27 10:55:43 -0400864 btrfs_del_ordered_inode(inode);
Chris Mason2da98f02008-01-16 11:44:43 -0500865 }
866
Chris Mason39279cc2007-06-12 06:35:45 -0400867 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500868fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400869 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400870 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500871 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400872 return ret;
873}
874
875static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
876{
877 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -0500878 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400879 int ret;
880 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -0400881 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -0500882 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400883
Yan134d4512007-10-25 15:49:25 -0400884 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
885 return -ENOTEMPTY;
886
Chris Mason39279cc2007-06-12 06:35:45 -0400887 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500888 ret = btrfs_check_free_space(root, 1, 1);
889 if (ret)
890 goto fail;
891
Chris Mason39279cc2007-06-12 06:35:45 -0400892 trans = btrfs_start_transaction(root, 1);
893 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -0400894
895 /* now the directory is empty */
896 err = btrfs_unlink_trans(trans, root, dir, dentry);
897 if (!err) {
898 inode->i_size = 0;
899 }
Chris Mason39544012007-12-12 14:38:19 -0500900
Chris Masond3c2fdc2007-09-17 10:58:06 -0400901 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400902 ret = btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500903fail:
Yan134d4512007-10-25 15:49:25 -0400904 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400905 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500906 btrfs_throttle(root);
Chris Mason39544012007-12-12 14:38:19 -0500907
Chris Mason39279cc2007-06-12 06:35:45 -0400908 if (ret && !err)
909 err = ret;
910 return err;
911}
912
Chris Mason39279cc2007-06-12 06:35:45 -0400913/*
Chris Mason39279cc2007-06-12 06:35:45 -0400914 * this can truncate away extent items, csum items and directory items.
915 * It starts at a high offset and removes keys until it can't find
916 * any higher than i_size.
917 *
918 * csum items that cross the new i_size are truncated to the new size
919 * as well.
920 */
921static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
922 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -0500923 struct inode *inode,
924 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400925{
926 int ret;
927 struct btrfs_path *path;
928 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400929 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400930 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400931 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400932 struct btrfs_file_extent_item *fi;
933 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400934 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400935 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500936 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500937 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400938 int found_extent;
939 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -0500940 int pending_del_nr = 0;
941 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -0400942 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -0400943 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400944
Chris Mason3b951512008-04-17 11:29:12 -0400945 btrfs_drop_extent_cache(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400946 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400947 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400948 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400949
Chris Mason39279cc2007-06-12 06:35:45 -0400950 /* FIXME, add redo link to tree so we don't leak on crash */
951 key.objectid = inode->i_ino;
952 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400953 key.type = (u8)-1;
954
Chris Mason85e21ba2008-01-29 15:11:36 -0500955 btrfs_init_path(path);
956search_again:
957 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
958 if (ret < 0) {
959 goto error;
960 }
961 if (ret > 0) {
962 BUG_ON(path->slots[0] == 0);
963 path->slots[0]--;
964 }
965
Chris Mason39279cc2007-06-12 06:35:45 -0400966 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -0400967 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400968 leaf = path->nodes[0];
969 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
970 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400971
Chris Mason5f39d392007-10-15 16:14:19 -0400972 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400973 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400974
Chris Mason85e21ba2008-01-29 15:11:36 -0500975 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400976 break;
977
Chris Mason5f39d392007-10-15 16:14:19 -0400978 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400979 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400980 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400981 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400982 extent_type = btrfs_file_extent_type(leaf, fi);
983 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400984 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400985 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400986 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
987 struct btrfs_item *item = btrfs_item_nr(leaf,
988 path->slots[0]);
989 item_end += btrfs_file_extent_inline_len(leaf,
990 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400991 }
Yan008630c2007-11-07 13:31:09 -0500992 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400993 }
994 if (found_type == BTRFS_CSUM_ITEM_KEY) {
995 ret = btrfs_csum_truncate(trans, root, path,
996 inode->i_size);
997 BUG_ON(ret);
998 }
Yan008630c2007-11-07 13:31:09 -0500999 if (item_end < inode->i_size) {
Chris Masonb888db22007-08-27 16:49:44 -04001000 if (found_type == BTRFS_DIR_ITEM_KEY) {
1001 found_type = BTRFS_INODE_ITEM_KEY;
1002 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
1003 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05001004 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
1005 found_type = BTRFS_XATTR_ITEM_KEY;
1006 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
1007 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04001008 } else if (found_type) {
1009 found_type--;
1010 } else {
1011 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001012 }
Yana61721d2007-09-17 11:08:38 -04001013 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05001014 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04001015 }
Chris Mason5f39d392007-10-15 16:14:19 -04001016 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -04001017 del_item = 1;
1018 else
1019 del_item = 0;
1020 found_extent = 0;
1021
1022 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001023 if (found_type != BTRFS_EXTENT_DATA_KEY)
1024 goto delete;
1025
1026 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001027 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001028 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001029 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001030 u64 orig_num_bytes =
1031 btrfs_file_extent_num_bytes(leaf, fi);
1032 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001033 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05001034 extent_num_bytes = extent_num_bytes &
1035 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001036 btrfs_set_file_extent_num_bytes(leaf, fi,
1037 extent_num_bytes);
1038 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001039 extent_num_bytes);
1040 if (extent_start != 0)
1041 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001042 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001043 } else {
Chris Masondb945352007-10-15 16:15:53 -04001044 extent_num_bytes =
1045 btrfs_file_extent_disk_num_bytes(leaf,
1046 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001047 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001048 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001049 if (extent_start != 0) {
1050 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -05001051 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001052 }
Chris Masond8d5f3e2007-12-11 12:42:00 -05001053 root_gen = btrfs_header_generation(leaf);
1054 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001055 }
Chris Mason90692182008-02-08 13:49:28 -05001056 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1057 if (!del_item) {
1058 u32 newsize = inode->i_size - found_key.offset;
1059 dec_i_blocks(inode, item_end + 1 -
1060 found_key.offset - newsize);
1061 newsize =
1062 btrfs_file_extent_calc_inline_size(newsize);
1063 ret = btrfs_truncate_item(trans, root, path,
1064 newsize, 1);
1065 BUG_ON(ret);
1066 } else {
1067 dec_i_blocks(inode, item_end + 1 -
1068 found_key.offset);
1069 }
Chris Mason39279cc2007-06-12 06:35:45 -04001070 }
Chris Mason179e29e2007-11-01 11:28:41 -04001071delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001072 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001073 if (!pending_del_nr) {
1074 /* no pending yet, add ourselves */
1075 pending_del_slot = path->slots[0];
1076 pending_del_nr = 1;
1077 } else if (pending_del_nr &&
1078 path->slots[0] + 1 == pending_del_slot) {
1079 /* hop on the pending chunk */
1080 pending_del_nr++;
1081 pending_del_slot = path->slots[0];
1082 } else {
1083 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1084 }
Chris Mason39279cc2007-06-12 06:35:45 -04001085 } else {
1086 break;
1087 }
Chris Mason39279cc2007-06-12 06:35:45 -04001088 if (found_extent) {
1089 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001090 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -05001091 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001092 root_gen, inode->i_ino,
1093 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001094 BUG_ON(ret);
1095 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001096next:
1097 if (path->slots[0] == 0) {
1098 if (pending_del_nr)
1099 goto del_pending;
1100 btrfs_release_path(root, path);
1101 goto search_again;
1102 }
1103
1104 path->slots[0]--;
1105 if (pending_del_nr &&
1106 path->slots[0] + 1 != pending_del_slot) {
1107 struct btrfs_key debug;
1108del_pending:
1109 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1110 pending_del_slot);
1111 ret = btrfs_del_items(trans, root, path,
1112 pending_del_slot,
1113 pending_del_nr);
1114 BUG_ON(ret);
1115 pending_del_nr = 0;
1116 btrfs_release_path(root, path);
1117 goto search_again;
1118 }
Chris Mason39279cc2007-06-12 06:35:45 -04001119 }
1120 ret = 0;
1121error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001122 if (pending_del_nr) {
1123 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1124 pending_del_nr);
1125 }
Chris Mason39279cc2007-06-12 06:35:45 -04001126 btrfs_release_path(root, path);
1127 btrfs_free_path(path);
1128 inode->i_sb->s_dirt = 1;
1129 return ret;
1130}
1131
Chris Masonb888db22007-08-27 16:49:44 -04001132static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -04001133 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001134{
Chris Mason39279cc2007-06-12 06:35:45 -04001135 char *kaddr;
Chris Masond1310b22008-01-24 16:13:08 -05001136 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason35ebb932007-10-30 16:56:53 -04001137 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db22007-08-27 16:49:44 -04001138 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -05001139 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001140
Chris Mason190662b2007-12-18 16:25:45 -05001141 WARN_ON(!PageLocked(page));
Christoph Hellwigb3cfa352007-09-17 11:25:58 -04001142 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001143
Chris Masond1310b22008-01-24 16:13:08 -05001144 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001145 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
Chris Masonb888db22007-08-27 16:49:44 -04001146 page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -05001147
Chris Masona52d9a82007-08-27 16:49:44 -04001148 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db22007-08-27 16:49:44 -04001149 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001150 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
1151 flush_dcache_page(page);
Chris Masonb888db22007-08-27 16:49:44 -04001152 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001153 }
Chris Masonb888db22007-08-27 16:49:44 -04001154 set_page_dirty(page);
Chris Masond1310b22008-01-24 16:13:08 -05001155 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001156
Chris Masona52d9a82007-08-27 16:49:44 -04001157 return ret;
1158}
1159
1160/*
1161 * taken from block_truncate_page, but does cow as it zeros out
1162 * any bytes left in the last page in the file.
1163 */
1164static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1165{
1166 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001167 struct btrfs_root *root = BTRFS_I(inode)->root;
1168 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001169 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1170 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1171 struct page *page;
1172 int ret = 0;
1173 u64 page_start;
1174
1175 if ((offset & (blocksize - 1)) == 0)
1176 goto out;
1177
1178 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04001179again:
Chris Masona52d9a82007-08-27 16:49:44 -04001180 page = grab_cache_page(mapping, index);
1181 if (!page)
1182 goto out;
1183 if (!PageUptodate(page)) {
1184 ret = btrfs_readpage(NULL, page);
1185 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04001186 if (page->mapping != mapping) {
1187 unlock_page(page);
1188 page_cache_release(page);
1189 goto again;
1190 }
Chris Masona52d9a82007-08-27 16:49:44 -04001191 if (!PageUptodate(page)) {
1192 ret = -EIO;
1193 goto out;
1194 }
1195 }
Chris Masona52d9a82007-08-27 16:49:44 -04001196
Chris Mason211c17f2008-05-15 09:13:45 -04001197 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
1198 wait_on_page_writeback(page);
Chris Masonb888db22007-08-27 16:49:44 -04001199 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -04001200
Chris Mason39279cc2007-06-12 06:35:45 -04001201 unlock_page(page);
1202 page_cache_release(page);
1203out:
1204 return ret;
1205}
1206
1207static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1208{
1209 struct inode *inode = dentry->d_inode;
1210 int err;
1211
1212 err = inode_change_ok(inode, attr);
1213 if (err)
1214 return err;
1215
1216 if (S_ISREG(inode->i_mode) &&
1217 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1218 struct btrfs_trans_handle *trans;
1219 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001220 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001221
Chris Mason5f39d392007-10-15 16:14:19 -04001222 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001223 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001224 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001225 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001226 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001227
Chris Mason1b0f7c22008-01-30 14:33:02 -05001228 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001229 goto out;
1230
Chris Mason1832a6d2007-12-21 16:27:21 -05001231 mutex_lock(&root->fs_info->fs_mutex);
1232 err = btrfs_check_free_space(root, 1, 0);
1233 mutex_unlock(&root->fs_info->fs_mutex);
1234 if (err)
1235 goto fail;
1236
Chris Mason39279cc2007-06-12 06:35:45 -04001237 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1238
Chris Mason1b0f7c22008-01-30 14:33:02 -05001239 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason5f564062008-01-22 16:47:59 -05001240 hole_size = block_end - hole_start;
Chris Mason39279cc2007-06-12 06:35:45 -04001241
1242 mutex_lock(&root->fs_info->fs_mutex);
1243 trans = btrfs_start_transaction(root, 1);
1244 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -04001245 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001246 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001247 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001248
Chris Mason179e29e2007-11-01 11:28:41 -04001249 if (alloc_hint != EXTENT_MAP_INLINE) {
1250 err = btrfs_insert_file_extent(trans, root,
1251 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001252 hole_start, 0, 0,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001253 hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001254 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001255 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001256 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001257 }
Chris Mason39279cc2007-06-12 06:35:45 -04001258 btrfs_end_transaction(trans, root);
1259 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001260 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001261 if (err)
1262 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001263 }
1264out:
1265 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001266fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001267 return err;
1268}
Chris Mason61295eb2008-01-14 16:24:38 -05001269
Chris Mason39279cc2007-06-12 06:35:45 -04001270void btrfs_delete_inode(struct inode *inode)
1271{
1272 struct btrfs_trans_handle *trans;
1273 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdc2007-09-17 10:58:06 -04001274 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001275 int ret;
1276
1277 truncate_inode_pages(&inode->i_data, 0);
1278 if (is_bad_inode(inode)) {
1279 goto no_delete;
1280 }
Chris Mason5f39d392007-10-15 16:14:19 -04001281
Chris Mason39279cc2007-06-12 06:35:45 -04001282 inode->i_size = 0;
1283 mutex_lock(&root->fs_info->fs_mutex);
1284 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001285
Chris Mason39279cc2007-06-12 06:35:45 -04001286 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001287 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001288 if (ret)
1289 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001290
Chris Masond3c2fdc2007-09-17 10:58:06 -04001291 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001292 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001293
Chris Mason39279cc2007-06-12 06:35:45 -04001294 btrfs_end_transaction(trans, root);
1295 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04001296 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001297 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001298 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001299
1300no_delete_lock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04001301 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001302 btrfs_end_transaction(trans, root);
1303 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04001304 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001305 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001306no_delete:
1307 clear_inode(inode);
1308}
1309
1310/*
1311 * this returns the key found in the dir entry in the location pointer.
1312 * If no dir entries were found, location->objectid is 0.
1313 */
1314static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1315 struct btrfs_key *location)
1316{
1317 const char *name = dentry->d_name.name;
1318 int namelen = dentry->d_name.len;
1319 struct btrfs_dir_item *di;
1320 struct btrfs_path *path;
1321 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001322 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001323
Chris Mason39544012007-12-12 14:38:19 -05001324 if (namelen == 1 && strcmp(name, ".") == 0) {
1325 location->objectid = dir->i_ino;
1326 location->type = BTRFS_INODE_ITEM_KEY;
1327 location->offset = 0;
1328 return 0;
1329 }
Chris Mason39279cc2007-06-12 06:35:45 -04001330 path = btrfs_alloc_path();
1331 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001332
Chris Mason7a720532007-12-13 09:06:59 -05001333 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001334 struct btrfs_key key;
1335 struct extent_buffer *leaf;
1336 u32 nritems;
1337 int slot;
1338
1339 key.objectid = dir->i_ino;
1340 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1341 key.offset = 0;
1342 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1343 BUG_ON(ret == 0);
1344 ret = 0;
1345
1346 leaf = path->nodes[0];
1347 slot = path->slots[0];
1348 nritems = btrfs_header_nritems(leaf);
1349 if (slot >= nritems)
1350 goto out_err;
1351
1352 btrfs_item_key_to_cpu(leaf, &key, slot);
1353 if (key.objectid != dir->i_ino ||
1354 key.type != BTRFS_INODE_REF_KEY) {
1355 goto out_err;
1356 }
1357 location->objectid = key.offset;
1358 location->type = BTRFS_INODE_ITEM_KEY;
1359 location->offset = 0;
1360 goto out;
1361 }
1362
Chris Mason39279cc2007-06-12 06:35:45 -04001363 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1364 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001365 if (IS_ERR(di))
1366 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001367 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001368 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001369 }
Chris Mason5f39d392007-10-15 16:14:19 -04001370 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001371out:
Chris Mason39279cc2007-06-12 06:35:45 -04001372 btrfs_free_path(path);
1373 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001374out_err:
1375 location->objectid = 0;
1376 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001377}
1378
1379/*
1380 * when we hit a tree root in a directory, the btrfs part of the inode
1381 * needs to be changed to reflect the root directory of the tree root. This
1382 * is kind of like crossing a mount point.
1383 */
1384static int fixup_tree_root_location(struct btrfs_root *root,
1385 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001386 struct btrfs_root **sub_root,
1387 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001388{
1389 struct btrfs_path *path;
1390 struct btrfs_root_item *ri;
1391
1392 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1393 return 0;
1394 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1395 return 0;
1396
1397 path = btrfs_alloc_path();
1398 BUG_ON(!path);
1399 mutex_lock(&root->fs_info->fs_mutex);
1400
Josef Bacik58176a92007-08-29 15:47:34 -04001401 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1402 dentry->d_name.name,
1403 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001404 if (IS_ERR(*sub_root))
1405 return PTR_ERR(*sub_root);
1406
1407 ri = &(*sub_root)->root_item;
1408 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001409 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1410 location->offset = 0;
1411
1412 btrfs_free_path(path);
1413 mutex_unlock(&root->fs_info->fs_mutex);
1414 return 0;
1415}
1416
1417static int btrfs_init_locked_inode(struct inode *inode, void *p)
1418{
1419 struct btrfs_iget_args *args = p;
1420 inode->i_ino = args->ino;
1421 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001422 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001423 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1424 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001425 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001426 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1427 inode->i_mapping, GFP_NOFS);
Chris Mason81d7ed22008-04-25 08:51:48 -04001428 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001429 return 0;
1430}
1431
1432static int btrfs_find_actor(struct inode *inode, void *opaque)
1433{
1434 struct btrfs_iget_args *args = opaque;
1435 return (args->ino == inode->i_ino &&
1436 args->root == BTRFS_I(inode)->root);
1437}
1438
Chris Masondc17ff82008-01-08 15:46:30 -05001439struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1440 u64 root_objectid)
1441{
1442 struct btrfs_iget_args args;
1443 args.ino = objectid;
1444 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1445
1446 if (!args.root)
1447 return NULL;
1448
1449 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1450}
1451
Chris Mason39279cc2007-06-12 06:35:45 -04001452struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1453 struct btrfs_root *root)
1454{
1455 struct inode *inode;
1456 struct btrfs_iget_args args;
1457 args.ino = objectid;
1458 args.root = root;
1459
1460 inode = iget5_locked(s, objectid, btrfs_find_actor,
1461 btrfs_init_locked_inode,
1462 (void *)&args);
1463 return inode;
1464}
1465
1466static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1467 struct nameidata *nd)
1468{
1469 struct inode * inode;
1470 struct btrfs_inode *bi = BTRFS_I(dir);
1471 struct btrfs_root *root = bi->root;
1472 struct btrfs_root *sub_root = root;
1473 struct btrfs_key location;
1474 int ret;
1475
1476 if (dentry->d_name.len > BTRFS_NAME_LEN)
1477 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001478
Chris Mason39279cc2007-06-12 06:35:45 -04001479 mutex_lock(&root->fs_info->fs_mutex);
1480 ret = btrfs_inode_by_name(dir, dentry, &location);
1481 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001482
Chris Mason39279cc2007-06-12 06:35:45 -04001483 if (ret < 0)
1484 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001485
Chris Mason39279cc2007-06-12 06:35:45 -04001486 inode = NULL;
1487 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001488 ret = fixup_tree_root_location(root, &location, &sub_root,
1489 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001490 if (ret < 0)
1491 return ERR_PTR(ret);
1492 if (ret > 0)
1493 return ERR_PTR(-ENOENT);
1494 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1495 sub_root);
1496 if (!inode)
1497 return ERR_PTR(-EACCES);
1498 if (inode->i_state & I_NEW) {
1499 /* the inode and parent dir are two different roots */
1500 if (sub_root != root) {
1501 igrab(inode);
1502 sub_root->inode = inode;
1503 }
1504 BTRFS_I(inode)->root = sub_root;
1505 memcpy(&BTRFS_I(inode)->location, &location,
1506 sizeof(location));
1507 btrfs_read_locked_inode(inode);
1508 unlock_new_inode(inode);
1509 }
1510 }
1511 return d_splice_alias(inode, dentry);
1512}
1513
Chris Mason39279cc2007-06-12 06:35:45 -04001514static unsigned char btrfs_filetype_table[] = {
1515 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1516};
1517
1518static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1519{
Chris Mason6da6aba2007-12-18 16:15:09 -05001520 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001521 struct btrfs_root *root = BTRFS_I(inode)->root;
1522 struct btrfs_item *item;
1523 struct btrfs_dir_item *di;
1524 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001525 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001526 struct btrfs_path *path;
1527 int ret;
1528 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001529 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001530 int slot;
1531 int advance;
1532 unsigned char d_type;
1533 int over = 0;
1534 u32 di_cur;
1535 u32 di_total;
1536 u32 di_len;
1537 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001538 char tmp_name[32];
1539 char *name_ptr;
1540 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001541
1542 /* FIXME, use a real flag for deciding about the key type */
1543 if (root->fs_info->tree_root == root)
1544 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001545
Chris Mason39544012007-12-12 14:38:19 -05001546 /* special case for "." */
1547 if (filp->f_pos == 0) {
1548 over = filldir(dirent, ".", 1,
1549 1, inode->i_ino,
1550 DT_DIR);
1551 if (over)
1552 return 0;
1553 filp->f_pos = 1;
1554 }
1555
Chris Mason39279cc2007-06-12 06:35:45 -04001556 mutex_lock(&root->fs_info->fs_mutex);
1557 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001558 path = btrfs_alloc_path();
1559 path->reada = 2;
1560
1561 /* special case for .., just use the back ref */
1562 if (filp->f_pos == 1) {
1563 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1564 key.offset = 0;
1565 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1566 BUG_ON(ret == 0);
1567 leaf = path->nodes[0];
1568 slot = path->slots[0];
1569 nritems = btrfs_header_nritems(leaf);
1570 if (slot >= nritems) {
1571 btrfs_release_path(root, path);
1572 goto read_dir_items;
1573 }
1574 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1575 btrfs_release_path(root, path);
1576 if (found_key.objectid != key.objectid ||
1577 found_key.type != BTRFS_INODE_REF_KEY)
1578 goto read_dir_items;
1579 over = filldir(dirent, "..", 2,
1580 2, found_key.offset, DT_DIR);
1581 if (over)
1582 goto nopos;
1583 filp->f_pos = 2;
1584 }
1585
1586read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001587 btrfs_set_key_type(&key, key_type);
1588 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001589
Chris Mason39279cc2007-06-12 06:35:45 -04001590 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1591 if (ret < 0)
1592 goto err;
1593 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001594 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001595 leaf = path->nodes[0];
1596 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001597 slot = path->slots[0];
1598 if (advance || slot >= nritems) {
1599 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001600 ret = btrfs_next_leaf(root, path);
1601 if (ret)
1602 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001603 leaf = path->nodes[0];
1604 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001605 slot = path->slots[0];
1606 } else {
1607 slot++;
1608 path->slots[0]++;
1609 }
1610 }
1611 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001612 item = btrfs_item_nr(leaf, slot);
1613 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1614
1615 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001616 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001617 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001618 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001619 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001620 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001621
1622 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001623 advance = 1;
1624 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1625 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001626 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001627 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001628 struct btrfs_key location;
1629
1630 name_len = btrfs_dir_name_len(leaf, di);
1631 if (name_len < 32) {
1632 name_ptr = tmp_name;
1633 } else {
1634 name_ptr = kmalloc(name_len, GFP_NOFS);
1635 BUG_ON(!name_ptr);
1636 }
1637 read_extent_buffer(leaf, name_ptr,
1638 (unsigned long)(di + 1), name_len);
1639
1640 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1641 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001642 over = filldir(dirent, name_ptr, name_len,
1643 found_key.offset,
1644 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001645 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001646
1647 if (name_ptr != tmp_name)
1648 kfree(name_ptr);
1649
Chris Mason39279cc2007-06-12 06:35:45 -04001650 if (over)
1651 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001652 di_len = btrfs_dir_name_len(leaf, di) +
1653 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001654 di_cur += di_len;
1655 di = (struct btrfs_dir_item *)((char *)di + di_len);
1656 }
1657 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001658 if (key_type == BTRFS_DIR_INDEX_KEY)
1659 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1660 else
1661 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001662nopos:
1663 ret = 0;
1664err:
1665 btrfs_release_path(root, path);
1666 btrfs_free_path(path);
1667 mutex_unlock(&root->fs_info->fs_mutex);
1668 return ret;
1669}
1670
1671int btrfs_write_inode(struct inode *inode, int wait)
1672{
1673 struct btrfs_root *root = BTRFS_I(inode)->root;
1674 struct btrfs_trans_handle *trans;
1675 int ret = 0;
1676
1677 if (wait) {
1678 mutex_lock(&root->fs_info->fs_mutex);
1679 trans = btrfs_start_transaction(root, 1);
1680 btrfs_set_trans_block_group(trans, inode);
1681 ret = btrfs_commit_transaction(trans, root);
1682 mutex_unlock(&root->fs_info->fs_mutex);
1683 }
1684 return ret;
1685}
1686
1687/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001688 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001689 * inode changes. But, it is most likely to find the inode in cache.
1690 * FIXME, needs more benchmarking...there are no reasons other than performance
1691 * to keep or drop this code.
1692 */
1693void btrfs_dirty_inode(struct inode *inode)
1694{
1695 struct btrfs_root *root = BTRFS_I(inode)->root;
1696 struct btrfs_trans_handle *trans;
1697
1698 mutex_lock(&root->fs_info->fs_mutex);
1699 trans = btrfs_start_transaction(root, 1);
1700 btrfs_set_trans_block_group(trans, inode);
1701 btrfs_update_inode(trans, root, inode);
1702 btrfs_end_transaction(trans, root);
1703 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001704}
1705
1706static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1707 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001708 const char *name, int name_len,
1709 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001710 u64 objectid,
1711 struct btrfs_block_group_cache *group,
1712 int mode)
1713{
1714 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001715 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04001716 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04001717 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001718 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001719 struct btrfs_inode_ref *ref;
1720 struct btrfs_key key[2];
1721 u32 sizes[2];
1722 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001723 int ret;
1724 int owner;
1725
Chris Mason5f39d392007-10-15 16:14:19 -04001726 path = btrfs_alloc_path();
1727 BUG_ON(!path);
1728
Chris Mason39279cc2007-06-12 06:35:45 -04001729 inode = new_inode(root->fs_info->sb);
1730 if (!inode)
1731 return ERR_PTR(-ENOMEM);
1732
Chris Masond1310b22008-01-24 16:13:08 -05001733 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1734 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001735 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001736 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1737 inode->i_mapping, GFP_NOFS);
Chris Mason81d7ed22008-04-25 08:51:48 -04001738 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Mason90692182008-02-08 13:49:28 -05001739 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001740 BTRFS_I(inode)->root = root;
Chris Masonb888db22007-08-27 16:49:44 -04001741
Chris Mason39279cc2007-06-12 06:35:45 -04001742 if (mode & S_IFDIR)
1743 owner = 0;
1744 else
1745 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04001746 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001747 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04001748 if (!new_inode_group) {
1749 printk("find_block group failed\n");
1750 new_inode_group = group;
1751 }
1752 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05001753 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001754
1755 key[0].objectid = objectid;
1756 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1757 key[0].offset = 0;
1758
1759 key[1].objectid = objectid;
1760 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1761 key[1].offset = ref_objectid;
1762
1763 sizes[0] = sizeof(struct btrfs_inode_item);
1764 sizes[1] = name_len + sizeof(*ref);
1765
1766 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1767 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001768 goto fail;
1769
Chris Mason9c583092008-01-29 15:15:18 -05001770 if (objectid > root->highest_inode)
1771 root->highest_inode = objectid;
1772
Chris Mason39279cc2007-06-12 06:35:45 -04001773 inode->i_uid = current->fsuid;
1774 inode->i_gid = current->fsgid;
1775 inode->i_mode = mode;
1776 inode->i_ino = objectid;
1777 inode->i_blocks = 0;
1778 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001779 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1780 struct btrfs_inode_item);
1781 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001782
1783 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1784 struct btrfs_inode_ref);
1785 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1786 ptr = (unsigned long)(ref + 1);
1787 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1788
Chris Mason5f39d392007-10-15 16:14:19 -04001789 btrfs_mark_buffer_dirty(path->nodes[0]);
1790 btrfs_free_path(path);
1791
Chris Mason39279cc2007-06-12 06:35:45 -04001792 location = &BTRFS_I(inode)->location;
1793 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001794 location->offset = 0;
1795 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1796
Chris Mason39279cc2007-06-12 06:35:45 -04001797 insert_inode_hash(inode);
1798 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001799fail:
1800 btrfs_free_path(path);
1801 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001802}
1803
1804static inline u8 btrfs_inode_type(struct inode *inode)
1805{
1806 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1807}
1808
1809static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001810 struct dentry *dentry, struct inode *inode,
1811 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001812{
1813 int ret;
1814 struct btrfs_key key;
1815 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001816 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001817
Chris Mason39279cc2007-06-12 06:35:45 -04001818 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001819 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1820 key.offset = 0;
1821
1822 ret = btrfs_insert_dir_item(trans, root,
1823 dentry->d_name.name, dentry->d_name.len,
1824 dentry->d_parent->d_inode->i_ino,
1825 &key, btrfs_inode_type(inode));
1826 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05001827 if (add_backref) {
1828 ret = btrfs_insert_inode_ref(trans, root,
1829 dentry->d_name.name,
1830 dentry->d_name.len,
1831 inode->i_ino,
1832 dentry->d_parent->d_inode->i_ino);
1833 }
Chris Mason79c44582007-06-25 10:09:33 -04001834 parent_inode = dentry->d_parent->d_inode;
1835 parent_inode->i_size += dentry->d_name.len * 2;
1836 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001837 ret = btrfs_update_inode(trans, root,
1838 dentry->d_parent->d_inode);
1839 }
1840 return ret;
1841}
1842
1843static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001844 struct dentry *dentry, struct inode *inode,
1845 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001846{
Chris Mason9c583092008-01-29 15:15:18 -05001847 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04001848 if (!err) {
1849 d_instantiate(dentry, inode);
1850 return 0;
1851 }
1852 if (err > 0)
1853 err = -EEXIST;
1854 return err;
1855}
1856
Josef Bacik618e21d2007-07-11 10:18:17 -04001857static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1858 int mode, dev_t rdev)
1859{
1860 struct btrfs_trans_handle *trans;
1861 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001862 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04001863 int err;
1864 int drop_inode = 0;
1865 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05001866 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04001867
1868 if (!new_valid_dev(rdev))
1869 return -EINVAL;
1870
1871 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001872 err = btrfs_check_free_space(root, 1, 0);
1873 if (err)
1874 goto fail;
1875
Josef Bacik618e21d2007-07-11 10:18:17 -04001876 trans = btrfs_start_transaction(root, 1);
1877 btrfs_set_trans_block_group(trans, dir);
1878
1879 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1880 if (err) {
1881 err = -ENOSPC;
1882 goto out_unlock;
1883 }
1884
Chris Mason9c583092008-01-29 15:15:18 -05001885 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1886 dentry->d_name.len,
1887 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04001888 BTRFS_I(dir)->block_group, mode);
1889 err = PTR_ERR(inode);
1890 if (IS_ERR(inode))
1891 goto out_unlock;
1892
1893 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001894 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04001895 if (err)
1896 drop_inode = 1;
1897 else {
1898 inode->i_op = &btrfs_special_inode_operations;
1899 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001900 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001901 }
1902 dir->i_sb->s_dirt = 1;
1903 btrfs_update_inode_block_group(trans, inode);
1904 btrfs_update_inode_block_group(trans, dir);
1905out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04001906 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001907 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001908fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04001909 mutex_unlock(&root->fs_info->fs_mutex);
1910
1911 if (drop_inode) {
1912 inode_dec_link_count(inode);
1913 iput(inode);
1914 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04001915 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001916 btrfs_throttle(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04001917 return err;
1918}
1919
Chris Mason39279cc2007-06-12 06:35:45 -04001920static int btrfs_create(struct inode *dir, struct dentry *dentry,
1921 int mode, struct nameidata *nd)
1922{
1923 struct btrfs_trans_handle *trans;
1924 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001925 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001926 int err;
1927 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05001928 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001929 u64 objectid;
1930
1931 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001932 err = btrfs_check_free_space(root, 1, 0);
1933 if (err)
1934 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001935 trans = btrfs_start_transaction(root, 1);
1936 btrfs_set_trans_block_group(trans, dir);
1937
1938 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1939 if (err) {
1940 err = -ENOSPC;
1941 goto out_unlock;
1942 }
1943
Chris Mason9c583092008-01-29 15:15:18 -05001944 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1945 dentry->d_name.len,
1946 dentry->d_parent->d_inode->i_ino,
1947 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04001948 err = PTR_ERR(inode);
1949 if (IS_ERR(inode))
1950 goto out_unlock;
1951
1952 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001953 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001954 if (err)
1955 drop_inode = 1;
1956 else {
1957 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001958 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001959 inode->i_fop = &btrfs_file_operations;
1960 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05001961 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1962 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04001963 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001964 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1965 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001966 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason81d7ed22008-04-25 08:51:48 -04001967 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001968 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001969 }
1970 dir->i_sb->s_dirt = 1;
1971 btrfs_update_inode_block_group(trans, inode);
1972 btrfs_update_inode_block_group(trans, dir);
1973out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04001974 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001975 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001976fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001977 mutex_unlock(&root->fs_info->fs_mutex);
1978
1979 if (drop_inode) {
1980 inode_dec_link_count(inode);
1981 iput(inode);
1982 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04001983 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001984 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001985 return err;
1986}
1987
1988static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1989 struct dentry *dentry)
1990{
1991 struct btrfs_trans_handle *trans;
1992 struct btrfs_root *root = BTRFS_I(dir)->root;
1993 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001994 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001995 int err;
1996 int drop_inode = 0;
1997
1998 if (inode->i_nlink == 0)
1999 return -ENOENT;
2000
Chris Mason6da6aba2007-12-18 16:15:09 -05002001#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2002 inode->i_nlink++;
2003#else
Chris Mason39279cc2007-06-12 06:35:45 -04002004 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05002005#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002006 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002007 err = btrfs_check_free_space(root, 1, 0);
2008 if (err)
2009 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002010 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002011
Chris Mason39279cc2007-06-12 06:35:45 -04002012 btrfs_set_trans_block_group(trans, dir);
2013 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05002014 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002015
Chris Mason39279cc2007-06-12 06:35:45 -04002016 if (err)
2017 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002018
Chris Mason39279cc2007-06-12 06:35:45 -04002019 dir->i_sb->s_dirt = 1;
2020 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002021 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002022
Chris Mason54aa1f42007-06-22 14:16:25 -04002023 if (err)
2024 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002025
Chris Masond3c2fdc2007-09-17 10:58:06 -04002026 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002027 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002028fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002029 mutex_unlock(&root->fs_info->fs_mutex);
2030
2031 if (drop_inode) {
2032 inode_dec_link_count(inode);
2033 iput(inode);
2034 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04002035 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002036 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002037 return err;
2038}
2039
Chris Mason39279cc2007-06-12 06:35:45 -04002040static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2041{
Chris Masonb9d86662008-05-02 16:13:49 -04002042 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002043 struct btrfs_trans_handle *trans;
2044 struct btrfs_root *root = BTRFS_I(dir)->root;
2045 int err = 0;
2046 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04002047 u64 objectid = 0;
Chris Masond3c2fdc2007-09-17 10:58:06 -04002048 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002049
2050 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002051 err = btrfs_check_free_space(root, 1, 0);
2052 if (err)
2053 goto out_unlock;
2054
Chris Mason39279cc2007-06-12 06:35:45 -04002055 trans = btrfs_start_transaction(root, 1);
2056 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002057
Chris Mason39279cc2007-06-12 06:35:45 -04002058 if (IS_ERR(trans)) {
2059 err = PTR_ERR(trans);
2060 goto out_unlock;
2061 }
2062
2063 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2064 if (err) {
2065 err = -ENOSPC;
2066 goto out_unlock;
2067 }
2068
Chris Mason9c583092008-01-29 15:15:18 -05002069 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2070 dentry->d_name.len,
2071 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002072 BTRFS_I(dir)->block_group, S_IFDIR | mode);
2073 if (IS_ERR(inode)) {
2074 err = PTR_ERR(inode);
2075 goto out_fail;
2076 }
Chris Mason5f39d392007-10-15 16:14:19 -04002077
Chris Mason39279cc2007-06-12 06:35:45 -04002078 drop_on_err = 1;
2079 inode->i_op = &btrfs_dir_inode_operations;
2080 inode->i_fop = &btrfs_dir_file_operations;
2081 btrfs_set_trans_block_group(trans, inode);
2082
Chris Mason39544012007-12-12 14:38:19 -05002083 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002084 err = btrfs_update_inode(trans, root, inode);
2085 if (err)
2086 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002087
Chris Mason9c583092008-01-29 15:15:18 -05002088 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002089 if (err)
2090 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002091
Chris Mason39279cc2007-06-12 06:35:45 -04002092 d_instantiate(dentry, inode);
2093 drop_on_err = 0;
2094 dir->i_sb->s_dirt = 1;
2095 btrfs_update_inode_block_group(trans, inode);
2096 btrfs_update_inode_block_group(trans, dir);
2097
2098out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04002099 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002100 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002101
Chris Mason39279cc2007-06-12 06:35:45 -04002102out_unlock:
2103 mutex_unlock(&root->fs_info->fs_mutex);
2104 if (drop_on_err)
2105 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002106 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002107 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002108 return err;
2109}
2110
Chris Mason3b951512008-04-17 11:29:12 -04002111static int merge_extent_mapping(struct extent_map_tree *em_tree,
2112 struct extent_map *existing,
2113 struct extent_map *em)
2114{
2115 u64 start_diff;
2116 u64 new_end;
2117 int ret = 0;
2118 int real_blocks = existing->block_start < EXTENT_MAP_LAST_BYTE;
2119
2120 if (real_blocks && em->block_start >= EXTENT_MAP_LAST_BYTE)
2121 goto invalid;
2122
2123 if (!real_blocks && em->block_start != existing->block_start)
2124 goto invalid;
2125
2126 new_end = max(existing->start + existing->len, em->start + em->len);
2127
2128 if (existing->start >= em->start) {
2129 if (em->start + em->len < existing->start)
2130 goto invalid;
2131
2132 start_diff = existing->start - em->start;
2133 if (real_blocks && em->block_start + start_diff !=
2134 existing->block_start)
2135 goto invalid;
2136
2137 em->len = new_end - em->start;
2138
2139 remove_extent_mapping(em_tree, existing);
2140 /* free for the tree */
2141 free_extent_map(existing);
2142 ret = add_extent_mapping(em_tree, em);
2143
2144 } else if (em->start > existing->start) {
2145
2146 if (existing->start + existing->len < em->start)
2147 goto invalid;
2148
2149 start_diff = em->start - existing->start;
2150 if (real_blocks && existing->block_start + start_diff !=
2151 em->block_start)
2152 goto invalid;
2153
2154 remove_extent_mapping(em_tree, existing);
2155 em->block_start = existing->block_start;
2156 em->start = existing->start;
2157 em->len = new_end - existing->start;
2158 free_extent_map(existing);
2159
2160 ret = add_extent_mapping(em_tree, em);
2161 } else {
2162 goto invalid;
2163 }
2164 return ret;
2165
2166invalid:
2167 printk("invalid extent map merge [%Lu %Lu %Lu] [%Lu %Lu %Lu]\n",
2168 existing->start, existing->len, existing->block_start,
2169 em->start, em->len, em->block_start);
2170 return -EIO;
2171}
2172
Chris Masona52d9a82007-08-27 16:49:44 -04002173struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002174 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002175 int create)
2176{
2177 int ret;
2178 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002179 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002180 u64 extent_start = 0;
2181 u64 extent_end = 0;
2182 u64 objectid = inode->i_ino;
2183 u32 found_type;
Chris Masona52d9a82007-08-27 16:49:44 -04002184 struct btrfs_path *path;
2185 struct btrfs_root *root = BTRFS_I(inode)->root;
2186 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002187 struct extent_buffer *leaf;
2188 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002189 struct extent_map *em = NULL;
2190 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002191 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002192 struct btrfs_trans_handle *trans = NULL;
2193
2194 path = btrfs_alloc_path();
2195 BUG_ON(!path);
2196 mutex_lock(&root->fs_info->fs_mutex);
2197
2198again:
Chris Masond1310b22008-01-24 16:13:08 -05002199 spin_lock(&em_tree->lock);
2200 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04002201 if (em)
2202 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002203 spin_unlock(&em_tree->lock);
2204
Chris Masona52d9a82007-08-27 16:49:44 -04002205 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04002206 if (em->start > start || em->start + em->len <= start)
2207 free_extent_map(em);
2208 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05002209 free_extent_map(em);
2210 else
2211 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002212 }
Chris Masond1310b22008-01-24 16:13:08 -05002213 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002214 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002215 err = -ENOMEM;
2216 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002217 }
Chris Masond1310b22008-01-24 16:13:08 -05002218
2219 em->start = EXTENT_MAP_HOLE;
2220 em->len = (u64)-1;
Chris Masona061fc82008-05-07 11:43:44 -04002221 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04002222 ret = btrfs_lookup_file_extent(trans, root, path,
2223 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002224 if (ret < 0) {
2225 err = ret;
2226 goto out;
2227 }
2228
2229 if (ret != 0) {
2230 if (path->slots[0] == 0)
2231 goto not_found;
2232 path->slots[0]--;
2233 }
2234
Chris Mason5f39d392007-10-15 16:14:19 -04002235 leaf = path->nodes[0];
2236 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002237 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002238 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002239 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2240 found_type = btrfs_key_type(&found_key);
2241 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002242 found_type != BTRFS_EXTENT_DATA_KEY) {
2243 goto not_found;
2244 }
2245
Chris Mason5f39d392007-10-15 16:14:19 -04002246 found_type = btrfs_file_extent_type(leaf, item);
2247 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002248 if (found_type == BTRFS_FILE_EXTENT_REG) {
2249 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002250 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002251 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04002252 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002253 em->start = start;
2254 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002255 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002256 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002257 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002258 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002259 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002260 }
2261 goto not_found_em;
2262 }
Chris Masondb945352007-10-15 16:15:53 -04002263 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2264 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002265 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002266 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002267 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002268 goto insert;
2269 }
Chris Masondb945352007-10-15 16:15:53 -04002270 bytenr += btrfs_file_extent_offset(leaf, item);
2271 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002272 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002273 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002274 goto insert;
2275 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002276 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002277 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002278 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002279 size_t size;
2280 size_t extent_offset;
2281 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002282
Chris Mason5f39d392007-10-15 16:14:19 -04002283 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2284 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002285 extent_end = (extent_start + size + root->sectorsize - 1) &
2286 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002287 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002288 em->start = start;
2289 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002290 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002291 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002292 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002293 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002294 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002295 }
2296 goto not_found_em;
2297 }
2298 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002299
2300 if (!page) {
2301 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002302 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002303 goto out;
2304 }
2305
Chris Mason70dec802008-01-29 09:59:12 -05002306 page_start = page_offset(page) + pg_offset;
2307 extent_offset = page_start - extent_start;
2308 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002309 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002310 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002311 em->len = (copy_size + root->sectorsize - 1) &
2312 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002313 map = kmap(page);
2314 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002315 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002316 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002317 copy_size);
2318 flush_dcache_page(page);
2319 } else if (create && PageUptodate(page)) {
2320 if (!trans) {
2321 kunmap(page);
2322 free_extent_map(em);
2323 em = NULL;
2324 btrfs_release_path(root, path);
2325 trans = btrfs_start_transaction(root, 1);
2326 goto again;
2327 }
Chris Mason70dec802008-01-29 09:59:12 -05002328 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002329 copy_size);
2330 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002331 }
Chris Masona52d9a82007-08-27 16:49:44 -04002332 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002333 set_extent_uptodate(io_tree, em->start,
2334 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002335 goto insert;
2336 } else {
2337 printk("unkknown found_type %d\n", found_type);
2338 WARN_ON(1);
2339 }
2340not_found:
2341 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002342 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002343not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002344 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002345insert:
2346 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002347 if (em->start > start || extent_map_end(em) <= start) {
2348 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002349 err = -EIO;
2350 goto out;
2351 }
Chris Masond1310b22008-01-24 16:13:08 -05002352
2353 err = 0;
2354 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002355 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002356 /* it is possible that someone inserted the extent into the tree
2357 * while we had the lock dropped. It is also possible that
2358 * an overlapping map exists in the tree
2359 */
Chris Masona52d9a82007-08-27 16:49:44 -04002360 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002361 struct extent_map *existing;
2362 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002363 if (existing && (existing->start > start ||
2364 existing->start + existing->len <= start)) {
2365 free_extent_map(existing);
2366 existing = NULL;
2367 }
Chris Mason3b951512008-04-17 11:29:12 -04002368 if (!existing) {
2369 existing = lookup_extent_mapping(em_tree, em->start,
2370 em->len);
2371 if (existing) {
2372 err = merge_extent_mapping(em_tree, existing,
2373 em);
2374 free_extent_map(existing);
2375 if (err) {
2376 free_extent_map(em);
2377 em = NULL;
2378 }
2379 } else {
2380 err = -EIO;
2381 printk("failing to insert %Lu %Lu\n",
2382 start, len);
2383 free_extent_map(em);
2384 em = NULL;
2385 }
2386 } else {
2387 free_extent_map(em);
2388 em = existing;
Chris Masona52d9a82007-08-27 16:49:44 -04002389 }
Chris Masona52d9a82007-08-27 16:49:44 -04002390 }
Chris Masond1310b22008-01-24 16:13:08 -05002391 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002392out:
2393 btrfs_free_path(path);
2394 if (trans) {
2395 ret = btrfs_end_transaction(trans, root);
2396 if (!err)
2397 err = ret;
2398 }
2399 mutex_unlock(&root->fs_info->fs_mutex);
2400 if (err) {
2401 free_extent_map(em);
2402 WARN_ON(1);
2403 return ERR_PTR(err);
2404 }
2405 return em;
2406}
2407
Chris Masone1c4b742008-04-22 13:26:46 -04002408#if 0 /* waiting for O_DIRECT reads */
Chris Mason16432982008-04-10 10:23:21 -04002409static int btrfs_get_block(struct inode *inode, sector_t iblock,
2410 struct buffer_head *bh_result, int create)
2411{
2412 struct extent_map *em;
2413 u64 start = (u64)iblock << inode->i_blkbits;
2414 struct btrfs_multi_bio *multi = NULL;
2415 struct btrfs_root *root = BTRFS_I(inode)->root;
2416 u64 len;
2417 u64 logical;
2418 u64 map_length;
2419 int ret = 0;
2420
2421 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2422
2423 if (!em || IS_ERR(em))
2424 goto out;
2425
Chris Masone1c4b742008-04-22 13:26:46 -04002426 if (em->start > start || em->start + em->len <= start) {
Chris Mason16432982008-04-10 10:23:21 -04002427 goto out;
Chris Masone1c4b742008-04-22 13:26:46 -04002428 }
Chris Mason16432982008-04-10 10:23:21 -04002429
2430 if (em->block_start == EXTENT_MAP_INLINE) {
2431 ret = -EINVAL;
2432 goto out;
2433 }
2434
Chris Mason16432982008-04-10 10:23:21 -04002435 len = em->start + em->len - start;
2436 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2437
Chris Masone1c4b742008-04-22 13:26:46 -04002438 if (em->block_start == EXTENT_MAP_HOLE ||
2439 em->block_start == EXTENT_MAP_DELALLOC) {
2440 bh_result->b_size = len;
2441 goto out;
2442 }
2443
Chris Mason16432982008-04-10 10:23:21 -04002444 logical = start - em->start;
2445 logical = em->block_start + logical;
2446
2447 map_length = len;
2448 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2449 logical, &map_length, &multi, 0);
2450 BUG_ON(ret);
2451 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2452 bh_result->b_size = min(map_length, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002453
Chris Mason16432982008-04-10 10:23:21 -04002454 bh_result->b_bdev = multi->stripes[0].dev->bdev;
2455 set_buffer_mapped(bh_result);
2456 kfree(multi);
2457out:
2458 free_extent_map(em);
2459 return ret;
2460}
Chris Masone1c4b742008-04-22 13:26:46 -04002461#endif
Chris Mason16432982008-04-10 10:23:21 -04002462
2463static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
2464 const struct iovec *iov, loff_t offset,
2465 unsigned long nr_segs)
2466{
Chris Masone1c4b742008-04-22 13:26:46 -04002467 return -EINVAL;
2468#if 0
Chris Mason16432982008-04-10 10:23:21 -04002469 struct file *file = iocb->ki_filp;
2470 struct inode *inode = file->f_mapping->host;
2471
2472 if (rw == WRITE)
2473 return -EINVAL;
2474
2475 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2476 offset, nr_segs, btrfs_get_block, NULL);
Chris Masone1c4b742008-04-22 13:26:46 -04002477#endif
Chris Mason16432982008-04-10 10:23:21 -04002478}
2479
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002480static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002481{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002482 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002483}
2484
Chris Mason9ebefb182007-06-15 13:50:00 -04002485int btrfs_readpage(struct file *file, struct page *page)
2486{
Chris Masond1310b22008-01-24 16:13:08 -05002487 struct extent_io_tree *tree;
2488 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002489 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002490}
Chris Mason1832a6d2007-12-21 16:27:21 -05002491
Chris Mason39279cc2007-06-12 06:35:45 -04002492static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2493{
Chris Masond1310b22008-01-24 16:13:08 -05002494 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04002495
2496
2497 if (current->flags & PF_MEMALLOC) {
2498 redirty_page_for_writepage(wbc, page);
2499 unlock_page(page);
2500 return 0;
2501 }
Chris Masond1310b22008-01-24 16:13:08 -05002502 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002503 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2504}
Chris Mason39279cc2007-06-12 06:35:45 -04002505
Chris Masonb293f022007-11-01 19:45:34 -04002506static int btrfs_writepages(struct address_space *mapping,
2507 struct writeback_control *wbc)
2508{
Chris Masond1310b22008-01-24 16:13:08 -05002509 struct extent_io_tree *tree;
2510 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04002511 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2512}
2513
Chris Mason3ab2fb52007-11-08 10:59:22 -05002514static int
2515btrfs_readpages(struct file *file, struct address_space *mapping,
2516 struct list_head *pages, unsigned nr_pages)
2517{
Chris Masond1310b22008-01-24 16:13:08 -05002518 struct extent_io_tree *tree;
2519 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002520 return extent_readpages(tree, mapping, pages, nr_pages,
2521 btrfs_get_extent);
2522}
2523
Chris Mason70dec802008-01-29 09:59:12 -05002524static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002525{
Chris Masond1310b22008-01-24 16:13:08 -05002526 struct extent_io_tree *tree;
2527 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002528 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002529
Chris Masond1310b22008-01-24 16:13:08 -05002530 tree = &BTRFS_I(page->mapping->host)->io_tree;
2531 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002532 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002533 if (ret == 1) {
Chris Mason4ef64ea2008-04-21 08:52:50 -04002534 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04002535 ClearPagePrivate(page);
2536 set_page_private(page, 0);
2537 page_cache_release(page);
2538 }
2539 return ret;
2540}
Chris Mason39279cc2007-06-12 06:35:45 -04002541
Chris Masona52d9a82007-08-27 16:49:44 -04002542static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2543{
Chris Masond1310b22008-01-24 16:13:08 -05002544 struct extent_io_tree *tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002545
Chris Masond1310b22008-01-24 16:13:08 -05002546 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002547 extent_invalidatepage(tree, page, offset);
2548 btrfs_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002549 if (PagePrivate(page)) {
Chris Mason4ef64ea2008-04-21 08:52:50 -04002550 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002551 ClearPagePrivate(page);
2552 set_page_private(page, 0);
2553 page_cache_release(page);
2554 }
Chris Mason39279cc2007-06-12 06:35:45 -04002555}
2556
Chris Mason9ebefb182007-06-15 13:50:00 -04002557/*
2558 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2559 * called from a page fault handler when a page is first dirtied. Hence we must
2560 * be careful to check for EOF conditions here. We set the page up correctly
2561 * for a written page which means we get ENOSPC checking when writing into
2562 * holes and correct delalloc and unwritten extent mapping on filesystems that
2563 * support these features.
2564 *
2565 * We are not allowed to take the i_mutex here so we have to play games to
2566 * protect against truncate races as the page could now be beyond EOF. Because
2567 * vmtruncate() writes the inode size before removing pages, once we have the
2568 * page lock we can determine safely if the page is beyond EOF. If it is not
2569 * beyond EOF, then the page is guaranteed safe against truncation until we
2570 * unlock the page.
2571 */
2572int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2573{
Chris Mason6da6aba2007-12-18 16:15:09 -05002574 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002575 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9ebefb182007-06-15 13:50:00 -04002576 unsigned long end;
2577 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002578 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002579 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002580
Chris Mason1832a6d2007-12-21 16:27:21 -05002581 mutex_lock(&root->fs_info->fs_mutex);
2582 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason8f662a72008-01-02 10:01:11 -05002583 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002584 if (ret)
2585 goto out;
2586
2587 ret = -EINVAL;
2588
Chris Mason9ebefb182007-06-15 13:50:00 -04002589 lock_page(page);
2590 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002591 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04002592 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04002593
Chris Mason9ebefb182007-06-15 13:50:00 -04002594 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04002595 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002596 /* page got truncated out from underneath us */
2597 goto out_unlock;
2598 }
2599
2600 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002601 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04002602 end = size & ~PAGE_CACHE_MASK;
2603 else
2604 end = PAGE_CACHE_SIZE;
2605
Chris Masonb888db22007-08-27 16:49:44 -04002606 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04002607
2608out_unlock:
2609 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002610out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002611 return ret;
2612}
2613
Chris Mason39279cc2007-06-12 06:35:45 -04002614static void btrfs_truncate(struct inode *inode)
2615{
2616 struct btrfs_root *root = BTRFS_I(inode)->root;
2617 int ret;
2618 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04002619 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002620
2621 if (!S_ISREG(inode->i_mode))
2622 return;
2623 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2624 return;
2625
2626 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2627
2628 mutex_lock(&root->fs_info->fs_mutex);
2629 trans = btrfs_start_transaction(root, 1);
2630 btrfs_set_trans_block_group(trans, inode);
2631
2632 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002633 ret = btrfs_truncate_in_trans(trans, root, inode,
2634 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002635 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002636 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002637
Chris Mason39279cc2007-06-12 06:35:45 -04002638 ret = btrfs_end_transaction(trans, root);
2639 BUG_ON(ret);
2640 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002641 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002642 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002643}
2644
Sven Wegener3b963622008-06-09 21:57:42 -04002645/*
2646 * Invalidate a single dcache entry at the root of the filesystem.
2647 * Needed after creation of snapshot or subvolume.
2648 */
2649void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
2650 int namelen)
2651{
2652 struct dentry *alias, *entry;
2653 struct qstr qstr;
2654
2655 alias = d_find_alias(root->fs_info->sb->s_root->d_inode);
2656 if (alias) {
2657 qstr.name = name;
2658 qstr.len = namelen;
2659 /* change me if btrfs ever gets a d_hash operation */
2660 qstr.hash = full_name_hash(qstr.name, qstr.len);
2661 entry = d_lookup(alias, &qstr);
2662 dput(alias);
2663 if (entry) {
2664 d_invalidate(entry);
2665 dput(entry);
2666 }
2667 }
2668}
2669
Chris Mason4313b392008-01-03 09:08:48 -05002670static int noinline create_subvol(struct btrfs_root *root, char *name,
2671 int namelen)
Chris Mason39279cc2007-06-12 06:35:45 -04002672{
2673 struct btrfs_trans_handle *trans;
2674 struct btrfs_key key;
2675 struct btrfs_root_item root_item;
2676 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002677 struct extent_buffer *leaf;
Chris Masondc17ff82008-01-08 15:46:30 -05002678 struct btrfs_root *new_root = root;
Chris Mason39279cc2007-06-12 06:35:45 -04002679 struct inode *inode;
2680 struct inode *dir;
2681 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002682 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002683 u64 objectid;
2684 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdc2007-09-17 10:58:06 -04002685 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002686
2687 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002688 ret = btrfs_check_free_space(root, 1, 0);
2689 if (ret)
2690 goto fail_commit;
2691
Chris Mason39279cc2007-06-12 06:35:45 -04002692 trans = btrfs_start_transaction(root, 1);
2693 BUG_ON(!trans);
2694
Chris Mason7bb86312007-12-11 09:25:06 -05002695 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2696 0, &objectid);
2697 if (ret)
2698 goto fail;
2699
2700 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2701 objectid, trans->transid, 0, 0,
2702 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002703 if (IS_ERR(leaf))
2704 return PTR_ERR(leaf);
2705
2706 btrfs_set_header_nritems(leaf, 0);
2707 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04002708 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002709 btrfs_set_header_generation(leaf, trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002710 btrfs_set_header_owner(leaf, objectid);
2711
Chris Mason5f39d392007-10-15 16:14:19 -04002712 write_extent_buffer(leaf, root->fs_info->fsid,
2713 (unsigned long)btrfs_header_fsid(leaf),
2714 BTRFS_FSID_SIZE);
2715 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002716
2717 inode_item = &root_item.inode;
2718 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002719 inode_item->generation = cpu_to_le64(1);
2720 inode_item->size = cpu_to_le64(3);
2721 inode_item->nlink = cpu_to_le32(1);
2722 inode_item->nblocks = cpu_to_le64(1);
2723 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04002724
Chris Masondb945352007-10-15 16:15:53 -04002725 btrfs_set_root_bytenr(&root_item, leaf->start);
2726 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002727 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002728 btrfs_set_root_used(&root_item, 0);
2729
Chris Mason5eda7b52007-06-22 14:16:25 -04002730 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2731 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002732
2733 free_extent_buffer(leaf);
2734 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002735
Chris Mason39279cc2007-06-12 06:35:45 -04002736 btrfs_set_root_dirid(&root_item, new_dirid);
2737
2738 key.objectid = objectid;
2739 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002740 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2741 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2742 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002743 if (ret)
2744 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002745
2746 /*
2747 * insert the directory item
2748 */
2749 key.offset = (u64)-1;
2750 dir = root->fs_info->sb->s_root->d_inode;
2751 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2752 name, namelen, dir->i_ino, &key,
2753 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04002754 if (ret)
2755 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002756
Chris Mason39544012007-12-12 14:38:19 -05002757 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2758 name, namelen, objectid,
2759 root->fs_info->sb->s_root->d_inode->i_ino);
2760 if (ret)
2761 goto fail;
2762
Chris Mason39279cc2007-06-12 06:35:45 -04002763 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002764 if (ret)
2765 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04002766
Josef Bacik58176a92007-08-29 15:47:34 -04002767 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04002768 BUG_ON(!new_root);
2769
2770 trans = btrfs_start_transaction(new_root, 1);
2771 BUG_ON(!trans);
2772
Chris Mason9c583092008-01-29 15:15:18 -05002773 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
2774 new_dirid,
Chris Mason39279cc2007-06-12 06:35:45 -04002775 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002776 if (IS_ERR(inode))
2777 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002778 inode->i_op = &btrfs_dir_inode_operations;
2779 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002780 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002781
Chris Mason39544012007-12-12 14:38:19 -05002782 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2783 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002784 inode->i_nlink = 1;
Chris Mason39544012007-12-12 14:38:19 -05002785 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002786 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002787 if (ret)
2788 goto fail;
Sven Wegener3b963622008-06-09 21:57:42 -04002789
2790 /* Invalidate existing dcache entry for new subvolume. */
2791 btrfs_invalidate_dcache_root(root, name, namelen);
2792
Chris Mason54aa1f42007-06-22 14:16:25 -04002793fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04002794 nr = trans->blocks_used;
Chris Masondc17ff82008-01-08 15:46:30 -05002795 err = btrfs_commit_transaction(trans, new_root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002796 if (err && !ret)
2797 ret = err;
2798fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04002799 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002800 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002801 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002802 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002803}
2804
2805static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2806{
Chris Mason3063d292008-01-08 15:46:30 -05002807 struct btrfs_pending_snapshot *pending_snapshot;
Chris Mason39279cc2007-06-12 06:35:45 -04002808 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04002809 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002810 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05002811 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002812
2813 if (!root->ref_cows)
2814 return -EINVAL;
2815
2816 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002817 ret = btrfs_check_free_space(root, 1, 0);
2818 if (ret)
2819 goto fail_unlock;
2820
Chris Mason3063d292008-01-08 15:46:30 -05002821 pending_snapshot = kmalloc(sizeof(*pending_snapshot), GFP_NOFS);
2822 if (!pending_snapshot) {
2823 ret = -ENOMEM;
2824 goto fail_unlock;
2825 }
Yanfb4bc1e2008-01-17 11:59:51 -05002826 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
Chris Mason3063d292008-01-08 15:46:30 -05002827 if (!pending_snapshot->name) {
2828 ret = -ENOMEM;
2829 kfree(pending_snapshot);
2830 goto fail_unlock;
2831 }
Yanfb4bc1e2008-01-17 11:59:51 -05002832 memcpy(pending_snapshot->name, name, namelen);
2833 pending_snapshot->name[namelen] = '\0';
Chris Mason39279cc2007-06-12 06:35:45 -04002834 trans = btrfs_start_transaction(root, 1);
2835 BUG_ON(!trans);
Chris Mason3063d292008-01-08 15:46:30 -05002836 pending_snapshot->root = root;
2837 list_add(&pending_snapshot->list,
2838 &trans->transaction->pending_snapshots);
Chris Mason39279cc2007-06-12 06:35:45 -04002839 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002840 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002841
Chris Mason1832a6d2007-12-21 16:27:21 -05002842fail_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002843 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002844 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002845 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002846 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002847}
2848
Chris Masonedbd8d42007-12-21 16:27:24 -05002849unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002850 struct file_ra_state *ra, struct file *file,
2851 pgoff_t offset, pgoff_t last_index)
2852{
Chris Mason8e7bf942008-04-28 09:02:36 -04002853 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04002854
2855#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
Chris Mason86479a02007-09-10 19:58:16 -04002856 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2857 return offset;
2858#else
Chris Mason86479a02007-09-10 19:58:16 -04002859 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2860 return offset + req_size;
2861#endif
2862}
2863
2864int btrfs_defrag_file(struct file *file) {
Chris Mason6da6aba2007-12-18 16:15:09 -05002865 struct inode *inode = fdentry(file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002866 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002867 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason86479a02007-09-10 19:58:16 -04002868 struct page *page;
2869 unsigned long last_index;
Chris Mason8e7bf942008-04-28 09:02:36 -04002870 unsigned long ra_pages = root->fs_info->bdi.ra_pages;
2871 unsigned long total_read = 0;
Chris Mason86479a02007-09-10 19:58:16 -04002872 u64 page_start;
2873 u64 page_end;
2874 unsigned long i;
Chris Mason1832a6d2007-12-21 16:27:21 -05002875 int ret;
2876
2877 mutex_lock(&root->fs_info->fs_mutex);
2878 ret = btrfs_check_free_space(root, inode->i_size, 0);
2879 mutex_unlock(&root->fs_info->fs_mutex);
2880 if (ret)
2881 return -ENOSPC;
Chris Mason86479a02007-09-10 19:58:16 -04002882
2883 mutex_lock(&inode->i_mutex);
2884 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2885 for (i = 0; i <= last_index; i++) {
Chris Mason8e7bf942008-04-28 09:02:36 -04002886 if (total_read % ra_pages == 0) {
2887 btrfs_force_ra(inode->i_mapping, &file->f_ra, file, i,
2888 min(last_index, i + ra_pages - 1));
Chris Mason86479a02007-09-10 19:58:16 -04002889 }
Chris Mason8e7bf942008-04-28 09:02:36 -04002890 total_read++;
Chris Mason86479a02007-09-10 19:58:16 -04002891 page = grab_cache_page(inode->i_mapping, i);
2892 if (!page)
2893 goto out_unlock;
2894 if (!PageUptodate(page)) {
2895 btrfs_readpage(NULL, page);
2896 lock_page(page);
2897 if (!PageUptodate(page)) {
2898 unlock_page(page);
2899 page_cache_release(page);
2900 goto out_unlock;
2901 }
2902 }
Chris Masonec44a352008-04-28 15:29:52 -04002903
2904#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2905 ClearPageDirty(page);
2906#else
2907 cancel_dirty_page(page, PAGE_CACHE_SIZE);
2908#endif
2909 wait_on_page_writeback(page);
2910 set_page_extent_mapped(page);
2911
Chris Mason35ebb932007-10-30 16:56:53 -04002912 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002913 page_end = page_start + PAGE_CACHE_SIZE - 1;
2914
Chris Masond1310b22008-01-24 16:13:08 -05002915 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002916 set_extent_delalloc(io_tree, page_start,
Chris Mason86479a02007-09-10 19:58:16 -04002917 page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002918
Chris Masond1310b22008-01-24 16:13:08 -05002919 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason86479a02007-09-10 19:58:16 -04002920 set_page_dirty(page);
2921 unlock_page(page);
2922 page_cache_release(page);
2923 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2924 }
2925
2926out_unlock:
2927 mutex_unlock(&inode->i_mutex);
2928 return 0;
2929}
2930
Chris Masonedbd8d42007-12-21 16:27:24 -05002931static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2932{
2933 u64 new_size;
2934 u64 old_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04002935 u64 devid = 1;
Chris Masonedbd8d42007-12-21 16:27:24 -05002936 struct btrfs_ioctl_vol_args *vol_args;
2937 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002938 struct btrfs_device *device = NULL;
Chris Masonedbd8d42007-12-21 16:27:24 -05002939 char *sizestr;
Chris Mason8f18cf12008-04-25 16:53:30 -04002940 char *devstr = NULL;
Chris Masonedbd8d42007-12-21 16:27:24 -05002941 int ret = 0;
2942 int namelen;
2943 int mod = 0;
2944
2945 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2946
2947 if (!vol_args)
2948 return -ENOMEM;
2949
2950 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2951 ret = -EFAULT;
2952 goto out;
2953 }
2954 namelen = strlen(vol_args->name);
2955 if (namelen > BTRFS_VOL_NAME_MAX) {
2956 ret = -EINVAL;
2957 goto out;
2958 }
2959
Chris Mason8f18cf12008-04-25 16:53:30 -04002960 mutex_lock(&root->fs_info->fs_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05002961 sizestr = vol_args->name;
Chris Mason8f18cf12008-04-25 16:53:30 -04002962 devstr = strchr(sizestr, ':');
2963 if (devstr) {
2964 char *end;
2965 sizestr = devstr + 1;
2966 *devstr = '\0';
2967 devstr = vol_args->name;
2968 devid = simple_strtoull(devstr, &end, 10);
2969printk("resizing devid %Lu\n", devid);
2970 }
2971 device = btrfs_find_device(root, devid, NULL);
2972 if (!device) {
2973 printk("resizer unable to find device %Lu\n", devid);
2974 ret = -EINVAL;
2975 goto out_unlock;
2976 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002977 if (!strcmp(sizestr, "max"))
Chris Mason8f18cf12008-04-25 16:53:30 -04002978 new_size = device->bdev->bd_inode->i_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002979 else {
2980 if (sizestr[0] == '-') {
2981 mod = -1;
2982 sizestr++;
2983 } else if (sizestr[0] == '+') {
2984 mod = 1;
2985 sizestr++;
2986 }
2987 new_size = btrfs_parse_size(sizestr);
2988 if (new_size == 0) {
2989 ret = -EINVAL;
Chris Mason8f18cf12008-04-25 16:53:30 -04002990 goto out_unlock;
Chris Masonedbd8d42007-12-21 16:27:24 -05002991 }
2992 }
2993
Chris Mason8f18cf12008-04-25 16:53:30 -04002994 old_size = device->total_bytes;
Chris Masonedbd8d42007-12-21 16:27:24 -05002995
2996 if (mod < 0) {
2997 if (new_size > old_size) {
2998 ret = -EINVAL;
2999 goto out_unlock;
3000 }
3001 new_size = old_size - new_size;
3002 } else if (mod > 0) {
3003 new_size = old_size + new_size;
3004 }
3005
3006 if (new_size < 256 * 1024 * 1024) {
3007 ret = -EINVAL;
3008 goto out_unlock;
3009 }
Chris Mason8f18cf12008-04-25 16:53:30 -04003010 if (new_size > device->bdev->bd_inode->i_size) {
Chris Masonedbd8d42007-12-21 16:27:24 -05003011 ret = -EFBIG;
3012 goto out_unlock;
3013 }
Chris Masonf9ef6602008-01-03 09:22:38 -05003014
3015 do_div(new_size, root->sectorsize);
3016 new_size *= root->sectorsize;
Chris Masonedbd8d42007-12-21 16:27:24 -05003017
Chris Mason8f18cf12008-04-25 16:53:30 -04003018printk("new size for %s is %llu\n", device->name, (unsigned long long)new_size);
3019
Chris Masonedbd8d42007-12-21 16:27:24 -05003020 if (new_size > old_size) {
3021 trans = btrfs_start_transaction(root, 1);
Chris Mason8f18cf12008-04-25 16:53:30 -04003022 ret = btrfs_grow_device(trans, device, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05003023 btrfs_commit_transaction(trans, root);
3024 } else {
Chris Mason8f18cf12008-04-25 16:53:30 -04003025 ret = btrfs_shrink_device(device, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05003026 }
3027
3028out_unlock:
3029 mutex_unlock(&root->fs_info->fs_mutex);
3030out:
3031 kfree(vol_args);
3032 return ret;
3033}
3034
Chris Mason4313b392008-01-03 09:08:48 -05003035static int noinline btrfs_ioctl_snap_create(struct btrfs_root *root,
3036 void __user *arg)
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003037{
Chris Mason4aec2b52007-12-18 16:25:45 -05003038 struct btrfs_ioctl_vol_args *vol_args;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003039 struct btrfs_dir_item *di;
3040 struct btrfs_path *path;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003041 u64 root_dirid;
Chris Mason4aec2b52007-12-18 16:25:45 -05003042 int namelen;
3043 int ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003044
Chris Mason4aec2b52007-12-18 16:25:45 -05003045 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04003046
Chris Mason4aec2b52007-12-18 16:25:45 -05003047 if (!vol_args)
3048 return -ENOMEM;
3049
3050 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
3051 ret = -EFAULT;
3052 goto out;
3053 }
3054
3055 namelen = strlen(vol_args->name);
3056 if (namelen > BTRFS_VOL_NAME_MAX) {
3057 ret = -EINVAL;
3058 goto out;
3059 }
3060 if (strchr(vol_args->name, '/')) {
3061 ret = -EINVAL;
3062 goto out;
3063 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003064
3065 path = btrfs_alloc_path();
Chris Mason4aec2b52007-12-18 16:25:45 -05003066 if (!path) {
3067 ret = -ENOMEM;
3068 goto out;
3069 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003070
3071 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
3072 mutex_lock(&root->fs_info->fs_mutex);
3073 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
3074 path, root_dirid,
Chris Mason4aec2b52007-12-18 16:25:45 -05003075 vol_args->name, namelen, 0);
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003076 mutex_unlock(&root->fs_info->fs_mutex);
3077 btrfs_free_path(path);
Chris Mason4aec2b52007-12-18 16:25:45 -05003078
3079 if (di && !IS_ERR(di)) {
3080 ret = -EEXIST;
3081 goto out;
3082 }
3083
3084 if (IS_ERR(di)) {
3085 ret = PTR_ERR(di);
3086 goto out;
3087 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003088
3089 if (root == root->fs_info->tree_root)
Chris Mason4aec2b52007-12-18 16:25:45 -05003090 ret = create_subvol(root, vol_args->name, namelen);
3091 else
3092 ret = create_snapshot(root, vol_args->name, namelen);
3093out:
3094 kfree(vol_args);
3095 return ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003096}
3097
3098static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04003099{
Chris Mason6da6aba2007-12-18 16:15:09 -05003100 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003101 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003102
3103 switch (inode->i_mode & S_IFMT) {
3104 case S_IFDIR:
3105 mutex_lock(&root->fs_info->fs_mutex);
3106 btrfs_defrag_root(root, 0);
3107 btrfs_defrag_root(root->fs_info->extent_root, 0);
3108 mutex_unlock(&root->fs_info->fs_mutex);
3109 break;
3110 case S_IFREG:
3111 btrfs_defrag_file(file);
3112 break;
3113 }
3114
3115 return 0;
3116}
3117
Chris Mason788f20e2008-04-28 15:29:42 -04003118long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
3119{
3120 struct btrfs_ioctl_vol_args *vol_args;
3121 int ret;
3122
3123 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
3124
3125 if (!vol_args)
3126 return -ENOMEM;
3127
3128 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
3129 ret = -EFAULT;
3130 goto out;
3131 }
3132 ret = btrfs_init_new_device(root, vol_args->name);
3133
3134out:
3135 kfree(vol_args);
3136 return ret;
3137}
3138
Chris Masona061fc82008-05-07 11:43:44 -04003139long btrfs_ioctl_rm_dev(struct btrfs_root *root, void __user *arg)
3140{
3141 struct btrfs_ioctl_vol_args *vol_args;
3142 int ret;
3143
3144 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
3145
3146 if (!vol_args)
3147 return -ENOMEM;
3148
3149 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
3150 ret = -EFAULT;
3151 goto out;
3152 }
3153 ret = btrfs_rm_device(root, vol_args->name);
3154
3155out:
3156 kfree(vol_args);
3157 return ret;
3158}
3159
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003160int dup_item_to_inode(struct btrfs_trans_handle *trans,
Sage Weilf2eb0a22008-05-02 14:43:14 -04003161 struct btrfs_root *root,
3162 struct btrfs_path *path,
3163 struct extent_buffer *leaf,
3164 int slot,
3165 struct btrfs_key *key,
3166 u64 destino)
3167{
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003168 char *dup;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003169 int len = btrfs_item_size_nr(leaf, slot);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003170 struct btrfs_key ckey = *key;
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003171 int ret = 0;
3172
3173 dup = kmalloc(len, GFP_NOFS);
3174 if (!dup)
3175 return -ENOMEM;
3176
3177 read_extent_buffer(leaf, dup, btrfs_item_ptr_offset(leaf, slot), len);
3178 btrfs_release_path(root, path);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003179
3180 ckey.objectid = destino;
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003181 ret = btrfs_insert_item(trans, root, &ckey, dup, len);
3182 kfree(dup);
3183 return ret;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003184}
3185
3186long btrfs_ioctl_clone(struct file *file, unsigned long src_fd)
3187{
3188 struct inode *inode = fdentry(file)->d_inode;
3189 struct btrfs_root *root = BTRFS_I(inode)->root;
3190 struct file *src_file;
3191 struct inode *src;
3192 struct btrfs_trans_handle *trans;
3193 int ret;
3194 u64 pos;
3195 struct btrfs_path *path;
3196 struct btrfs_key key;
3197 struct extent_buffer *leaf;
3198 u32 nritems;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003199 int slot;
3200
3201 src_file = fget(src_fd);
3202 if (!src_file)
3203 return -EBADF;
3204 src = src_file->f_dentry->d_inode;
3205
3206 ret = -EXDEV;
3207 if (src->i_sb != inode->i_sb)
3208 goto out_fput;
3209
3210 if (inode < src) {
3211 mutex_lock(&inode->i_mutex);
3212 mutex_lock(&src->i_mutex);
3213 } else {
3214 mutex_lock(&src->i_mutex);
3215 mutex_lock(&inode->i_mutex);
3216 }
3217
3218 ret = -ENOTEMPTY;
3219 if (inode->i_size)
3220 goto out_unlock;
3221
3222 /* do any pending delalloc/csum calc on src, one way or
3223 another, and lock file content */
3224 while (1) {
3225 filemap_write_and_wait(src->i_mapping);
3226 lock_extent(&BTRFS_I(src)->io_tree, 0, (u64)-1, GFP_NOFS);
3227 if (BTRFS_I(src)->delalloc_bytes == 0)
3228 break;
3229 unlock_extent(&BTRFS_I(src)->io_tree, 0, (u64)-1, GFP_NOFS);
3230 }
3231
3232 mutex_lock(&root->fs_info->fs_mutex);
3233 trans = btrfs_start_transaction(root, 0);
3234 path = btrfs_alloc_path();
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003235 if (!path) {
3236 ret = -ENOMEM;
3237 goto out;
3238 }
3239 key.offset = 0;
3240 key.type = BTRFS_EXTENT_DATA_KEY;
3241 key.objectid = src->i_ino;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003242 pos = 0;
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003243 path->reada = 2;
3244
Sage Weilf2eb0a22008-05-02 14:43:14 -04003245 while (1) {
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003246 /*
3247 * note the key will change type as we walk through the
3248 * tree.
3249 */
3250 ret = btrfs_search_slot(trans, root, &key, path, 0, 0);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003251 if (ret < 0)
3252 goto out;
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003253
3254 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3255 ret = btrfs_next_leaf(root, path);
3256 if (ret < 0)
Sage Weilf2eb0a22008-05-02 14:43:14 -04003257 goto out;
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003258 if (ret > 0)
3259 break;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003260 }
Sage Weilf2eb0a22008-05-02 14:43:14 -04003261 leaf = path->nodes[0];
3262 slot = path->slots[0];
3263 btrfs_item_key_to_cpu(leaf, &key, slot);
3264 nritems = btrfs_header_nritems(leaf);
3265
3266 if (btrfs_key_type(&key) > BTRFS_CSUM_ITEM_KEY ||
3267 key.objectid != src->i_ino)
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003268 break;
3269
Sage Weilf2eb0a22008-05-02 14:43:14 -04003270 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
3271 struct btrfs_file_extent_item *extent;
3272 int found_type;
3273 pos = key.offset;
3274 extent = btrfs_item_ptr(leaf, slot,
3275 struct btrfs_file_extent_item);
3276 found_type = btrfs_file_extent_type(leaf, extent);
3277 if (found_type == BTRFS_FILE_EXTENT_REG) {
3278 u64 len = btrfs_file_extent_num_bytes(leaf,
3279 extent);
3280 u64 ds = btrfs_file_extent_disk_bytenr(leaf,
3281 extent);
3282 u64 dl = btrfs_file_extent_disk_num_bytes(leaf,
3283 extent);
3284 u64 off = btrfs_file_extent_offset(leaf,
3285 extent);
3286 btrfs_insert_file_extent(trans, root,
3287 inode->i_ino, pos,
3288 ds, dl, len, off);
3289 /* ds == 0 means there's a hole */
3290 if (ds != 0) {
3291 btrfs_inc_extent_ref(trans, root,
3292 ds, dl,
3293 root->root_key.objectid,
3294 trans->transid,
3295 inode->i_ino, pos);
3296 }
3297 pos = key.offset + len;
3298 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003299 ret = dup_item_to_inode(trans, root, path,
3300 leaf, slot, &key,
3301 inode->i_ino);
3302 if (ret)
3303 goto out;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003304 pos = key.offset + btrfs_item_size_nr(leaf,
3305 slot);
3306 }
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003307 } else if (btrfs_key_type(&key) == BTRFS_CSUM_ITEM_KEY) {
3308 ret = dup_item_to_inode(trans, root, path, leaf,
3309 slot, &key, inode->i_ino);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003310
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003311 if (ret)
Sage Weilf2eb0a22008-05-02 14:43:14 -04003312 goto out;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003313 }
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003314 key.offset++;
3315 btrfs_release_path(root, path);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003316 }
3317
Chris Mason5d9cd9e2008-05-05 06:26:21 -04003318 ret = 0;
Sage Weilf2eb0a22008-05-02 14:43:14 -04003319out:
3320 btrfs_free_path(path);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003321
3322 inode->i_blocks = src->i_blocks;
3323 i_size_write(inode, src->i_size);
3324 btrfs_update_inode(trans, root, inode);
3325
3326 unlock_extent(&BTRFS_I(src)->io_tree, 0, (u64)-1, GFP_NOFS);
3327
3328 btrfs_end_transaction(trans, root);
3329 mutex_unlock(&root->fs_info->fs_mutex);
3330
3331out_unlock:
3332 mutex_unlock(&src->i_mutex);
3333 mutex_unlock(&inode->i_mutex);
3334out_fput:
3335 fput(src_file);
3336 return ret;
3337}
3338
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003339long btrfs_ioctl(struct file *file, unsigned int
3340 cmd, unsigned long arg)
3341{
Chris Mason6da6aba2007-12-18 16:15:09 -05003342 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003343
3344 switch (cmd) {
3345 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003346 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04003347 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003348 return btrfs_ioctl_defrag(file);
Chris Masonedbd8d42007-12-21 16:27:24 -05003349 case BTRFS_IOC_RESIZE:
3350 return btrfs_ioctl_resize(root, (void __user *)arg);
Chris Mason788f20e2008-04-28 15:29:42 -04003351 case BTRFS_IOC_ADD_DEV:
3352 return btrfs_ioctl_add_dev(root, (void __user *)arg);
Chris Masona061fc82008-05-07 11:43:44 -04003353 case BTRFS_IOC_RM_DEV:
3354 return btrfs_ioctl_rm_dev(root, (void __user *)arg);
Chris Masonec44a352008-04-28 15:29:52 -04003355 case BTRFS_IOC_BALANCE:
3356 return btrfs_balance(root->fs_info->dev_root);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003357 case BTRFS_IOC_CLONE:
3358 return btrfs_ioctl_clone(file, arg);
Chris Mason39279cc2007-06-12 06:35:45 -04003359 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003360
3361 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04003362}
3363
Chris Mason39279cc2007-06-12 06:35:45 -04003364/*
3365 * Called inside transaction, so use GFP_NOFS
3366 */
3367struct inode *btrfs_alloc_inode(struct super_block *sb)
3368{
3369 struct btrfs_inode *ei;
3370
3371 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
3372 if (!ei)
3373 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003374 ei->last_trans = 0;
Chris Masondc17ff82008-01-08 15:46:30 -05003375 ei->ordered_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003376 return &ei->vfs_inode;
3377}
3378
3379void btrfs_destroy_inode(struct inode *inode)
3380{
3381 WARN_ON(!list_empty(&inode->i_dentry));
3382 WARN_ON(inode->i_data.nrpages);
3383
Chris Mason8c416c92008-01-14 15:10:26 -05003384 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003385 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
3386}
3387
Chris Mason44ec0b72007-10-29 10:55:05 -04003388#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
3389static void init_once(struct kmem_cache * cachep, void *foo)
3390#else
Chris Mason39279cc2007-06-12 06:35:45 -04003391static void init_once(void * foo, struct kmem_cache * cachep,
3392 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04003393#endif
Chris Mason39279cc2007-06-12 06:35:45 -04003394{
3395 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
3396
3397 inode_init_once(&ei->vfs_inode);
3398}
3399
3400void btrfs_destroy_cachep(void)
3401{
3402 if (btrfs_inode_cachep)
3403 kmem_cache_destroy(btrfs_inode_cachep);
3404 if (btrfs_trans_handle_cachep)
3405 kmem_cache_destroy(btrfs_trans_handle_cachep);
3406 if (btrfs_transaction_cachep)
3407 kmem_cache_destroy(btrfs_transaction_cachep);
3408 if (btrfs_bit_radix_cachep)
3409 kmem_cache_destroy(btrfs_bit_radix_cachep);
3410 if (btrfs_path_cachep)
3411 kmem_cache_destroy(btrfs_path_cachep);
3412}
3413
Chris Mason86479a02007-09-10 19:58:16 -04003414struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04003415 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04003416#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
3417 void (*ctor)(struct kmem_cache *, void *)
3418#else
Chris Mason92fee662007-07-25 12:31:35 -04003419 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04003420 unsigned long)
3421#endif
3422 )
Chris Mason92fee662007-07-25 12:31:35 -04003423{
3424 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
3425 SLAB_MEM_SPREAD | extra_flags), ctor
3426#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
3427 ,NULL
3428#endif
3429 );
3430}
3431
Chris Mason39279cc2007-06-12 06:35:45 -04003432int btrfs_init_cachep(void)
3433{
Chris Mason86479a02007-09-10 19:58:16 -04003434 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04003435 sizeof(struct btrfs_inode),
3436 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04003437 if (!btrfs_inode_cachep)
3438 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003439 btrfs_trans_handle_cachep =
3440 btrfs_cache_create("btrfs_trans_handle_cache",
3441 sizeof(struct btrfs_trans_handle),
3442 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003443 if (!btrfs_trans_handle_cachep)
3444 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003445 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04003446 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04003447 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003448 if (!btrfs_transaction_cachep)
3449 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003450 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04003451 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04003452 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003453 if (!btrfs_path_cachep)
3454 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003455 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04003456 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003457 if (!btrfs_bit_radix_cachep)
3458 goto fail;
3459 return 0;
3460fail:
3461 btrfs_destroy_cachep();
3462 return -ENOMEM;
3463}
3464
3465static int btrfs_getattr(struct vfsmount *mnt,
3466 struct dentry *dentry, struct kstat *stat)
3467{
3468 struct inode *inode = dentry->d_inode;
3469 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05003470 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05003471 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04003472 return 0;
3473}
3474
3475static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3476 struct inode * new_dir,struct dentry *new_dentry)
3477{
3478 struct btrfs_trans_handle *trans;
3479 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3480 struct inode *new_inode = new_dentry->d_inode;
3481 struct inode *old_inode = old_dentry->d_inode;
3482 struct timespec ctime = CURRENT_TIME;
3483 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003484 int ret;
3485
3486 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3487 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3488 return -ENOTEMPTY;
3489 }
Chris Mason5f39d392007-10-15 16:14:19 -04003490
Chris Mason39279cc2007-06-12 06:35:45 -04003491 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05003492 ret = btrfs_check_free_space(root, 1, 0);
3493 if (ret)
3494 goto out_unlock;
3495
Chris Mason39279cc2007-06-12 06:35:45 -04003496 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003497
Chris Mason39279cc2007-06-12 06:35:45 -04003498 btrfs_set_trans_block_group(trans, new_dir);
3499 path = btrfs_alloc_path();
3500 if (!path) {
3501 ret = -ENOMEM;
3502 goto out_fail;
3503 }
3504
3505 old_dentry->d_inode->i_nlink++;
3506 old_dir->i_ctime = old_dir->i_mtime = ctime;
3507 new_dir->i_ctime = new_dir->i_mtime = ctime;
3508 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003509
Chris Mason39279cc2007-06-12 06:35:45 -04003510 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
3511 if (ret)
3512 goto out_fail;
3513
3514 if (new_inode) {
3515 new_inode->i_ctime = CURRENT_TIME;
3516 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
3517 if (ret)
3518 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003519 }
Chris Mason9c583092008-01-29 15:15:18 -05003520 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003521 if (ret)
3522 goto out_fail;
3523
3524out_fail:
3525 btrfs_free_path(path);
3526 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003527out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003528 mutex_unlock(&root->fs_info->fs_mutex);
3529 return ret;
3530}
3531
3532static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3533 const char *symname)
3534{
3535 struct btrfs_trans_handle *trans;
3536 struct btrfs_root *root = BTRFS_I(dir)->root;
3537 struct btrfs_path *path;
3538 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003539 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003540 int err;
3541 int drop_inode = 0;
3542 u64 objectid;
3543 int name_len;
3544 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003545 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003546 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003547 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003548 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003549
3550 name_len = strlen(symname) + 1;
3551 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3552 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003553
Chris Mason39279cc2007-06-12 06:35:45 -04003554 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05003555 err = btrfs_check_free_space(root, 1, 0);
3556 if (err)
3557 goto out_fail;
3558
Chris Mason39279cc2007-06-12 06:35:45 -04003559 trans = btrfs_start_transaction(root, 1);
3560 btrfs_set_trans_block_group(trans, dir);
3561
3562 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3563 if (err) {
3564 err = -ENOSPC;
3565 goto out_unlock;
3566 }
3567
Chris Mason9c583092008-01-29 15:15:18 -05003568 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
3569 dentry->d_name.len,
3570 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003571 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
3572 err = PTR_ERR(inode);
3573 if (IS_ERR(inode))
3574 goto out_unlock;
3575
3576 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003577 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003578 if (err)
3579 drop_inode = 1;
3580 else {
3581 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003582 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003583 inode->i_fop = &btrfs_file_operations;
3584 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003585 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3586 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04003587 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003588 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3589 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05003590 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason81d7ed22008-04-25 08:51:48 -04003591 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003592 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003593 }
3594 dir->i_sb->s_dirt = 1;
3595 btrfs_update_inode_block_group(trans, inode);
3596 btrfs_update_inode_block_group(trans, dir);
3597 if (drop_inode)
3598 goto out_unlock;
3599
3600 path = btrfs_alloc_path();
3601 BUG_ON(!path);
3602 key.objectid = inode->i_ino;
3603 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003604 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3605 datasize = btrfs_file_extent_calc_inline_size(name_len);
3606 err = btrfs_insert_empty_item(trans, root, path, &key,
3607 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003608 if (err) {
3609 drop_inode = 1;
3610 goto out_unlock;
3611 }
Chris Mason5f39d392007-10-15 16:14:19 -04003612 leaf = path->nodes[0];
3613 ei = btrfs_item_ptr(leaf, path->slots[0],
3614 struct btrfs_file_extent_item);
3615 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3616 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003617 BTRFS_FILE_EXTENT_INLINE);
3618 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003619 write_extent_buffer(leaf, symname, ptr, name_len);
3620 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003621 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003622
Chris Mason39279cc2007-06-12 06:35:45 -04003623 inode->i_op = &btrfs_symlink_inode_operations;
3624 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003625 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003626 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04003627 err = btrfs_update_inode(trans, root, inode);
3628 if (err)
3629 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003630
3631out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003632 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04003633 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003634out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003635 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04003636 if (drop_inode) {
3637 inode_dec_link_count(inode);
3638 iput(inode);
3639 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04003640 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05003641 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003642 return err;
3643}
Chris Mason16432982008-04-10 10:23:21 -04003644
Yanfdebe2b2008-01-14 13:26:08 -05003645static int btrfs_permission(struct inode *inode, int mask,
3646 struct nameidata *nd)
3647{
3648 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3649 return -EACCES;
3650 return generic_permission(inode, mask, NULL);
3651}
Chris Mason39279cc2007-06-12 06:35:45 -04003652
3653static struct inode_operations btrfs_dir_inode_operations = {
3654 .lookup = btrfs_lookup,
3655 .create = btrfs_create,
3656 .unlink = btrfs_unlink,
3657 .link = btrfs_link,
3658 .mkdir = btrfs_mkdir,
3659 .rmdir = btrfs_rmdir,
3660 .rename = btrfs_rename,
3661 .symlink = btrfs_symlink,
3662 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003663 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003664 .setxattr = generic_setxattr,
3665 .getxattr = generic_getxattr,
3666 .listxattr = btrfs_listxattr,
3667 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003668 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003669};
Chris Mason39279cc2007-06-12 06:35:45 -04003670static struct inode_operations btrfs_dir_ro_inode_operations = {
3671 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003672 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003673};
Chris Mason39279cc2007-06-12 06:35:45 -04003674static struct file_operations btrfs_dir_file_operations = {
3675 .llseek = generic_file_llseek,
3676 .read = generic_read_dir,
3677 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003678 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003679#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003680 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003681#endif
3682};
3683
Chris Masond1310b22008-01-24 16:13:08 -05003684static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003685 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003686 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003687 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003688 .readpage_io_hook = btrfs_readpage_io_hook,
3689 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04003690 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003691 .set_bit_hook = btrfs_set_bit_hook,
3692 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003693};
3694
Chris Mason39279cc2007-06-12 06:35:45 -04003695static struct address_space_operations btrfs_aops = {
3696 .readpage = btrfs_readpage,
3697 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04003698 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003699 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003700 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003701 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003702 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003703 .invalidatepage = btrfs_invalidatepage,
3704 .releasepage = btrfs_releasepage,
3705 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04003706};
3707
3708static struct address_space_operations btrfs_symlink_aops = {
3709 .readpage = btrfs_readpage,
3710 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003711 .invalidatepage = btrfs_invalidatepage,
3712 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003713};
3714
3715static struct inode_operations btrfs_file_inode_operations = {
3716 .truncate = btrfs_truncate,
3717 .getattr = btrfs_getattr,
3718 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003719 .setxattr = generic_setxattr,
3720 .getxattr = generic_getxattr,
3721 .listxattr = btrfs_listxattr,
3722 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003723 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003724};
Josef Bacik618e21d2007-07-11 10:18:17 -04003725static struct inode_operations btrfs_special_inode_operations = {
3726 .getattr = btrfs_getattr,
3727 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003728 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003729};
Chris Mason39279cc2007-06-12 06:35:45 -04003730static struct inode_operations btrfs_symlink_inode_operations = {
3731 .readlink = generic_readlink,
3732 .follow_link = page_follow_link_light,
3733 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003734 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003735};