blob: 3da12a4d913dad6db60508126c9053fe0350f733 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
29#include <linux/smp_lock.h>
30#include <linux/backing-dev.h>
31#include <linux/mpage.h>
32#include <linux/swap.h>
33#include <linux/writeback.h>
34#include <linux/statfs.h>
35#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040036#include <linux/bit_spinlock.h>
Chris Mason92fee662007-07-25 12:31:35 -040037#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050038#include <linux/xattr.h>
Chris Mason39279cc2007-06-12 06:35:45 -040039#include "ctree.h"
40#include "disk-io.h"
41#include "transaction.h"
42#include "btrfs_inode.h"
43#include "ioctl.h"
44#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040045#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040046#include "ordered-data.h"
Chris Mason39279cc2007-06-12 06:35:45 -040047
48struct btrfs_iget_args {
49 u64 ino;
50 struct btrfs_root *root;
51};
52
53static struct inode_operations btrfs_dir_inode_operations;
54static struct inode_operations btrfs_symlink_inode_operations;
55static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040056static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040057static struct inode_operations btrfs_file_inode_operations;
58static struct address_space_operations btrfs_aops;
59static struct address_space_operations btrfs_symlink_aops;
60static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050061static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040062
63static struct kmem_cache *btrfs_inode_cachep;
64struct kmem_cache *btrfs_trans_handle_cachep;
65struct kmem_cache *btrfs_transaction_cachep;
66struct kmem_cache *btrfs_bit_radix_cachep;
67struct kmem_cache *btrfs_path_cachep;
68
69#define S_SHIFT 12
70static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
71 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
72 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
73 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
74 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
75 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
76 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
77 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
78};
79
Chris Mason1832a6d2007-12-21 16:27:21 -050080int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
81 int for_del)
82{
Chris Masona2135012008-06-25 16:01:30 -040083 u64 total;
84 u64 used;
Chris Mason1832a6d2007-12-21 16:27:21 -050085 u64 thresh;
Chris Masonbcbfce82008-04-22 13:26:47 -040086 unsigned long flags;
Chris Mason1832a6d2007-12-21 16:27:21 -050087 int ret = 0;
88
Chris Masona2135012008-06-25 16:01:30 -040089 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
90 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
91 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
Chris Mason1832a6d2007-12-21 16:27:21 -050092 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -050093 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -050094 else
Chris Masonf9ef6602008-01-03 09:22:38 -050095 thresh = total * 85;
96
97 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -050098
Chris Mason1832a6d2007-12-21 16:27:21 -050099 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
100 ret = -ENOSPC;
Chris Masonbcbfce82008-04-22 13:26:47 -0400101 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -0500102 return ret;
103}
104
Chris Masonbe20aa92007-12-17 20:14:01 -0500105static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db22007-08-27 16:49:44 -0400106{
107 struct btrfs_root *root = BTRFS_I(inode)->root;
108 struct btrfs_trans_handle *trans;
Chris Masonb888db22007-08-27 16:49:44 -0400109 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400110 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500111 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400112 u64 blocksize = root->sectorsize;
Chris Masond1310b22008-01-24 16:13:08 -0500113 u64 orig_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500114 struct btrfs_key ins;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400115 struct extent_map *em;
116 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
117 int ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400118
Chris Masonf9295742008-07-17 12:54:14 -0400119 trans = btrfs_join_transaction(root, 1);
Chris Masonb888db22007-08-27 16:49:44 -0400120 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500121 btrfs_set_trans_block_group(trans, inode);
122
Chris Masondb945352007-10-15 16:15:53 -0400123 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500124 num_bytes = max(blocksize, num_bytes);
Chris Masond1310b22008-01-24 16:13:08 -0500125 orig_num_bytes = num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400126
Chris Mason179e29e2007-11-01 11:28:41 -0400127 if (alloc_hint == EXTENT_MAP_INLINE)
128 goto out;
129
Chris Mason3b951512008-04-17 11:29:12 -0400130 BUG_ON(num_bytes > btrfs_super_total_bytes(&root->fs_info->super_copy));
Chris Masone5a22172008-07-18 20:42:20 -0400131 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400132 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1);
Chris Masone5a22172008-07-18 20:42:20 -0400133 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason3b951512008-04-17 11:29:12 -0400134
Chris Masonc59f8952007-12-17 20:14:04 -0500135 while(num_bytes > 0) {
136 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400137 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
138 root->sectorsize, 0, 0,
139 (u64)-1, &ins, 1);
Chris Masonc59f8952007-12-17 20:14:04 -0500140 if (ret) {
141 WARN_ON(1);
142 goto out;
143 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400144 em = alloc_extent_map(GFP_NOFS);
145 em->start = start;
146 em->len = ins.offset;
147 em->block_start = ins.objectid;
148 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masone5a22172008-07-18 20:42:20 -0400149 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400150 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400151 while(1) {
152 spin_lock(&em_tree->lock);
153 ret = add_extent_mapping(em_tree, em);
154 spin_unlock(&em_tree->lock);
155 if (ret != -EEXIST) {
156 free_extent_map(em);
157 break;
158 }
159 btrfs_drop_extent_cache(inode, start,
160 start + ins.offset - 1);
161 }
Chris Masone5a22172008-07-18 20:42:20 -0400162 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400163
Chris Mason98d20f62008-04-14 09:46:10 -0400164 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400165 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
166 ins.offset);
167 BUG_ON(ret);
Chris Mason3b951512008-04-17 11:29:12 -0400168 if (num_bytes < cur_alloc_size) {
169 printk("num_bytes %Lu cur_alloc %Lu\n", num_bytes,
170 cur_alloc_size);
171 break;
172 }
Chris Masonc59f8952007-12-17 20:14:04 -0500173 num_bytes -= cur_alloc_size;
174 alloc_hint = ins.objectid + ins.offset;
175 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400176 }
Chris Masonb888db22007-08-27 16:49:44 -0400177out:
178 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500179 return ret;
180}
181
182static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
183{
184 u64 extent_start;
185 u64 extent_end;
186 u64 bytenr;
187 u64 cow_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500188 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500189 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500190 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona68d5932008-05-08 14:11:56 -0400191 struct btrfs_block_group_cache *block_group;
Chris Masonbe20aa92007-12-17 20:14:01 -0500192 struct extent_buffer *leaf;
193 int found_type;
194 struct btrfs_path *path;
195 struct btrfs_file_extent_item *item;
196 int ret;
197 int err;
198 struct btrfs_key found_key;
199
Chris Masonc31f8832008-01-08 15:46:31 -0500200 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500201 path = btrfs_alloc_path();
202 BUG_ON(!path);
203again:
204 ret = btrfs_lookup_file_extent(NULL, root, path,
205 inode->i_ino, start, 0);
206 if (ret < 0) {
207 btrfs_free_path(path);
208 return ret;
209 }
210
211 cow_end = end;
212 if (ret != 0) {
213 if (path->slots[0] == 0)
214 goto not_found;
215 path->slots[0]--;
216 }
217
218 leaf = path->nodes[0];
219 item = btrfs_item_ptr(leaf, path->slots[0],
220 struct btrfs_file_extent_item);
221
222 /* are we inside the extent that was found? */
223 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
224 found_type = btrfs_key_type(&found_key);
225 if (found_key.objectid != inode->i_ino ||
Chris Masonbbaf5492008-05-08 16:31:21 -0400226 found_type != BTRFS_EXTENT_DATA_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -0500227 goto not_found;
Chris Masonbe20aa92007-12-17 20:14:01 -0500228
229 found_type = btrfs_file_extent_type(leaf, item);
230 extent_start = found_key.offset;
231 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Masonc31f8832008-01-08 15:46:31 -0500232 u64 extent_num_bytes;
233
234 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
235 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500236 err = 0;
237
Chris Mason1832a6d2007-12-21 16:27:21 -0500238 if (loops && start != extent_start)
239 goto not_found;
240
Chris Masonbe20aa92007-12-17 20:14:01 -0500241 if (start < extent_start || start >= extent_end)
242 goto not_found;
243
244 cow_end = min(end, extent_end - 1);
245 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
246 if (bytenr == 0)
247 goto not_found;
248
Chris Masona68d5932008-05-08 14:11:56 -0400249 if (btrfs_count_snapshots_in_path(root, path, inode->i_ino,
250 bytenr) != 1) {
251 goto not_found;
252 }
253
Chris Masonc31f8832008-01-08 15:46:31 -0500254 /*
255 * we may be called by the resizer, make sure we're inside
256 * the limits of the FS
257 */
Chris Masona68d5932008-05-08 14:11:56 -0400258 block_group = btrfs_lookup_block_group(root->fs_info,
259 bytenr);
260 if (!block_group || block_group->ro)
Chris Masonc31f8832008-01-08 15:46:31 -0500261 goto not_found;
262
Chris Masonbe20aa92007-12-17 20:14:01 -0500263 start = extent_end;
Chris Masonbd098352008-01-03 13:23:19 -0500264 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500265 goto not_found;
266 }
267loop:
268 if (start > end) {
269 btrfs_free_path(path);
270 return 0;
271 }
272 btrfs_release_path(root, path);
Chris Mason1832a6d2007-12-21 16:27:21 -0500273 loops++;
Chris Masonbe20aa92007-12-17 20:14:01 -0500274 goto again;
275
276not_found:
Chris Masonbbaf5492008-05-08 16:31:21 -0400277 cow_file_range(inode, start, end);
278 start = end + 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500279 goto loop;
280}
281
282static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
283{
284 struct btrfs_root *root = BTRFS_I(inode)->root;
285 int ret;
Chris Masona2135012008-06-25 16:01:30 -0400286
Yanb98b6762008-01-08 15:54:37 -0500287 if (btrfs_test_opt(root, NODATACOW) ||
288 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500289 ret = run_delalloc_nocow(inode, start, end);
290 else
291 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500292
Chris Masonb888db22007-08-27 16:49:44 -0400293 return ret;
294}
295
Chris Mason291d6732008-01-29 15:55:23 -0500296int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500297 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500298{
Chris Masonbcbfce82008-04-22 13:26:47 -0400299 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -0500300 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500301 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400302 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -0500303 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -0500304 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonbcbfce82008-04-22 13:26:47 -0400305 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500306 }
307 return 0;
308}
309
310int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500311 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500312{
Chris Masonb0c68f82008-01-31 11:05:37 -0500313 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500314 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400315 unsigned long flags;
316
317 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -0500318 if (end - start + 1 > root->fs_info->delalloc_bytes) {
319 printk("warning: delalloc account %Lu %Lu\n",
320 end - start + 1, root->fs_info->delalloc_bytes);
321 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -0500322 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -0500323 } else {
324 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -0500325 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -0500326 }
Chris Masonbcbfce82008-04-22 13:26:47 -0400327 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500328 }
329 return 0;
330}
331
Chris Mason239b14b2008-03-24 15:02:07 -0400332int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
333 size_t size, struct bio *bio)
334{
335 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
336 struct btrfs_mapping_tree *map_tree;
Chris Mason239b14b2008-03-24 15:02:07 -0400337 u64 logical = bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -0400338 u64 length = 0;
339 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -0400340 int ret;
341
Chris Masonf2d8d742008-04-21 10:03:05 -0400342 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -0400343 map_tree = &root->fs_info->mapping_tree;
344 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -0400345 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -0400346 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -0400347
Chris Mason239b14b2008-03-24 15:02:07 -0400348 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -0400349 return 1;
350 }
351 return 0;
352}
353
Chris Mason44b8bd72008-04-16 11:14:51 -0400354int __btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400355 int mirror_num)
Chris Mason065631f2008-02-20 12:07:25 -0500356{
Chris Mason065631f2008-02-20 12:07:25 -0500357 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -0500358 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -0400359
Chris Mason3edf7d32008-07-18 06:17:13 -0400360 ret = btrfs_csum_one_bio(root, inode, bio);
Chris Mason44b8bd72008-04-16 11:14:51 -0400361 BUG_ON(ret);
Chris Masone0156402008-04-16 11:15:20 -0400362
Chris Mason8b712842008-06-11 16:50:36 -0400363 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -0400364}
365
366int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
367 int mirror_num)
368{
369 struct btrfs_root *root = BTRFS_I(inode)->root;
370 int ret = 0;
371
Chris Masone6dcd2d2008-07-17 12:53:50 -0400372 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
373 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -0500374
Chris Masone6dcd2d2008-07-17 12:53:50 -0400375 if (!(rw & (1 << BIO_RW))) {
Chris Mason0b86a832008-03-24 15:01:56 -0400376 goto mapit;
377 }
Chris Mason065631f2008-02-20 12:07:25 -0500378
Chris Mason44b8bd72008-04-16 11:14:51 -0400379 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
380 inode, rw, bio, mirror_num,
381 __btrfs_submit_bio_hook);
Chris Mason0b86a832008-03-24 15:01:56 -0400382mapit:
Chris Mason8b712842008-06-11 16:50:36 -0400383 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -0500384}
Chris Mason6885f302008-02-20 16:11:05 -0500385
Chris Masonba1da2f2008-07-17 12:54:15 -0400386static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400387 struct inode *inode, u64 file_offset,
388 struct list_head *list)
389{
390 struct list_head *cur;
391 struct btrfs_ordered_sum *sum;
392
393 btrfs_set_trans_block_group(trans, inode);
Chris Masonba1da2f2008-07-17 12:54:15 -0400394 list_for_each(cur, list) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400395 sum = list_entry(cur, struct btrfs_ordered_sum, list);
396 mutex_lock(&BTRFS_I(inode)->csum_mutex);
397 btrfs_csum_file_blocks(trans, BTRFS_I(inode)->root,
398 inode, sum);
399 mutex_unlock(&BTRFS_I(inode)->csum_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400400 }
401 return 0;
402}
403
Chris Mason247e7432008-07-17 12:53:51 -0400404struct btrfs_writepage_fixup {
405 struct page *page;
406 struct btrfs_work work;
407};
408
409/* see btrfs_writepage_start_hook for details on why this is required */
410void btrfs_writepage_fixup_worker(struct btrfs_work *work)
411{
412 struct btrfs_writepage_fixup *fixup;
413 struct btrfs_ordered_extent *ordered;
414 struct page *page;
415 struct inode *inode;
416 u64 page_start;
417 u64 page_end;
418
419 fixup = container_of(work, struct btrfs_writepage_fixup, work);
420 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -0400421again:
Chris Mason247e7432008-07-17 12:53:51 -0400422 lock_page(page);
423 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
424 ClearPageChecked(page);
425 goto out_page;
426 }
427
428 inode = page->mapping->host;
429 page_start = page_offset(page);
430 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
431
432 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -0400433
434 /* already ordered? We're done */
435 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
436 EXTENT_ORDERED, 0)) {
Chris Mason247e7432008-07-17 12:53:51 -0400437 goto out;
Chris Mason4a096752008-07-21 10:29:44 -0400438 }
439
440 ordered = btrfs_lookup_ordered_extent(inode, page_start);
441 if (ordered) {
442 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
443 page_end, GFP_NOFS);
444 unlock_page(page);
445 btrfs_start_ordered_extent(inode, ordered, 1);
446 goto again;
447 }
Chris Mason247e7432008-07-17 12:53:51 -0400448
449 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start, page_end,
450 GFP_NOFS);
451 ClearPageChecked(page);
452out:
453 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
454out_page:
455 unlock_page(page);
456 page_cache_release(page);
457}
458
459/*
460 * There are a few paths in the higher layers of the kernel that directly
461 * set the page dirty bit without asking the filesystem if it is a
462 * good idea. This causes problems because we want to make sure COW
463 * properly happens and the data=ordered rules are followed.
464 *
465 * In our case any range that doesn't have the EXTENT_ORDERED bit set
466 * hasn't been properly setup for IO. We kick off an async process
467 * to fix it up. The async helper will wait for ordered extents, set
468 * the delalloc bit and make it safe to write the page.
469 */
470int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
471{
472 struct inode *inode = page->mapping->host;
473 struct btrfs_writepage_fixup *fixup;
474 struct btrfs_root *root = BTRFS_I(inode)->root;
475 int ret;
476
477 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
478 EXTENT_ORDERED, 0);
479 if (ret)
480 return 0;
481
482 if (PageChecked(page))
483 return -EAGAIN;
484
485 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
486 if (!fixup)
487 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -0400488
Chris Mason247e7432008-07-17 12:53:51 -0400489 SetPageChecked(page);
490 page_cache_get(page);
491 fixup->work.func = btrfs_writepage_fixup_worker;
492 fixup->page = page;
493 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
494 return -EAGAIN;
495}
496
Chris Mason211f90e2008-07-18 11:56:15 -0400497static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400498{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400499 struct btrfs_root *root = BTRFS_I(inode)->root;
500 struct btrfs_trans_handle *trans;
501 struct btrfs_ordered_extent *ordered_extent;
502 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason7f3c74f2008-07-18 12:01:11 -0400503 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
504 struct extent_map *em;
Chris Masonf4219502008-07-22 11:18:09 -0400505 struct extent_map *em_orig;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400506 u64 alloc_hint = 0;
Chris Masone5a22172008-07-18 20:42:20 -0400507 u64 clear_start;
508 u64 clear_end;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400509 struct list_head list;
510 struct btrfs_key ins;
Chris Masonf4219502008-07-22 11:18:09 -0400511 struct rb_node *rb;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400512 int ret;
513
514 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -0400515 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400516 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400517
Chris Masonf9295742008-07-17 12:54:14 -0400518 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400519
520 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
521 BUG_ON(!ordered_extent);
522
523 lock_extent(io_tree, ordered_extent->file_offset,
524 ordered_extent->file_offset + ordered_extent->len - 1,
525 GFP_NOFS);
526
527 INIT_LIST_HEAD(&list);
528
529 ins.objectid = ordered_extent->start;
530 ins.offset = ordered_extent->len;
531 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone5a22172008-07-18 20:42:20 -0400532
Chris Masone6dcd2d2008-07-17 12:53:50 -0400533 ret = btrfs_alloc_reserved_extent(trans, root, root->root_key.objectid,
534 trans->transid, inode->i_ino,
535 ordered_extent->file_offset, &ins);
536 BUG_ON(ret);
Chris Masonee6e6502008-07-17 12:54:40 -0400537
538 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masone5a22172008-07-18 20:42:20 -0400539
Chris Masonf4219502008-07-22 11:18:09 -0400540 spin_lock(&em_tree->lock);
541 clear_start = ordered_extent->file_offset;
542 clear_end = ordered_extent->file_offset + ordered_extent->len;
543 em = lookup_extent_mapping(em_tree, clear_start,
544 ordered_extent->len);
545 em_orig = em;
546 while(em && clear_start < extent_map_end(em) && clear_end > em->start) {
547 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
548 rb = rb_next(&em->rb_node);
549 if (!rb)
550 break;
551 em = rb_entry(rb, struct extent_map, rb_node);
552 }
553 free_extent_map(em_orig);
554 spin_unlock(&em_tree->lock);
555
Chris Masone6dcd2d2008-07-17 12:53:50 -0400556 ret = btrfs_drop_extents(trans, root, inode,
557 ordered_extent->file_offset,
558 ordered_extent->file_offset +
559 ordered_extent->len,
560 ordered_extent->file_offset, &alloc_hint);
561 BUG_ON(ret);
562 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
563 ordered_extent->file_offset,
564 ordered_extent->start,
565 ordered_extent->len,
566 ordered_extent->len, 0);
567 BUG_ON(ret);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400568
Chris Masone6dcd2d2008-07-17 12:53:50 -0400569 btrfs_drop_extent_cache(inode, ordered_extent->file_offset,
570 ordered_extent->file_offset +
571 ordered_extent->len - 1);
Chris Masonee6e6502008-07-17 12:54:40 -0400572 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
573
Chris Masone6dcd2d2008-07-17 12:53:50 -0400574 inode->i_blocks += ordered_extent->len >> 9;
575 unlock_extent(io_tree, ordered_extent->file_offset,
576 ordered_extent->file_offset + ordered_extent->len - 1,
577 GFP_NOFS);
578 add_pending_csums(trans, inode, ordered_extent->file_offset,
579 &ordered_extent->list);
580
Chris Masondbe674a2008-07-17 12:54:05 -0400581 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400582 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400583
Chris Masone6dcd2d2008-07-17 12:53:50 -0400584 /* once for us */
585 btrfs_put_ordered_extent(ordered_extent);
586 /* once for the tree */
587 btrfs_put_ordered_extent(ordered_extent);
588
589 btrfs_update_inode(trans, root, inode);
590 btrfs_end_transaction(trans, root);
591 return 0;
592}
593
Chris Mason211f90e2008-07-18 11:56:15 -0400594int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
595 struct extent_state *state, int uptodate)
596{
597 return btrfs_finish_ordered_io(page->mapping->host, start, end);
598}
599
Chris Mason07157aa2007-08-30 08:50:51 -0400600int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
601{
602 int ret = 0;
603 struct inode *inode = page->mapping->host;
604 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500605 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400606 struct btrfs_csum_item *item;
607 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400608 u32 csum;
Chris Mason699122f2008-04-16 12:59:22 -0400609
Yanb98b6762008-01-08 15:54:37 -0500610 if (btrfs_test_opt(root, NODATASUM) ||
611 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500612 return 0;
Chris Mason699122f2008-04-16 12:59:22 -0400613
Chris Mason07157aa2007-08-30 08:50:51 -0400614 path = btrfs_alloc_path();
615 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
616 if (IS_ERR(item)) {
Chris Masonba1da2f2008-07-17 12:54:15 -0400617 /*
618 * It is possible there is an ordered extent that has
619 * not yet finished for this range in the file. If so,
620 * that extent will have a csum cached, and it will insert
621 * the sum after all the blocks in the extent are fully
622 * on disk. So, look for an ordered extent and use the
623 * sum if found.
624 */
625 ret = btrfs_find_ordered_sum(inode, start, &csum);
626 if (ret == 0)
627 goto found;
628
Chris Mason07157aa2007-08-30 08:50:51 -0400629 ret = PTR_ERR(item);
630 /* a csum that isn't present is a preallocated region. */
631 if (ret == -ENOENT || ret == -EFBIG)
632 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400633 csum = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400634 printk("no csum found for inode %lu start %Lu\n", inode->i_ino,
635 start);
Chris Mason07157aa2007-08-30 08:50:51 -0400636 goto out;
637 }
Chris Masonff79f812007-10-15 16:22:25 -0400638 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
639 BTRFS_CRC32_SIZE);
Chris Masonba1da2f2008-07-17 12:54:15 -0400640found:
Chris Masond1310b22008-01-24 16:13:08 -0500641 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400642out:
643 if (path)
644 btrfs_free_path(path);
Chris Mason07157aa2007-08-30 08:50:51 -0400645 return ret;
646}
647
Chris Mason7e383262008-04-09 16:28:12 -0400648struct io_failure_record {
649 struct page *page;
650 u64 start;
651 u64 len;
652 u64 logical;
653 int last_mirror;
654};
655
Chris Mason1259ab72008-05-12 13:39:03 -0400656int btrfs_io_failed_hook(struct bio *failed_bio,
657 struct page *page, u64 start, u64 end,
658 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -0400659{
660 struct io_failure_record *failrec = NULL;
661 u64 private;
662 struct extent_map *em;
663 struct inode *inode = page->mapping->host;
664 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -0400665 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -0400666 struct bio *bio;
667 int num_copies;
668 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400669 int rw;
Chris Mason7e383262008-04-09 16:28:12 -0400670 u64 logical;
671
672 ret = get_state_private(failure_tree, start, &private);
673 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -0400674 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
675 if (!failrec)
676 return -ENOMEM;
677 failrec->start = start;
678 failrec->len = end - start + 1;
679 failrec->last_mirror = 0;
680
Chris Mason3b951512008-04-17 11:29:12 -0400681 spin_lock(&em_tree->lock);
682 em = lookup_extent_mapping(em_tree, start, failrec->len);
683 if (em->start > start || em->start + em->len < start) {
684 free_extent_map(em);
685 em = NULL;
686 }
687 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -0400688
689 if (!em || IS_ERR(em)) {
690 kfree(failrec);
691 return -EIO;
692 }
693 logical = start - em->start;
694 logical = em->block_start + logical;
695 failrec->logical = logical;
696 free_extent_map(em);
697 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
698 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -0400699 set_state_private(failure_tree, start,
700 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -0400701 } else {
Chris Mason587f7702008-04-11 12:16:46 -0400702 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -0400703 }
704 num_copies = btrfs_num_copies(
705 &BTRFS_I(inode)->root->fs_info->mapping_tree,
706 failrec->logical, failrec->len);
707 failrec->last_mirror++;
708 if (!state) {
709 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
710 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
711 failrec->start,
712 EXTENT_LOCKED);
713 if (state && state->start != failrec->start)
714 state = NULL;
715 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
716 }
717 if (!state || failrec->last_mirror > num_copies) {
718 set_state_private(failure_tree, failrec->start, 0);
719 clear_extent_bits(failure_tree, failrec->start,
720 failrec->start + failrec->len - 1,
721 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
722 kfree(failrec);
723 return -EIO;
724 }
725 bio = bio_alloc(GFP_NOFS, 1);
726 bio->bi_private = state;
727 bio->bi_end_io = failed_bio->bi_end_io;
728 bio->bi_sector = failrec->logical >> 9;
729 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -0400730 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -0400731 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -0400732 if (failed_bio->bi_rw & (1 << BIO_RW))
733 rw = WRITE;
734 else
735 rw = READ;
736
737 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
738 failrec->last_mirror);
739 return 0;
740}
741
742int btrfs_clean_io_failures(struct inode *inode, u64 start)
743{
744 u64 private;
745 u64 private_failure;
746 struct io_failure_record *failure;
747 int ret;
748
749 private = 0;
750 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
751 (u64)-1, 1, EXTENT_DIRTY)) {
752 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
753 start, &private_failure);
754 if (ret == 0) {
755 failure = (struct io_failure_record *)(unsigned long)
756 private_failure;
757 set_state_private(&BTRFS_I(inode)->io_failure_tree,
758 failure->start, 0);
759 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
760 failure->start,
761 failure->start + failure->len - 1,
762 EXTENT_DIRTY | EXTENT_LOCKED,
763 GFP_NOFS);
764 kfree(failure);
765 }
766 }
Chris Mason7e383262008-04-09 16:28:12 -0400767 return 0;
768}
769
Chris Mason70dec802008-01-29 09:59:12 -0500770int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
771 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400772{
Chris Mason35ebb932007-10-30 16:56:53 -0400773 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400774 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500775 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400776 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500777 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400778 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400779 struct btrfs_root *root = BTRFS_I(inode)->root;
780 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400781 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500782
Yanb98b6762008-01-08 15:54:37 -0500783 if (btrfs_test_opt(root, NODATASUM) ||
784 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500785 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500786 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500787 private = state->private;
788 ret = 0;
789 } else {
790 ret = get_state_private(io_tree, start, &private);
791 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400792 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400793 kaddr = kmap_atomic(page, KM_IRQ0);
794 if (ret) {
795 goto zeroit;
796 }
Chris Masonff79f812007-10-15 16:22:25 -0400797 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
798 btrfs_csum_final(csum, (char *)&csum);
799 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400800 goto zeroit;
801 }
802 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400803 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -0400804
805 /* if the io failure tree for this inode is non-empty,
806 * check to see if we've recovered from a failed IO
807 */
Chris Mason1259ab72008-05-12 13:39:03 -0400808 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400809 return 0;
810
811zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500812 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
813 page->mapping->host->i_ino, (unsigned long long)start, csum,
814 private);
Chris Masondb945352007-10-15 16:15:53 -0400815 memset(kaddr + offset, 1, end - start + 1);
816 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400817 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400818 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -0400819 if (private == 0)
820 return 0;
Chris Mason7e383262008-04-09 16:28:12 -0400821 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -0400822}
Chris Masonb888db22007-08-27 16:49:44 -0400823
Chris Mason39279cc2007-06-12 06:35:45 -0400824void btrfs_read_locked_inode(struct inode *inode)
825{
826 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400827 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400828 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400829 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400830 struct btrfs_root *root = BTRFS_I(inode)->root;
831 struct btrfs_key location;
832 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400833 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400834 int ret;
835
836 path = btrfs_alloc_path();
837 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400838 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500839
Chris Mason39279cc2007-06-12 06:35:45 -0400840 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400841 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400842 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400843
Chris Mason5f39d392007-10-15 16:14:19 -0400844 leaf = path->nodes[0];
845 inode_item = btrfs_item_ptr(leaf, path->slots[0],
846 struct btrfs_inode_item);
847
848 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
849 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
850 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
851 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -0400852 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -0400853
854 tspec = btrfs_inode_atime(inode_item);
855 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
856 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
857
858 tspec = btrfs_inode_mtime(inode_item);
859 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
860 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
861
862 tspec = btrfs_inode_ctime(inode_item);
863 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
864 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
865
866 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
867 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400868 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400869 rdev = btrfs_inode_rdev(leaf, inode_item);
870
871 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400872 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
873 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500874 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500875 if (!BTRFS_I(inode)->block_group) {
876 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -0400877 NULL, 0,
878 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -0500879 }
Chris Mason39279cc2007-06-12 06:35:45 -0400880 btrfs_free_path(path);
881 inode_item = NULL;
882
Chris Mason39279cc2007-06-12 06:35:45 -0400883 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400884 case S_IFREG:
885 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -0400886 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -0500887 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400888 inode->i_fop = &btrfs_file_operations;
889 inode->i_op = &btrfs_file_inode_operations;
890 break;
891 case S_IFDIR:
892 inode->i_fop = &btrfs_dir_file_operations;
893 if (root == root->fs_info->tree_root)
894 inode->i_op = &btrfs_dir_ro_inode_operations;
895 else
896 inode->i_op = &btrfs_dir_inode_operations;
897 break;
898 case S_IFLNK:
899 inode->i_op = &btrfs_symlink_inode_operations;
900 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -0400901 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -0400902 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400903 default:
904 init_special_inode(inode, inode->i_mode, rdev);
905 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400906 }
907 return;
908
909make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -0400910 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -0400911 make_bad_inode(inode);
912}
913
Chris Mason5f39d392007-10-15 16:14:19 -0400914static void fill_inode_item(struct extent_buffer *leaf,
915 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400916 struct inode *inode)
917{
Chris Mason5f39d392007-10-15 16:14:19 -0400918 btrfs_set_inode_uid(leaf, item, inode->i_uid);
919 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -0400920 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -0400921 btrfs_set_inode_mode(leaf, item, inode->i_mode);
922 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
923
924 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
925 inode->i_atime.tv_sec);
926 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
927 inode->i_atime.tv_nsec);
928
929 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
930 inode->i_mtime.tv_sec);
931 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
932 inode->i_mtime.tv_nsec);
933
934 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
935 inode->i_ctime.tv_sec);
936 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
937 inode->i_ctime.tv_nsec);
938
939 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
940 btrfs_set_inode_generation(leaf, item, inode->i_generation);
941 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500942 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400943 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400944 BTRFS_I(inode)->block_group->key.objectid);
945}
946
Chris Masonba1da2f2008-07-17 12:54:15 -0400947int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400948 struct btrfs_root *root,
949 struct inode *inode)
950{
951 struct btrfs_inode_item *inode_item;
952 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400953 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400954 int ret;
955
956 path = btrfs_alloc_path();
957 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400958 ret = btrfs_lookup_inode(trans, root, path,
959 &BTRFS_I(inode)->location, 1);
960 if (ret) {
961 if (ret > 0)
962 ret = -ENOENT;
963 goto failed;
964 }
965
Chris Mason5f39d392007-10-15 16:14:19 -0400966 leaf = path->nodes[0];
967 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400968 struct btrfs_inode_item);
969
Chris Mason5f39d392007-10-15 16:14:19 -0400970 fill_inode_item(leaf, inode_item, inode);
971 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400972 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400973 ret = 0;
974failed:
Chris Mason39279cc2007-06-12 06:35:45 -0400975 btrfs_free_path(path);
976 return ret;
977}
978
979
980static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
981 struct btrfs_root *root,
982 struct inode *dir,
983 struct dentry *dentry)
984{
985 struct btrfs_path *path;
986 const char *name = dentry->d_name.name;
987 int name_len = dentry->d_name.len;
988 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400989 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400990 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400991 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400992
993 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400994 if (!path) {
995 ret = -ENOMEM;
996 goto err;
997 }
998
Chris Mason39279cc2007-06-12 06:35:45 -0400999 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
1000 name, name_len, -1);
1001 if (IS_ERR(di)) {
1002 ret = PTR_ERR(di);
1003 goto err;
1004 }
1005 if (!di) {
1006 ret = -ENOENT;
1007 goto err;
1008 }
Chris Mason5f39d392007-10-15 16:14:19 -04001009 leaf = path->nodes[0];
1010 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04001011 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04001012 if (ret)
1013 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04001014 btrfs_release_path(root, path);
1015
1016 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -04001017 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04001018 if (IS_ERR(di)) {
1019 ret = PTR_ERR(di);
1020 goto err;
1021 }
1022 if (!di) {
1023 ret = -ENOENT;
1024 goto err;
1025 }
1026 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04001027 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04001028
1029 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -05001030 ret = btrfs_del_inode_ref(trans, root, name, name_len,
1031 dentry->d_inode->i_ino,
1032 dentry->d_parent->d_inode->i_ino);
1033 if (ret) {
1034 printk("failed to delete reference to %.*s, "
1035 "inode %lu parent %lu\n", name_len, name,
1036 dentry->d_inode->i_ino,
1037 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -05001038 }
Chris Mason39279cc2007-06-12 06:35:45 -04001039err:
1040 btrfs_free_path(path);
1041 if (!ret) {
Chris Masondbe674a2008-07-17 12:54:05 -04001042 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04001043 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001044 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -05001045#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1046 dentry->d_inode->i_nlink--;
1047#else
Chris Mason39279cc2007-06-12 06:35:45 -04001048 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001049#endif
Chris Mason54aa1f42007-06-22 14:16:25 -04001050 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001051 dir->i_sb->s_dirt = 1;
1052 }
1053 return ret;
1054}
1055
1056static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
1057{
1058 struct btrfs_root *root;
1059 struct btrfs_trans_handle *trans;
1060 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05001061 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001062
1063 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001064
1065 ret = btrfs_check_free_space(root, 1, 1);
1066 if (ret)
1067 goto fail;
1068
Chris Mason39279cc2007-06-12 06:35:45 -04001069 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001070
Chris Mason39279cc2007-06-12 06:35:45 -04001071 btrfs_set_trans_block_group(trans, dir);
1072 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001073 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04001074
Chris Mason89ce8a62008-06-25 16:01:31 -04001075 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001076fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001077 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001078 return ret;
1079}
1080
1081static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
1082{
1083 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001084 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001085 int ret;
1086 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04001087 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05001088 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001089
Chris Mason925baed2008-06-25 16:01:30 -04001090 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
Yan134d4512007-10-25 15:49:25 -04001091 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04001092 }
Yan134d4512007-10-25 15:49:25 -04001093
Chris Mason1832a6d2007-12-21 16:27:21 -05001094 ret = btrfs_check_free_space(root, 1, 1);
1095 if (ret)
1096 goto fail;
1097
Chris Mason39279cc2007-06-12 06:35:45 -04001098 trans = btrfs_start_transaction(root, 1);
1099 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04001100
1101 /* now the directory is empty */
1102 err = btrfs_unlink_trans(trans, root, dir, dentry);
1103 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04001104 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001105 }
Chris Mason39544012007-12-12 14:38:19 -05001106
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001107 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04001108 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001109fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001110 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05001111
Chris Mason39279cc2007-06-12 06:35:45 -04001112 if (ret && !err)
1113 err = ret;
1114 return err;
1115}
1116
Chris Mason39279cc2007-06-12 06:35:45 -04001117/*
Chris Mason39279cc2007-06-12 06:35:45 -04001118 * this can truncate away extent items, csum items and directory items.
1119 * It starts at a high offset and removes keys until it can't find
1120 * any higher than i_size.
1121 *
1122 * csum items that cross the new i_size are truncated to the new size
1123 * as well.
1124 */
1125static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
1126 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -05001127 struct inode *inode,
1128 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001129{
1130 int ret;
1131 struct btrfs_path *path;
1132 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001133 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001134 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04001135 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001136 struct btrfs_file_extent_item *fi;
1137 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04001138 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001139 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001140 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001141 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001142 int found_extent;
1143 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05001144 int pending_del_nr = 0;
1145 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04001146 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -04001147 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001148
Chris Mason3b951512008-04-17 11:29:12 -04001149 btrfs_drop_extent_cache(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04001150 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04001151 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04001152 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04001153
Chris Mason39279cc2007-06-12 06:35:45 -04001154 /* FIXME, add redo link to tree so we don't leak on crash */
1155 key.objectid = inode->i_ino;
1156 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04001157 key.type = (u8)-1;
1158
Chris Mason85e21ba2008-01-29 15:11:36 -05001159 btrfs_init_path(path);
1160search_again:
1161 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1162 if (ret < 0) {
1163 goto error;
1164 }
1165 if (ret > 0) {
1166 BUG_ON(path->slots[0] == 0);
1167 path->slots[0]--;
1168 }
1169
Chris Mason39279cc2007-06-12 06:35:45 -04001170 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001171 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001172 leaf = path->nodes[0];
1173 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1174 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04001175
Chris Mason5f39d392007-10-15 16:14:19 -04001176 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04001177 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001178
Chris Mason85e21ba2008-01-29 15:11:36 -05001179 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001180 break;
1181
Chris Mason5f39d392007-10-15 16:14:19 -04001182 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001183 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04001184 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04001185 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04001186 extent_type = btrfs_file_extent_type(leaf, fi);
1187 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04001188 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04001189 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04001190 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1191 struct btrfs_item *item = btrfs_item_nr(leaf,
1192 path->slots[0]);
1193 item_end += btrfs_file_extent_inline_len(leaf,
1194 item);
Chris Mason39279cc2007-06-12 06:35:45 -04001195 }
Yan008630c2007-11-07 13:31:09 -05001196 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04001197 }
1198 if (found_type == BTRFS_CSUM_ITEM_KEY) {
1199 ret = btrfs_csum_truncate(trans, root, path,
1200 inode->i_size);
1201 BUG_ON(ret);
1202 }
Yan008630c2007-11-07 13:31:09 -05001203 if (item_end < inode->i_size) {
Chris Masonb888db22007-08-27 16:49:44 -04001204 if (found_type == BTRFS_DIR_ITEM_KEY) {
1205 found_type = BTRFS_INODE_ITEM_KEY;
1206 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
1207 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05001208 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
1209 found_type = BTRFS_XATTR_ITEM_KEY;
1210 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
1211 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04001212 } else if (found_type) {
1213 found_type--;
1214 } else {
1215 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001216 }
Yana61721d2007-09-17 11:08:38 -04001217 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05001218 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04001219 }
Chris Mason5f39d392007-10-15 16:14:19 -04001220 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -04001221 del_item = 1;
1222 else
1223 del_item = 0;
1224 found_extent = 0;
1225
1226 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001227 if (found_type != BTRFS_EXTENT_DATA_KEY)
1228 goto delete;
1229
1230 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001231 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001232 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001233 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001234 u64 orig_num_bytes =
1235 btrfs_file_extent_num_bytes(leaf, fi);
1236 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001237 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05001238 extent_num_bytes = extent_num_bytes &
1239 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001240 btrfs_set_file_extent_num_bytes(leaf, fi,
1241 extent_num_bytes);
1242 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001243 extent_num_bytes);
1244 if (extent_start != 0)
1245 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001246 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001247 } else {
Chris Masondb945352007-10-15 16:15:53 -04001248 extent_num_bytes =
1249 btrfs_file_extent_disk_num_bytes(leaf,
1250 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001251 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001252 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001253 if (extent_start != 0) {
1254 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -05001255 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001256 }
Chris Masond8d5f3e2007-12-11 12:42:00 -05001257 root_gen = btrfs_header_generation(leaf);
1258 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001259 }
Chris Mason90692182008-02-08 13:49:28 -05001260 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1261 if (!del_item) {
1262 u32 newsize = inode->i_size - found_key.offset;
1263 dec_i_blocks(inode, item_end + 1 -
1264 found_key.offset - newsize);
1265 newsize =
1266 btrfs_file_extent_calc_inline_size(newsize);
1267 ret = btrfs_truncate_item(trans, root, path,
1268 newsize, 1);
1269 BUG_ON(ret);
1270 } else {
1271 dec_i_blocks(inode, item_end + 1 -
1272 found_key.offset);
1273 }
Chris Mason39279cc2007-06-12 06:35:45 -04001274 }
Chris Mason179e29e2007-11-01 11:28:41 -04001275delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001276 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001277 if (!pending_del_nr) {
1278 /* no pending yet, add ourselves */
1279 pending_del_slot = path->slots[0];
1280 pending_del_nr = 1;
1281 } else if (pending_del_nr &&
1282 path->slots[0] + 1 == pending_del_slot) {
1283 /* hop on the pending chunk */
1284 pending_del_nr++;
1285 pending_del_slot = path->slots[0];
1286 } else {
1287 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1288 }
Chris Mason39279cc2007-06-12 06:35:45 -04001289 } else {
1290 break;
1291 }
Chris Mason39279cc2007-06-12 06:35:45 -04001292 if (found_extent) {
1293 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001294 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -05001295 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001296 root_gen, inode->i_ino,
1297 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001298 BUG_ON(ret);
1299 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001300next:
1301 if (path->slots[0] == 0) {
1302 if (pending_del_nr)
1303 goto del_pending;
1304 btrfs_release_path(root, path);
1305 goto search_again;
1306 }
1307
1308 path->slots[0]--;
1309 if (pending_del_nr &&
1310 path->slots[0] + 1 != pending_del_slot) {
1311 struct btrfs_key debug;
1312del_pending:
1313 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1314 pending_del_slot);
1315 ret = btrfs_del_items(trans, root, path,
1316 pending_del_slot,
1317 pending_del_nr);
1318 BUG_ON(ret);
1319 pending_del_nr = 0;
1320 btrfs_release_path(root, path);
1321 goto search_again;
1322 }
Chris Mason39279cc2007-06-12 06:35:45 -04001323 }
1324 ret = 0;
1325error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001326 if (pending_del_nr) {
1327 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1328 pending_del_nr);
1329 }
Chris Mason39279cc2007-06-12 06:35:45 -04001330 btrfs_free_path(path);
1331 inode->i_sb->s_dirt = 1;
1332 return ret;
1333}
1334
Chris Masona52d9a82007-08-27 16:49:44 -04001335/*
1336 * taken from block_truncate_page, but does cow as it zeros out
1337 * any bytes left in the last page in the file.
1338 */
1339static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1340{
1341 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001342 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001343 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1344 struct btrfs_ordered_extent *ordered;
1345 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04001346 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001347 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1348 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1349 struct page *page;
1350 int ret = 0;
1351 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001352 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04001353
1354 if ((offset & (blocksize - 1)) == 0)
1355 goto out;
1356
1357 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04001358again:
Chris Masona52d9a82007-08-27 16:49:44 -04001359 page = grab_cache_page(mapping, index);
1360 if (!page)
1361 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001362
1363 page_start = page_offset(page);
1364 page_end = page_start + PAGE_CACHE_SIZE - 1;
1365
Chris Masona52d9a82007-08-27 16:49:44 -04001366 if (!PageUptodate(page)) {
1367 ret = btrfs_readpage(NULL, page);
1368 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04001369 if (page->mapping != mapping) {
1370 unlock_page(page);
1371 page_cache_release(page);
1372 goto again;
1373 }
Chris Masona52d9a82007-08-27 16:49:44 -04001374 if (!PageUptodate(page)) {
1375 ret = -EIO;
1376 goto out;
1377 }
1378 }
Chris Mason211c17f2008-05-15 09:13:45 -04001379 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001380
1381 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
1382 set_page_extent_mapped(page);
1383
1384 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1385 if (ordered) {
1386 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
1387 unlock_page(page);
1388 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04001389 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001390 btrfs_put_ordered_extent(ordered);
1391 goto again;
1392 }
1393
1394 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
1395 page_end, GFP_NOFS);
1396 ret = 0;
1397 if (offset != PAGE_CACHE_SIZE) {
1398 kaddr = kmap(page);
1399 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
1400 flush_dcache_page(page);
1401 kunmap(page);
1402 }
Chris Mason247e7432008-07-17 12:53:51 -04001403 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001404 set_page_dirty(page);
1405 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001406
Chris Mason39279cc2007-06-12 06:35:45 -04001407 unlock_page(page);
1408 page_cache_release(page);
1409out:
1410 return ret;
1411}
1412
1413static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1414{
1415 struct inode *inode = dentry->d_inode;
1416 int err;
1417
1418 err = inode_change_ok(inode, attr);
1419 if (err)
1420 return err;
1421
1422 if (S_ISREG(inode->i_mode) &&
1423 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1424 struct btrfs_trans_handle *trans;
1425 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001426 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001427
Chris Mason5f39d392007-10-15 16:14:19 -04001428 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001429 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001430 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001431 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001432 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001433
Chris Mason1b0f7c22008-01-30 14:33:02 -05001434 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001435 goto out;
1436
Chris Mason1832a6d2007-12-21 16:27:21 -05001437 err = btrfs_check_free_space(root, 1, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05001438 if (err)
1439 goto fail;
1440
Chris Mason39279cc2007-06-12 06:35:45 -04001441 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1442
Chris Mason5f564062008-01-22 16:47:59 -05001443 hole_size = block_end - hole_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001444 btrfs_wait_ordered_range(inode, hole_start, hole_size);
1445 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001446
Chris Mason39279cc2007-06-12 06:35:45 -04001447 trans = btrfs_start_transaction(root, 1);
1448 btrfs_set_trans_block_group(trans, inode);
Chris Masonee6e6502008-07-17 12:54:40 -04001449 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -04001450 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001451 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001452 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001453
Chris Mason179e29e2007-11-01 11:28:41 -04001454 if (alloc_hint != EXTENT_MAP_INLINE) {
1455 err = btrfs_insert_file_extent(trans, root,
1456 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001457 hole_start, 0, 0,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001458 hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001459 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001460 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001461 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001462 }
Chris Masonee6e6502008-07-17 12:54:40 -04001463 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001464 btrfs_end_transaction(trans, root);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001465 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001466 if (err)
1467 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001468 }
1469out:
1470 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001471fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001472 return err;
1473}
Chris Mason61295eb2008-01-14 16:24:38 -05001474
Chris Mason39279cc2007-06-12 06:35:45 -04001475void btrfs_delete_inode(struct inode *inode)
1476{
1477 struct btrfs_trans_handle *trans;
1478 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001479 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001480 int ret;
1481
1482 truncate_inode_pages(&inode->i_data, 0);
1483 if (is_bad_inode(inode)) {
1484 goto no_delete;
1485 }
Chris Mason4a096752008-07-21 10:29:44 -04001486 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04001487
Chris Masondbe674a2008-07-17 12:54:05 -04001488 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001489 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001490
Chris Mason39279cc2007-06-12 06:35:45 -04001491 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001492 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001493 if (ret)
1494 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001495
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001496 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001497 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001498
Chris Mason39279cc2007-06-12 06:35:45 -04001499 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001500 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001501 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001502
1503no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001504 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001505 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001506 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001507no_delete:
1508 clear_inode(inode);
1509}
1510
1511/*
1512 * this returns the key found in the dir entry in the location pointer.
1513 * If no dir entries were found, location->objectid is 0.
1514 */
1515static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1516 struct btrfs_key *location)
1517{
1518 const char *name = dentry->d_name.name;
1519 int namelen = dentry->d_name.len;
1520 struct btrfs_dir_item *di;
1521 struct btrfs_path *path;
1522 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001523 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001524
Chris Mason39544012007-12-12 14:38:19 -05001525 if (namelen == 1 && strcmp(name, ".") == 0) {
1526 location->objectid = dir->i_ino;
1527 location->type = BTRFS_INODE_ITEM_KEY;
1528 location->offset = 0;
1529 return 0;
1530 }
Chris Mason39279cc2007-06-12 06:35:45 -04001531 path = btrfs_alloc_path();
1532 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001533
Chris Mason7a720532007-12-13 09:06:59 -05001534 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001535 struct btrfs_key key;
1536 struct extent_buffer *leaf;
1537 u32 nritems;
1538 int slot;
1539
1540 key.objectid = dir->i_ino;
1541 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1542 key.offset = 0;
1543 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1544 BUG_ON(ret == 0);
1545 ret = 0;
1546
1547 leaf = path->nodes[0];
1548 slot = path->slots[0];
1549 nritems = btrfs_header_nritems(leaf);
1550 if (slot >= nritems)
1551 goto out_err;
1552
1553 btrfs_item_key_to_cpu(leaf, &key, slot);
1554 if (key.objectid != dir->i_ino ||
1555 key.type != BTRFS_INODE_REF_KEY) {
1556 goto out_err;
1557 }
1558 location->objectid = key.offset;
1559 location->type = BTRFS_INODE_ITEM_KEY;
1560 location->offset = 0;
1561 goto out;
1562 }
1563
Chris Mason39279cc2007-06-12 06:35:45 -04001564 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1565 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001566 if (IS_ERR(di))
1567 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001568 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001569 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001570 }
Chris Mason5f39d392007-10-15 16:14:19 -04001571 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001572out:
Chris Mason39279cc2007-06-12 06:35:45 -04001573 btrfs_free_path(path);
1574 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001575out_err:
1576 location->objectid = 0;
1577 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001578}
1579
1580/*
1581 * when we hit a tree root in a directory, the btrfs part of the inode
1582 * needs to be changed to reflect the root directory of the tree root. This
1583 * is kind of like crossing a mount point.
1584 */
1585static int fixup_tree_root_location(struct btrfs_root *root,
1586 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001587 struct btrfs_root **sub_root,
1588 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001589{
1590 struct btrfs_path *path;
1591 struct btrfs_root_item *ri;
1592
1593 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1594 return 0;
1595 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1596 return 0;
1597
1598 path = btrfs_alloc_path();
1599 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001600
Josef Bacik58176a92007-08-29 15:47:34 -04001601 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1602 dentry->d_name.name,
1603 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001604 if (IS_ERR(*sub_root))
1605 return PTR_ERR(*sub_root);
1606
1607 ri = &(*sub_root)->root_item;
1608 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001609 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1610 location->offset = 0;
1611
1612 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04001613 return 0;
1614}
1615
1616static int btrfs_init_locked_inode(struct inode *inode, void *p)
1617{
1618 struct btrfs_iget_args *args = p;
1619 inode->i_ino = args->ino;
1620 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001621 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04001622 BTRFS_I(inode)->disk_i_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001623 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1624 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001625 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001626 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1627 inode->i_mapping, GFP_NOFS);
Chris Masonba1da2f2008-07-17 12:54:15 -04001628 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04001629 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04001630 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001631 return 0;
1632}
1633
1634static int btrfs_find_actor(struct inode *inode, void *opaque)
1635{
1636 struct btrfs_iget_args *args = opaque;
1637 return (args->ino == inode->i_ino &&
1638 args->root == BTRFS_I(inode)->root);
1639}
1640
Chris Masondc17ff82008-01-08 15:46:30 -05001641struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1642 u64 root_objectid)
1643{
1644 struct btrfs_iget_args args;
1645 args.ino = objectid;
1646 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1647
1648 if (!args.root)
1649 return NULL;
1650
1651 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1652}
1653
Chris Mason39279cc2007-06-12 06:35:45 -04001654struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1655 struct btrfs_root *root)
1656{
1657 struct inode *inode;
1658 struct btrfs_iget_args args;
1659 args.ino = objectid;
1660 args.root = root;
1661
1662 inode = iget5_locked(s, objectid, btrfs_find_actor,
1663 btrfs_init_locked_inode,
1664 (void *)&args);
1665 return inode;
1666}
1667
1668static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1669 struct nameidata *nd)
1670{
1671 struct inode * inode;
1672 struct btrfs_inode *bi = BTRFS_I(dir);
1673 struct btrfs_root *root = bi->root;
1674 struct btrfs_root *sub_root = root;
1675 struct btrfs_key location;
1676 int ret;
1677
1678 if (dentry->d_name.len > BTRFS_NAME_LEN)
1679 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001680
Chris Mason39279cc2007-06-12 06:35:45 -04001681 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001682
Chris Mason39279cc2007-06-12 06:35:45 -04001683 if (ret < 0)
1684 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001685
Chris Mason39279cc2007-06-12 06:35:45 -04001686 inode = NULL;
1687 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001688 ret = fixup_tree_root_location(root, &location, &sub_root,
1689 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001690 if (ret < 0)
1691 return ERR_PTR(ret);
1692 if (ret > 0)
1693 return ERR_PTR(-ENOENT);
1694 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1695 sub_root);
1696 if (!inode)
1697 return ERR_PTR(-EACCES);
1698 if (inode->i_state & I_NEW) {
1699 /* the inode and parent dir are two different roots */
1700 if (sub_root != root) {
1701 igrab(inode);
1702 sub_root->inode = inode;
1703 }
1704 BTRFS_I(inode)->root = sub_root;
1705 memcpy(&BTRFS_I(inode)->location, &location,
1706 sizeof(location));
1707 btrfs_read_locked_inode(inode);
1708 unlock_new_inode(inode);
1709 }
1710 }
1711 return d_splice_alias(inode, dentry);
1712}
1713
Chris Mason39279cc2007-06-12 06:35:45 -04001714static unsigned char btrfs_filetype_table[] = {
1715 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1716};
1717
1718static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1719{
Chris Mason6da6aba2007-12-18 16:15:09 -05001720 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001721 struct btrfs_root *root = BTRFS_I(inode)->root;
1722 struct btrfs_item *item;
1723 struct btrfs_dir_item *di;
1724 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001725 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001726 struct btrfs_path *path;
1727 int ret;
1728 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001729 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001730 int slot;
1731 int advance;
1732 unsigned char d_type;
1733 int over = 0;
1734 u32 di_cur;
1735 u32 di_total;
1736 u32 di_len;
1737 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001738 char tmp_name[32];
1739 char *name_ptr;
1740 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001741
1742 /* FIXME, use a real flag for deciding about the key type */
1743 if (root->fs_info->tree_root == root)
1744 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001745
Chris Mason39544012007-12-12 14:38:19 -05001746 /* special case for "." */
1747 if (filp->f_pos == 0) {
1748 over = filldir(dirent, ".", 1,
1749 1, inode->i_ino,
1750 DT_DIR);
1751 if (over)
1752 return 0;
1753 filp->f_pos = 1;
1754 }
1755
Chris Mason39279cc2007-06-12 06:35:45 -04001756 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001757 path = btrfs_alloc_path();
1758 path->reada = 2;
1759
1760 /* special case for .., just use the back ref */
1761 if (filp->f_pos == 1) {
1762 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1763 key.offset = 0;
1764 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1765 BUG_ON(ret == 0);
1766 leaf = path->nodes[0];
1767 slot = path->slots[0];
1768 nritems = btrfs_header_nritems(leaf);
1769 if (slot >= nritems) {
1770 btrfs_release_path(root, path);
1771 goto read_dir_items;
1772 }
1773 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1774 btrfs_release_path(root, path);
1775 if (found_key.objectid != key.objectid ||
1776 found_key.type != BTRFS_INODE_REF_KEY)
1777 goto read_dir_items;
1778 over = filldir(dirent, "..", 2,
1779 2, found_key.offset, DT_DIR);
1780 if (over)
1781 goto nopos;
1782 filp->f_pos = 2;
1783 }
1784
1785read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001786 btrfs_set_key_type(&key, key_type);
1787 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001788
Chris Mason39279cc2007-06-12 06:35:45 -04001789 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1790 if (ret < 0)
1791 goto err;
1792 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001793 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001794 leaf = path->nodes[0];
1795 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001796 slot = path->slots[0];
1797 if (advance || slot >= nritems) {
1798 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001799 ret = btrfs_next_leaf(root, path);
1800 if (ret)
1801 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001802 leaf = path->nodes[0];
1803 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001804 slot = path->slots[0];
1805 } else {
1806 slot++;
1807 path->slots[0]++;
1808 }
1809 }
1810 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001811 item = btrfs_item_nr(leaf, slot);
1812 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1813
1814 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001815 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001816 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001817 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001818 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001819 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001820
1821 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001822 advance = 1;
1823 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1824 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001825 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001826 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001827 struct btrfs_key location;
1828
1829 name_len = btrfs_dir_name_len(leaf, di);
1830 if (name_len < 32) {
1831 name_ptr = tmp_name;
1832 } else {
1833 name_ptr = kmalloc(name_len, GFP_NOFS);
1834 BUG_ON(!name_ptr);
1835 }
1836 read_extent_buffer(leaf, name_ptr,
1837 (unsigned long)(di + 1), name_len);
1838
1839 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1840 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001841 over = filldir(dirent, name_ptr, name_len,
1842 found_key.offset,
1843 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001844 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001845
1846 if (name_ptr != tmp_name)
1847 kfree(name_ptr);
1848
Chris Mason39279cc2007-06-12 06:35:45 -04001849 if (over)
1850 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001851 di_len = btrfs_dir_name_len(leaf, di) +
1852 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001853 di_cur += di_len;
1854 di = (struct btrfs_dir_item *)((char *)di + di_len);
1855 }
1856 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001857 if (key_type == BTRFS_DIR_INDEX_KEY)
1858 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1859 else
1860 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001861nopos:
1862 ret = 0;
1863err:
Chris Mason39279cc2007-06-12 06:35:45 -04001864 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04001865 return ret;
1866}
1867
1868int btrfs_write_inode(struct inode *inode, int wait)
1869{
1870 struct btrfs_root *root = BTRFS_I(inode)->root;
1871 struct btrfs_trans_handle *trans;
1872 int ret = 0;
1873
1874 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04001875 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04001876 btrfs_set_trans_block_group(trans, inode);
1877 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04001878 }
1879 return ret;
1880}
1881
1882/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001883 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001884 * inode changes. But, it is most likely to find the inode in cache.
1885 * FIXME, needs more benchmarking...there are no reasons other than performance
1886 * to keep or drop this code.
1887 */
1888void btrfs_dirty_inode(struct inode *inode)
1889{
1890 struct btrfs_root *root = BTRFS_I(inode)->root;
1891 struct btrfs_trans_handle *trans;
1892
Chris Masonf9295742008-07-17 12:54:14 -04001893 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04001894 btrfs_set_trans_block_group(trans, inode);
1895 btrfs_update_inode(trans, root, inode);
1896 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04001897}
1898
1899static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1900 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001901 const char *name, int name_len,
1902 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001903 u64 objectid,
1904 struct btrfs_block_group_cache *group,
1905 int mode)
1906{
1907 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001908 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04001909 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04001910 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001911 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001912 struct btrfs_inode_ref *ref;
1913 struct btrfs_key key[2];
1914 u32 sizes[2];
1915 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001916 int ret;
1917 int owner;
1918
Chris Mason5f39d392007-10-15 16:14:19 -04001919 path = btrfs_alloc_path();
1920 BUG_ON(!path);
1921
Chris Mason39279cc2007-06-12 06:35:45 -04001922 inode = new_inode(root->fs_info->sb);
1923 if (!inode)
1924 return ERR_PTR(-ENOMEM);
1925
Chris Masond1310b22008-01-24 16:13:08 -05001926 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1927 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001928 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001929 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1930 inode->i_mapping, GFP_NOFS);
Chris Masonba1da2f2008-07-17 12:54:15 -04001931 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04001932 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04001933 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05001934 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04001935 BTRFS_I(inode)->disk_i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001936 BTRFS_I(inode)->root = root;
Chris Masonb888db22007-08-27 16:49:44 -04001937
Chris Mason39279cc2007-06-12 06:35:45 -04001938 if (mode & S_IFDIR)
1939 owner = 0;
1940 else
1941 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04001942 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001943 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04001944 if (!new_inode_group) {
1945 printk("find_block group failed\n");
1946 new_inode_group = group;
1947 }
1948 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05001949 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001950
1951 key[0].objectid = objectid;
1952 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1953 key[0].offset = 0;
1954
1955 key[1].objectid = objectid;
1956 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1957 key[1].offset = ref_objectid;
1958
1959 sizes[0] = sizeof(struct btrfs_inode_item);
1960 sizes[1] = name_len + sizeof(*ref);
1961
1962 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1963 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001964 goto fail;
1965
Chris Mason9c583092008-01-29 15:15:18 -05001966 if (objectid > root->highest_inode)
1967 root->highest_inode = objectid;
1968
Chris Mason39279cc2007-06-12 06:35:45 -04001969 inode->i_uid = current->fsuid;
1970 inode->i_gid = current->fsgid;
1971 inode->i_mode = mode;
1972 inode->i_ino = objectid;
1973 inode->i_blocks = 0;
1974 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001975 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1976 struct btrfs_inode_item);
1977 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001978
1979 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1980 struct btrfs_inode_ref);
1981 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1982 ptr = (unsigned long)(ref + 1);
1983 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1984
Chris Mason5f39d392007-10-15 16:14:19 -04001985 btrfs_mark_buffer_dirty(path->nodes[0]);
1986 btrfs_free_path(path);
1987
Chris Mason39279cc2007-06-12 06:35:45 -04001988 location = &BTRFS_I(inode)->location;
1989 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001990 location->offset = 0;
1991 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1992
Chris Mason39279cc2007-06-12 06:35:45 -04001993 insert_inode_hash(inode);
1994 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001995fail:
1996 btrfs_free_path(path);
1997 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001998}
1999
2000static inline u8 btrfs_inode_type(struct inode *inode)
2001{
2002 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
2003}
2004
2005static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05002006 struct dentry *dentry, struct inode *inode,
2007 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04002008{
2009 int ret;
2010 struct btrfs_key key;
2011 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04002012 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04002013
Chris Mason39279cc2007-06-12 06:35:45 -04002014 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04002015 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
2016 key.offset = 0;
2017
2018 ret = btrfs_insert_dir_item(trans, root,
2019 dentry->d_name.name, dentry->d_name.len,
2020 dentry->d_parent->d_inode->i_ino,
2021 &key, btrfs_inode_type(inode));
2022 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05002023 if (add_backref) {
2024 ret = btrfs_insert_inode_ref(trans, root,
2025 dentry->d_name.name,
2026 dentry->d_name.len,
2027 inode->i_ino,
2028 dentry->d_parent->d_inode->i_ino);
2029 }
Chris Mason79c44582007-06-25 10:09:33 -04002030 parent_inode = dentry->d_parent->d_inode;
Chris Masondbe674a2008-07-17 12:54:05 -04002031 btrfs_i_size_write(parent_inode, parent_inode->i_size +
2032 dentry->d_name.len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04002033 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04002034 ret = btrfs_update_inode(trans, root,
2035 dentry->d_parent->d_inode);
2036 }
2037 return ret;
2038}
2039
2040static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05002041 struct dentry *dentry, struct inode *inode,
2042 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04002043{
Chris Mason9c583092008-01-29 15:15:18 -05002044 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04002045 if (!err) {
2046 d_instantiate(dentry, inode);
2047 return 0;
2048 }
2049 if (err > 0)
2050 err = -EEXIST;
2051 return err;
2052}
2053
Josef Bacik618e21d2007-07-11 10:18:17 -04002054static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
2055 int mode, dev_t rdev)
2056{
2057 struct btrfs_trans_handle *trans;
2058 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002059 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04002060 int err;
2061 int drop_inode = 0;
2062 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05002063 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04002064
2065 if (!new_valid_dev(rdev))
2066 return -EINVAL;
2067
Chris Mason1832a6d2007-12-21 16:27:21 -05002068 err = btrfs_check_free_space(root, 1, 0);
2069 if (err)
2070 goto fail;
2071
Josef Bacik618e21d2007-07-11 10:18:17 -04002072 trans = btrfs_start_transaction(root, 1);
2073 btrfs_set_trans_block_group(trans, dir);
2074
2075 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2076 if (err) {
2077 err = -ENOSPC;
2078 goto out_unlock;
2079 }
2080
Chris Mason9c583092008-01-29 15:15:18 -05002081 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2082 dentry->d_name.len,
2083 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04002084 BTRFS_I(dir)->block_group, mode);
2085 err = PTR_ERR(inode);
2086 if (IS_ERR(inode))
2087 goto out_unlock;
2088
2089 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002090 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04002091 if (err)
2092 drop_inode = 1;
2093 else {
2094 inode->i_op = &btrfs_special_inode_operations;
2095 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04002096 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04002097 }
2098 dir->i_sb->s_dirt = 1;
2099 btrfs_update_inode_block_group(trans, inode);
2100 btrfs_update_inode_block_group(trans, dir);
2101out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002102 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002103 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002104fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04002105 if (drop_inode) {
2106 inode_dec_link_count(inode);
2107 iput(inode);
2108 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002109 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04002110 return err;
2111}
2112
Chris Mason39279cc2007-06-12 06:35:45 -04002113static int btrfs_create(struct inode *dir, struct dentry *dentry,
2114 int mode, struct nameidata *nd)
2115{
2116 struct btrfs_trans_handle *trans;
2117 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002118 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002119 int err;
2120 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05002121 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002122 u64 objectid;
2123
Chris Mason1832a6d2007-12-21 16:27:21 -05002124 err = btrfs_check_free_space(root, 1, 0);
2125 if (err)
2126 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002127 trans = btrfs_start_transaction(root, 1);
2128 btrfs_set_trans_block_group(trans, dir);
2129
2130 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2131 if (err) {
2132 err = -ENOSPC;
2133 goto out_unlock;
2134 }
2135
Chris Mason9c583092008-01-29 15:15:18 -05002136 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2137 dentry->d_name.len,
2138 dentry->d_parent->d_inode->i_ino,
2139 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04002140 err = PTR_ERR(inode);
2141 if (IS_ERR(inode))
2142 goto out_unlock;
2143
2144 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002145 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002146 if (err)
2147 drop_inode = 1;
2148 else {
2149 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002150 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002151 inode->i_fop = &btrfs_file_operations;
2152 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05002153 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2154 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04002155 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04002156 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2157 inode->i_mapping, GFP_NOFS);
Chris Mason1b1e2132008-06-25 16:01:31 -04002158 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04002159 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05002160 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04002161 BTRFS_I(inode)->disk_i_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002162 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonba1da2f2008-07-17 12:54:15 -04002163 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04002164 }
2165 dir->i_sb->s_dirt = 1;
2166 btrfs_update_inode_block_group(trans, inode);
2167 btrfs_update_inode_block_group(trans, dir);
2168out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002169 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002170 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002171fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002172 if (drop_inode) {
2173 inode_dec_link_count(inode);
2174 iput(inode);
2175 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002176 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002177 return err;
2178}
2179
2180static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
2181 struct dentry *dentry)
2182{
2183 struct btrfs_trans_handle *trans;
2184 struct btrfs_root *root = BTRFS_I(dir)->root;
2185 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002186 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002187 int err;
2188 int drop_inode = 0;
2189
2190 if (inode->i_nlink == 0)
2191 return -ENOENT;
2192
Chris Mason6da6aba2007-12-18 16:15:09 -05002193#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2194 inode->i_nlink++;
2195#else
Chris Mason39279cc2007-06-12 06:35:45 -04002196 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05002197#endif
Chris Mason1832a6d2007-12-21 16:27:21 -05002198 err = btrfs_check_free_space(root, 1, 0);
2199 if (err)
2200 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002201 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002202
Chris Mason39279cc2007-06-12 06:35:45 -04002203 btrfs_set_trans_block_group(trans, dir);
2204 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05002205 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002206
Chris Mason39279cc2007-06-12 06:35:45 -04002207 if (err)
2208 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002209
Chris Mason39279cc2007-06-12 06:35:45 -04002210 dir->i_sb->s_dirt = 1;
2211 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002212 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002213
Chris Mason54aa1f42007-06-22 14:16:25 -04002214 if (err)
2215 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002216
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002217 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002218 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002219fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002220 if (drop_inode) {
2221 inode_dec_link_count(inode);
2222 iput(inode);
2223 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002224 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002225 return err;
2226}
2227
Chris Mason39279cc2007-06-12 06:35:45 -04002228static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2229{
Chris Masonb9d86662008-05-02 16:13:49 -04002230 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002231 struct btrfs_trans_handle *trans;
2232 struct btrfs_root *root = BTRFS_I(dir)->root;
2233 int err = 0;
2234 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04002235 u64 objectid = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002236 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002237
Chris Mason1832a6d2007-12-21 16:27:21 -05002238 err = btrfs_check_free_space(root, 1, 0);
2239 if (err)
2240 goto out_unlock;
2241
Chris Mason39279cc2007-06-12 06:35:45 -04002242 trans = btrfs_start_transaction(root, 1);
2243 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002244
Chris Mason39279cc2007-06-12 06:35:45 -04002245 if (IS_ERR(trans)) {
2246 err = PTR_ERR(trans);
2247 goto out_unlock;
2248 }
2249
2250 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2251 if (err) {
2252 err = -ENOSPC;
2253 goto out_unlock;
2254 }
2255
Chris Mason9c583092008-01-29 15:15:18 -05002256 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2257 dentry->d_name.len,
2258 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002259 BTRFS_I(dir)->block_group, S_IFDIR | mode);
2260 if (IS_ERR(inode)) {
2261 err = PTR_ERR(inode);
2262 goto out_fail;
2263 }
Chris Mason5f39d392007-10-15 16:14:19 -04002264
Chris Mason39279cc2007-06-12 06:35:45 -04002265 drop_on_err = 1;
2266 inode->i_op = &btrfs_dir_inode_operations;
2267 inode->i_fop = &btrfs_dir_file_operations;
2268 btrfs_set_trans_block_group(trans, inode);
2269
Chris Masondbe674a2008-07-17 12:54:05 -04002270 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002271 err = btrfs_update_inode(trans, root, inode);
2272 if (err)
2273 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002274
Chris Mason9c583092008-01-29 15:15:18 -05002275 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002276 if (err)
2277 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002278
Chris Mason39279cc2007-06-12 06:35:45 -04002279 d_instantiate(dentry, inode);
2280 drop_on_err = 0;
2281 dir->i_sb->s_dirt = 1;
2282 btrfs_update_inode_block_group(trans, inode);
2283 btrfs_update_inode_block_group(trans, dir);
2284
2285out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002286 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002287 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002288
Chris Mason39279cc2007-06-12 06:35:45 -04002289out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002290 if (drop_on_err)
2291 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002292 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002293 return err;
2294}
2295
Chris Mason3b951512008-04-17 11:29:12 -04002296static int merge_extent_mapping(struct extent_map_tree *em_tree,
2297 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002298 struct extent_map *em,
2299 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04002300{
2301 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04002302
Chris Masone6dcd2d2008-07-17 12:53:50 -04002303 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
2304 start_diff = map_start - em->start;
2305 em->start = map_start;
2306 em->len = map_len;
2307 if (em->block_start < EXTENT_MAP_LAST_BYTE)
2308 em->block_start += start_diff;
2309 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002310}
2311
Chris Masona52d9a82007-08-27 16:49:44 -04002312struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002313 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002314 int create)
2315{
2316 int ret;
2317 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002318 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002319 u64 extent_start = 0;
2320 u64 extent_end = 0;
2321 u64 objectid = inode->i_ino;
2322 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04002323 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04002324 struct btrfs_root *root = BTRFS_I(inode)->root;
2325 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002326 struct extent_buffer *leaf;
2327 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002328 struct extent_map *em = NULL;
2329 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002330 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002331 struct btrfs_trans_handle *trans = NULL;
2332
Chris Masona52d9a82007-08-27 16:49:44 -04002333again:
Chris Masond1310b22008-01-24 16:13:08 -05002334 spin_lock(&em_tree->lock);
2335 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04002336 if (em)
2337 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002338 spin_unlock(&em_tree->lock);
2339
Chris Masona52d9a82007-08-27 16:49:44 -04002340 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04002341 if (em->start > start || em->start + em->len <= start)
2342 free_extent_map(em);
2343 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05002344 free_extent_map(em);
2345 else
2346 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002347 }
Chris Masond1310b22008-01-24 16:13:08 -05002348 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002349 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002350 err = -ENOMEM;
2351 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002352 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002353 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002354 em->start = EXTENT_MAP_HOLE;
2355 em->len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04002356
2357 if (!path) {
2358 path = btrfs_alloc_path();
2359 BUG_ON(!path);
2360 }
2361
Chris Mason179e29e2007-11-01 11:28:41 -04002362 ret = btrfs_lookup_file_extent(trans, root, path,
2363 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002364 if (ret < 0) {
2365 err = ret;
2366 goto out;
2367 }
2368
2369 if (ret != 0) {
2370 if (path->slots[0] == 0)
2371 goto not_found;
2372 path->slots[0]--;
2373 }
2374
Chris Mason5f39d392007-10-15 16:14:19 -04002375 leaf = path->nodes[0];
2376 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002377 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002378 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002379 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2380 found_type = btrfs_key_type(&found_key);
2381 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002382 found_type != BTRFS_EXTENT_DATA_KEY) {
2383 goto not_found;
2384 }
2385
Chris Mason5f39d392007-10-15 16:14:19 -04002386 found_type = btrfs_file_extent_type(leaf, item);
2387 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002388 if (found_type == BTRFS_FILE_EXTENT_REG) {
2389 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002390 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002391 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04002392 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002393 em->start = start;
2394 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002395 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002396 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002397 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002398 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002399 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002400 }
2401 goto not_found_em;
2402 }
Chris Masondb945352007-10-15 16:15:53 -04002403 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2404 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002405 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002406 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002407 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002408 goto insert;
2409 }
Chris Masondb945352007-10-15 16:15:53 -04002410 bytenr += btrfs_file_extent_offset(leaf, item);
2411 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002412 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002413 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002414 goto insert;
2415 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002416 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002417 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002418 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002419 size_t size;
2420 size_t extent_offset;
2421 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002422
Chris Mason5f39d392007-10-15 16:14:19 -04002423 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2424 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002425 extent_end = (extent_start + size + root->sectorsize - 1) &
2426 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002427 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002428 em->start = start;
2429 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002430 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002431 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002432 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002433 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002434 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002435 }
2436 goto not_found_em;
2437 }
2438 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002439
2440 if (!page) {
2441 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002442 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002443 goto out;
2444 }
2445
Chris Mason70dec802008-01-29 09:59:12 -05002446 page_start = page_offset(page) + pg_offset;
2447 extent_offset = page_start - extent_start;
2448 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002449 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002450 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002451 em->len = (copy_size + root->sectorsize - 1) &
2452 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002453 map = kmap(page);
2454 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002455 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002456 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002457 copy_size);
2458 flush_dcache_page(page);
2459 } else if (create && PageUptodate(page)) {
2460 if (!trans) {
2461 kunmap(page);
2462 free_extent_map(em);
2463 em = NULL;
2464 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04002465 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04002466 goto again;
2467 }
Chris Mason70dec802008-01-29 09:59:12 -05002468 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002469 copy_size);
2470 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002471 }
Chris Masona52d9a82007-08-27 16:49:44 -04002472 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002473 set_extent_uptodate(io_tree, em->start,
2474 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002475 goto insert;
2476 } else {
2477 printk("unkknown found_type %d\n", found_type);
2478 WARN_ON(1);
2479 }
2480not_found:
2481 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002482 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002483not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002484 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002485insert:
2486 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002487 if (em->start > start || extent_map_end(em) <= start) {
2488 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002489 err = -EIO;
2490 goto out;
2491 }
Chris Masond1310b22008-01-24 16:13:08 -05002492
2493 err = 0;
2494 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002495 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002496 /* it is possible that someone inserted the extent into the tree
2497 * while we had the lock dropped. It is also possible that
2498 * an overlapping map exists in the tree
2499 */
Chris Masona52d9a82007-08-27 16:49:44 -04002500 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002501 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002502
2503 ret = 0;
2504
Chris Mason3b951512008-04-17 11:29:12 -04002505 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002506 if (existing && (existing->start > start ||
2507 existing->start + existing->len <= start)) {
2508 free_extent_map(existing);
2509 existing = NULL;
2510 }
Chris Mason3b951512008-04-17 11:29:12 -04002511 if (!existing) {
2512 existing = lookup_extent_mapping(em_tree, em->start,
2513 em->len);
2514 if (existing) {
2515 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002516 em, start,
2517 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04002518 free_extent_map(existing);
2519 if (err) {
2520 free_extent_map(em);
2521 em = NULL;
2522 }
2523 } else {
2524 err = -EIO;
2525 printk("failing to insert %Lu %Lu\n",
2526 start, len);
2527 free_extent_map(em);
2528 em = NULL;
2529 }
2530 } else {
2531 free_extent_map(em);
2532 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002533 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04002534 }
Chris Masona52d9a82007-08-27 16:49:44 -04002535 }
Chris Masond1310b22008-01-24 16:13:08 -05002536 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002537out:
Chris Masonf4219502008-07-22 11:18:09 -04002538 if (path)
2539 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04002540 if (trans) {
2541 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002542 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04002543 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002544 }
Chris Masona52d9a82007-08-27 16:49:44 -04002545 }
Chris Masona52d9a82007-08-27 16:49:44 -04002546 if (err) {
2547 free_extent_map(em);
2548 WARN_ON(1);
2549 return ERR_PTR(err);
2550 }
2551 return em;
2552}
2553
Chris Masone1c4b742008-04-22 13:26:46 -04002554#if 0 /* waiting for O_DIRECT reads */
Chris Mason16432982008-04-10 10:23:21 -04002555static int btrfs_get_block(struct inode *inode, sector_t iblock,
2556 struct buffer_head *bh_result, int create)
2557{
2558 struct extent_map *em;
2559 u64 start = (u64)iblock << inode->i_blkbits;
2560 struct btrfs_multi_bio *multi = NULL;
2561 struct btrfs_root *root = BTRFS_I(inode)->root;
2562 u64 len;
2563 u64 logical;
2564 u64 map_length;
2565 int ret = 0;
2566
2567 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2568
2569 if (!em || IS_ERR(em))
2570 goto out;
2571
Chris Masone1c4b742008-04-22 13:26:46 -04002572 if (em->start > start || em->start + em->len <= start) {
Chris Mason16432982008-04-10 10:23:21 -04002573 goto out;
Chris Masone1c4b742008-04-22 13:26:46 -04002574 }
Chris Mason16432982008-04-10 10:23:21 -04002575
2576 if (em->block_start == EXTENT_MAP_INLINE) {
2577 ret = -EINVAL;
2578 goto out;
2579 }
2580
Chris Mason16432982008-04-10 10:23:21 -04002581 len = em->start + em->len - start;
2582 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2583
Chris Masone1c4b742008-04-22 13:26:46 -04002584 if (em->block_start == EXTENT_MAP_HOLE ||
2585 em->block_start == EXTENT_MAP_DELALLOC) {
2586 bh_result->b_size = len;
2587 goto out;
2588 }
2589
Chris Mason16432982008-04-10 10:23:21 -04002590 logical = start - em->start;
2591 logical = em->block_start + logical;
2592
2593 map_length = len;
2594 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2595 logical, &map_length, &multi, 0);
2596 BUG_ON(ret);
2597 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2598 bh_result->b_size = min(map_length, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002599
Chris Mason16432982008-04-10 10:23:21 -04002600 bh_result->b_bdev = multi->stripes[0].dev->bdev;
2601 set_buffer_mapped(bh_result);
2602 kfree(multi);
2603out:
2604 free_extent_map(em);
2605 return ret;
2606}
Chris Masone1c4b742008-04-22 13:26:46 -04002607#endif
Chris Mason16432982008-04-10 10:23:21 -04002608
2609static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
2610 const struct iovec *iov, loff_t offset,
2611 unsigned long nr_segs)
2612{
Chris Masone1c4b742008-04-22 13:26:46 -04002613 return -EINVAL;
2614#if 0
Chris Mason16432982008-04-10 10:23:21 -04002615 struct file *file = iocb->ki_filp;
2616 struct inode *inode = file->f_mapping->host;
2617
2618 if (rw == WRITE)
2619 return -EINVAL;
2620
2621 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2622 offset, nr_segs, btrfs_get_block, NULL);
Chris Masone1c4b742008-04-22 13:26:46 -04002623#endif
Chris Mason16432982008-04-10 10:23:21 -04002624}
2625
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002626static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002627{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002628 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002629}
2630
Chris Mason9ebefb182007-06-15 13:50:00 -04002631int btrfs_readpage(struct file *file, struct page *page)
2632{
Chris Masond1310b22008-01-24 16:13:08 -05002633 struct extent_io_tree *tree;
2634 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002635 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002636}
Chris Mason1832a6d2007-12-21 16:27:21 -05002637
Chris Mason39279cc2007-06-12 06:35:45 -04002638static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2639{
Chris Masond1310b22008-01-24 16:13:08 -05002640 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04002641
2642
2643 if (current->flags & PF_MEMALLOC) {
2644 redirty_page_for_writepage(wbc, page);
2645 unlock_page(page);
2646 return 0;
2647 }
Chris Masond1310b22008-01-24 16:13:08 -05002648 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002649 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2650}
Chris Mason39279cc2007-06-12 06:35:45 -04002651
Chris Masonf4219502008-07-22 11:18:09 -04002652int btrfs_writepages(struct address_space *mapping,
2653 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04002654{
Chris Masond1310b22008-01-24 16:13:08 -05002655 struct extent_io_tree *tree;
2656 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04002657 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2658}
2659
Chris Mason3ab2fb52007-11-08 10:59:22 -05002660static int
2661btrfs_readpages(struct file *file, struct address_space *mapping,
2662 struct list_head *pages, unsigned nr_pages)
2663{
Chris Masond1310b22008-01-24 16:13:08 -05002664 struct extent_io_tree *tree;
2665 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002666 return extent_readpages(tree, mapping, pages, nr_pages,
2667 btrfs_get_extent);
2668}
Chris Masone6dcd2d2008-07-17 12:53:50 -04002669static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002670{
Chris Masond1310b22008-01-24 16:13:08 -05002671 struct extent_io_tree *tree;
2672 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002673 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002674
Chris Masond1310b22008-01-24 16:13:08 -05002675 tree = &BTRFS_I(page->mapping->host)->io_tree;
2676 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002677 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002678 if (ret == 1) {
2679 ClearPagePrivate(page);
2680 set_page_private(page, 0);
2681 page_cache_release(page);
2682 }
2683 return ret;
2684}
Chris Mason39279cc2007-06-12 06:35:45 -04002685
Chris Masone6dcd2d2008-07-17 12:53:50 -04002686static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
2687{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002688 return __btrfs_releasepage(page, gfp_flags);
2689}
2690
Chris Masona52d9a82007-08-27 16:49:44 -04002691static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2692{
Chris Masond1310b22008-01-24 16:13:08 -05002693 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002694 struct btrfs_ordered_extent *ordered;
2695 u64 page_start = page_offset(page);
2696 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04002697
Chris Masone6dcd2d2008-07-17 12:53:50 -04002698 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002699 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002700 if (offset) {
2701 btrfs_releasepage(page, GFP_NOFS);
2702 return;
2703 }
2704
2705 lock_extent(tree, page_start, page_end, GFP_NOFS);
2706 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
2707 page_offset(page));
2708 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04002709 /*
2710 * IO on this page will never be started, so we need
2711 * to account for any ordered extents now
2712 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002713 clear_extent_bit(tree, page_start, page_end,
2714 EXTENT_DIRTY | EXTENT_DELALLOC |
2715 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04002716 btrfs_finish_ordered_io(page->mapping->host,
2717 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002718 btrfs_put_ordered_extent(ordered);
2719 lock_extent(tree, page_start, page_end, GFP_NOFS);
2720 }
2721 clear_extent_bit(tree, page_start, page_end,
2722 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
2723 EXTENT_ORDERED,
2724 1, 1, GFP_NOFS);
2725 __btrfs_releasepage(page, GFP_NOFS);
2726
Chris Mason4a096752008-07-21 10:29:44 -04002727 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002728 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002729 ClearPagePrivate(page);
2730 set_page_private(page, 0);
2731 page_cache_release(page);
2732 }
Chris Mason39279cc2007-06-12 06:35:45 -04002733}
2734
Chris Mason9ebefb182007-06-15 13:50:00 -04002735/*
2736 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2737 * called from a page fault handler when a page is first dirtied. Hence we must
2738 * be careful to check for EOF conditions here. We set the page up correctly
2739 * for a written page which means we get ENOSPC checking when writing into
2740 * holes and correct delalloc and unwritten extent mapping on filesystems that
2741 * support these features.
2742 *
2743 * We are not allowed to take the i_mutex here so we have to play games to
2744 * protect against truncate races as the page could now be beyond EOF. Because
2745 * vmtruncate() writes the inode size before removing pages, once we have the
2746 * page lock we can determine safely if the page is beyond EOF. If it is not
2747 * beyond EOF, then the page is guaranteed safe against truncation until we
2748 * unlock the page.
2749 */
2750int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2751{
Chris Mason6da6aba2007-12-18 16:15:09 -05002752 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002753 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002754 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2755 struct btrfs_ordered_extent *ordered;
2756 char *kaddr;
2757 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002758 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002759 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002760 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002761 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04002762
Chris Mason1832a6d2007-12-21 16:27:21 -05002763 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05002764 if (ret)
2765 goto out;
2766
2767 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002768again:
Chris Mason9ebefb182007-06-15 13:50:00 -04002769 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002770 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002771 page_start = page_offset(page);
2772 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04002773
Chris Mason9ebefb182007-06-15 13:50:00 -04002774 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04002775 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002776 /* page got truncated out from underneath us */
2777 goto out_unlock;
2778 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002779 wait_on_page_writeback(page);
2780
2781 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2782 set_page_extent_mapped(page);
2783
Chris Masoneb84ae02008-07-17 13:53:27 -04002784 /*
2785 * we can't set the delalloc bits if there are pending ordered
2786 * extents. Drop our locks and wait for them to finish
2787 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002788 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2789 if (ordered) {
2790 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2791 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04002792 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002793 btrfs_put_ordered_extent(ordered);
2794 goto again;
2795 }
2796
2797 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
2798 page_end, GFP_NOFS);
2799 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04002800
2801 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002802 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002803 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04002804 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04002805 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04002806
Chris Masone6dcd2d2008-07-17 12:53:50 -04002807 if (zero_start != PAGE_CACHE_SIZE) {
2808 kaddr = kmap(page);
2809 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
2810 flush_dcache_page(page);
2811 kunmap(page);
2812 }
Chris Mason247e7432008-07-17 12:53:51 -04002813 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002814 set_page_dirty(page);
2815 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04002816
2817out_unlock:
2818 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002819out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002820 return ret;
2821}
2822
Chris Mason39279cc2007-06-12 06:35:45 -04002823static void btrfs_truncate(struct inode *inode)
2824{
2825 struct btrfs_root *root = BTRFS_I(inode)->root;
2826 int ret;
2827 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002828 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04002829 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002830
2831 if (!S_ISREG(inode->i_mode))
2832 return;
2833 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2834 return;
2835
2836 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04002837 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04002838
Chris Mason39279cc2007-06-12 06:35:45 -04002839 trans = btrfs_start_transaction(root, 1);
2840 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04002841 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04002842
2843 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002844 ret = btrfs_truncate_in_trans(trans, root, inode,
2845 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002846 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002847 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002848
Chris Mason89ce8a62008-06-25 16:01:31 -04002849 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04002850 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002851 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002852}
2853
Sven Wegener3b963622008-06-09 21:57:42 -04002854/*
2855 * Invalidate a single dcache entry at the root of the filesystem.
2856 * Needed after creation of snapshot or subvolume.
2857 */
2858void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
2859 int namelen)
2860{
2861 struct dentry *alias, *entry;
2862 struct qstr qstr;
2863
2864 alias = d_find_alias(root->fs_info->sb->s_root->d_inode);
2865 if (alias) {
2866 qstr.name = name;
2867 qstr.len = namelen;
2868 /* change me if btrfs ever gets a d_hash operation */
2869 qstr.hash = full_name_hash(qstr.name, qstr.len);
2870 entry = d_lookup(alias, &qstr);
2871 dput(alias);
2872 if (entry) {
2873 d_invalidate(entry);
2874 dput(entry);
2875 }
2876 }
2877}
2878
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002879int btrfs_create_subvol_root(struct btrfs_root *new_root,
2880 struct btrfs_trans_handle *trans, u64 new_dirid,
2881 struct btrfs_block_group_cache *block_group)
Chris Mason39279cc2007-06-12 06:35:45 -04002882{
Chris Mason39279cc2007-06-12 06:35:45 -04002883 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002884 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002885
Chris Mason9c583092008-01-29 15:15:18 -05002886 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002887 new_dirid, block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002888 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002889 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002890 inode->i_op = &btrfs_dir_inode_operations;
2891 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002892 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002893
Chris Mason39544012007-12-12 14:38:19 -05002894 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2895 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002896 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04002897 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04002898
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002899 return btrfs_update_inode(trans, new_root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002900}
2901
Chris Masonedbd8d42007-12-21 16:27:24 -05002902unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002903 struct file_ra_state *ra, struct file *file,
2904 pgoff_t offset, pgoff_t last_index)
2905{
Chris Mason8e7bf942008-04-28 09:02:36 -04002906 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04002907
2908#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
Chris Mason86479a02007-09-10 19:58:16 -04002909 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2910 return offset;
2911#else
Chris Mason86479a02007-09-10 19:58:16 -04002912 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2913 return offset + req_size;
2914#endif
2915}
2916
Chris Mason39279cc2007-06-12 06:35:45 -04002917struct inode *btrfs_alloc_inode(struct super_block *sb)
2918{
2919 struct btrfs_inode *ei;
2920
2921 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2922 if (!ei)
2923 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002924 ei->last_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002925 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04002926 return &ei->vfs_inode;
2927}
2928
2929void btrfs_destroy_inode(struct inode *inode)
2930{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002931 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04002932 WARN_ON(!list_empty(&inode->i_dentry));
2933 WARN_ON(inode->i_data.nrpages);
2934
Chris Masone6dcd2d2008-07-17 12:53:50 -04002935 while(1) {
2936 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
2937 if (!ordered)
2938 break;
2939 else {
2940 printk("found ordered extent %Lu %Lu\n",
2941 ordered->file_offset, ordered->len);
2942 btrfs_remove_ordered_extent(inode, ordered);
2943 btrfs_put_ordered_extent(ordered);
2944 btrfs_put_ordered_extent(ordered);
2945 }
2946 }
Chris Mason8c416c92008-01-14 15:10:26 -05002947 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04002948 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2949}
2950
Chris Mason44ec0b72007-10-29 10:55:05 -04002951#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2952static void init_once(struct kmem_cache * cachep, void *foo)
2953#else
Chris Mason39279cc2007-06-12 06:35:45 -04002954static void init_once(void * foo, struct kmem_cache * cachep,
2955 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04002956#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002957{
2958 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2959
2960 inode_init_once(&ei->vfs_inode);
2961}
2962
2963void btrfs_destroy_cachep(void)
2964{
2965 if (btrfs_inode_cachep)
2966 kmem_cache_destroy(btrfs_inode_cachep);
2967 if (btrfs_trans_handle_cachep)
2968 kmem_cache_destroy(btrfs_trans_handle_cachep);
2969 if (btrfs_transaction_cachep)
2970 kmem_cache_destroy(btrfs_transaction_cachep);
2971 if (btrfs_bit_radix_cachep)
2972 kmem_cache_destroy(btrfs_bit_radix_cachep);
2973 if (btrfs_path_cachep)
2974 kmem_cache_destroy(btrfs_path_cachep);
2975}
2976
Chris Mason86479a02007-09-10 19:58:16 -04002977struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04002978 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04002979#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2980 void (*ctor)(struct kmem_cache *, void *)
2981#else
Chris Mason92fee662007-07-25 12:31:35 -04002982 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04002983 unsigned long)
2984#endif
2985 )
Chris Mason92fee662007-07-25 12:31:35 -04002986{
2987 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2988 SLAB_MEM_SPREAD | extra_flags), ctor
2989#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2990 ,NULL
2991#endif
2992 );
2993}
2994
Chris Mason39279cc2007-06-12 06:35:45 -04002995int btrfs_init_cachep(void)
2996{
Chris Mason86479a02007-09-10 19:58:16 -04002997 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04002998 sizeof(struct btrfs_inode),
2999 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04003000 if (!btrfs_inode_cachep)
3001 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003002 btrfs_trans_handle_cachep =
3003 btrfs_cache_create("btrfs_trans_handle_cache",
3004 sizeof(struct btrfs_trans_handle),
3005 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003006 if (!btrfs_trans_handle_cachep)
3007 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003008 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04003009 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04003010 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003011 if (!btrfs_transaction_cachep)
3012 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003013 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04003014 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04003015 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003016 if (!btrfs_path_cachep)
3017 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003018 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04003019 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003020 if (!btrfs_bit_radix_cachep)
3021 goto fail;
3022 return 0;
3023fail:
3024 btrfs_destroy_cachep();
3025 return -ENOMEM;
3026}
3027
3028static int btrfs_getattr(struct vfsmount *mnt,
3029 struct dentry *dentry, struct kstat *stat)
3030{
3031 struct inode *inode = dentry->d_inode;
3032 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05003033 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05003034 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04003035 return 0;
3036}
3037
3038static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3039 struct inode * new_dir,struct dentry *new_dentry)
3040{
3041 struct btrfs_trans_handle *trans;
3042 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3043 struct inode *new_inode = new_dentry->d_inode;
3044 struct inode *old_inode = old_dentry->d_inode;
3045 struct timespec ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04003046 int ret;
3047
3048 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3049 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3050 return -ENOTEMPTY;
3051 }
Chris Mason5f39d392007-10-15 16:14:19 -04003052
Chris Mason1832a6d2007-12-21 16:27:21 -05003053 ret = btrfs_check_free_space(root, 1, 0);
3054 if (ret)
3055 goto out_unlock;
3056
Chris Mason39279cc2007-06-12 06:35:45 -04003057 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003058
Chris Mason39279cc2007-06-12 06:35:45 -04003059 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003060
3061 old_dentry->d_inode->i_nlink++;
3062 old_dir->i_ctime = old_dir->i_mtime = ctime;
3063 new_dir->i_ctime = new_dir->i_mtime = ctime;
3064 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003065
Chris Mason39279cc2007-06-12 06:35:45 -04003066 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
3067 if (ret)
3068 goto out_fail;
3069
3070 if (new_inode) {
3071 new_inode->i_ctime = CURRENT_TIME;
3072 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
3073 if (ret)
3074 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003075 }
Chris Mason9c583092008-01-29 15:15:18 -05003076 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003077 if (ret)
3078 goto out_fail;
3079
3080out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003081 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003082out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003083 return ret;
3084}
3085
3086static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3087 const char *symname)
3088{
3089 struct btrfs_trans_handle *trans;
3090 struct btrfs_root *root = BTRFS_I(dir)->root;
3091 struct btrfs_path *path;
3092 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003093 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003094 int err;
3095 int drop_inode = 0;
3096 u64 objectid;
3097 int name_len;
3098 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003099 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003100 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003101 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003102 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003103
3104 name_len = strlen(symname) + 1;
3105 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3106 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003107
Chris Mason1832a6d2007-12-21 16:27:21 -05003108 err = btrfs_check_free_space(root, 1, 0);
3109 if (err)
3110 goto out_fail;
3111
Chris Mason39279cc2007-06-12 06:35:45 -04003112 trans = btrfs_start_transaction(root, 1);
3113 btrfs_set_trans_block_group(trans, dir);
3114
3115 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3116 if (err) {
3117 err = -ENOSPC;
3118 goto out_unlock;
3119 }
3120
Chris Mason9c583092008-01-29 15:15:18 -05003121 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
3122 dentry->d_name.len,
3123 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003124 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
3125 err = PTR_ERR(inode);
3126 if (IS_ERR(inode))
3127 goto out_unlock;
3128
3129 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003130 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003131 if (err)
3132 drop_inode = 1;
3133 else {
3134 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003135 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003136 inode->i_fop = &btrfs_file_operations;
3137 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003138 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3139 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04003140 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003141 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3142 inode->i_mapping, GFP_NOFS);
Chris Mason1b1e2132008-06-25 16:01:31 -04003143 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04003144 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05003145 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04003146 BTRFS_I(inode)->disk_i_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003147 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonba1da2f2008-07-17 12:54:15 -04003148 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04003149 }
3150 dir->i_sb->s_dirt = 1;
3151 btrfs_update_inode_block_group(trans, inode);
3152 btrfs_update_inode_block_group(trans, dir);
3153 if (drop_inode)
3154 goto out_unlock;
3155
3156 path = btrfs_alloc_path();
3157 BUG_ON(!path);
3158 key.objectid = inode->i_ino;
3159 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003160 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3161 datasize = btrfs_file_extent_calc_inline_size(name_len);
3162 err = btrfs_insert_empty_item(trans, root, path, &key,
3163 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003164 if (err) {
3165 drop_inode = 1;
3166 goto out_unlock;
3167 }
Chris Mason5f39d392007-10-15 16:14:19 -04003168 leaf = path->nodes[0];
3169 ei = btrfs_item_ptr(leaf, path->slots[0],
3170 struct btrfs_file_extent_item);
3171 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3172 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003173 BTRFS_FILE_EXTENT_INLINE);
3174 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003175 write_extent_buffer(leaf, symname, ptr, name_len);
3176 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003177 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003178
Chris Mason39279cc2007-06-12 06:35:45 -04003179 inode->i_op = &btrfs_symlink_inode_operations;
3180 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003181 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masondbe674a2008-07-17 12:54:05 -04003182 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003183 err = btrfs_update_inode(trans, root, inode);
3184 if (err)
3185 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003186
3187out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003188 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003189 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003190out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003191 if (drop_inode) {
3192 inode_dec_link_count(inode);
3193 iput(inode);
3194 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003195 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003196 return err;
3197}
Chris Mason16432982008-04-10 10:23:21 -04003198
Chris Masone6dcd2d2008-07-17 12:53:50 -04003199static int btrfs_set_page_dirty(struct page *page)
3200{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003201 return __set_page_dirty_nobuffers(page);
3202}
3203
Yanfdebe2b2008-01-14 13:26:08 -05003204static int btrfs_permission(struct inode *inode, int mask,
3205 struct nameidata *nd)
3206{
3207 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3208 return -EACCES;
3209 return generic_permission(inode, mask, NULL);
3210}
Chris Mason39279cc2007-06-12 06:35:45 -04003211
3212static struct inode_operations btrfs_dir_inode_operations = {
3213 .lookup = btrfs_lookup,
3214 .create = btrfs_create,
3215 .unlink = btrfs_unlink,
3216 .link = btrfs_link,
3217 .mkdir = btrfs_mkdir,
3218 .rmdir = btrfs_rmdir,
3219 .rename = btrfs_rename,
3220 .symlink = btrfs_symlink,
3221 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003222 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003223 .setxattr = generic_setxattr,
3224 .getxattr = generic_getxattr,
3225 .listxattr = btrfs_listxattr,
3226 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003227 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003228};
Chris Mason39279cc2007-06-12 06:35:45 -04003229static struct inode_operations btrfs_dir_ro_inode_operations = {
3230 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003231 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003232};
Chris Mason39279cc2007-06-12 06:35:45 -04003233static struct file_operations btrfs_dir_file_operations = {
3234 .llseek = generic_file_llseek,
3235 .read = generic_read_dir,
3236 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003237 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003238#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003239 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003240#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04003241 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003242};
3243
Chris Masond1310b22008-01-24 16:13:08 -05003244static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003245 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003246 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003247 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003248 .readpage_io_hook = btrfs_readpage_io_hook,
3249 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003250 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04003251 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04003252 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003253 .set_bit_hook = btrfs_set_bit_hook,
3254 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003255};
3256
Chris Mason39279cc2007-06-12 06:35:45 -04003257static struct address_space_operations btrfs_aops = {
3258 .readpage = btrfs_readpage,
3259 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04003260 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003261 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003262 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003263 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003264 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003265 .invalidatepage = btrfs_invalidatepage,
3266 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003267 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04003268};
3269
3270static struct address_space_operations btrfs_symlink_aops = {
3271 .readpage = btrfs_readpage,
3272 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003273 .invalidatepage = btrfs_invalidatepage,
3274 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003275};
3276
3277static struct inode_operations btrfs_file_inode_operations = {
3278 .truncate = btrfs_truncate,
3279 .getattr = btrfs_getattr,
3280 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003281 .setxattr = generic_setxattr,
3282 .getxattr = generic_getxattr,
3283 .listxattr = btrfs_listxattr,
3284 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003285 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003286};
Josef Bacik618e21d2007-07-11 10:18:17 -04003287static struct inode_operations btrfs_special_inode_operations = {
3288 .getattr = btrfs_getattr,
3289 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003290 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003291};
Chris Mason39279cc2007-06-12 06:35:45 -04003292static struct inode_operations btrfs_symlink_inode_operations = {
3293 .readlink = generic_readlink,
3294 .follow_link = page_follow_link_light,
3295 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003296 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003297};