blob: b31f52d4f2caeb64c125af85ac9e9e4cf86fd38f [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason065631f2008-02-20 12:07:25 -050019#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040020#include <linux/buffer_head.h>
21#include <linux/fs.h>
22#include <linux/pagemap.h>
23#include <linux/highmem.h>
24#include <linux/time.h>
25#include <linux/init.h>
26#include <linux/string.h>
27#include <linux/smp_lock.h>
28#include <linux/backing-dev.h>
29#include <linux/mpage.h>
30#include <linux/swap.h>
31#include <linux/writeback.h>
32#include <linux/statfs.h>
33#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040034#include <linux/bit_spinlock.h>
Chris Mason92fee662007-07-25 12:31:35 -040035#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Chris Mason39279cc2007-06-12 06:35:45 -040037#include "ctree.h"
38#include "disk-io.h"
39#include "transaction.h"
40#include "btrfs_inode.h"
41#include "ioctl.h"
42#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040043#include "volumes.h"
Chris Mason39279cc2007-06-12 06:35:45 -040044
45struct btrfs_iget_args {
46 u64 ino;
47 struct btrfs_root *root;
48};
49
50static struct inode_operations btrfs_dir_inode_operations;
51static struct inode_operations btrfs_symlink_inode_operations;
52static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040053static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040054static struct inode_operations btrfs_file_inode_operations;
55static struct address_space_operations btrfs_aops;
56static struct address_space_operations btrfs_symlink_aops;
57static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050058static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040059
60static struct kmem_cache *btrfs_inode_cachep;
61struct kmem_cache *btrfs_trans_handle_cachep;
62struct kmem_cache *btrfs_transaction_cachep;
63struct kmem_cache *btrfs_bit_radix_cachep;
64struct kmem_cache *btrfs_path_cachep;
65
66#define S_SHIFT 12
67static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
68 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
69 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
70 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
71 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
72 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
73 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
74 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
75};
76
Chris Mason1832a6d2007-12-21 16:27:21 -050077int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
78 int for_del)
79{
80 u64 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
81 u64 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
82 u64 thresh;
Chris Masonbcbfce82008-04-22 13:26:47 -040083 unsigned long flags;
Chris Mason1832a6d2007-12-21 16:27:21 -050084 int ret = 0;
85
86 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -050087 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -050088 else
Chris Masonf9ef6602008-01-03 09:22:38 -050089 thresh = total * 85;
90
91 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -050092
Chris Masonbcbfce82008-04-22 13:26:47 -040093 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -050094 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
95 ret = -ENOSPC;
Chris Masonbcbfce82008-04-22 13:26:47 -040096 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -050097 return ret;
98}
99
Chris Masonbe20aa92007-12-17 20:14:01 -0500100static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db22007-08-27 16:49:44 -0400101{
102 struct btrfs_root *root = BTRFS_I(inode)->root;
103 struct btrfs_trans_handle *trans;
Chris Masonb888db22007-08-27 16:49:44 -0400104 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400105 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500106 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400107 u64 blocksize = root->sectorsize;
Chris Masond1310b22008-01-24 16:13:08 -0500108 u64 orig_start = start;
109 u64 orig_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500110 struct btrfs_key ins;
111 int ret;
Chris Masonb888db22007-08-27 16:49:44 -0400112
Chris Masonb888db22007-08-27 16:49:44 -0400113 trans = btrfs_start_transaction(root, 1);
Chris Masonb888db22007-08-27 16:49:44 -0400114 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500115 btrfs_set_trans_block_group(trans, inode);
116
Chris Masondb945352007-10-15 16:15:53 -0400117 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500118 num_bytes = max(blocksize, num_bytes);
Chris Masonb888db22007-08-27 16:49:44 -0400119 ret = btrfs_drop_extents(trans, root, inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400120 start, start + num_bytes, start, &alloc_hint);
Chris Masond1310b22008-01-24 16:13:08 -0500121 orig_num_bytes = num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400122
Chris Mason179e29e2007-11-01 11:28:41 -0400123 if (alloc_hint == EXTENT_MAP_INLINE)
124 goto out;
125
Chris Mason3b951512008-04-17 11:29:12 -0400126 BUG_ON(num_bytes > btrfs_super_total_bytes(&root->fs_info->super_copy));
127
Chris Masonc59f8952007-12-17 20:14:04 -0500128 while(num_bytes > 0) {
129 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
130 ret = btrfs_alloc_extent(trans, root, cur_alloc_size,
Chris Mason98d20f62008-04-14 09:46:10 -0400131 root->sectorsize,
Chris Masonc59f8952007-12-17 20:14:04 -0500132 root->root_key.objectid,
133 trans->transid,
134 inode->i_ino, start, 0,
135 alloc_hint, (u64)-1, &ins, 1);
136 if (ret) {
137 WARN_ON(1);
138 goto out;
139 }
Chris Mason98d20f62008-04-14 09:46:10 -0400140 cur_alloc_size = ins.offset;
Chris Masonc59f8952007-12-17 20:14:04 -0500141 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
142 start, ins.objectid, ins.offset,
143 ins.offset);
Chris Mason90692182008-02-08 13:49:28 -0500144 inode->i_blocks += ins.offset >> 9;
Chris Mason5f564062008-01-22 16:47:59 -0500145 btrfs_check_file(root, inode);
Chris Mason3b951512008-04-17 11:29:12 -0400146 if (num_bytes < cur_alloc_size) {
147 printk("num_bytes %Lu cur_alloc %Lu\n", num_bytes,
148 cur_alloc_size);
149 break;
150 }
Chris Masonc59f8952007-12-17 20:14:04 -0500151 num_bytes -= cur_alloc_size;
152 alloc_hint = ins.objectid + ins.offset;
153 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400154 }
Chris Masond1310b22008-01-24 16:13:08 -0500155 btrfs_drop_extent_cache(inode, orig_start,
156 orig_start + orig_num_bytes - 1);
Chris Masondc17ff82008-01-08 15:46:30 -0500157 btrfs_add_ordered_inode(inode);
Chris Mason90692182008-02-08 13:49:28 -0500158 btrfs_update_inode(trans, root, inode);
Chris Masonb888db22007-08-27 16:49:44 -0400159out:
160 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500161 return ret;
162}
163
164static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
165{
166 u64 extent_start;
167 u64 extent_end;
168 u64 bytenr;
169 u64 cow_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500170 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500171 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500172 struct btrfs_root *root = BTRFS_I(inode)->root;
173 struct extent_buffer *leaf;
174 int found_type;
175 struct btrfs_path *path;
176 struct btrfs_file_extent_item *item;
177 int ret;
178 int err;
179 struct btrfs_key found_key;
180
Chris Masonc31f8832008-01-08 15:46:31 -0500181 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500182 path = btrfs_alloc_path();
183 BUG_ON(!path);
184again:
185 ret = btrfs_lookup_file_extent(NULL, root, path,
186 inode->i_ino, start, 0);
187 if (ret < 0) {
188 btrfs_free_path(path);
189 return ret;
190 }
191
192 cow_end = end;
193 if (ret != 0) {
194 if (path->slots[0] == 0)
195 goto not_found;
196 path->slots[0]--;
197 }
198
199 leaf = path->nodes[0];
200 item = btrfs_item_ptr(leaf, path->slots[0],
201 struct btrfs_file_extent_item);
202
203 /* are we inside the extent that was found? */
204 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
205 found_type = btrfs_key_type(&found_key);
206 if (found_key.objectid != inode->i_ino ||
207 found_type != BTRFS_EXTENT_DATA_KEY) {
208 goto not_found;
209 }
210
211 found_type = btrfs_file_extent_type(leaf, item);
212 extent_start = found_key.offset;
213 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Masonc31f8832008-01-08 15:46:31 -0500214 u64 extent_num_bytes;
215
216 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
217 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500218 err = 0;
219
Chris Mason1832a6d2007-12-21 16:27:21 -0500220 if (loops && start != extent_start)
221 goto not_found;
222
Chris Masonbe20aa92007-12-17 20:14:01 -0500223 if (start < extent_start || start >= extent_end)
224 goto not_found;
225
226 cow_end = min(end, extent_end - 1);
227 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
228 if (bytenr == 0)
229 goto not_found;
230
Chris Masonc31f8832008-01-08 15:46:31 -0500231 /*
232 * we may be called by the resizer, make sure we're inside
233 * the limits of the FS
234 */
235 if (bytenr + extent_num_bytes > total_fs_bytes)
236 goto not_found;
237
Chris Masonbe20aa92007-12-17 20:14:01 -0500238 if (btrfs_count_snapshots_in_path(root, path, bytenr) != 1) {
239 goto not_found;
240 }
241
242 start = extent_end;
Chris Masonbd098352008-01-03 13:23:19 -0500243 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500244 goto not_found;
245 }
246loop:
247 if (start > end) {
248 btrfs_free_path(path);
249 return 0;
250 }
251 btrfs_release_path(root, path);
Chris Mason1832a6d2007-12-21 16:27:21 -0500252 loops++;
Chris Masonbe20aa92007-12-17 20:14:01 -0500253 goto again;
254
255not_found:
256 cow_file_range(inode, start, cow_end);
257 start = cow_end + 1;
258 goto loop;
259}
260
261static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
262{
263 struct btrfs_root *root = BTRFS_I(inode)->root;
264 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -0500265 mutex_lock(&root->fs_info->fs_mutex);
Yanb98b6762008-01-08 15:54:37 -0500266 if (btrfs_test_opt(root, NODATACOW) ||
267 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500268 ret = run_delalloc_nocow(inode, start, end);
269 else
270 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500271
Chris Masonb888db22007-08-27 16:49:44 -0400272 mutex_unlock(&root->fs_info->fs_mutex);
273 return ret;
274}
275
Chris Mason291d6732008-01-29 15:55:23 -0500276int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500277 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500278{
Chris Masonbcbfce82008-04-22 13:26:47 -0400279 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -0500280 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500281 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400282 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -0500283 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -0500284 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonbcbfce82008-04-22 13:26:47 -0400285 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500286 }
287 return 0;
288}
289
290int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500291 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500292{
Chris Masonb0c68f82008-01-31 11:05:37 -0500293 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500294 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400295 unsigned long flags;
296
297 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -0500298 if (end - start + 1 > root->fs_info->delalloc_bytes) {
299 printk("warning: delalloc account %Lu %Lu\n",
300 end - start + 1, root->fs_info->delalloc_bytes);
301 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -0500302 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -0500303 } else {
304 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -0500305 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -0500306 }
Chris Masonbcbfce82008-04-22 13:26:47 -0400307 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500308 }
309 return 0;
310}
311
Chris Mason239b14b2008-03-24 15:02:07 -0400312int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
313 size_t size, struct bio *bio)
314{
315 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
316 struct btrfs_mapping_tree *map_tree;
Chris Mason239b14b2008-03-24 15:02:07 -0400317 u64 logical = bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -0400318 u64 length = 0;
319 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -0400320 int ret;
321
Chris Masonf2d8d742008-04-21 10:03:05 -0400322 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -0400323 map_tree = &root->fs_info->mapping_tree;
324 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -0400325 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -0400326 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -0400327
Chris Mason239b14b2008-03-24 15:02:07 -0400328 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -0400329 return 1;
330 }
331 return 0;
332}
333
Chris Mason44b8bd72008-04-16 11:14:51 -0400334int __btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400335 int mirror_num)
Chris Mason065631f2008-02-20 12:07:25 -0500336{
Chris Mason065631f2008-02-20 12:07:25 -0500337 struct btrfs_root *root = BTRFS_I(inode)->root;
338 struct btrfs_trans_handle *trans;
339 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -0400340 char *sums = NULL;
341
342 ret = btrfs_csum_one_bio(root, bio, &sums);
343 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -0500344
Chris Mason44b8bd72008-04-16 11:14:51 -0400345 mutex_lock(&root->fs_info->fs_mutex);
346 trans = btrfs_start_transaction(root, 1);
Chris Masone0156402008-04-16 11:15:20 -0400347
Chris Mason44b8bd72008-04-16 11:14:51 -0400348 btrfs_set_trans_block_group(trans, inode);
Chris Masone0156402008-04-16 11:15:20 -0400349 btrfs_csum_file_blocks(trans, root, inode, bio, sums);
350
Chris Mason44b8bd72008-04-16 11:14:51 -0400351 ret = btrfs_end_transaction(trans, root);
352 BUG_ON(ret);
353 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masone0156402008-04-16 11:15:20 -0400354
355 kfree(sums);
356
Chris Mason44b8bd72008-04-16 11:14:51 -0400357 return btrfs_map_bio(root, rw, bio, mirror_num);
358}
359
360int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
361 int mirror_num)
362{
363 struct btrfs_root *root = BTRFS_I(inode)->root;
364 int ret = 0;
365
Chris Mason22c59942008-04-09 16:28:12 -0400366 if (!(rw & (1 << BIO_RW))) {
367 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
368 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400369 goto mapit;
370 }
Chris Mason065631f2008-02-20 12:07:25 -0500371
372 if (btrfs_test_opt(root, NODATASUM) ||
Chris Mason0b86a832008-03-24 15:01:56 -0400373 btrfs_test_flag(inode, NODATASUM)) {
374 goto mapit;
375 }
Chris Mason065631f2008-02-20 12:07:25 -0500376
Chris Mason44b8bd72008-04-16 11:14:51 -0400377 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
378 inode, rw, bio, mirror_num,
379 __btrfs_submit_bio_hook);
Chris Mason0b86a832008-03-24 15:01:56 -0400380mapit:
Chris Masonf1885912008-04-09 16:28:12 -0400381 return btrfs_map_bio(root, rw, bio, mirror_num);
Chris Mason065631f2008-02-20 12:07:25 -0500382}
Chris Mason6885f302008-02-20 16:11:05 -0500383
Chris Mason07157aa2007-08-30 08:50:51 -0400384int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
385{
386 int ret = 0;
387 struct inode *inode = page->mapping->host;
388 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500389 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400390 struct btrfs_csum_item *item;
391 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400392 u32 csum;
Chris Mason699122f2008-04-16 12:59:22 -0400393
Yanb98b6762008-01-08 15:54:37 -0500394 if (btrfs_test_opt(root, NODATASUM) ||
395 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500396 return 0;
Chris Mason699122f2008-04-16 12:59:22 -0400397
Chris Mason07157aa2007-08-30 08:50:51 -0400398 mutex_lock(&root->fs_info->fs_mutex);
399 path = btrfs_alloc_path();
400 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
401 if (IS_ERR(item)) {
402 ret = PTR_ERR(item);
403 /* a csum that isn't present is a preallocated region. */
404 if (ret == -ENOENT || ret == -EFBIG)
405 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400406 csum = 0;
Chris Masonaadfeb62008-01-29 09:10:27 -0500407 printk("no csum found for inode %lu start %Lu\n", inode->i_ino, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400408 goto out;
409 }
Chris Masonff79f812007-10-15 16:22:25 -0400410 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
411 BTRFS_CRC32_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -0500412 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400413out:
414 if (path)
415 btrfs_free_path(path);
416 mutex_unlock(&root->fs_info->fs_mutex);
417 return ret;
418}
419
Chris Mason7e383262008-04-09 16:28:12 -0400420struct io_failure_record {
421 struct page *page;
422 u64 start;
423 u64 len;
424 u64 logical;
425 int last_mirror;
426};
427
428int btrfs_readpage_io_failed_hook(struct bio *failed_bio,
429 struct page *page, u64 start, u64 end,
430 struct extent_state *state)
431{
432 struct io_failure_record *failrec = NULL;
433 u64 private;
434 struct extent_map *em;
435 struct inode *inode = page->mapping->host;
436 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -0400437 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -0400438 struct bio *bio;
439 int num_copies;
440 int ret;
441 u64 logical;
442
443 ret = get_state_private(failure_tree, start, &private);
444 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -0400445 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
446 if (!failrec)
447 return -ENOMEM;
448 failrec->start = start;
449 failrec->len = end - start + 1;
450 failrec->last_mirror = 0;
451
Chris Mason3b951512008-04-17 11:29:12 -0400452 spin_lock(&em_tree->lock);
453 em = lookup_extent_mapping(em_tree, start, failrec->len);
454 if (em->start > start || em->start + em->len < start) {
455 free_extent_map(em);
456 em = NULL;
457 }
458 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -0400459
460 if (!em || IS_ERR(em)) {
461 kfree(failrec);
462 return -EIO;
463 }
464 logical = start - em->start;
465 logical = em->block_start + logical;
466 failrec->logical = logical;
467 free_extent_map(em);
468 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
469 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -0400470 set_state_private(failure_tree, start,
471 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -0400472 } else {
Chris Mason587f7702008-04-11 12:16:46 -0400473 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -0400474 }
475 num_copies = btrfs_num_copies(
476 &BTRFS_I(inode)->root->fs_info->mapping_tree,
477 failrec->logical, failrec->len);
478 failrec->last_mirror++;
479 if (!state) {
480 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
481 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
482 failrec->start,
483 EXTENT_LOCKED);
484 if (state && state->start != failrec->start)
485 state = NULL;
486 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
487 }
488 if (!state || failrec->last_mirror > num_copies) {
489 set_state_private(failure_tree, failrec->start, 0);
490 clear_extent_bits(failure_tree, failrec->start,
491 failrec->start + failrec->len - 1,
492 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
493 kfree(failrec);
494 return -EIO;
495 }
496 bio = bio_alloc(GFP_NOFS, 1);
497 bio->bi_private = state;
498 bio->bi_end_io = failed_bio->bi_end_io;
499 bio->bi_sector = failrec->logical >> 9;
500 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -0400501 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -0400502 bio_add_page(bio, page, failrec->len, start - page_offset(page));
503 btrfs_submit_bio_hook(inode, READ, bio, failrec->last_mirror);
504 return 0;
505}
506
Chris Mason70dec802008-01-29 09:59:12 -0500507int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
508 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400509{
Chris Mason35ebb932007-10-30 16:56:53 -0400510 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400511 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500512 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400513 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500514 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400515 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400516 struct btrfs_root *root = BTRFS_I(inode)->root;
517 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400518 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500519
Yanb98b6762008-01-08 15:54:37 -0500520 if (btrfs_test_opt(root, NODATASUM) ||
521 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500522 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500523 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500524 private = state->private;
525 ret = 0;
526 } else {
527 ret = get_state_private(io_tree, start, &private);
528 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400529 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400530 kaddr = kmap_atomic(page, KM_IRQ0);
531 if (ret) {
532 goto zeroit;
533 }
Chris Masonff79f812007-10-15 16:22:25 -0400534 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
535 btrfs_csum_final(csum, (char *)&csum);
536 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400537 goto zeroit;
538 }
539 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400540 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -0400541
542 /* if the io failure tree for this inode is non-empty,
543 * check to see if we've recovered from a failed IO
544 */
545 private = 0;
546 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
547 (u64)-1, 1, EXTENT_DIRTY)) {
548 u64 private_failure;
549 struct io_failure_record *failure;
550 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
551 start, &private_failure);
552 if (ret == 0) {
Chris Mason587f7702008-04-11 12:16:46 -0400553 failure = (struct io_failure_record *)(unsigned long)
554 private_failure;
Chris Mason7e383262008-04-09 16:28:12 -0400555 set_state_private(&BTRFS_I(inode)->io_failure_tree,
556 failure->start, 0);
557 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
558 failure->start,
559 failure->start + failure->len - 1,
560 EXTENT_DIRTY | EXTENT_LOCKED,
561 GFP_NOFS);
562 kfree(failure);
563 }
564 }
Chris Mason07157aa2007-08-30 08:50:51 -0400565 return 0;
566
567zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500568 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
569 page->mapping->host->i_ino, (unsigned long long)start, csum,
570 private);
Chris Masondb945352007-10-15 16:15:53 -0400571 memset(kaddr + offset, 1, end - start + 1);
572 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400573 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400574 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -0400575 if (private == 0)
576 return 0;
Chris Mason7e383262008-04-09 16:28:12 -0400577 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -0400578}
Chris Masonb888db22007-08-27 16:49:44 -0400579
Chris Mason39279cc2007-06-12 06:35:45 -0400580void btrfs_read_locked_inode(struct inode *inode)
581{
582 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400583 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400584 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400585 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400586 struct btrfs_root *root = BTRFS_I(inode)->root;
587 struct btrfs_key location;
588 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400589 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400590 int ret;
591
592 path = btrfs_alloc_path();
593 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400594 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400595 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500596
Chris Mason39279cc2007-06-12 06:35:45 -0400597 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400598 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400599 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400600
Chris Mason5f39d392007-10-15 16:14:19 -0400601 leaf = path->nodes[0];
602 inode_item = btrfs_item_ptr(leaf, path->slots[0],
603 struct btrfs_inode_item);
604
605 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
606 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
607 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
608 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
609 inode->i_size = btrfs_inode_size(leaf, inode_item);
610
611 tspec = btrfs_inode_atime(inode_item);
612 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
613 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
614
615 tspec = btrfs_inode_mtime(inode_item);
616 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
617 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
618
619 tspec = btrfs_inode_ctime(inode_item);
620 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
621 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
622
623 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
624 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400625 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400626 rdev = btrfs_inode_rdev(leaf, inode_item);
627
628 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400629 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
630 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500631 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500632 if (!BTRFS_I(inode)->block_group) {
633 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -0400634 NULL, 0,
635 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -0500636 }
Chris Mason39279cc2007-06-12 06:35:45 -0400637 btrfs_free_path(path);
638 inode_item = NULL;
639
640 mutex_unlock(&root->fs_info->fs_mutex);
641
642 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400643 case S_IFREG:
644 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -0400645 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -0500646 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400647 inode->i_fop = &btrfs_file_operations;
648 inode->i_op = &btrfs_file_inode_operations;
649 break;
650 case S_IFDIR:
651 inode->i_fop = &btrfs_dir_file_operations;
652 if (root == root->fs_info->tree_root)
653 inode->i_op = &btrfs_dir_ro_inode_operations;
654 else
655 inode->i_op = &btrfs_dir_inode_operations;
656 break;
657 case S_IFLNK:
658 inode->i_op = &btrfs_symlink_inode_operations;
659 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -0400660 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -0400661 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400662 default:
663 init_special_inode(inode, inode->i_mode, rdev);
664 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400665 }
666 return;
667
668make_bad:
669 btrfs_release_path(root, path);
670 btrfs_free_path(path);
671 mutex_unlock(&root->fs_info->fs_mutex);
672 make_bad_inode(inode);
673}
674
Chris Mason5f39d392007-10-15 16:14:19 -0400675static void fill_inode_item(struct extent_buffer *leaf,
676 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400677 struct inode *inode)
678{
Chris Mason5f39d392007-10-15 16:14:19 -0400679 btrfs_set_inode_uid(leaf, item, inode->i_uid);
680 btrfs_set_inode_gid(leaf, item, inode->i_gid);
681 btrfs_set_inode_size(leaf, item, inode->i_size);
682 btrfs_set_inode_mode(leaf, item, inode->i_mode);
683 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
684
685 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
686 inode->i_atime.tv_sec);
687 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
688 inode->i_atime.tv_nsec);
689
690 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
691 inode->i_mtime.tv_sec);
692 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
693 inode->i_mtime.tv_nsec);
694
695 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
696 inode->i_ctime.tv_sec);
697 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
698 inode->i_ctime.tv_nsec);
699
700 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
701 btrfs_set_inode_generation(leaf, item, inode->i_generation);
702 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500703 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400704 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400705 BTRFS_I(inode)->block_group->key.objectid);
706}
707
Chris Masona52d9a82007-08-27 16:49:44 -0400708int btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400709 struct btrfs_root *root,
710 struct inode *inode)
711{
712 struct btrfs_inode_item *inode_item;
713 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400714 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400715 int ret;
716
717 path = btrfs_alloc_path();
718 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400719 ret = btrfs_lookup_inode(trans, root, path,
720 &BTRFS_I(inode)->location, 1);
721 if (ret) {
722 if (ret > 0)
723 ret = -ENOENT;
724 goto failed;
725 }
726
Chris Mason5f39d392007-10-15 16:14:19 -0400727 leaf = path->nodes[0];
728 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400729 struct btrfs_inode_item);
730
Chris Mason5f39d392007-10-15 16:14:19 -0400731 fill_inode_item(leaf, inode_item, inode);
732 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400733 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400734 ret = 0;
735failed:
736 btrfs_release_path(root, path);
737 btrfs_free_path(path);
738 return ret;
739}
740
741
742static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
743 struct btrfs_root *root,
744 struct inode *dir,
745 struct dentry *dentry)
746{
747 struct btrfs_path *path;
748 const char *name = dentry->d_name.name;
749 int name_len = dentry->d_name.len;
750 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400751 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400752 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400753 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400754
755 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400756 if (!path) {
757 ret = -ENOMEM;
758 goto err;
759 }
760
Chris Mason39279cc2007-06-12 06:35:45 -0400761 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
762 name, name_len, -1);
763 if (IS_ERR(di)) {
764 ret = PTR_ERR(di);
765 goto err;
766 }
767 if (!di) {
768 ret = -ENOENT;
769 goto err;
770 }
Chris Mason5f39d392007-10-15 16:14:19 -0400771 leaf = path->nodes[0];
772 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400773 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400774 if (ret)
775 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400776 btrfs_release_path(root, path);
777
778 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400779 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400780 if (IS_ERR(di)) {
781 ret = PTR_ERR(di);
782 goto err;
783 }
784 if (!di) {
785 ret = -ENOENT;
786 goto err;
787 }
788 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason39279cc2007-06-12 06:35:45 -0400789
790 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -0500791 ret = btrfs_del_inode_ref(trans, root, name, name_len,
792 dentry->d_inode->i_ino,
793 dentry->d_parent->d_inode->i_ino);
794 if (ret) {
795 printk("failed to delete reference to %.*s, "
796 "inode %lu parent %lu\n", name_len, name,
797 dentry->d_inode->i_ino,
798 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -0500799 }
Chris Mason39279cc2007-06-12 06:35:45 -0400800err:
801 btrfs_free_path(path);
802 if (!ret) {
803 dir->i_size -= name_len * 2;
Chris Mason79c44582007-06-25 10:09:33 -0400804 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400805 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -0500806#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
807 dentry->d_inode->i_nlink--;
808#else
Chris Mason39279cc2007-06-12 06:35:45 -0400809 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -0500810#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400811 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400812 dir->i_sb->s_dirt = 1;
813 }
814 return ret;
815}
816
817static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
818{
819 struct btrfs_root *root;
820 struct btrfs_trans_handle *trans;
Chris Mason2da98f02008-01-16 11:44:43 -0500821 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400822 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -0500823 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400824
825 root = BTRFS_I(dir)->root;
826 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500827
828 ret = btrfs_check_free_space(root, 1, 1);
829 if (ret)
830 goto fail;
831
Chris Mason39279cc2007-06-12 06:35:45 -0400832 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400833
Chris Mason39279cc2007-06-12 06:35:45 -0400834 btrfs_set_trans_block_group(trans, dir);
835 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400836 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400837
Chris Mason2da98f02008-01-16 11:44:43 -0500838 if (inode->i_nlink == 0) {
839 int found;
840 /* if the inode isn't linked anywhere,
841 * we don't need to worry about
842 * data=ordered
843 */
844 found = btrfs_del_ordered_inode(inode);
845 if (found == 1) {
846 atomic_dec(&inode->i_count);
847 }
848 }
849
Chris Mason39279cc2007-06-12 06:35:45 -0400850 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500851fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400852 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400853 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500854 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400855 return ret;
856}
857
858static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
859{
860 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -0500861 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400862 int ret;
863 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -0400864 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -0500865 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400866
Yan134d4512007-10-25 15:49:25 -0400867 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
868 return -ENOTEMPTY;
869
Chris Mason39279cc2007-06-12 06:35:45 -0400870 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500871 ret = btrfs_check_free_space(root, 1, 1);
872 if (ret)
873 goto fail;
874
Chris Mason39279cc2007-06-12 06:35:45 -0400875 trans = btrfs_start_transaction(root, 1);
876 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -0400877
878 /* now the directory is empty */
879 err = btrfs_unlink_trans(trans, root, dir, dentry);
880 if (!err) {
881 inode->i_size = 0;
882 }
Chris Mason39544012007-12-12 14:38:19 -0500883
Chris Masond3c2fdc2007-09-17 10:58:06 -0400884 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400885 ret = btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500886fail:
Yan134d4512007-10-25 15:49:25 -0400887 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400888 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500889 btrfs_throttle(root);
Chris Mason39544012007-12-12 14:38:19 -0500890
Chris Mason39279cc2007-06-12 06:35:45 -0400891 if (ret && !err)
892 err = ret;
893 return err;
894}
895
Chris Mason39279cc2007-06-12 06:35:45 -0400896/*
Chris Mason39279cc2007-06-12 06:35:45 -0400897 * this can truncate away extent items, csum items and directory items.
898 * It starts at a high offset and removes keys until it can't find
899 * any higher than i_size.
900 *
901 * csum items that cross the new i_size are truncated to the new size
902 * as well.
903 */
904static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
905 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -0500906 struct inode *inode,
907 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400908{
909 int ret;
910 struct btrfs_path *path;
911 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400912 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400913 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400914 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400915 struct btrfs_file_extent_item *fi;
916 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400917 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400918 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500919 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500920 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400921 int found_extent;
922 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -0500923 int pending_del_nr = 0;
924 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -0400925 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -0400926 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400927
Chris Mason3b951512008-04-17 11:29:12 -0400928 btrfs_drop_extent_cache(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400929 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400930 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400931 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400932
Chris Mason39279cc2007-06-12 06:35:45 -0400933 /* FIXME, add redo link to tree so we don't leak on crash */
934 key.objectid = inode->i_ino;
935 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400936 key.type = (u8)-1;
937
Chris Mason85e21ba2008-01-29 15:11:36 -0500938 btrfs_init_path(path);
939search_again:
940 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
941 if (ret < 0) {
942 goto error;
943 }
944 if (ret > 0) {
945 BUG_ON(path->slots[0] == 0);
946 path->slots[0]--;
947 }
948
Chris Mason39279cc2007-06-12 06:35:45 -0400949 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -0400950 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400951 leaf = path->nodes[0];
952 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
953 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400954
Chris Mason5f39d392007-10-15 16:14:19 -0400955 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400956 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400957
Chris Mason85e21ba2008-01-29 15:11:36 -0500958 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400959 break;
960
Chris Mason5f39d392007-10-15 16:14:19 -0400961 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400962 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400963 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400964 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400965 extent_type = btrfs_file_extent_type(leaf, fi);
966 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400967 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400968 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400969 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
970 struct btrfs_item *item = btrfs_item_nr(leaf,
971 path->slots[0]);
972 item_end += btrfs_file_extent_inline_len(leaf,
973 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400974 }
Yan008630c2007-11-07 13:31:09 -0500975 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400976 }
977 if (found_type == BTRFS_CSUM_ITEM_KEY) {
978 ret = btrfs_csum_truncate(trans, root, path,
979 inode->i_size);
980 BUG_ON(ret);
981 }
Yan008630c2007-11-07 13:31:09 -0500982 if (item_end < inode->i_size) {
Chris Masonb888db22007-08-27 16:49:44 -0400983 if (found_type == BTRFS_DIR_ITEM_KEY) {
984 found_type = BTRFS_INODE_ITEM_KEY;
985 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
986 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -0500987 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
988 found_type = BTRFS_XATTR_ITEM_KEY;
989 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
990 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -0400991 } else if (found_type) {
992 found_type--;
993 } else {
994 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400995 }
Yana61721d2007-09-17 11:08:38 -0400996 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -0500997 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -0400998 }
Chris Mason5f39d392007-10-15 16:14:19 -0400999 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -04001000 del_item = 1;
1001 else
1002 del_item = 0;
1003 found_extent = 0;
1004
1005 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001006 if (found_type != BTRFS_EXTENT_DATA_KEY)
1007 goto delete;
1008
1009 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001010 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001011 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001012 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001013 u64 orig_num_bytes =
1014 btrfs_file_extent_num_bytes(leaf, fi);
1015 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001016 found_key.offset + root->sectorsize - 1;
Yanb1632b102008-01-30 11:54:04 -05001017 extent_num_bytes = extent_num_bytes &
1018 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001019 btrfs_set_file_extent_num_bytes(leaf, fi,
1020 extent_num_bytes);
1021 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001022 extent_num_bytes);
1023 if (extent_start != 0)
1024 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001025 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001026 } else {
Chris Masondb945352007-10-15 16:15:53 -04001027 extent_num_bytes =
1028 btrfs_file_extent_disk_num_bytes(leaf,
1029 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001030 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001031 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001032 if (extent_start != 0) {
1033 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -05001034 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001035 }
Chris Masond8d5f3e2007-12-11 12:42:00 -05001036 root_gen = btrfs_header_generation(leaf);
1037 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001038 }
Chris Mason90692182008-02-08 13:49:28 -05001039 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1040 if (!del_item) {
1041 u32 newsize = inode->i_size - found_key.offset;
1042 dec_i_blocks(inode, item_end + 1 -
1043 found_key.offset - newsize);
1044 newsize =
1045 btrfs_file_extent_calc_inline_size(newsize);
1046 ret = btrfs_truncate_item(trans, root, path,
1047 newsize, 1);
1048 BUG_ON(ret);
1049 } else {
1050 dec_i_blocks(inode, item_end + 1 -
1051 found_key.offset);
1052 }
Chris Mason39279cc2007-06-12 06:35:45 -04001053 }
Chris Mason179e29e2007-11-01 11:28:41 -04001054delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001055 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001056 if (!pending_del_nr) {
1057 /* no pending yet, add ourselves */
1058 pending_del_slot = path->slots[0];
1059 pending_del_nr = 1;
1060 } else if (pending_del_nr &&
1061 path->slots[0] + 1 == pending_del_slot) {
1062 /* hop on the pending chunk */
1063 pending_del_nr++;
1064 pending_del_slot = path->slots[0];
1065 } else {
1066 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1067 }
Chris Mason39279cc2007-06-12 06:35:45 -04001068 } else {
1069 break;
1070 }
Chris Mason39279cc2007-06-12 06:35:45 -04001071 if (found_extent) {
1072 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001073 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -05001074 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001075 root_gen, inode->i_ino,
1076 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001077 BUG_ON(ret);
1078 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001079next:
1080 if (path->slots[0] == 0) {
1081 if (pending_del_nr)
1082 goto del_pending;
1083 btrfs_release_path(root, path);
1084 goto search_again;
1085 }
1086
1087 path->slots[0]--;
1088 if (pending_del_nr &&
1089 path->slots[0] + 1 != pending_del_slot) {
1090 struct btrfs_key debug;
1091del_pending:
1092 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1093 pending_del_slot);
1094 ret = btrfs_del_items(trans, root, path,
1095 pending_del_slot,
1096 pending_del_nr);
1097 BUG_ON(ret);
1098 pending_del_nr = 0;
1099 btrfs_release_path(root, path);
1100 goto search_again;
1101 }
Chris Mason39279cc2007-06-12 06:35:45 -04001102 }
1103 ret = 0;
1104error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001105 if (pending_del_nr) {
1106 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1107 pending_del_nr);
1108 }
Chris Mason39279cc2007-06-12 06:35:45 -04001109 btrfs_release_path(root, path);
1110 btrfs_free_path(path);
1111 inode->i_sb->s_dirt = 1;
1112 return ret;
1113}
1114
Chris Masonb888db22007-08-27 16:49:44 -04001115static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -04001116 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001117{
Chris Mason39279cc2007-06-12 06:35:45 -04001118 char *kaddr;
Chris Masond1310b22008-01-24 16:13:08 -05001119 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason35ebb932007-10-30 16:56:53 -04001120 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db22007-08-27 16:49:44 -04001121 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -05001122 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001123
Chris Mason190662b2007-12-18 16:25:45 -05001124 WARN_ON(!PageLocked(page));
Christoph Hellwigb3cfa352007-09-17 11:25:58 -04001125 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001126
Chris Masond1310b22008-01-24 16:13:08 -05001127 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001128 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
Chris Masonb888db22007-08-27 16:49:44 -04001129 page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -05001130
Chris Masona52d9a82007-08-27 16:49:44 -04001131 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db22007-08-27 16:49:44 -04001132 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001133 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
1134 flush_dcache_page(page);
Chris Masonb888db22007-08-27 16:49:44 -04001135 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001136 }
Chris Masonb888db22007-08-27 16:49:44 -04001137 set_page_dirty(page);
Chris Masond1310b22008-01-24 16:13:08 -05001138 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001139
Chris Masona52d9a82007-08-27 16:49:44 -04001140 return ret;
1141}
1142
1143/*
1144 * taken from block_truncate_page, but does cow as it zeros out
1145 * any bytes left in the last page in the file.
1146 */
1147static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1148{
1149 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001150 struct btrfs_root *root = BTRFS_I(inode)->root;
1151 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001152 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1153 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1154 struct page *page;
1155 int ret = 0;
1156 u64 page_start;
1157
1158 if ((offset & (blocksize - 1)) == 0)
1159 goto out;
1160
1161 ret = -ENOMEM;
1162 page = grab_cache_page(mapping, index);
1163 if (!page)
1164 goto out;
1165 if (!PageUptodate(page)) {
1166 ret = btrfs_readpage(NULL, page);
1167 lock_page(page);
1168 if (!PageUptodate(page)) {
1169 ret = -EIO;
1170 goto out;
1171 }
1172 }
Chris Mason35ebb932007-10-30 16:56:53 -04001173 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04001174
Chris Masonb888db22007-08-27 16:49:44 -04001175 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -04001176
Chris Mason39279cc2007-06-12 06:35:45 -04001177 unlock_page(page);
1178 page_cache_release(page);
1179out:
1180 return ret;
1181}
1182
1183static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1184{
1185 struct inode *inode = dentry->d_inode;
1186 int err;
1187
1188 err = inode_change_ok(inode, attr);
1189 if (err)
1190 return err;
1191
1192 if (S_ISREG(inode->i_mode) &&
1193 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1194 struct btrfs_trans_handle *trans;
1195 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001196 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001197
Chris Mason5f39d392007-10-15 16:14:19 -04001198 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001199 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001200 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001201 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001202 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001203
Chris Mason1b0f7c22008-01-30 14:33:02 -05001204 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001205 goto out;
1206
Chris Mason1832a6d2007-12-21 16:27:21 -05001207 mutex_lock(&root->fs_info->fs_mutex);
1208 err = btrfs_check_free_space(root, 1, 0);
1209 mutex_unlock(&root->fs_info->fs_mutex);
1210 if (err)
1211 goto fail;
1212
Chris Mason39279cc2007-06-12 06:35:45 -04001213 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1214
Chris Mason1b0f7c22008-01-30 14:33:02 -05001215 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason5f564062008-01-22 16:47:59 -05001216 hole_size = block_end - hole_start;
Chris Mason39279cc2007-06-12 06:35:45 -04001217
1218 mutex_lock(&root->fs_info->fs_mutex);
1219 trans = btrfs_start_transaction(root, 1);
1220 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -04001221 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001222 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001223 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001224
Chris Mason179e29e2007-11-01 11:28:41 -04001225 if (alloc_hint != EXTENT_MAP_INLINE) {
1226 err = btrfs_insert_file_extent(trans, root,
1227 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001228 hole_start, 0, 0,
1229 hole_size);
Chris Masond1310b22008-01-24 16:13:08 -05001230 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001231 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001232 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001233 }
Chris Mason39279cc2007-06-12 06:35:45 -04001234 btrfs_end_transaction(trans, root);
1235 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001236 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001237 if (err)
1238 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001239 }
1240out:
1241 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001242fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001243 return err;
1244}
Chris Mason61295eb2008-01-14 16:24:38 -05001245
Chris Mason2da98f02008-01-16 11:44:43 -05001246void btrfs_put_inode(struct inode *inode)
Chris Mason61295eb2008-01-14 16:24:38 -05001247{
Chris Mason2da98f02008-01-16 11:44:43 -05001248 int ret;
1249
1250 if (!BTRFS_I(inode)->ordered_trans) {
Chris Mason61295eb2008-01-14 16:24:38 -05001251 return;
1252 }
Chris Mason2da98f02008-01-16 11:44:43 -05001253
1254 if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_DIRTY) ||
1255 mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1256 return;
1257
1258 ret = btrfs_del_ordered_inode(inode);
1259 if (ret == 1) {
1260 atomic_dec(&inode->i_count);
1261 }
Chris Mason61295eb2008-01-14 16:24:38 -05001262}
1263
Chris Mason39279cc2007-06-12 06:35:45 -04001264void btrfs_delete_inode(struct inode *inode)
1265{
1266 struct btrfs_trans_handle *trans;
1267 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdc2007-09-17 10:58:06 -04001268 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001269 int ret;
1270
1271 truncate_inode_pages(&inode->i_data, 0);
1272 if (is_bad_inode(inode)) {
1273 goto no_delete;
1274 }
Chris Mason5f39d392007-10-15 16:14:19 -04001275
Chris Mason39279cc2007-06-12 06:35:45 -04001276 inode->i_size = 0;
1277 mutex_lock(&root->fs_info->fs_mutex);
1278 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001279
Chris Mason39279cc2007-06-12 06:35:45 -04001280 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001281 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001282 if (ret)
1283 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001284
Chris Masond3c2fdc2007-09-17 10:58:06 -04001285 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001286 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001287
Chris Mason39279cc2007-06-12 06:35:45 -04001288 btrfs_end_transaction(trans, root);
1289 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04001290 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001291 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001292 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001293
1294no_delete_lock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04001295 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001296 btrfs_end_transaction(trans, root);
1297 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04001298 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001299 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001300no_delete:
1301 clear_inode(inode);
1302}
1303
1304/*
1305 * this returns the key found in the dir entry in the location pointer.
1306 * If no dir entries were found, location->objectid is 0.
1307 */
1308static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1309 struct btrfs_key *location)
1310{
1311 const char *name = dentry->d_name.name;
1312 int namelen = dentry->d_name.len;
1313 struct btrfs_dir_item *di;
1314 struct btrfs_path *path;
1315 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001316 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001317
Chris Mason39544012007-12-12 14:38:19 -05001318 if (namelen == 1 && strcmp(name, ".") == 0) {
1319 location->objectid = dir->i_ino;
1320 location->type = BTRFS_INODE_ITEM_KEY;
1321 location->offset = 0;
1322 return 0;
1323 }
Chris Mason39279cc2007-06-12 06:35:45 -04001324 path = btrfs_alloc_path();
1325 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001326
Chris Mason7a720532007-12-13 09:06:59 -05001327 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001328 struct btrfs_key key;
1329 struct extent_buffer *leaf;
1330 u32 nritems;
1331 int slot;
1332
1333 key.objectid = dir->i_ino;
1334 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1335 key.offset = 0;
1336 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1337 BUG_ON(ret == 0);
1338 ret = 0;
1339
1340 leaf = path->nodes[0];
1341 slot = path->slots[0];
1342 nritems = btrfs_header_nritems(leaf);
1343 if (slot >= nritems)
1344 goto out_err;
1345
1346 btrfs_item_key_to_cpu(leaf, &key, slot);
1347 if (key.objectid != dir->i_ino ||
1348 key.type != BTRFS_INODE_REF_KEY) {
1349 goto out_err;
1350 }
1351 location->objectid = key.offset;
1352 location->type = BTRFS_INODE_ITEM_KEY;
1353 location->offset = 0;
1354 goto out;
1355 }
1356
Chris Mason39279cc2007-06-12 06:35:45 -04001357 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1358 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001359 if (IS_ERR(di))
1360 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001361 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001362 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001363 }
Chris Mason5f39d392007-10-15 16:14:19 -04001364 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001365out:
Chris Mason39279cc2007-06-12 06:35:45 -04001366 btrfs_free_path(path);
1367 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001368out_err:
1369 location->objectid = 0;
1370 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001371}
1372
1373/*
1374 * when we hit a tree root in a directory, the btrfs part of the inode
1375 * needs to be changed to reflect the root directory of the tree root. This
1376 * is kind of like crossing a mount point.
1377 */
1378static int fixup_tree_root_location(struct btrfs_root *root,
1379 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001380 struct btrfs_root **sub_root,
1381 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001382{
1383 struct btrfs_path *path;
1384 struct btrfs_root_item *ri;
1385
1386 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1387 return 0;
1388 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1389 return 0;
1390
1391 path = btrfs_alloc_path();
1392 BUG_ON(!path);
1393 mutex_lock(&root->fs_info->fs_mutex);
1394
Josef Bacik58176a92007-08-29 15:47:34 -04001395 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1396 dentry->d_name.name,
1397 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001398 if (IS_ERR(*sub_root))
1399 return PTR_ERR(*sub_root);
1400
1401 ri = &(*sub_root)->root_item;
1402 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001403 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1404 location->offset = 0;
1405
1406 btrfs_free_path(path);
1407 mutex_unlock(&root->fs_info->fs_mutex);
1408 return 0;
1409}
1410
1411static int btrfs_init_locked_inode(struct inode *inode, void *p)
1412{
1413 struct btrfs_iget_args *args = p;
1414 inode->i_ino = args->ino;
1415 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001416 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001417 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1418 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001419 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001420 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1421 inode->i_mapping, GFP_NOFS);
Chris Mason81d7ed22008-04-25 08:51:48 -04001422 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001423 return 0;
1424}
1425
1426static int btrfs_find_actor(struct inode *inode, void *opaque)
1427{
1428 struct btrfs_iget_args *args = opaque;
1429 return (args->ino == inode->i_ino &&
1430 args->root == BTRFS_I(inode)->root);
1431}
1432
Chris Masondc17ff82008-01-08 15:46:30 -05001433struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1434 u64 root_objectid)
1435{
1436 struct btrfs_iget_args args;
1437 args.ino = objectid;
1438 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1439
1440 if (!args.root)
1441 return NULL;
1442
1443 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1444}
1445
Chris Mason39279cc2007-06-12 06:35:45 -04001446struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1447 struct btrfs_root *root)
1448{
1449 struct inode *inode;
1450 struct btrfs_iget_args args;
1451 args.ino = objectid;
1452 args.root = root;
1453
1454 inode = iget5_locked(s, objectid, btrfs_find_actor,
1455 btrfs_init_locked_inode,
1456 (void *)&args);
1457 return inode;
1458}
1459
1460static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1461 struct nameidata *nd)
1462{
1463 struct inode * inode;
1464 struct btrfs_inode *bi = BTRFS_I(dir);
1465 struct btrfs_root *root = bi->root;
1466 struct btrfs_root *sub_root = root;
1467 struct btrfs_key location;
1468 int ret;
1469
1470 if (dentry->d_name.len > BTRFS_NAME_LEN)
1471 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001472
Chris Mason39279cc2007-06-12 06:35:45 -04001473 mutex_lock(&root->fs_info->fs_mutex);
1474 ret = btrfs_inode_by_name(dir, dentry, &location);
1475 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001476
Chris Mason39279cc2007-06-12 06:35:45 -04001477 if (ret < 0)
1478 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001479
Chris Mason39279cc2007-06-12 06:35:45 -04001480 inode = NULL;
1481 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001482 ret = fixup_tree_root_location(root, &location, &sub_root,
1483 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001484 if (ret < 0)
1485 return ERR_PTR(ret);
1486 if (ret > 0)
1487 return ERR_PTR(-ENOENT);
1488 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1489 sub_root);
1490 if (!inode)
1491 return ERR_PTR(-EACCES);
1492 if (inode->i_state & I_NEW) {
1493 /* the inode and parent dir are two different roots */
1494 if (sub_root != root) {
1495 igrab(inode);
1496 sub_root->inode = inode;
1497 }
1498 BTRFS_I(inode)->root = sub_root;
1499 memcpy(&BTRFS_I(inode)->location, &location,
1500 sizeof(location));
1501 btrfs_read_locked_inode(inode);
1502 unlock_new_inode(inode);
1503 }
1504 }
1505 return d_splice_alias(inode, dentry);
1506}
1507
Chris Mason39279cc2007-06-12 06:35:45 -04001508static unsigned char btrfs_filetype_table[] = {
1509 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1510};
1511
1512static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1513{
Chris Mason6da6aba2007-12-18 16:15:09 -05001514 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001515 struct btrfs_root *root = BTRFS_I(inode)->root;
1516 struct btrfs_item *item;
1517 struct btrfs_dir_item *di;
1518 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001519 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001520 struct btrfs_path *path;
1521 int ret;
1522 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001523 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001524 int slot;
1525 int advance;
1526 unsigned char d_type;
1527 int over = 0;
1528 u32 di_cur;
1529 u32 di_total;
1530 u32 di_len;
1531 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001532 char tmp_name[32];
1533 char *name_ptr;
1534 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001535
1536 /* FIXME, use a real flag for deciding about the key type */
1537 if (root->fs_info->tree_root == root)
1538 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001539
Chris Mason39544012007-12-12 14:38:19 -05001540 /* special case for "." */
1541 if (filp->f_pos == 0) {
1542 over = filldir(dirent, ".", 1,
1543 1, inode->i_ino,
1544 DT_DIR);
1545 if (over)
1546 return 0;
1547 filp->f_pos = 1;
1548 }
1549
Chris Mason39279cc2007-06-12 06:35:45 -04001550 mutex_lock(&root->fs_info->fs_mutex);
1551 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001552 path = btrfs_alloc_path();
1553 path->reada = 2;
1554
1555 /* special case for .., just use the back ref */
1556 if (filp->f_pos == 1) {
1557 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1558 key.offset = 0;
1559 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1560 BUG_ON(ret == 0);
1561 leaf = path->nodes[0];
1562 slot = path->slots[0];
1563 nritems = btrfs_header_nritems(leaf);
1564 if (slot >= nritems) {
1565 btrfs_release_path(root, path);
1566 goto read_dir_items;
1567 }
1568 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1569 btrfs_release_path(root, path);
1570 if (found_key.objectid != key.objectid ||
1571 found_key.type != BTRFS_INODE_REF_KEY)
1572 goto read_dir_items;
1573 over = filldir(dirent, "..", 2,
1574 2, found_key.offset, DT_DIR);
1575 if (over)
1576 goto nopos;
1577 filp->f_pos = 2;
1578 }
1579
1580read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001581 btrfs_set_key_type(&key, key_type);
1582 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001583
Chris Mason39279cc2007-06-12 06:35:45 -04001584 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1585 if (ret < 0)
1586 goto err;
1587 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001588 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001589 leaf = path->nodes[0];
1590 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001591 slot = path->slots[0];
1592 if (advance || slot >= nritems) {
1593 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001594 ret = btrfs_next_leaf(root, path);
1595 if (ret)
1596 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001597 leaf = path->nodes[0];
1598 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001599 slot = path->slots[0];
1600 } else {
1601 slot++;
1602 path->slots[0]++;
1603 }
1604 }
1605 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001606 item = btrfs_item_nr(leaf, slot);
1607 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1608
1609 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001610 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001611 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001612 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001613 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001614 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001615
1616 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001617 advance = 1;
1618 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1619 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001620 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001621 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001622 struct btrfs_key location;
1623
1624 name_len = btrfs_dir_name_len(leaf, di);
1625 if (name_len < 32) {
1626 name_ptr = tmp_name;
1627 } else {
1628 name_ptr = kmalloc(name_len, GFP_NOFS);
1629 BUG_ON(!name_ptr);
1630 }
1631 read_extent_buffer(leaf, name_ptr,
1632 (unsigned long)(di + 1), name_len);
1633
1634 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1635 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001636 over = filldir(dirent, name_ptr, name_len,
1637 found_key.offset,
1638 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001639 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001640
1641 if (name_ptr != tmp_name)
1642 kfree(name_ptr);
1643
Chris Mason39279cc2007-06-12 06:35:45 -04001644 if (over)
1645 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001646 di_len = btrfs_dir_name_len(leaf, di) +
1647 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001648 di_cur += di_len;
1649 di = (struct btrfs_dir_item *)((char *)di + di_len);
1650 }
1651 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001652 if (key_type == BTRFS_DIR_INDEX_KEY)
1653 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1654 else
1655 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001656nopos:
1657 ret = 0;
1658err:
1659 btrfs_release_path(root, path);
1660 btrfs_free_path(path);
1661 mutex_unlock(&root->fs_info->fs_mutex);
1662 return ret;
1663}
1664
1665int btrfs_write_inode(struct inode *inode, int wait)
1666{
1667 struct btrfs_root *root = BTRFS_I(inode)->root;
1668 struct btrfs_trans_handle *trans;
1669 int ret = 0;
1670
1671 if (wait) {
1672 mutex_lock(&root->fs_info->fs_mutex);
1673 trans = btrfs_start_transaction(root, 1);
1674 btrfs_set_trans_block_group(trans, inode);
1675 ret = btrfs_commit_transaction(trans, root);
1676 mutex_unlock(&root->fs_info->fs_mutex);
1677 }
1678 return ret;
1679}
1680
1681/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001682 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001683 * inode changes. But, it is most likely to find the inode in cache.
1684 * FIXME, needs more benchmarking...there are no reasons other than performance
1685 * to keep or drop this code.
1686 */
1687void btrfs_dirty_inode(struct inode *inode)
1688{
1689 struct btrfs_root *root = BTRFS_I(inode)->root;
1690 struct btrfs_trans_handle *trans;
1691
1692 mutex_lock(&root->fs_info->fs_mutex);
1693 trans = btrfs_start_transaction(root, 1);
1694 btrfs_set_trans_block_group(trans, inode);
1695 btrfs_update_inode(trans, root, inode);
1696 btrfs_end_transaction(trans, root);
1697 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001698}
1699
1700static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1701 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001702 const char *name, int name_len,
1703 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001704 u64 objectid,
1705 struct btrfs_block_group_cache *group,
1706 int mode)
1707{
1708 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001709 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04001710 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04001711 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001712 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001713 struct btrfs_inode_ref *ref;
1714 struct btrfs_key key[2];
1715 u32 sizes[2];
1716 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001717 int ret;
1718 int owner;
1719
Chris Mason5f39d392007-10-15 16:14:19 -04001720 path = btrfs_alloc_path();
1721 BUG_ON(!path);
1722
Chris Mason39279cc2007-06-12 06:35:45 -04001723 inode = new_inode(root->fs_info->sb);
1724 if (!inode)
1725 return ERR_PTR(-ENOMEM);
1726
Chris Masond1310b22008-01-24 16:13:08 -05001727 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1728 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001729 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001730 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1731 inode->i_mapping, GFP_NOFS);
Chris Mason81d7ed22008-04-25 08:51:48 -04001732 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Mason90692182008-02-08 13:49:28 -05001733 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001734 BTRFS_I(inode)->root = root;
Chris Masonb888db22007-08-27 16:49:44 -04001735
Chris Mason39279cc2007-06-12 06:35:45 -04001736 if (mode & S_IFDIR)
1737 owner = 0;
1738 else
1739 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04001740 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001741 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04001742 if (!new_inode_group) {
1743 printk("find_block group failed\n");
1744 new_inode_group = group;
1745 }
1746 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05001747 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001748
1749 key[0].objectid = objectid;
1750 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1751 key[0].offset = 0;
1752
1753 key[1].objectid = objectid;
1754 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1755 key[1].offset = ref_objectid;
1756
1757 sizes[0] = sizeof(struct btrfs_inode_item);
1758 sizes[1] = name_len + sizeof(*ref);
1759
1760 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1761 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001762 goto fail;
1763
Chris Mason9c583092008-01-29 15:15:18 -05001764 if (objectid > root->highest_inode)
1765 root->highest_inode = objectid;
1766
Chris Mason39279cc2007-06-12 06:35:45 -04001767 inode->i_uid = current->fsuid;
1768 inode->i_gid = current->fsgid;
1769 inode->i_mode = mode;
1770 inode->i_ino = objectid;
1771 inode->i_blocks = 0;
1772 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001773 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1774 struct btrfs_inode_item);
1775 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001776
1777 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1778 struct btrfs_inode_ref);
1779 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1780 ptr = (unsigned long)(ref + 1);
1781 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1782
Chris Mason5f39d392007-10-15 16:14:19 -04001783 btrfs_mark_buffer_dirty(path->nodes[0]);
1784 btrfs_free_path(path);
1785
Chris Mason39279cc2007-06-12 06:35:45 -04001786 location = &BTRFS_I(inode)->location;
1787 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001788 location->offset = 0;
1789 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1790
Chris Mason39279cc2007-06-12 06:35:45 -04001791 insert_inode_hash(inode);
1792 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001793fail:
1794 btrfs_free_path(path);
1795 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001796}
1797
1798static inline u8 btrfs_inode_type(struct inode *inode)
1799{
1800 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1801}
1802
1803static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001804 struct dentry *dentry, struct inode *inode,
1805 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001806{
1807 int ret;
1808 struct btrfs_key key;
1809 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001810 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001811
Chris Mason39279cc2007-06-12 06:35:45 -04001812 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001813 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1814 key.offset = 0;
1815
1816 ret = btrfs_insert_dir_item(trans, root,
1817 dentry->d_name.name, dentry->d_name.len,
1818 dentry->d_parent->d_inode->i_ino,
1819 &key, btrfs_inode_type(inode));
1820 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05001821 if (add_backref) {
1822 ret = btrfs_insert_inode_ref(trans, root,
1823 dentry->d_name.name,
1824 dentry->d_name.len,
1825 inode->i_ino,
1826 dentry->d_parent->d_inode->i_ino);
1827 }
Chris Mason79c44582007-06-25 10:09:33 -04001828 parent_inode = dentry->d_parent->d_inode;
1829 parent_inode->i_size += dentry->d_name.len * 2;
1830 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001831 ret = btrfs_update_inode(trans, root,
1832 dentry->d_parent->d_inode);
1833 }
1834 return ret;
1835}
1836
1837static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001838 struct dentry *dentry, struct inode *inode,
1839 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001840{
Chris Mason9c583092008-01-29 15:15:18 -05001841 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04001842 if (!err) {
1843 d_instantiate(dentry, inode);
1844 return 0;
1845 }
1846 if (err > 0)
1847 err = -EEXIST;
1848 return err;
1849}
1850
Josef Bacik618e21d2007-07-11 10:18:17 -04001851static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1852 int mode, dev_t rdev)
1853{
1854 struct btrfs_trans_handle *trans;
1855 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001856 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04001857 int err;
1858 int drop_inode = 0;
1859 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05001860 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04001861
1862 if (!new_valid_dev(rdev))
1863 return -EINVAL;
1864
1865 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001866 err = btrfs_check_free_space(root, 1, 0);
1867 if (err)
1868 goto fail;
1869
Josef Bacik618e21d2007-07-11 10:18:17 -04001870 trans = btrfs_start_transaction(root, 1);
1871 btrfs_set_trans_block_group(trans, dir);
1872
1873 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1874 if (err) {
1875 err = -ENOSPC;
1876 goto out_unlock;
1877 }
1878
Chris Mason9c583092008-01-29 15:15:18 -05001879 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1880 dentry->d_name.len,
1881 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04001882 BTRFS_I(dir)->block_group, mode);
1883 err = PTR_ERR(inode);
1884 if (IS_ERR(inode))
1885 goto out_unlock;
1886
1887 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001888 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04001889 if (err)
1890 drop_inode = 1;
1891 else {
1892 inode->i_op = &btrfs_special_inode_operations;
1893 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001894 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001895 }
1896 dir->i_sb->s_dirt = 1;
1897 btrfs_update_inode_block_group(trans, inode);
1898 btrfs_update_inode_block_group(trans, dir);
1899out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04001900 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001901 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001902fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04001903 mutex_unlock(&root->fs_info->fs_mutex);
1904
1905 if (drop_inode) {
1906 inode_dec_link_count(inode);
1907 iput(inode);
1908 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04001909 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001910 btrfs_throttle(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04001911 return err;
1912}
1913
Chris Mason39279cc2007-06-12 06:35:45 -04001914static int btrfs_create(struct inode *dir, struct dentry *dentry,
1915 int mode, struct nameidata *nd)
1916{
1917 struct btrfs_trans_handle *trans;
1918 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001919 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001920 int err;
1921 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05001922 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001923 u64 objectid;
1924
1925 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001926 err = btrfs_check_free_space(root, 1, 0);
1927 if (err)
1928 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001929 trans = btrfs_start_transaction(root, 1);
1930 btrfs_set_trans_block_group(trans, dir);
1931
1932 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1933 if (err) {
1934 err = -ENOSPC;
1935 goto out_unlock;
1936 }
1937
Chris Mason9c583092008-01-29 15:15:18 -05001938 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1939 dentry->d_name.len,
1940 dentry->d_parent->d_inode->i_ino,
1941 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04001942 err = PTR_ERR(inode);
1943 if (IS_ERR(inode))
1944 goto out_unlock;
1945
1946 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001947 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001948 if (err)
1949 drop_inode = 1;
1950 else {
1951 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001952 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001953 inode->i_fop = &btrfs_file_operations;
1954 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05001955 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1956 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04001957 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001958 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1959 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001960 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason81d7ed22008-04-25 08:51:48 -04001961 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001962 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001963 }
1964 dir->i_sb->s_dirt = 1;
1965 btrfs_update_inode_block_group(trans, inode);
1966 btrfs_update_inode_block_group(trans, dir);
1967out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04001968 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001969 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001970fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001971 mutex_unlock(&root->fs_info->fs_mutex);
1972
1973 if (drop_inode) {
1974 inode_dec_link_count(inode);
1975 iput(inode);
1976 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04001977 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001978 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001979 return err;
1980}
1981
1982static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1983 struct dentry *dentry)
1984{
1985 struct btrfs_trans_handle *trans;
1986 struct btrfs_root *root = BTRFS_I(dir)->root;
1987 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001988 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001989 int err;
1990 int drop_inode = 0;
1991
1992 if (inode->i_nlink == 0)
1993 return -ENOENT;
1994
Chris Mason6da6aba2007-12-18 16:15:09 -05001995#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1996 inode->i_nlink++;
1997#else
Chris Mason39279cc2007-06-12 06:35:45 -04001998 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001999#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002000 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002001 err = btrfs_check_free_space(root, 1, 0);
2002 if (err)
2003 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002004 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002005
Chris Mason39279cc2007-06-12 06:35:45 -04002006 btrfs_set_trans_block_group(trans, dir);
2007 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05002008 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002009
Chris Mason39279cc2007-06-12 06:35:45 -04002010 if (err)
2011 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002012
Chris Mason39279cc2007-06-12 06:35:45 -04002013 dir->i_sb->s_dirt = 1;
2014 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002015 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002016
Chris Mason54aa1f42007-06-22 14:16:25 -04002017 if (err)
2018 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002019
Chris Masond3c2fdc2007-09-17 10:58:06 -04002020 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002021 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002022fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002023 mutex_unlock(&root->fs_info->fs_mutex);
2024
2025 if (drop_inode) {
2026 inode_dec_link_count(inode);
2027 iput(inode);
2028 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04002029 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002030 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002031 return err;
2032}
2033
Chris Mason39279cc2007-06-12 06:35:45 -04002034static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2035{
2036 struct inode *inode;
2037 struct btrfs_trans_handle *trans;
2038 struct btrfs_root *root = BTRFS_I(dir)->root;
2039 int err = 0;
2040 int drop_on_err = 0;
2041 u64 objectid;
Chris Masond3c2fdc2007-09-17 10:58:06 -04002042 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002043
2044 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002045 err = btrfs_check_free_space(root, 1, 0);
2046 if (err)
2047 goto out_unlock;
2048
Chris Mason39279cc2007-06-12 06:35:45 -04002049 trans = btrfs_start_transaction(root, 1);
2050 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002051
Chris Mason39279cc2007-06-12 06:35:45 -04002052 if (IS_ERR(trans)) {
2053 err = PTR_ERR(trans);
2054 goto out_unlock;
2055 }
2056
2057 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2058 if (err) {
2059 err = -ENOSPC;
2060 goto out_unlock;
2061 }
2062
Chris Mason9c583092008-01-29 15:15:18 -05002063 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2064 dentry->d_name.len,
2065 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002066 BTRFS_I(dir)->block_group, S_IFDIR | mode);
2067 if (IS_ERR(inode)) {
2068 err = PTR_ERR(inode);
2069 goto out_fail;
2070 }
Chris Mason5f39d392007-10-15 16:14:19 -04002071
Chris Mason39279cc2007-06-12 06:35:45 -04002072 drop_on_err = 1;
2073 inode->i_op = &btrfs_dir_inode_operations;
2074 inode->i_fop = &btrfs_dir_file_operations;
2075 btrfs_set_trans_block_group(trans, inode);
2076
Chris Mason39544012007-12-12 14:38:19 -05002077 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002078 err = btrfs_update_inode(trans, root, inode);
2079 if (err)
2080 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002081
Chris Mason9c583092008-01-29 15:15:18 -05002082 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002083 if (err)
2084 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002085
Chris Mason39279cc2007-06-12 06:35:45 -04002086 d_instantiate(dentry, inode);
2087 drop_on_err = 0;
2088 dir->i_sb->s_dirt = 1;
2089 btrfs_update_inode_block_group(trans, inode);
2090 btrfs_update_inode_block_group(trans, dir);
2091
2092out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04002093 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002094 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002095
Chris Mason39279cc2007-06-12 06:35:45 -04002096out_unlock:
2097 mutex_unlock(&root->fs_info->fs_mutex);
2098 if (drop_on_err)
2099 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002100 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002101 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002102 return err;
2103}
2104
Chris Mason3b951512008-04-17 11:29:12 -04002105static int merge_extent_mapping(struct extent_map_tree *em_tree,
2106 struct extent_map *existing,
2107 struct extent_map *em)
2108{
2109 u64 start_diff;
2110 u64 new_end;
2111 int ret = 0;
2112 int real_blocks = existing->block_start < EXTENT_MAP_LAST_BYTE;
2113
2114 if (real_blocks && em->block_start >= EXTENT_MAP_LAST_BYTE)
2115 goto invalid;
2116
2117 if (!real_blocks && em->block_start != existing->block_start)
2118 goto invalid;
2119
2120 new_end = max(existing->start + existing->len, em->start + em->len);
2121
2122 if (existing->start >= em->start) {
2123 if (em->start + em->len < existing->start)
2124 goto invalid;
2125
2126 start_diff = existing->start - em->start;
2127 if (real_blocks && em->block_start + start_diff !=
2128 existing->block_start)
2129 goto invalid;
2130
2131 em->len = new_end - em->start;
2132
2133 remove_extent_mapping(em_tree, existing);
2134 /* free for the tree */
2135 free_extent_map(existing);
2136 ret = add_extent_mapping(em_tree, em);
2137
2138 } else if (em->start > existing->start) {
2139
2140 if (existing->start + existing->len < em->start)
2141 goto invalid;
2142
2143 start_diff = em->start - existing->start;
2144 if (real_blocks && existing->block_start + start_diff !=
2145 em->block_start)
2146 goto invalid;
2147
2148 remove_extent_mapping(em_tree, existing);
2149 em->block_start = existing->block_start;
2150 em->start = existing->start;
2151 em->len = new_end - existing->start;
2152 free_extent_map(existing);
2153
2154 ret = add_extent_mapping(em_tree, em);
2155 } else {
2156 goto invalid;
2157 }
2158 return ret;
2159
2160invalid:
2161 printk("invalid extent map merge [%Lu %Lu %Lu] [%Lu %Lu %Lu]\n",
2162 existing->start, existing->len, existing->block_start,
2163 em->start, em->len, em->block_start);
2164 return -EIO;
2165}
2166
Chris Masona52d9a82007-08-27 16:49:44 -04002167struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002168 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002169 int create)
2170{
2171 int ret;
2172 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002173 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002174 u64 extent_start = 0;
2175 u64 extent_end = 0;
2176 u64 objectid = inode->i_ino;
2177 u32 found_type;
Chris Masona52d9a82007-08-27 16:49:44 -04002178 struct btrfs_path *path;
2179 struct btrfs_root *root = BTRFS_I(inode)->root;
2180 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002181 struct extent_buffer *leaf;
2182 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002183 struct extent_map *em = NULL;
2184 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002185 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002186 struct btrfs_trans_handle *trans = NULL;
2187
2188 path = btrfs_alloc_path();
2189 BUG_ON(!path);
2190 mutex_lock(&root->fs_info->fs_mutex);
2191
2192again:
Chris Masond1310b22008-01-24 16:13:08 -05002193 spin_lock(&em_tree->lock);
2194 em = lookup_extent_mapping(em_tree, start, len);
2195 spin_unlock(&em_tree->lock);
2196
Chris Masona52d9a82007-08-27 16:49:44 -04002197 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04002198 if (em->start > start || em->start + em->len <= start)
2199 free_extent_map(em);
2200 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05002201 free_extent_map(em);
2202 else
2203 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002204 }
Chris Masond1310b22008-01-24 16:13:08 -05002205 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002206 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002207 err = -ENOMEM;
2208 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002209 }
Chris Masond1310b22008-01-24 16:13:08 -05002210
2211 em->start = EXTENT_MAP_HOLE;
2212 em->len = (u64)-1;
Chris Masona52d9a82007-08-27 16:49:44 -04002213 em->bdev = inode->i_sb->s_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04002214 ret = btrfs_lookup_file_extent(trans, root, path,
2215 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002216 if (ret < 0) {
2217 err = ret;
2218 goto out;
2219 }
2220
2221 if (ret != 0) {
2222 if (path->slots[0] == 0)
2223 goto not_found;
2224 path->slots[0]--;
2225 }
2226
Chris Mason5f39d392007-10-15 16:14:19 -04002227 leaf = path->nodes[0];
2228 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002229 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002230 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002231 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2232 found_type = btrfs_key_type(&found_key);
2233 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002234 found_type != BTRFS_EXTENT_DATA_KEY) {
2235 goto not_found;
2236 }
2237
Chris Mason5f39d392007-10-15 16:14:19 -04002238 found_type = btrfs_file_extent_type(leaf, item);
2239 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002240 if (found_type == BTRFS_FILE_EXTENT_REG) {
2241 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002242 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002243 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04002244 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002245 em->start = start;
2246 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002247 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002248 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002249 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002250 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002251 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002252 }
2253 goto not_found_em;
2254 }
Chris Masondb945352007-10-15 16:15:53 -04002255 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2256 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002257 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002258 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002259 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002260 goto insert;
2261 }
Chris Masondb945352007-10-15 16:15:53 -04002262 bytenr += btrfs_file_extent_offset(leaf, item);
2263 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002264 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002265 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002266 goto insert;
2267 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002268 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002269 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002270 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002271 size_t size;
2272 size_t extent_offset;
2273 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002274
Chris Mason5f39d392007-10-15 16:14:19 -04002275 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2276 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002277 extent_end = (extent_start + size + root->sectorsize - 1) &
2278 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002279 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002280 em->start = start;
2281 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002282 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002283 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002284 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002285 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002286 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002287 }
2288 goto not_found_em;
2289 }
2290 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002291
2292 if (!page) {
2293 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002294 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002295 goto out;
2296 }
2297
Chris Mason70dec802008-01-29 09:59:12 -05002298 page_start = page_offset(page) + pg_offset;
2299 extent_offset = page_start - extent_start;
2300 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002301 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002302 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002303 em->len = (copy_size + root->sectorsize - 1) &
2304 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002305 map = kmap(page);
2306 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002307 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002308 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002309 copy_size);
2310 flush_dcache_page(page);
2311 } else if (create && PageUptodate(page)) {
2312 if (!trans) {
2313 kunmap(page);
2314 free_extent_map(em);
2315 em = NULL;
2316 btrfs_release_path(root, path);
2317 trans = btrfs_start_transaction(root, 1);
2318 goto again;
2319 }
Chris Mason70dec802008-01-29 09:59:12 -05002320 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002321 copy_size);
2322 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002323 }
Chris Masona52d9a82007-08-27 16:49:44 -04002324 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002325 set_extent_uptodate(io_tree, em->start,
2326 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002327 goto insert;
2328 } else {
2329 printk("unkknown found_type %d\n", found_type);
2330 WARN_ON(1);
2331 }
2332not_found:
2333 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002334 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002335not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002336 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002337insert:
2338 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002339 if (em->start > start || extent_map_end(em) <= start) {
2340 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002341 err = -EIO;
2342 goto out;
2343 }
Chris Masond1310b22008-01-24 16:13:08 -05002344
2345 err = 0;
2346 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002347 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002348 /* it is possible that someone inserted the extent into the tree
2349 * while we had the lock dropped. It is also possible that
2350 * an overlapping map exists in the tree
2351 */
Chris Masona52d9a82007-08-27 16:49:44 -04002352 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002353 struct extent_map *existing;
2354 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002355 if (existing && (existing->start > start ||
2356 existing->start + existing->len <= start)) {
2357 free_extent_map(existing);
2358 existing = NULL;
2359 }
Chris Mason3b951512008-04-17 11:29:12 -04002360 if (!existing) {
2361 existing = lookup_extent_mapping(em_tree, em->start,
2362 em->len);
2363 if (existing) {
2364 err = merge_extent_mapping(em_tree, existing,
2365 em);
2366 free_extent_map(existing);
2367 if (err) {
2368 free_extent_map(em);
2369 em = NULL;
2370 }
2371 } else {
2372 err = -EIO;
2373 printk("failing to insert %Lu %Lu\n",
2374 start, len);
2375 free_extent_map(em);
2376 em = NULL;
2377 }
2378 } else {
2379 free_extent_map(em);
2380 em = existing;
Chris Masona52d9a82007-08-27 16:49:44 -04002381 }
Chris Masona52d9a82007-08-27 16:49:44 -04002382 }
Chris Masond1310b22008-01-24 16:13:08 -05002383 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002384out:
2385 btrfs_free_path(path);
2386 if (trans) {
2387 ret = btrfs_end_transaction(trans, root);
2388 if (!err)
2389 err = ret;
2390 }
2391 mutex_unlock(&root->fs_info->fs_mutex);
2392 if (err) {
2393 free_extent_map(em);
2394 WARN_ON(1);
2395 return ERR_PTR(err);
2396 }
2397 return em;
2398}
2399
Chris Masone1c4b742008-04-22 13:26:46 -04002400#if 0 /* waiting for O_DIRECT reads */
Chris Mason16432982008-04-10 10:23:21 -04002401static int btrfs_get_block(struct inode *inode, sector_t iblock,
2402 struct buffer_head *bh_result, int create)
2403{
2404 struct extent_map *em;
2405 u64 start = (u64)iblock << inode->i_blkbits;
2406 struct btrfs_multi_bio *multi = NULL;
2407 struct btrfs_root *root = BTRFS_I(inode)->root;
2408 u64 len;
2409 u64 logical;
2410 u64 map_length;
2411 int ret = 0;
2412
2413 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2414
2415 if (!em || IS_ERR(em))
2416 goto out;
2417
Chris Masone1c4b742008-04-22 13:26:46 -04002418 if (em->start > start || em->start + em->len <= start) {
Chris Mason16432982008-04-10 10:23:21 -04002419 goto out;
Chris Masone1c4b742008-04-22 13:26:46 -04002420 }
Chris Mason16432982008-04-10 10:23:21 -04002421
2422 if (em->block_start == EXTENT_MAP_INLINE) {
2423 ret = -EINVAL;
2424 goto out;
2425 }
2426
Chris Mason16432982008-04-10 10:23:21 -04002427 len = em->start + em->len - start;
2428 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2429
Chris Masone1c4b742008-04-22 13:26:46 -04002430 if (em->block_start == EXTENT_MAP_HOLE ||
2431 em->block_start == EXTENT_MAP_DELALLOC) {
2432 bh_result->b_size = len;
2433 goto out;
2434 }
2435
Chris Mason16432982008-04-10 10:23:21 -04002436 logical = start - em->start;
2437 logical = em->block_start + logical;
2438
2439 map_length = len;
2440 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2441 logical, &map_length, &multi, 0);
2442 BUG_ON(ret);
2443 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2444 bh_result->b_size = min(map_length, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002445
Chris Mason16432982008-04-10 10:23:21 -04002446 bh_result->b_bdev = multi->stripes[0].dev->bdev;
2447 set_buffer_mapped(bh_result);
2448 kfree(multi);
2449out:
2450 free_extent_map(em);
2451 return ret;
2452}
Chris Masone1c4b742008-04-22 13:26:46 -04002453#endif
Chris Mason16432982008-04-10 10:23:21 -04002454
2455static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
2456 const struct iovec *iov, loff_t offset,
2457 unsigned long nr_segs)
2458{
Chris Masone1c4b742008-04-22 13:26:46 -04002459 return -EINVAL;
2460#if 0
Chris Mason16432982008-04-10 10:23:21 -04002461 struct file *file = iocb->ki_filp;
2462 struct inode *inode = file->f_mapping->host;
2463
2464 if (rw == WRITE)
2465 return -EINVAL;
2466
2467 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2468 offset, nr_segs, btrfs_get_block, NULL);
Chris Masone1c4b742008-04-22 13:26:46 -04002469#endif
Chris Mason16432982008-04-10 10:23:21 -04002470}
2471
Christoph Hellwigd396c6f52007-09-10 20:02:30 -04002472static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002473{
Christoph Hellwigd396c6f52007-09-10 20:02:30 -04002474 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002475}
2476
Chris Mason9ebefb182007-06-15 13:50:00 -04002477int btrfs_readpage(struct file *file, struct page *page)
2478{
Chris Masond1310b22008-01-24 16:13:08 -05002479 struct extent_io_tree *tree;
2480 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002481 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002482}
Chris Mason1832a6d2007-12-21 16:27:21 -05002483
Chris Mason39279cc2007-06-12 06:35:45 -04002484static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2485{
Chris Masond1310b22008-01-24 16:13:08 -05002486 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04002487
2488
2489 if (current->flags & PF_MEMALLOC) {
2490 redirty_page_for_writepage(wbc, page);
2491 unlock_page(page);
2492 return 0;
2493 }
Chris Masond1310b22008-01-24 16:13:08 -05002494 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002495 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2496}
Chris Mason39279cc2007-06-12 06:35:45 -04002497
Chris Masonb293f022007-11-01 19:45:34 -04002498static int btrfs_writepages(struct address_space *mapping,
2499 struct writeback_control *wbc)
2500{
Chris Masond1310b22008-01-24 16:13:08 -05002501 struct extent_io_tree *tree;
2502 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04002503 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2504}
2505
Chris Mason3ab2fb52007-11-08 10:59:22 -05002506static int
2507btrfs_readpages(struct file *file, struct address_space *mapping,
2508 struct list_head *pages, unsigned nr_pages)
2509{
Chris Masond1310b22008-01-24 16:13:08 -05002510 struct extent_io_tree *tree;
2511 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002512 return extent_readpages(tree, mapping, pages, nr_pages,
2513 btrfs_get_extent);
2514}
2515
Chris Mason70dec802008-01-29 09:59:12 -05002516static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002517{
Chris Masond1310b22008-01-24 16:13:08 -05002518 struct extent_io_tree *tree;
2519 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002520 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002521
Chris Masond1310b22008-01-24 16:13:08 -05002522 tree = &BTRFS_I(page->mapping->host)->io_tree;
2523 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002524 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002525 if (ret == 1) {
Chris Mason4ef64ea2008-04-21 08:52:50 -04002526 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04002527 ClearPagePrivate(page);
2528 set_page_private(page, 0);
2529 page_cache_release(page);
2530 }
2531 return ret;
2532}
Chris Mason39279cc2007-06-12 06:35:45 -04002533
Chris Masona52d9a82007-08-27 16:49:44 -04002534static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2535{
Chris Masond1310b22008-01-24 16:13:08 -05002536 struct extent_io_tree *tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002537
Chris Masond1310b22008-01-24 16:13:08 -05002538 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002539 extent_invalidatepage(tree, page, offset);
2540 btrfs_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002541 if (PagePrivate(page)) {
Chris Mason4ef64ea2008-04-21 08:52:50 -04002542 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002543 ClearPagePrivate(page);
2544 set_page_private(page, 0);
2545 page_cache_release(page);
2546 }
Chris Mason39279cc2007-06-12 06:35:45 -04002547}
2548
Chris Mason9ebefb182007-06-15 13:50:00 -04002549/*
2550 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2551 * called from a page fault handler when a page is first dirtied. Hence we must
2552 * be careful to check for EOF conditions here. We set the page up correctly
2553 * for a written page which means we get ENOSPC checking when writing into
2554 * holes and correct delalloc and unwritten extent mapping on filesystems that
2555 * support these features.
2556 *
2557 * We are not allowed to take the i_mutex here so we have to play games to
2558 * protect against truncate races as the page could now be beyond EOF. Because
2559 * vmtruncate() writes the inode size before removing pages, once we have the
2560 * page lock we can determine safely if the page is beyond EOF. If it is not
2561 * beyond EOF, then the page is guaranteed safe against truncation until we
2562 * unlock the page.
2563 */
2564int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2565{
Chris Mason6da6aba2007-12-18 16:15:09 -05002566 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002567 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9ebefb182007-06-15 13:50:00 -04002568 unsigned long end;
2569 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002570 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002571 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002572
Chris Mason1832a6d2007-12-21 16:27:21 -05002573 mutex_lock(&root->fs_info->fs_mutex);
2574 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason8f662a72008-01-02 10:01:11 -05002575 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002576 if (ret)
2577 goto out;
2578
2579 ret = -EINVAL;
2580
Chris Mason9ebefb182007-06-15 13:50:00 -04002581 lock_page(page);
2582 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002583 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04002584 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04002585
Chris Mason9ebefb182007-06-15 13:50:00 -04002586 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04002587 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002588 /* page got truncated out from underneath us */
2589 goto out_unlock;
2590 }
2591
2592 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002593 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04002594 end = size & ~PAGE_CACHE_MASK;
2595 else
2596 end = PAGE_CACHE_SIZE;
2597
Chris Masonb888db22007-08-27 16:49:44 -04002598 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04002599
2600out_unlock:
2601 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002602out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002603 return ret;
2604}
2605
Chris Mason39279cc2007-06-12 06:35:45 -04002606static void btrfs_truncate(struct inode *inode)
2607{
2608 struct btrfs_root *root = BTRFS_I(inode)->root;
2609 int ret;
2610 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04002611 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002612
2613 if (!S_ISREG(inode->i_mode))
2614 return;
2615 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2616 return;
2617
2618 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2619
2620 mutex_lock(&root->fs_info->fs_mutex);
2621 trans = btrfs_start_transaction(root, 1);
2622 btrfs_set_trans_block_group(trans, inode);
2623
2624 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002625 ret = btrfs_truncate_in_trans(trans, root, inode,
2626 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002627 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002628 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002629
Chris Mason39279cc2007-06-12 06:35:45 -04002630 ret = btrfs_end_transaction(trans, root);
2631 BUG_ON(ret);
2632 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002633 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002634 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002635}
2636
Chris Mason4313b392008-01-03 09:08:48 -05002637static int noinline create_subvol(struct btrfs_root *root, char *name,
2638 int namelen)
Chris Mason39279cc2007-06-12 06:35:45 -04002639{
2640 struct btrfs_trans_handle *trans;
2641 struct btrfs_key key;
2642 struct btrfs_root_item root_item;
2643 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002644 struct extent_buffer *leaf;
Chris Masondc17ff82008-01-08 15:46:30 -05002645 struct btrfs_root *new_root = root;
Chris Mason39279cc2007-06-12 06:35:45 -04002646 struct inode *inode;
2647 struct inode *dir;
2648 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002649 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002650 u64 objectid;
2651 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdc2007-09-17 10:58:06 -04002652 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002653
2654 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002655 ret = btrfs_check_free_space(root, 1, 0);
2656 if (ret)
2657 goto fail_commit;
2658
Chris Mason39279cc2007-06-12 06:35:45 -04002659 trans = btrfs_start_transaction(root, 1);
2660 BUG_ON(!trans);
2661
Chris Mason7bb86312007-12-11 09:25:06 -05002662 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2663 0, &objectid);
2664 if (ret)
2665 goto fail;
2666
2667 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2668 objectid, trans->transid, 0, 0,
2669 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002670 if (IS_ERR(leaf))
2671 return PTR_ERR(leaf);
2672
2673 btrfs_set_header_nritems(leaf, 0);
2674 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04002675 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002676 btrfs_set_header_generation(leaf, trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002677 btrfs_set_header_owner(leaf, objectid);
2678
Chris Mason5f39d392007-10-15 16:14:19 -04002679 write_extent_buffer(leaf, root->fs_info->fsid,
2680 (unsigned long)btrfs_header_fsid(leaf),
2681 BTRFS_FSID_SIZE);
2682 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002683
2684 inode_item = &root_item.inode;
2685 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002686 inode_item->generation = cpu_to_le64(1);
2687 inode_item->size = cpu_to_le64(3);
2688 inode_item->nlink = cpu_to_le32(1);
2689 inode_item->nblocks = cpu_to_le64(1);
2690 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04002691
Chris Masondb945352007-10-15 16:15:53 -04002692 btrfs_set_root_bytenr(&root_item, leaf->start);
2693 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002694 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002695 btrfs_set_root_used(&root_item, 0);
2696
Chris Mason5eda7b52007-06-22 14:16:25 -04002697 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2698 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002699
2700 free_extent_buffer(leaf);
2701 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002702
Chris Mason39279cc2007-06-12 06:35:45 -04002703 btrfs_set_root_dirid(&root_item, new_dirid);
2704
2705 key.objectid = objectid;
2706 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002707 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2708 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2709 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002710 if (ret)
2711 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002712
2713 /*
2714 * insert the directory item
2715 */
2716 key.offset = (u64)-1;
2717 dir = root->fs_info->sb->s_root->d_inode;
2718 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2719 name, namelen, dir->i_ino, &key,
2720 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04002721 if (ret)
2722 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002723
Chris Mason39544012007-12-12 14:38:19 -05002724 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2725 name, namelen, objectid,
2726 root->fs_info->sb->s_root->d_inode->i_ino);
2727 if (ret)
2728 goto fail;
2729
Chris Mason39279cc2007-06-12 06:35:45 -04002730 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002731 if (ret)
2732 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04002733
Josef Bacik58176a92007-08-29 15:47:34 -04002734 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04002735 BUG_ON(!new_root);
2736
2737 trans = btrfs_start_transaction(new_root, 1);
2738 BUG_ON(!trans);
2739
Chris Mason9c583092008-01-29 15:15:18 -05002740 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
2741 new_dirid,
Chris Mason39279cc2007-06-12 06:35:45 -04002742 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002743 if (IS_ERR(inode))
2744 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002745 inode->i_op = &btrfs_dir_inode_operations;
2746 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002747 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002748
Chris Mason39544012007-12-12 14:38:19 -05002749 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2750 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002751 inode->i_nlink = 1;
Chris Mason39544012007-12-12 14:38:19 -05002752 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002753 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002754 if (ret)
2755 goto fail;
2756fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04002757 nr = trans->blocks_used;
Chris Masondc17ff82008-01-08 15:46:30 -05002758 err = btrfs_commit_transaction(trans, new_root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002759 if (err && !ret)
2760 ret = err;
2761fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04002762 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002763 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002764 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002765 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002766}
2767
2768static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2769{
Chris Mason3063d292008-01-08 15:46:30 -05002770 struct btrfs_pending_snapshot *pending_snapshot;
Chris Mason39279cc2007-06-12 06:35:45 -04002771 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04002772 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002773 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05002774 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002775
2776 if (!root->ref_cows)
2777 return -EINVAL;
2778
2779 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002780 ret = btrfs_check_free_space(root, 1, 0);
2781 if (ret)
2782 goto fail_unlock;
2783
Chris Mason3063d292008-01-08 15:46:30 -05002784 pending_snapshot = kmalloc(sizeof(*pending_snapshot), GFP_NOFS);
2785 if (!pending_snapshot) {
2786 ret = -ENOMEM;
2787 goto fail_unlock;
2788 }
Yanfb4bc1e2008-01-17 11:59:51 -05002789 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
Chris Mason3063d292008-01-08 15:46:30 -05002790 if (!pending_snapshot->name) {
2791 ret = -ENOMEM;
2792 kfree(pending_snapshot);
2793 goto fail_unlock;
2794 }
Yanfb4bc1e2008-01-17 11:59:51 -05002795 memcpy(pending_snapshot->name, name, namelen);
2796 pending_snapshot->name[namelen] = '\0';
Chris Mason39279cc2007-06-12 06:35:45 -04002797 trans = btrfs_start_transaction(root, 1);
2798 BUG_ON(!trans);
Chris Mason3063d292008-01-08 15:46:30 -05002799 pending_snapshot->root = root;
2800 list_add(&pending_snapshot->list,
2801 &trans->transaction->pending_snapshots);
Chris Mason39279cc2007-06-12 06:35:45 -04002802 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002803 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002804
Chris Mason1832a6d2007-12-21 16:27:21 -05002805fail_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002806 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002807 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002808 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002809 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002810}
2811
Chris Masonedbd8d42007-12-21 16:27:24 -05002812unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002813 struct file_ra_state *ra, struct file *file,
2814 pgoff_t offset, pgoff_t last_index)
2815{
2816 pgoff_t req_size;
2817
2818#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2819 req_size = last_index - offset + 1;
2820 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2821 return offset;
2822#else
2823 req_size = min(last_index - offset + 1, (pgoff_t)128);
2824 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2825 return offset + req_size;
2826#endif
2827}
2828
2829int btrfs_defrag_file(struct file *file) {
Chris Mason6da6aba2007-12-18 16:15:09 -05002830 struct inode *inode = fdentry(file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002831 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002832 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason86479a02007-09-10 19:58:16 -04002833 struct page *page;
2834 unsigned long last_index;
2835 unsigned long ra_index = 0;
2836 u64 page_start;
2837 u64 page_end;
2838 unsigned long i;
Chris Mason1832a6d2007-12-21 16:27:21 -05002839 int ret;
2840
2841 mutex_lock(&root->fs_info->fs_mutex);
2842 ret = btrfs_check_free_space(root, inode->i_size, 0);
2843 mutex_unlock(&root->fs_info->fs_mutex);
2844 if (ret)
2845 return -ENOSPC;
Chris Mason86479a02007-09-10 19:58:16 -04002846
2847 mutex_lock(&inode->i_mutex);
2848 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2849 for (i = 0; i <= last_index; i++) {
2850 if (i == ra_index) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002851 ra_index = btrfs_force_ra(inode->i_mapping,
2852 &file->f_ra,
2853 file, ra_index, last_index);
Chris Mason86479a02007-09-10 19:58:16 -04002854 }
2855 page = grab_cache_page(inode->i_mapping, i);
2856 if (!page)
2857 goto out_unlock;
2858 if (!PageUptodate(page)) {
2859 btrfs_readpage(NULL, page);
2860 lock_page(page);
2861 if (!PageUptodate(page)) {
2862 unlock_page(page);
2863 page_cache_release(page);
2864 goto out_unlock;
2865 }
2866 }
Chris Mason35ebb932007-10-30 16:56:53 -04002867 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002868 page_end = page_start + PAGE_CACHE_SIZE - 1;
2869
Chris Masond1310b22008-01-24 16:13:08 -05002870 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002871 set_extent_delalloc(io_tree, page_start,
Chris Mason86479a02007-09-10 19:58:16 -04002872 page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002873
Chris Masond1310b22008-01-24 16:13:08 -05002874 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason86479a02007-09-10 19:58:16 -04002875 set_page_dirty(page);
2876 unlock_page(page);
2877 page_cache_release(page);
2878 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2879 }
2880
2881out_unlock:
2882 mutex_unlock(&inode->i_mutex);
2883 return 0;
2884}
2885
Chris Masonedbd8d42007-12-21 16:27:24 -05002886static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2887{
2888 u64 new_size;
2889 u64 old_size;
2890 struct btrfs_ioctl_vol_args *vol_args;
2891 struct btrfs_trans_handle *trans;
2892 char *sizestr;
2893 int ret = 0;
2894 int namelen;
2895 int mod = 0;
2896
2897 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2898
2899 if (!vol_args)
2900 return -ENOMEM;
2901
2902 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2903 ret = -EFAULT;
2904 goto out;
2905 }
2906 namelen = strlen(vol_args->name);
2907 if (namelen > BTRFS_VOL_NAME_MAX) {
2908 ret = -EINVAL;
2909 goto out;
2910 }
2911
2912 sizestr = vol_args->name;
2913 if (!strcmp(sizestr, "max"))
2914 new_size = root->fs_info->sb->s_bdev->bd_inode->i_size;
2915 else {
2916 if (sizestr[0] == '-') {
2917 mod = -1;
2918 sizestr++;
2919 } else if (sizestr[0] == '+') {
2920 mod = 1;
2921 sizestr++;
2922 }
2923 new_size = btrfs_parse_size(sizestr);
2924 if (new_size == 0) {
2925 ret = -EINVAL;
2926 goto out;
2927 }
2928 }
2929
2930 mutex_lock(&root->fs_info->fs_mutex);
2931 old_size = btrfs_super_total_bytes(&root->fs_info->super_copy);
2932
2933 if (mod < 0) {
2934 if (new_size > old_size) {
2935 ret = -EINVAL;
2936 goto out_unlock;
2937 }
2938 new_size = old_size - new_size;
2939 } else if (mod > 0) {
2940 new_size = old_size + new_size;
2941 }
2942
2943 if (new_size < 256 * 1024 * 1024) {
2944 ret = -EINVAL;
2945 goto out_unlock;
2946 }
2947 if (new_size > root->fs_info->sb->s_bdev->bd_inode->i_size) {
2948 ret = -EFBIG;
2949 goto out_unlock;
2950 }
Chris Masonf9ef6602008-01-03 09:22:38 -05002951
2952 do_div(new_size, root->sectorsize);
2953 new_size *= root->sectorsize;
Chris Masonedbd8d42007-12-21 16:27:24 -05002954
2955printk("new size is %Lu\n", new_size);
2956 if (new_size > old_size) {
2957 trans = btrfs_start_transaction(root, 1);
2958 ret = btrfs_grow_extent_tree(trans, root, new_size);
2959 btrfs_commit_transaction(trans, root);
2960 } else {
2961 ret = btrfs_shrink_extent_tree(root, new_size);
2962 }
2963
2964out_unlock:
2965 mutex_unlock(&root->fs_info->fs_mutex);
2966out:
2967 kfree(vol_args);
2968 return ret;
2969}
2970
Chris Mason4313b392008-01-03 09:08:48 -05002971static int noinline btrfs_ioctl_snap_create(struct btrfs_root *root,
2972 void __user *arg)
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002973{
Chris Mason4aec2b52007-12-18 16:25:45 -05002974 struct btrfs_ioctl_vol_args *vol_args;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002975 struct btrfs_dir_item *di;
2976 struct btrfs_path *path;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002977 u64 root_dirid;
Chris Mason4aec2b52007-12-18 16:25:45 -05002978 int namelen;
2979 int ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002980
Chris Mason4aec2b52007-12-18 16:25:45 -05002981 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04002982
Chris Mason4aec2b52007-12-18 16:25:45 -05002983 if (!vol_args)
2984 return -ENOMEM;
2985
2986 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2987 ret = -EFAULT;
2988 goto out;
2989 }
2990
2991 namelen = strlen(vol_args->name);
2992 if (namelen > BTRFS_VOL_NAME_MAX) {
2993 ret = -EINVAL;
2994 goto out;
2995 }
2996 if (strchr(vol_args->name, '/')) {
2997 ret = -EINVAL;
2998 goto out;
2999 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003000
3001 path = btrfs_alloc_path();
Chris Mason4aec2b52007-12-18 16:25:45 -05003002 if (!path) {
3003 ret = -ENOMEM;
3004 goto out;
3005 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003006
3007 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
3008 mutex_lock(&root->fs_info->fs_mutex);
3009 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
3010 path, root_dirid,
Chris Mason4aec2b52007-12-18 16:25:45 -05003011 vol_args->name, namelen, 0);
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003012 mutex_unlock(&root->fs_info->fs_mutex);
3013 btrfs_free_path(path);
Chris Mason4aec2b52007-12-18 16:25:45 -05003014
3015 if (di && !IS_ERR(di)) {
3016 ret = -EEXIST;
3017 goto out;
3018 }
3019
3020 if (IS_ERR(di)) {
3021 ret = PTR_ERR(di);
3022 goto out;
3023 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003024
3025 if (root == root->fs_info->tree_root)
Chris Mason4aec2b52007-12-18 16:25:45 -05003026 ret = create_subvol(root, vol_args->name, namelen);
3027 else
3028 ret = create_snapshot(root, vol_args->name, namelen);
3029out:
3030 kfree(vol_args);
3031 return ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003032}
3033
3034static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04003035{
Chris Mason6da6aba2007-12-18 16:15:09 -05003036 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003037 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003038
3039 switch (inode->i_mode & S_IFMT) {
3040 case S_IFDIR:
3041 mutex_lock(&root->fs_info->fs_mutex);
3042 btrfs_defrag_root(root, 0);
3043 btrfs_defrag_root(root->fs_info->extent_root, 0);
3044 mutex_unlock(&root->fs_info->fs_mutex);
3045 break;
3046 case S_IFREG:
3047 btrfs_defrag_file(file);
3048 break;
3049 }
3050
3051 return 0;
3052}
3053
3054long btrfs_ioctl(struct file *file, unsigned int
3055 cmd, unsigned long arg)
3056{
Chris Mason6da6aba2007-12-18 16:15:09 -05003057 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003058
3059 switch (cmd) {
3060 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003061 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04003062 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003063 return btrfs_ioctl_defrag(file);
Chris Masonedbd8d42007-12-21 16:27:24 -05003064 case BTRFS_IOC_RESIZE:
3065 return btrfs_ioctl_resize(root, (void __user *)arg);
Chris Mason39279cc2007-06-12 06:35:45 -04003066 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003067
3068 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04003069}
3070
Chris Mason39279cc2007-06-12 06:35:45 -04003071/*
3072 * Called inside transaction, so use GFP_NOFS
3073 */
3074struct inode *btrfs_alloc_inode(struct super_block *sb)
3075{
3076 struct btrfs_inode *ei;
3077
3078 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
3079 if (!ei)
3080 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003081 ei->last_trans = 0;
Chris Masondc17ff82008-01-08 15:46:30 -05003082 ei->ordered_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003083 return &ei->vfs_inode;
3084}
3085
3086void btrfs_destroy_inode(struct inode *inode)
3087{
3088 WARN_ON(!list_empty(&inode->i_dentry));
3089 WARN_ON(inode->i_data.nrpages);
3090
Chris Mason8c416c92008-01-14 15:10:26 -05003091 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003092 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
3093}
3094
Chris Mason44ec0b72007-10-29 10:55:05 -04003095#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
3096static void init_once(struct kmem_cache * cachep, void *foo)
3097#else
Chris Mason39279cc2007-06-12 06:35:45 -04003098static void init_once(void * foo, struct kmem_cache * cachep,
3099 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04003100#endif
Chris Mason39279cc2007-06-12 06:35:45 -04003101{
3102 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
3103
3104 inode_init_once(&ei->vfs_inode);
3105}
3106
3107void btrfs_destroy_cachep(void)
3108{
3109 if (btrfs_inode_cachep)
3110 kmem_cache_destroy(btrfs_inode_cachep);
3111 if (btrfs_trans_handle_cachep)
3112 kmem_cache_destroy(btrfs_trans_handle_cachep);
3113 if (btrfs_transaction_cachep)
3114 kmem_cache_destroy(btrfs_transaction_cachep);
3115 if (btrfs_bit_radix_cachep)
3116 kmem_cache_destroy(btrfs_bit_radix_cachep);
3117 if (btrfs_path_cachep)
3118 kmem_cache_destroy(btrfs_path_cachep);
3119}
3120
Chris Mason86479a02007-09-10 19:58:16 -04003121struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04003122 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04003123#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
3124 void (*ctor)(struct kmem_cache *, void *)
3125#else
Chris Mason92fee662007-07-25 12:31:35 -04003126 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04003127 unsigned long)
3128#endif
3129 )
Chris Mason92fee662007-07-25 12:31:35 -04003130{
3131 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
3132 SLAB_MEM_SPREAD | extra_flags), ctor
3133#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
3134 ,NULL
3135#endif
3136 );
3137}
3138
Chris Mason39279cc2007-06-12 06:35:45 -04003139int btrfs_init_cachep(void)
3140{
Chris Mason86479a02007-09-10 19:58:16 -04003141 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04003142 sizeof(struct btrfs_inode),
3143 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04003144 if (!btrfs_inode_cachep)
3145 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003146 btrfs_trans_handle_cachep =
3147 btrfs_cache_create("btrfs_trans_handle_cache",
3148 sizeof(struct btrfs_trans_handle),
3149 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003150 if (!btrfs_trans_handle_cachep)
3151 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003152 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04003153 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04003154 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003155 if (!btrfs_transaction_cachep)
3156 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003157 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04003158 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04003159 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003160 if (!btrfs_path_cachep)
3161 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003162 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04003163 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003164 if (!btrfs_bit_radix_cachep)
3165 goto fail;
3166 return 0;
3167fail:
3168 btrfs_destroy_cachep();
3169 return -ENOMEM;
3170}
3171
3172static int btrfs_getattr(struct vfsmount *mnt,
3173 struct dentry *dentry, struct kstat *stat)
3174{
3175 struct inode *inode = dentry->d_inode;
3176 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05003177 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05003178 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04003179 return 0;
3180}
3181
3182static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3183 struct inode * new_dir,struct dentry *new_dentry)
3184{
3185 struct btrfs_trans_handle *trans;
3186 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3187 struct inode *new_inode = new_dentry->d_inode;
3188 struct inode *old_inode = old_dentry->d_inode;
3189 struct timespec ctime = CURRENT_TIME;
3190 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003191 int ret;
3192
3193 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3194 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3195 return -ENOTEMPTY;
3196 }
Chris Mason5f39d392007-10-15 16:14:19 -04003197
Chris Mason39279cc2007-06-12 06:35:45 -04003198 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05003199 ret = btrfs_check_free_space(root, 1, 0);
3200 if (ret)
3201 goto out_unlock;
3202
Chris Mason39279cc2007-06-12 06:35:45 -04003203 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003204
Chris Mason39279cc2007-06-12 06:35:45 -04003205 btrfs_set_trans_block_group(trans, new_dir);
3206 path = btrfs_alloc_path();
3207 if (!path) {
3208 ret = -ENOMEM;
3209 goto out_fail;
3210 }
3211
3212 old_dentry->d_inode->i_nlink++;
3213 old_dir->i_ctime = old_dir->i_mtime = ctime;
3214 new_dir->i_ctime = new_dir->i_mtime = ctime;
3215 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003216
Chris Mason39279cc2007-06-12 06:35:45 -04003217 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
3218 if (ret)
3219 goto out_fail;
3220
3221 if (new_inode) {
3222 new_inode->i_ctime = CURRENT_TIME;
3223 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
3224 if (ret)
3225 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003226 }
Chris Mason9c583092008-01-29 15:15:18 -05003227 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003228 if (ret)
3229 goto out_fail;
3230
3231out_fail:
3232 btrfs_free_path(path);
3233 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003234out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003235 mutex_unlock(&root->fs_info->fs_mutex);
3236 return ret;
3237}
3238
3239static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3240 const char *symname)
3241{
3242 struct btrfs_trans_handle *trans;
3243 struct btrfs_root *root = BTRFS_I(dir)->root;
3244 struct btrfs_path *path;
3245 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003246 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003247 int err;
3248 int drop_inode = 0;
3249 u64 objectid;
3250 int name_len;
3251 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003252 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003253 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003254 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003255 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003256
3257 name_len = strlen(symname) + 1;
3258 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3259 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003260
Chris Mason39279cc2007-06-12 06:35:45 -04003261 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05003262 err = btrfs_check_free_space(root, 1, 0);
3263 if (err)
3264 goto out_fail;
3265
Chris Mason39279cc2007-06-12 06:35:45 -04003266 trans = btrfs_start_transaction(root, 1);
3267 btrfs_set_trans_block_group(trans, dir);
3268
3269 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3270 if (err) {
3271 err = -ENOSPC;
3272 goto out_unlock;
3273 }
3274
Chris Mason9c583092008-01-29 15:15:18 -05003275 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
3276 dentry->d_name.len,
3277 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003278 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
3279 err = PTR_ERR(inode);
3280 if (IS_ERR(inode))
3281 goto out_unlock;
3282
3283 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003284 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003285 if (err)
3286 drop_inode = 1;
3287 else {
3288 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003289 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003290 inode->i_fop = &btrfs_file_operations;
3291 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003292 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3293 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04003294 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003295 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3296 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05003297 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason81d7ed22008-04-25 08:51:48 -04003298 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003299 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003300 }
3301 dir->i_sb->s_dirt = 1;
3302 btrfs_update_inode_block_group(trans, inode);
3303 btrfs_update_inode_block_group(trans, dir);
3304 if (drop_inode)
3305 goto out_unlock;
3306
3307 path = btrfs_alloc_path();
3308 BUG_ON(!path);
3309 key.objectid = inode->i_ino;
3310 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003311 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3312 datasize = btrfs_file_extent_calc_inline_size(name_len);
3313 err = btrfs_insert_empty_item(trans, root, path, &key,
3314 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003315 if (err) {
3316 drop_inode = 1;
3317 goto out_unlock;
3318 }
Chris Mason5f39d392007-10-15 16:14:19 -04003319 leaf = path->nodes[0];
3320 ei = btrfs_item_ptr(leaf, path->slots[0],
3321 struct btrfs_file_extent_item);
3322 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3323 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003324 BTRFS_FILE_EXTENT_INLINE);
3325 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003326 write_extent_buffer(leaf, symname, ptr, name_len);
3327 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003328 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003329
Chris Mason39279cc2007-06-12 06:35:45 -04003330 inode->i_op = &btrfs_symlink_inode_operations;
3331 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003332 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003333 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04003334 err = btrfs_update_inode(trans, root, inode);
3335 if (err)
3336 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003337
3338out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04003339 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04003340 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003341out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003342 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04003343 if (drop_inode) {
3344 inode_dec_link_count(inode);
3345 iput(inode);
3346 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04003347 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05003348 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003349 return err;
3350}
Chris Mason16432982008-04-10 10:23:21 -04003351
Yanfdebe2b2008-01-14 13:26:08 -05003352static int btrfs_permission(struct inode *inode, int mask,
3353 struct nameidata *nd)
3354{
3355 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3356 return -EACCES;
3357 return generic_permission(inode, mask, NULL);
3358}
Chris Mason39279cc2007-06-12 06:35:45 -04003359
3360static struct inode_operations btrfs_dir_inode_operations = {
3361 .lookup = btrfs_lookup,
3362 .create = btrfs_create,
3363 .unlink = btrfs_unlink,
3364 .link = btrfs_link,
3365 .mkdir = btrfs_mkdir,
3366 .rmdir = btrfs_rmdir,
3367 .rename = btrfs_rename,
3368 .symlink = btrfs_symlink,
3369 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003370 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003371 .setxattr = generic_setxattr,
3372 .getxattr = generic_getxattr,
3373 .listxattr = btrfs_listxattr,
3374 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003375 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003376};
Chris Mason39279cc2007-06-12 06:35:45 -04003377static struct inode_operations btrfs_dir_ro_inode_operations = {
3378 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003379 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003380};
Chris Mason39279cc2007-06-12 06:35:45 -04003381static struct file_operations btrfs_dir_file_operations = {
3382 .llseek = generic_file_llseek,
3383 .read = generic_read_dir,
3384 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003385 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003386#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003387 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003388#endif
3389};
3390
Chris Masond1310b22008-01-24 16:13:08 -05003391static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003392 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003393 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003394 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003395 .readpage_io_hook = btrfs_readpage_io_hook,
3396 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Mason7e383262008-04-09 16:28:12 -04003397 .readpage_io_failed_hook = btrfs_readpage_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003398 .set_bit_hook = btrfs_set_bit_hook,
3399 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003400};
3401
Chris Mason39279cc2007-06-12 06:35:45 -04003402static struct address_space_operations btrfs_aops = {
3403 .readpage = btrfs_readpage,
3404 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04003405 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003406 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003407 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003408 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003409 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003410 .invalidatepage = btrfs_invalidatepage,
3411 .releasepage = btrfs_releasepage,
3412 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04003413};
3414
3415static struct address_space_operations btrfs_symlink_aops = {
3416 .readpage = btrfs_readpage,
3417 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003418 .invalidatepage = btrfs_invalidatepage,
3419 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003420};
3421
3422static struct inode_operations btrfs_file_inode_operations = {
3423 .truncate = btrfs_truncate,
3424 .getattr = btrfs_getattr,
3425 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003426 .setxattr = generic_setxattr,
3427 .getxattr = generic_getxattr,
3428 .listxattr = btrfs_listxattr,
3429 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003430 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003431};
Josef Bacik618e21d2007-07-11 10:18:17 -04003432static struct inode_operations btrfs_special_inode_operations = {
3433 .getattr = btrfs_getattr,
3434 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003435 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003436};
Chris Mason39279cc2007-06-12 06:35:45 -04003437static struct inode_operations btrfs_symlink_inode_operations = {
3438 .readlink = generic_readlink,
3439 .follow_link = page_follow_link_light,
3440 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003441 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003442};