blob: 0e90315ea803288a37816fe8a73655adb126c066 [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 Mason89642222008-07-24 09:41:53 -0400614 /*
615 * It is possible there is an ordered extent that has
616 * not yet finished for this range in the file. If so,
617 * that extent will have a csum cached, and it will insert
618 * the sum after all the blocks in the extent are fully
619 * on disk. So, look for an ordered extent and use the
620 * sum if found. We have to do this before looking in the
621 * btree because csum items are pre-inserted based on
622 * the file size. btrfs_lookup_csum might find an item
623 * that still hasn't been fully filled.
624 */
625 ret = btrfs_find_ordered_sum(inode, start, &csum);
626 if (ret == 0)
627 goto found;
628
629 ret = 0;
Chris Mason07157aa2007-08-30 08:50:51 -0400630 path = btrfs_alloc_path();
631 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
632 if (IS_ERR(item)) {
633 ret = PTR_ERR(item);
634 /* a csum that isn't present is a preallocated region. */
635 if (ret == -ENOENT || ret == -EFBIG)
636 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400637 csum = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400638 printk("no csum found for inode %lu start %Lu\n", inode->i_ino,
639 start);
Chris Mason07157aa2007-08-30 08:50:51 -0400640 goto out;
641 }
Chris Masonff79f812007-10-15 16:22:25 -0400642 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
643 BTRFS_CRC32_SIZE);
Chris Masonba1da2f2008-07-17 12:54:15 -0400644found:
Chris Masond1310b22008-01-24 16:13:08 -0500645 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400646out:
647 if (path)
648 btrfs_free_path(path);
Chris Mason07157aa2007-08-30 08:50:51 -0400649 return ret;
650}
651
Chris Mason7e383262008-04-09 16:28:12 -0400652struct io_failure_record {
653 struct page *page;
654 u64 start;
655 u64 len;
656 u64 logical;
657 int last_mirror;
658};
659
Chris Mason1259ab72008-05-12 13:39:03 -0400660int btrfs_io_failed_hook(struct bio *failed_bio,
661 struct page *page, u64 start, u64 end,
662 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -0400663{
664 struct io_failure_record *failrec = NULL;
665 u64 private;
666 struct extent_map *em;
667 struct inode *inode = page->mapping->host;
668 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -0400669 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -0400670 struct bio *bio;
671 int num_copies;
672 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400673 int rw;
Chris Mason7e383262008-04-09 16:28:12 -0400674 u64 logical;
675
676 ret = get_state_private(failure_tree, start, &private);
677 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -0400678 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
679 if (!failrec)
680 return -ENOMEM;
681 failrec->start = start;
682 failrec->len = end - start + 1;
683 failrec->last_mirror = 0;
684
Chris Mason3b951512008-04-17 11:29:12 -0400685 spin_lock(&em_tree->lock);
686 em = lookup_extent_mapping(em_tree, start, failrec->len);
687 if (em->start > start || em->start + em->len < start) {
688 free_extent_map(em);
689 em = NULL;
690 }
691 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -0400692
693 if (!em || IS_ERR(em)) {
694 kfree(failrec);
695 return -EIO;
696 }
697 logical = start - em->start;
698 logical = em->block_start + logical;
699 failrec->logical = logical;
700 free_extent_map(em);
701 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
702 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -0400703 set_state_private(failure_tree, start,
704 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -0400705 } else {
Chris Mason587f7702008-04-11 12:16:46 -0400706 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -0400707 }
708 num_copies = btrfs_num_copies(
709 &BTRFS_I(inode)->root->fs_info->mapping_tree,
710 failrec->logical, failrec->len);
711 failrec->last_mirror++;
712 if (!state) {
713 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
714 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
715 failrec->start,
716 EXTENT_LOCKED);
717 if (state && state->start != failrec->start)
718 state = NULL;
719 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
720 }
721 if (!state || failrec->last_mirror > num_copies) {
722 set_state_private(failure_tree, failrec->start, 0);
723 clear_extent_bits(failure_tree, failrec->start,
724 failrec->start + failrec->len - 1,
725 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
726 kfree(failrec);
727 return -EIO;
728 }
729 bio = bio_alloc(GFP_NOFS, 1);
730 bio->bi_private = state;
731 bio->bi_end_io = failed_bio->bi_end_io;
732 bio->bi_sector = failrec->logical >> 9;
733 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -0400734 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -0400735 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -0400736 if (failed_bio->bi_rw & (1 << BIO_RW))
737 rw = WRITE;
738 else
739 rw = READ;
740
741 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
742 failrec->last_mirror);
743 return 0;
744}
745
746int btrfs_clean_io_failures(struct inode *inode, u64 start)
747{
748 u64 private;
749 u64 private_failure;
750 struct io_failure_record *failure;
751 int ret;
752
753 private = 0;
754 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
755 (u64)-1, 1, EXTENT_DIRTY)) {
756 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
757 start, &private_failure);
758 if (ret == 0) {
759 failure = (struct io_failure_record *)(unsigned long)
760 private_failure;
761 set_state_private(&BTRFS_I(inode)->io_failure_tree,
762 failure->start, 0);
763 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
764 failure->start,
765 failure->start + failure->len - 1,
766 EXTENT_DIRTY | EXTENT_LOCKED,
767 GFP_NOFS);
768 kfree(failure);
769 }
770 }
Chris Mason7e383262008-04-09 16:28:12 -0400771 return 0;
772}
773
Chris Mason70dec802008-01-29 09:59:12 -0500774int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
775 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400776{
Chris Mason35ebb932007-10-30 16:56:53 -0400777 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400778 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500779 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400780 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500781 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400782 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400783 struct btrfs_root *root = BTRFS_I(inode)->root;
784 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400785 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500786
Yanb98b6762008-01-08 15:54:37 -0500787 if (btrfs_test_opt(root, NODATASUM) ||
788 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500789 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500790 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500791 private = state->private;
792 ret = 0;
793 } else {
794 ret = get_state_private(io_tree, start, &private);
795 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400796 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400797 kaddr = kmap_atomic(page, KM_IRQ0);
798 if (ret) {
799 goto zeroit;
800 }
Chris Masonff79f812007-10-15 16:22:25 -0400801 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
802 btrfs_csum_final(csum, (char *)&csum);
803 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400804 goto zeroit;
805 }
806 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400807 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -0400808
809 /* if the io failure tree for this inode is non-empty,
810 * check to see if we've recovered from a failed IO
811 */
Chris Mason1259ab72008-05-12 13:39:03 -0400812 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400813 return 0;
814
815zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500816 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
817 page->mapping->host->i_ino, (unsigned long long)start, csum,
818 private);
Chris Masondb945352007-10-15 16:15:53 -0400819 memset(kaddr + offset, 1, end - start + 1);
820 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400821 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400822 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -0400823 if (private == 0)
824 return 0;
Chris Mason7e383262008-04-09 16:28:12 -0400825 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -0400826}
Chris Masonb888db22007-08-27 16:49:44 -0400827
Chris Mason39279cc2007-06-12 06:35:45 -0400828void btrfs_read_locked_inode(struct inode *inode)
829{
830 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400831 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400832 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400833 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400834 struct btrfs_root *root = BTRFS_I(inode)->root;
835 struct btrfs_key location;
836 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400837 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400838 int ret;
839
840 path = btrfs_alloc_path();
841 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400842 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500843
Chris Mason39279cc2007-06-12 06:35:45 -0400844 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400845 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400846 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400847
Chris Mason5f39d392007-10-15 16:14:19 -0400848 leaf = path->nodes[0];
849 inode_item = btrfs_item_ptr(leaf, path->slots[0],
850 struct btrfs_inode_item);
851
852 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
853 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
854 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
855 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -0400856 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -0400857
858 tspec = btrfs_inode_atime(inode_item);
859 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
860 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
861
862 tspec = btrfs_inode_mtime(inode_item);
863 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
864 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
865
866 tspec = btrfs_inode_ctime(inode_item);
867 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
868 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
869
870 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
871 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400872 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400873 rdev = btrfs_inode_rdev(leaf, inode_item);
874
875 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400876 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
877 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500878 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500879 if (!BTRFS_I(inode)->block_group) {
880 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -0400881 NULL, 0,
882 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -0500883 }
Chris Mason39279cc2007-06-12 06:35:45 -0400884 btrfs_free_path(path);
885 inode_item = NULL;
886
Chris Mason39279cc2007-06-12 06:35:45 -0400887 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400888 case S_IFREG:
889 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -0400890 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -0500891 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400892 inode->i_fop = &btrfs_file_operations;
893 inode->i_op = &btrfs_file_inode_operations;
894 break;
895 case S_IFDIR:
896 inode->i_fop = &btrfs_dir_file_operations;
897 if (root == root->fs_info->tree_root)
898 inode->i_op = &btrfs_dir_ro_inode_operations;
899 else
900 inode->i_op = &btrfs_dir_inode_operations;
901 break;
902 case S_IFLNK:
903 inode->i_op = &btrfs_symlink_inode_operations;
904 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -0400905 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -0400906 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400907 default:
908 init_special_inode(inode, inode->i_mode, rdev);
909 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400910 }
911 return;
912
913make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -0400914 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -0400915 make_bad_inode(inode);
916}
917
Chris Mason5f39d392007-10-15 16:14:19 -0400918static void fill_inode_item(struct extent_buffer *leaf,
919 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400920 struct inode *inode)
921{
Chris Mason5f39d392007-10-15 16:14:19 -0400922 btrfs_set_inode_uid(leaf, item, inode->i_uid);
923 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -0400924 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -0400925 btrfs_set_inode_mode(leaf, item, inode->i_mode);
926 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
927
928 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
929 inode->i_atime.tv_sec);
930 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
931 inode->i_atime.tv_nsec);
932
933 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
934 inode->i_mtime.tv_sec);
935 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
936 inode->i_mtime.tv_nsec);
937
938 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
939 inode->i_ctime.tv_sec);
940 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
941 inode->i_ctime.tv_nsec);
942
943 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
944 btrfs_set_inode_generation(leaf, item, inode->i_generation);
945 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500946 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400947 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400948 BTRFS_I(inode)->block_group->key.objectid);
949}
950
Chris Masonba1da2f2008-07-17 12:54:15 -0400951int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400952 struct btrfs_root *root,
953 struct inode *inode)
954{
955 struct btrfs_inode_item *inode_item;
956 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400957 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400958 int ret;
959
960 path = btrfs_alloc_path();
961 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400962 ret = btrfs_lookup_inode(trans, root, path,
963 &BTRFS_I(inode)->location, 1);
964 if (ret) {
965 if (ret > 0)
966 ret = -ENOENT;
967 goto failed;
968 }
969
Chris Mason5f39d392007-10-15 16:14:19 -0400970 leaf = path->nodes[0];
971 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400972 struct btrfs_inode_item);
973
Chris Mason5f39d392007-10-15 16:14:19 -0400974 fill_inode_item(leaf, inode_item, inode);
975 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400976 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400977 ret = 0;
978failed:
Chris Mason39279cc2007-06-12 06:35:45 -0400979 btrfs_free_path(path);
980 return ret;
981}
982
983
984static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
985 struct btrfs_root *root,
986 struct inode *dir,
987 struct dentry *dentry)
988{
989 struct btrfs_path *path;
990 const char *name = dentry->d_name.name;
991 int name_len = dentry->d_name.len;
992 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400993 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400994 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400995 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400996
997 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400998 if (!path) {
999 ret = -ENOMEM;
1000 goto err;
1001 }
1002
Chris Mason39279cc2007-06-12 06:35:45 -04001003 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
1004 name, name_len, -1);
1005 if (IS_ERR(di)) {
1006 ret = PTR_ERR(di);
1007 goto err;
1008 }
1009 if (!di) {
1010 ret = -ENOENT;
1011 goto err;
1012 }
Chris Mason5f39d392007-10-15 16:14:19 -04001013 leaf = path->nodes[0];
1014 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04001015 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04001016 if (ret)
1017 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04001018 btrfs_release_path(root, path);
1019
1020 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -04001021 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04001022 if (IS_ERR(di)) {
1023 ret = PTR_ERR(di);
1024 goto err;
1025 }
1026 if (!di) {
1027 ret = -ENOENT;
1028 goto err;
1029 }
1030 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04001031 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04001032
1033 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -05001034 ret = btrfs_del_inode_ref(trans, root, name, name_len,
1035 dentry->d_inode->i_ino,
1036 dentry->d_parent->d_inode->i_ino);
1037 if (ret) {
1038 printk("failed to delete reference to %.*s, "
1039 "inode %lu parent %lu\n", name_len, name,
1040 dentry->d_inode->i_ino,
1041 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -05001042 }
Chris Mason39279cc2007-06-12 06:35:45 -04001043err:
1044 btrfs_free_path(path);
1045 if (!ret) {
Chris Masondbe674a2008-07-17 12:54:05 -04001046 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04001047 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001048 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -05001049#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1050 dentry->d_inode->i_nlink--;
1051#else
Chris Mason39279cc2007-06-12 06:35:45 -04001052 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001053#endif
Chris Mason54aa1f42007-06-22 14:16:25 -04001054 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001055 dir->i_sb->s_dirt = 1;
1056 }
1057 return ret;
1058}
1059
1060static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
1061{
1062 struct btrfs_root *root;
1063 struct btrfs_trans_handle *trans;
1064 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05001065 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001066
1067 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001068
1069 ret = btrfs_check_free_space(root, 1, 1);
1070 if (ret)
1071 goto fail;
1072
Chris Mason39279cc2007-06-12 06:35:45 -04001073 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001074
Chris Mason39279cc2007-06-12 06:35:45 -04001075 btrfs_set_trans_block_group(trans, dir);
1076 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001077 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04001078
Chris Mason89ce8a62008-06-25 16:01:31 -04001079 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001080fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001081 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001082 return ret;
1083}
1084
1085static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
1086{
1087 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001088 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001089 int ret;
1090 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04001091 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05001092 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001093
Chris Mason925baed2008-06-25 16:01:30 -04001094 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
Yan134d4512007-10-25 15:49:25 -04001095 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04001096 }
Yan134d4512007-10-25 15:49:25 -04001097
Chris Mason1832a6d2007-12-21 16:27:21 -05001098 ret = btrfs_check_free_space(root, 1, 1);
1099 if (ret)
1100 goto fail;
1101
Chris Mason39279cc2007-06-12 06:35:45 -04001102 trans = btrfs_start_transaction(root, 1);
1103 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04001104
1105 /* now the directory is empty */
1106 err = btrfs_unlink_trans(trans, root, dir, dentry);
1107 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04001108 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001109 }
Chris Mason39544012007-12-12 14:38:19 -05001110
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001111 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04001112 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001113fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001114 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05001115
Chris Mason39279cc2007-06-12 06:35:45 -04001116 if (ret && !err)
1117 err = ret;
1118 return err;
1119}
1120
Chris Mason39279cc2007-06-12 06:35:45 -04001121/*
Chris Mason39279cc2007-06-12 06:35:45 -04001122 * this can truncate away extent items, csum items and directory items.
1123 * It starts at a high offset and removes keys until it can't find
1124 * any higher than i_size.
1125 *
1126 * csum items that cross the new i_size are truncated to the new size
1127 * as well.
1128 */
1129static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
1130 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -05001131 struct inode *inode,
1132 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001133{
1134 int ret;
1135 struct btrfs_path *path;
1136 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001137 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001138 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04001139 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001140 struct btrfs_file_extent_item *fi;
1141 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04001142 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001143 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001144 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001145 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001146 int found_extent;
1147 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05001148 int pending_del_nr = 0;
1149 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04001150 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -04001151 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001152
Chris Mason3b951512008-04-17 11:29:12 -04001153 btrfs_drop_extent_cache(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04001154 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04001155 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04001156 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04001157
Chris Mason39279cc2007-06-12 06:35:45 -04001158 /* FIXME, add redo link to tree so we don't leak on crash */
1159 key.objectid = inode->i_ino;
1160 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04001161 key.type = (u8)-1;
1162
Chris Mason85e21ba2008-01-29 15:11:36 -05001163 btrfs_init_path(path);
1164search_again:
1165 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1166 if (ret < 0) {
1167 goto error;
1168 }
1169 if (ret > 0) {
1170 BUG_ON(path->slots[0] == 0);
1171 path->slots[0]--;
1172 }
1173
Chris Mason39279cc2007-06-12 06:35:45 -04001174 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001175 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001176 leaf = path->nodes[0];
1177 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1178 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04001179
Chris Mason5f39d392007-10-15 16:14:19 -04001180 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04001181 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001182
Chris Mason85e21ba2008-01-29 15:11:36 -05001183 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001184 break;
1185
Chris Mason5f39d392007-10-15 16:14:19 -04001186 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001187 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04001188 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04001189 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04001190 extent_type = btrfs_file_extent_type(leaf, fi);
1191 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04001192 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04001193 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04001194 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1195 struct btrfs_item *item = btrfs_item_nr(leaf,
1196 path->slots[0]);
1197 item_end += btrfs_file_extent_inline_len(leaf,
1198 item);
Chris Mason39279cc2007-06-12 06:35:45 -04001199 }
Yan008630c2007-11-07 13:31:09 -05001200 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04001201 }
1202 if (found_type == BTRFS_CSUM_ITEM_KEY) {
1203 ret = btrfs_csum_truncate(trans, root, path,
1204 inode->i_size);
1205 BUG_ON(ret);
1206 }
Yan008630c2007-11-07 13:31:09 -05001207 if (item_end < inode->i_size) {
Chris Masonb888db22007-08-27 16:49:44 -04001208 if (found_type == BTRFS_DIR_ITEM_KEY) {
1209 found_type = BTRFS_INODE_ITEM_KEY;
1210 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
1211 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05001212 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
1213 found_type = BTRFS_XATTR_ITEM_KEY;
1214 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
1215 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04001216 } else if (found_type) {
1217 found_type--;
1218 } else {
1219 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001220 }
Yana61721d2007-09-17 11:08:38 -04001221 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05001222 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04001223 }
Chris Mason5f39d392007-10-15 16:14:19 -04001224 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -04001225 del_item = 1;
1226 else
1227 del_item = 0;
1228 found_extent = 0;
1229
1230 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001231 if (found_type != BTRFS_EXTENT_DATA_KEY)
1232 goto delete;
1233
1234 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001235 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001236 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001237 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001238 u64 orig_num_bytes =
1239 btrfs_file_extent_num_bytes(leaf, fi);
1240 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001241 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05001242 extent_num_bytes = extent_num_bytes &
1243 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001244 btrfs_set_file_extent_num_bytes(leaf, fi,
1245 extent_num_bytes);
1246 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001247 extent_num_bytes);
1248 if (extent_start != 0)
1249 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001250 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001251 } else {
Chris Masondb945352007-10-15 16:15:53 -04001252 extent_num_bytes =
1253 btrfs_file_extent_disk_num_bytes(leaf,
1254 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001255 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001256 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001257 if (extent_start != 0) {
1258 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -05001259 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001260 }
Chris Masond8d5f3e2007-12-11 12:42:00 -05001261 root_gen = btrfs_header_generation(leaf);
1262 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001263 }
Chris Mason90692182008-02-08 13:49:28 -05001264 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1265 if (!del_item) {
1266 u32 newsize = inode->i_size - found_key.offset;
1267 dec_i_blocks(inode, item_end + 1 -
1268 found_key.offset - newsize);
1269 newsize =
1270 btrfs_file_extent_calc_inline_size(newsize);
1271 ret = btrfs_truncate_item(trans, root, path,
1272 newsize, 1);
1273 BUG_ON(ret);
1274 } else {
1275 dec_i_blocks(inode, item_end + 1 -
1276 found_key.offset);
1277 }
Chris Mason39279cc2007-06-12 06:35:45 -04001278 }
Chris Mason179e29e2007-11-01 11:28:41 -04001279delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001280 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001281 if (!pending_del_nr) {
1282 /* no pending yet, add ourselves */
1283 pending_del_slot = path->slots[0];
1284 pending_del_nr = 1;
1285 } else if (pending_del_nr &&
1286 path->slots[0] + 1 == pending_del_slot) {
1287 /* hop on the pending chunk */
1288 pending_del_nr++;
1289 pending_del_slot = path->slots[0];
1290 } else {
1291 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1292 }
Chris Mason39279cc2007-06-12 06:35:45 -04001293 } else {
1294 break;
1295 }
Chris Mason39279cc2007-06-12 06:35:45 -04001296 if (found_extent) {
1297 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001298 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -05001299 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001300 root_gen, inode->i_ino,
1301 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001302 BUG_ON(ret);
1303 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001304next:
1305 if (path->slots[0] == 0) {
1306 if (pending_del_nr)
1307 goto del_pending;
1308 btrfs_release_path(root, path);
1309 goto search_again;
1310 }
1311
1312 path->slots[0]--;
1313 if (pending_del_nr &&
1314 path->slots[0] + 1 != pending_del_slot) {
1315 struct btrfs_key debug;
1316del_pending:
1317 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1318 pending_del_slot);
1319 ret = btrfs_del_items(trans, root, path,
1320 pending_del_slot,
1321 pending_del_nr);
1322 BUG_ON(ret);
1323 pending_del_nr = 0;
1324 btrfs_release_path(root, path);
1325 goto search_again;
1326 }
Chris Mason39279cc2007-06-12 06:35:45 -04001327 }
1328 ret = 0;
1329error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001330 if (pending_del_nr) {
1331 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1332 pending_del_nr);
1333 }
Chris Mason39279cc2007-06-12 06:35:45 -04001334 btrfs_free_path(path);
1335 inode->i_sb->s_dirt = 1;
1336 return ret;
1337}
1338
Chris Masona52d9a82007-08-27 16:49:44 -04001339/*
1340 * taken from block_truncate_page, but does cow as it zeros out
1341 * any bytes left in the last page in the file.
1342 */
1343static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1344{
1345 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001346 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001347 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1348 struct btrfs_ordered_extent *ordered;
1349 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04001350 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001351 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1352 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1353 struct page *page;
1354 int ret = 0;
1355 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001356 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04001357
1358 if ((offset & (blocksize - 1)) == 0)
1359 goto out;
1360
1361 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04001362again:
Chris Masona52d9a82007-08-27 16:49:44 -04001363 page = grab_cache_page(mapping, index);
1364 if (!page)
1365 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001366
1367 page_start = page_offset(page);
1368 page_end = page_start + PAGE_CACHE_SIZE - 1;
1369
Chris Masona52d9a82007-08-27 16:49:44 -04001370 if (!PageUptodate(page)) {
1371 ret = btrfs_readpage(NULL, page);
1372 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04001373 if (page->mapping != mapping) {
1374 unlock_page(page);
1375 page_cache_release(page);
1376 goto again;
1377 }
Chris Masona52d9a82007-08-27 16:49:44 -04001378 if (!PageUptodate(page)) {
1379 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04001380 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04001381 }
1382 }
Chris Mason211c17f2008-05-15 09:13:45 -04001383 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001384
1385 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
1386 set_page_extent_mapped(page);
1387
1388 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1389 if (ordered) {
1390 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
1391 unlock_page(page);
1392 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04001393 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001394 btrfs_put_ordered_extent(ordered);
1395 goto again;
1396 }
1397
1398 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
1399 page_end, GFP_NOFS);
1400 ret = 0;
1401 if (offset != PAGE_CACHE_SIZE) {
1402 kaddr = kmap(page);
1403 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
1404 flush_dcache_page(page);
1405 kunmap(page);
1406 }
Chris Mason247e7432008-07-17 12:53:51 -04001407 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001408 set_page_dirty(page);
1409 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001410
Chris Mason89642222008-07-24 09:41:53 -04001411out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04001412 unlock_page(page);
1413 page_cache_release(page);
1414out:
1415 return ret;
1416}
1417
1418static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1419{
1420 struct inode *inode = dentry->d_inode;
1421 int err;
1422
1423 err = inode_change_ok(inode, attr);
1424 if (err)
1425 return err;
1426
1427 if (S_ISREG(inode->i_mode) &&
1428 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1429 struct btrfs_trans_handle *trans;
1430 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001431 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001432
Chris Mason5f39d392007-10-15 16:14:19 -04001433 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001434 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001435 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001436 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001437 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001438
Chris Mason1b0f7c22008-01-30 14:33:02 -05001439 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001440 goto out;
1441
Chris Mason1832a6d2007-12-21 16:27:21 -05001442 err = btrfs_check_free_space(root, 1, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05001443 if (err)
1444 goto fail;
1445
Chris Mason39279cc2007-06-12 06:35:45 -04001446 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1447
Chris Mason5f564062008-01-22 16:47:59 -05001448 hole_size = block_end - hole_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001449 btrfs_wait_ordered_range(inode, hole_start, hole_size);
1450 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001451
Chris Mason39279cc2007-06-12 06:35:45 -04001452 trans = btrfs_start_transaction(root, 1);
1453 btrfs_set_trans_block_group(trans, inode);
Chris Masonee6e6502008-07-17 12:54:40 -04001454 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -04001455 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001456 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001457 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001458
Chris Mason179e29e2007-11-01 11:28:41 -04001459 if (alloc_hint != EXTENT_MAP_INLINE) {
1460 err = btrfs_insert_file_extent(trans, root,
1461 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001462 hole_start, 0, 0,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001463 hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001464 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001465 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001466 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001467 }
Chris Masonee6e6502008-07-17 12:54:40 -04001468 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001469 btrfs_end_transaction(trans, root);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001470 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001471 if (err)
1472 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001473 }
1474out:
1475 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001476fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001477 return err;
1478}
Chris Mason61295eb2008-01-14 16:24:38 -05001479
Chris Mason39279cc2007-06-12 06:35:45 -04001480void btrfs_delete_inode(struct inode *inode)
1481{
1482 struct btrfs_trans_handle *trans;
1483 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001484 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001485 int ret;
1486
1487 truncate_inode_pages(&inode->i_data, 0);
1488 if (is_bad_inode(inode)) {
1489 goto no_delete;
1490 }
Chris Mason4a096752008-07-21 10:29:44 -04001491 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04001492
Chris Masondbe674a2008-07-17 12:54:05 -04001493 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001494 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001495
Chris Mason39279cc2007-06-12 06:35:45 -04001496 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001497 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001498 if (ret)
1499 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001500
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001501 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001502 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001503
Chris Mason39279cc2007-06-12 06:35:45 -04001504 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001505 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001506 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001507
1508no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001509 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001510 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001511 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001512no_delete:
1513 clear_inode(inode);
1514}
1515
1516/*
1517 * this returns the key found in the dir entry in the location pointer.
1518 * If no dir entries were found, location->objectid is 0.
1519 */
1520static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1521 struct btrfs_key *location)
1522{
1523 const char *name = dentry->d_name.name;
1524 int namelen = dentry->d_name.len;
1525 struct btrfs_dir_item *di;
1526 struct btrfs_path *path;
1527 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001528 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001529
Chris Mason39544012007-12-12 14:38:19 -05001530 if (namelen == 1 && strcmp(name, ".") == 0) {
1531 location->objectid = dir->i_ino;
1532 location->type = BTRFS_INODE_ITEM_KEY;
1533 location->offset = 0;
1534 return 0;
1535 }
Chris Mason39279cc2007-06-12 06:35:45 -04001536 path = btrfs_alloc_path();
1537 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001538
Chris Mason7a720532007-12-13 09:06:59 -05001539 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001540 struct btrfs_key key;
1541 struct extent_buffer *leaf;
1542 u32 nritems;
1543 int slot;
1544
1545 key.objectid = dir->i_ino;
1546 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1547 key.offset = 0;
1548 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1549 BUG_ON(ret == 0);
1550 ret = 0;
1551
1552 leaf = path->nodes[0];
1553 slot = path->slots[0];
1554 nritems = btrfs_header_nritems(leaf);
1555 if (slot >= nritems)
1556 goto out_err;
1557
1558 btrfs_item_key_to_cpu(leaf, &key, slot);
1559 if (key.objectid != dir->i_ino ||
1560 key.type != BTRFS_INODE_REF_KEY) {
1561 goto out_err;
1562 }
1563 location->objectid = key.offset;
1564 location->type = BTRFS_INODE_ITEM_KEY;
1565 location->offset = 0;
1566 goto out;
1567 }
1568
Chris Mason39279cc2007-06-12 06:35:45 -04001569 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1570 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001571 if (IS_ERR(di))
1572 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001573 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001574 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001575 }
Chris Mason5f39d392007-10-15 16:14:19 -04001576 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001577out:
Chris Mason39279cc2007-06-12 06:35:45 -04001578 btrfs_free_path(path);
1579 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001580out_err:
1581 location->objectid = 0;
1582 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001583}
1584
1585/*
1586 * when we hit a tree root in a directory, the btrfs part of the inode
1587 * needs to be changed to reflect the root directory of the tree root. This
1588 * is kind of like crossing a mount point.
1589 */
1590static int fixup_tree_root_location(struct btrfs_root *root,
1591 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001592 struct btrfs_root **sub_root,
1593 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001594{
1595 struct btrfs_path *path;
1596 struct btrfs_root_item *ri;
1597
1598 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1599 return 0;
1600 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1601 return 0;
1602
1603 path = btrfs_alloc_path();
1604 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001605
Josef Bacik58176a92007-08-29 15:47:34 -04001606 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1607 dentry->d_name.name,
1608 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001609 if (IS_ERR(*sub_root))
1610 return PTR_ERR(*sub_root);
1611
1612 ri = &(*sub_root)->root_item;
1613 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001614 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1615 location->offset = 0;
1616
1617 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04001618 return 0;
1619}
1620
1621static int btrfs_init_locked_inode(struct inode *inode, void *p)
1622{
1623 struct btrfs_iget_args *args = p;
1624 inode->i_ino = args->ino;
1625 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001626 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04001627 BTRFS_I(inode)->disk_i_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001628 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1629 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001630 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001631 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1632 inode->i_mapping, GFP_NOFS);
Chris Masonba1da2f2008-07-17 12:54:15 -04001633 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04001634 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04001635 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001636 return 0;
1637}
1638
1639static int btrfs_find_actor(struct inode *inode, void *opaque)
1640{
1641 struct btrfs_iget_args *args = opaque;
1642 return (args->ino == inode->i_ino &&
1643 args->root == BTRFS_I(inode)->root);
1644}
1645
Chris Masondc17ff82008-01-08 15:46:30 -05001646struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1647 u64 root_objectid)
1648{
1649 struct btrfs_iget_args args;
1650 args.ino = objectid;
1651 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1652
1653 if (!args.root)
1654 return NULL;
1655
1656 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1657}
1658
Chris Mason39279cc2007-06-12 06:35:45 -04001659struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1660 struct btrfs_root *root)
1661{
1662 struct inode *inode;
1663 struct btrfs_iget_args args;
1664 args.ino = objectid;
1665 args.root = root;
1666
1667 inode = iget5_locked(s, objectid, btrfs_find_actor,
1668 btrfs_init_locked_inode,
1669 (void *)&args);
1670 return inode;
1671}
1672
1673static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1674 struct nameidata *nd)
1675{
1676 struct inode * inode;
1677 struct btrfs_inode *bi = BTRFS_I(dir);
1678 struct btrfs_root *root = bi->root;
1679 struct btrfs_root *sub_root = root;
1680 struct btrfs_key location;
1681 int ret;
1682
1683 if (dentry->d_name.len > BTRFS_NAME_LEN)
1684 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001685
Chris Mason39279cc2007-06-12 06:35:45 -04001686 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001687
Chris Mason39279cc2007-06-12 06:35:45 -04001688 if (ret < 0)
1689 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001690
Chris Mason39279cc2007-06-12 06:35:45 -04001691 inode = NULL;
1692 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001693 ret = fixup_tree_root_location(root, &location, &sub_root,
1694 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001695 if (ret < 0)
1696 return ERR_PTR(ret);
1697 if (ret > 0)
1698 return ERR_PTR(-ENOENT);
1699 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1700 sub_root);
1701 if (!inode)
1702 return ERR_PTR(-EACCES);
1703 if (inode->i_state & I_NEW) {
1704 /* the inode and parent dir are two different roots */
1705 if (sub_root != root) {
1706 igrab(inode);
1707 sub_root->inode = inode;
1708 }
1709 BTRFS_I(inode)->root = sub_root;
1710 memcpy(&BTRFS_I(inode)->location, &location,
1711 sizeof(location));
1712 btrfs_read_locked_inode(inode);
1713 unlock_new_inode(inode);
1714 }
1715 }
1716 return d_splice_alias(inode, dentry);
1717}
1718
Chris Mason39279cc2007-06-12 06:35:45 -04001719static unsigned char btrfs_filetype_table[] = {
1720 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1721};
1722
1723static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1724{
Chris Mason6da6aba2007-12-18 16:15:09 -05001725 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001726 struct btrfs_root *root = BTRFS_I(inode)->root;
1727 struct btrfs_item *item;
1728 struct btrfs_dir_item *di;
1729 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001730 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001731 struct btrfs_path *path;
1732 int ret;
1733 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001734 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001735 int slot;
1736 int advance;
1737 unsigned char d_type;
1738 int over = 0;
1739 u32 di_cur;
1740 u32 di_total;
1741 u32 di_len;
1742 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001743 char tmp_name[32];
1744 char *name_ptr;
1745 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001746
1747 /* FIXME, use a real flag for deciding about the key type */
1748 if (root->fs_info->tree_root == root)
1749 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001750
Chris Mason39544012007-12-12 14:38:19 -05001751 /* special case for "." */
1752 if (filp->f_pos == 0) {
1753 over = filldir(dirent, ".", 1,
1754 1, inode->i_ino,
1755 DT_DIR);
1756 if (over)
1757 return 0;
1758 filp->f_pos = 1;
1759 }
1760
Chris Mason39279cc2007-06-12 06:35:45 -04001761 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001762 path = btrfs_alloc_path();
1763 path->reada = 2;
1764
1765 /* special case for .., just use the back ref */
1766 if (filp->f_pos == 1) {
1767 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1768 key.offset = 0;
1769 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1770 BUG_ON(ret == 0);
1771 leaf = path->nodes[0];
1772 slot = path->slots[0];
1773 nritems = btrfs_header_nritems(leaf);
1774 if (slot >= nritems) {
1775 btrfs_release_path(root, path);
1776 goto read_dir_items;
1777 }
1778 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1779 btrfs_release_path(root, path);
1780 if (found_key.objectid != key.objectid ||
1781 found_key.type != BTRFS_INODE_REF_KEY)
1782 goto read_dir_items;
1783 over = filldir(dirent, "..", 2,
1784 2, found_key.offset, DT_DIR);
1785 if (over)
1786 goto nopos;
1787 filp->f_pos = 2;
1788 }
1789
1790read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001791 btrfs_set_key_type(&key, key_type);
1792 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001793
Chris Mason39279cc2007-06-12 06:35:45 -04001794 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1795 if (ret < 0)
1796 goto err;
1797 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001798 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001799 leaf = path->nodes[0];
1800 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001801 slot = path->slots[0];
1802 if (advance || slot >= nritems) {
1803 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001804 ret = btrfs_next_leaf(root, path);
1805 if (ret)
1806 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001807 leaf = path->nodes[0];
1808 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001809 slot = path->slots[0];
1810 } else {
1811 slot++;
1812 path->slots[0]++;
1813 }
1814 }
1815 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001816 item = btrfs_item_nr(leaf, slot);
1817 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1818
1819 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001820 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001821 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001822 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001823 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001824 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001825
1826 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001827 advance = 1;
1828 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1829 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001830 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001831 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001832 struct btrfs_key location;
1833
1834 name_len = btrfs_dir_name_len(leaf, di);
1835 if (name_len < 32) {
1836 name_ptr = tmp_name;
1837 } else {
1838 name_ptr = kmalloc(name_len, GFP_NOFS);
1839 BUG_ON(!name_ptr);
1840 }
1841 read_extent_buffer(leaf, name_ptr,
1842 (unsigned long)(di + 1), name_len);
1843
1844 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1845 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001846 over = filldir(dirent, name_ptr, name_len,
1847 found_key.offset,
1848 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001849 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001850
1851 if (name_ptr != tmp_name)
1852 kfree(name_ptr);
1853
Chris Mason39279cc2007-06-12 06:35:45 -04001854 if (over)
1855 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001856 di_len = btrfs_dir_name_len(leaf, di) +
1857 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001858 di_cur += di_len;
1859 di = (struct btrfs_dir_item *)((char *)di + di_len);
1860 }
1861 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001862 if (key_type == BTRFS_DIR_INDEX_KEY)
1863 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1864 else
1865 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001866nopos:
1867 ret = 0;
1868err:
Chris Mason39279cc2007-06-12 06:35:45 -04001869 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04001870 return ret;
1871}
1872
1873int btrfs_write_inode(struct inode *inode, int wait)
1874{
1875 struct btrfs_root *root = BTRFS_I(inode)->root;
1876 struct btrfs_trans_handle *trans;
1877 int ret = 0;
1878
1879 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04001880 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04001881 btrfs_set_trans_block_group(trans, inode);
1882 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04001883 }
1884 return ret;
1885}
1886
1887/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001888 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001889 * inode changes. But, it is most likely to find the inode in cache.
1890 * FIXME, needs more benchmarking...there are no reasons other than performance
1891 * to keep or drop this code.
1892 */
1893void btrfs_dirty_inode(struct inode *inode)
1894{
1895 struct btrfs_root *root = BTRFS_I(inode)->root;
1896 struct btrfs_trans_handle *trans;
1897
Chris Masonf9295742008-07-17 12:54:14 -04001898 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04001899 btrfs_set_trans_block_group(trans, inode);
1900 btrfs_update_inode(trans, root, inode);
1901 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04001902}
1903
1904static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1905 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001906 const char *name, int name_len,
1907 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001908 u64 objectid,
1909 struct btrfs_block_group_cache *group,
1910 int mode)
1911{
1912 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001913 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04001914 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04001915 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001916 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001917 struct btrfs_inode_ref *ref;
1918 struct btrfs_key key[2];
1919 u32 sizes[2];
1920 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001921 int ret;
1922 int owner;
1923
Chris Mason5f39d392007-10-15 16:14:19 -04001924 path = btrfs_alloc_path();
1925 BUG_ON(!path);
1926
Chris Mason39279cc2007-06-12 06:35:45 -04001927 inode = new_inode(root->fs_info->sb);
1928 if (!inode)
1929 return ERR_PTR(-ENOMEM);
1930
Chris Masond1310b22008-01-24 16:13:08 -05001931 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1932 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001933 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001934 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1935 inode->i_mapping, GFP_NOFS);
Chris Masonba1da2f2008-07-17 12:54:15 -04001936 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04001937 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04001938 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05001939 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04001940 BTRFS_I(inode)->disk_i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001941 BTRFS_I(inode)->root = root;
Chris Masonb888db22007-08-27 16:49:44 -04001942
Chris Mason39279cc2007-06-12 06:35:45 -04001943 if (mode & S_IFDIR)
1944 owner = 0;
1945 else
1946 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04001947 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001948 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04001949 if (!new_inode_group) {
1950 printk("find_block group failed\n");
1951 new_inode_group = group;
1952 }
1953 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05001954 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001955
1956 key[0].objectid = objectid;
1957 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1958 key[0].offset = 0;
1959
1960 key[1].objectid = objectid;
1961 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1962 key[1].offset = ref_objectid;
1963
1964 sizes[0] = sizeof(struct btrfs_inode_item);
1965 sizes[1] = name_len + sizeof(*ref);
1966
1967 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1968 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001969 goto fail;
1970
Chris Mason9c583092008-01-29 15:15:18 -05001971 if (objectid > root->highest_inode)
1972 root->highest_inode = objectid;
1973
Chris Mason39279cc2007-06-12 06:35:45 -04001974 inode->i_uid = current->fsuid;
1975 inode->i_gid = current->fsgid;
1976 inode->i_mode = mode;
1977 inode->i_ino = objectid;
1978 inode->i_blocks = 0;
1979 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001980 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1981 struct btrfs_inode_item);
1982 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001983
1984 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1985 struct btrfs_inode_ref);
1986 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1987 ptr = (unsigned long)(ref + 1);
1988 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1989
Chris Mason5f39d392007-10-15 16:14:19 -04001990 btrfs_mark_buffer_dirty(path->nodes[0]);
1991 btrfs_free_path(path);
1992
Chris Mason39279cc2007-06-12 06:35:45 -04001993 location = &BTRFS_I(inode)->location;
1994 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001995 location->offset = 0;
1996 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1997
Chris Mason39279cc2007-06-12 06:35:45 -04001998 insert_inode_hash(inode);
1999 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04002000fail:
2001 btrfs_free_path(path);
2002 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002003}
2004
2005static inline u8 btrfs_inode_type(struct inode *inode)
2006{
2007 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
2008}
2009
2010static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05002011 struct dentry *dentry, struct inode *inode,
2012 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04002013{
2014 int ret;
2015 struct btrfs_key key;
2016 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04002017 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04002018
Chris Mason39279cc2007-06-12 06:35:45 -04002019 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04002020 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
2021 key.offset = 0;
2022
2023 ret = btrfs_insert_dir_item(trans, root,
2024 dentry->d_name.name, dentry->d_name.len,
2025 dentry->d_parent->d_inode->i_ino,
2026 &key, btrfs_inode_type(inode));
2027 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05002028 if (add_backref) {
2029 ret = btrfs_insert_inode_ref(trans, root,
2030 dentry->d_name.name,
2031 dentry->d_name.len,
2032 inode->i_ino,
2033 dentry->d_parent->d_inode->i_ino);
2034 }
Chris Mason79c44582007-06-25 10:09:33 -04002035 parent_inode = dentry->d_parent->d_inode;
Chris Masondbe674a2008-07-17 12:54:05 -04002036 btrfs_i_size_write(parent_inode, parent_inode->i_size +
2037 dentry->d_name.len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04002038 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04002039 ret = btrfs_update_inode(trans, root,
2040 dentry->d_parent->d_inode);
2041 }
2042 return ret;
2043}
2044
2045static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05002046 struct dentry *dentry, struct inode *inode,
2047 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04002048{
Chris Mason9c583092008-01-29 15:15:18 -05002049 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04002050 if (!err) {
2051 d_instantiate(dentry, inode);
2052 return 0;
2053 }
2054 if (err > 0)
2055 err = -EEXIST;
2056 return err;
2057}
2058
Josef Bacik618e21d2007-07-11 10:18:17 -04002059static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
2060 int mode, dev_t rdev)
2061{
2062 struct btrfs_trans_handle *trans;
2063 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002064 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04002065 int err;
2066 int drop_inode = 0;
2067 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05002068 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04002069
2070 if (!new_valid_dev(rdev))
2071 return -EINVAL;
2072
Chris Mason1832a6d2007-12-21 16:27:21 -05002073 err = btrfs_check_free_space(root, 1, 0);
2074 if (err)
2075 goto fail;
2076
Josef Bacik618e21d2007-07-11 10:18:17 -04002077 trans = btrfs_start_transaction(root, 1);
2078 btrfs_set_trans_block_group(trans, dir);
2079
2080 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2081 if (err) {
2082 err = -ENOSPC;
2083 goto out_unlock;
2084 }
2085
Chris Mason9c583092008-01-29 15:15:18 -05002086 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2087 dentry->d_name.len,
2088 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04002089 BTRFS_I(dir)->block_group, mode);
2090 err = PTR_ERR(inode);
2091 if (IS_ERR(inode))
2092 goto out_unlock;
2093
2094 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002095 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04002096 if (err)
2097 drop_inode = 1;
2098 else {
2099 inode->i_op = &btrfs_special_inode_operations;
2100 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04002101 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04002102 }
2103 dir->i_sb->s_dirt = 1;
2104 btrfs_update_inode_block_group(trans, inode);
2105 btrfs_update_inode_block_group(trans, dir);
2106out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002107 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002108 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002109fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04002110 if (drop_inode) {
2111 inode_dec_link_count(inode);
2112 iput(inode);
2113 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002114 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04002115 return err;
2116}
2117
Chris Mason39279cc2007-06-12 06:35:45 -04002118static int btrfs_create(struct inode *dir, struct dentry *dentry,
2119 int mode, struct nameidata *nd)
2120{
2121 struct btrfs_trans_handle *trans;
2122 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002123 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002124 int err;
2125 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05002126 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002127 u64 objectid;
2128
Chris Mason1832a6d2007-12-21 16:27:21 -05002129 err = btrfs_check_free_space(root, 1, 0);
2130 if (err)
2131 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002132 trans = btrfs_start_transaction(root, 1);
2133 btrfs_set_trans_block_group(trans, dir);
2134
2135 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2136 if (err) {
2137 err = -ENOSPC;
2138 goto out_unlock;
2139 }
2140
Chris Mason9c583092008-01-29 15:15:18 -05002141 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2142 dentry->d_name.len,
2143 dentry->d_parent->d_inode->i_ino,
2144 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04002145 err = PTR_ERR(inode);
2146 if (IS_ERR(inode))
2147 goto out_unlock;
2148
2149 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002150 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002151 if (err)
2152 drop_inode = 1;
2153 else {
2154 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002155 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002156 inode->i_fop = &btrfs_file_operations;
2157 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05002158 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2159 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04002160 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04002161 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2162 inode->i_mapping, GFP_NOFS);
Chris Mason1b1e2132008-06-25 16:01:31 -04002163 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04002164 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05002165 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04002166 BTRFS_I(inode)->disk_i_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002167 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonba1da2f2008-07-17 12:54:15 -04002168 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04002169 }
2170 dir->i_sb->s_dirt = 1;
2171 btrfs_update_inode_block_group(trans, inode);
2172 btrfs_update_inode_block_group(trans, dir);
2173out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002174 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002175 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002176fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002177 if (drop_inode) {
2178 inode_dec_link_count(inode);
2179 iput(inode);
2180 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002181 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002182 return err;
2183}
2184
2185static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
2186 struct dentry *dentry)
2187{
2188 struct btrfs_trans_handle *trans;
2189 struct btrfs_root *root = BTRFS_I(dir)->root;
2190 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002191 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002192 int err;
2193 int drop_inode = 0;
2194
2195 if (inode->i_nlink == 0)
2196 return -ENOENT;
2197
Chris Mason6da6aba2007-12-18 16:15:09 -05002198#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2199 inode->i_nlink++;
2200#else
Chris Mason39279cc2007-06-12 06:35:45 -04002201 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05002202#endif
Chris Mason1832a6d2007-12-21 16:27:21 -05002203 err = btrfs_check_free_space(root, 1, 0);
2204 if (err)
2205 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002206 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002207
Chris Mason39279cc2007-06-12 06:35:45 -04002208 btrfs_set_trans_block_group(trans, dir);
2209 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05002210 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002211
Chris Mason39279cc2007-06-12 06:35:45 -04002212 if (err)
2213 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002214
Chris Mason39279cc2007-06-12 06:35:45 -04002215 dir->i_sb->s_dirt = 1;
2216 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002217 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002218
Chris Mason54aa1f42007-06-22 14:16:25 -04002219 if (err)
2220 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002221
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002222 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002223 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002224fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002225 if (drop_inode) {
2226 inode_dec_link_count(inode);
2227 iput(inode);
2228 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002229 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002230 return err;
2231}
2232
Chris Mason39279cc2007-06-12 06:35:45 -04002233static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2234{
Chris Masonb9d86662008-05-02 16:13:49 -04002235 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002236 struct btrfs_trans_handle *trans;
2237 struct btrfs_root *root = BTRFS_I(dir)->root;
2238 int err = 0;
2239 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04002240 u64 objectid = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002241 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002242
Chris Mason1832a6d2007-12-21 16:27:21 -05002243 err = btrfs_check_free_space(root, 1, 0);
2244 if (err)
2245 goto out_unlock;
2246
Chris Mason39279cc2007-06-12 06:35:45 -04002247 trans = btrfs_start_transaction(root, 1);
2248 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002249
Chris Mason39279cc2007-06-12 06:35:45 -04002250 if (IS_ERR(trans)) {
2251 err = PTR_ERR(trans);
2252 goto out_unlock;
2253 }
2254
2255 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2256 if (err) {
2257 err = -ENOSPC;
2258 goto out_unlock;
2259 }
2260
Chris Mason9c583092008-01-29 15:15:18 -05002261 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2262 dentry->d_name.len,
2263 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002264 BTRFS_I(dir)->block_group, S_IFDIR | mode);
2265 if (IS_ERR(inode)) {
2266 err = PTR_ERR(inode);
2267 goto out_fail;
2268 }
Chris Mason5f39d392007-10-15 16:14:19 -04002269
Chris Mason39279cc2007-06-12 06:35:45 -04002270 drop_on_err = 1;
2271 inode->i_op = &btrfs_dir_inode_operations;
2272 inode->i_fop = &btrfs_dir_file_operations;
2273 btrfs_set_trans_block_group(trans, inode);
2274
Chris Masondbe674a2008-07-17 12:54:05 -04002275 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002276 err = btrfs_update_inode(trans, root, inode);
2277 if (err)
2278 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002279
Chris Mason9c583092008-01-29 15:15:18 -05002280 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002281 if (err)
2282 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002283
Chris Mason39279cc2007-06-12 06:35:45 -04002284 d_instantiate(dentry, inode);
2285 drop_on_err = 0;
2286 dir->i_sb->s_dirt = 1;
2287 btrfs_update_inode_block_group(trans, inode);
2288 btrfs_update_inode_block_group(trans, dir);
2289
2290out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002291 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002292 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002293
Chris Mason39279cc2007-06-12 06:35:45 -04002294out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002295 if (drop_on_err)
2296 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002297 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002298 return err;
2299}
2300
Chris Mason3b951512008-04-17 11:29:12 -04002301static int merge_extent_mapping(struct extent_map_tree *em_tree,
2302 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002303 struct extent_map *em,
2304 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04002305{
2306 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04002307
Chris Masone6dcd2d2008-07-17 12:53:50 -04002308 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
2309 start_diff = map_start - em->start;
2310 em->start = map_start;
2311 em->len = map_len;
2312 if (em->block_start < EXTENT_MAP_LAST_BYTE)
2313 em->block_start += start_diff;
2314 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002315}
2316
Chris Masona52d9a82007-08-27 16:49:44 -04002317struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002318 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002319 int create)
2320{
2321 int ret;
2322 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002323 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002324 u64 extent_start = 0;
2325 u64 extent_end = 0;
2326 u64 objectid = inode->i_ino;
2327 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04002328 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04002329 struct btrfs_root *root = BTRFS_I(inode)->root;
2330 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002331 struct extent_buffer *leaf;
2332 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002333 struct extent_map *em = NULL;
2334 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002335 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002336 struct btrfs_trans_handle *trans = NULL;
2337
Chris Masona52d9a82007-08-27 16:49:44 -04002338again:
Chris Masond1310b22008-01-24 16:13:08 -05002339 spin_lock(&em_tree->lock);
2340 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04002341 if (em)
2342 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002343 spin_unlock(&em_tree->lock);
2344
Chris Masona52d9a82007-08-27 16:49:44 -04002345 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04002346 if (em->start > start || em->start + em->len <= start)
2347 free_extent_map(em);
2348 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05002349 free_extent_map(em);
2350 else
2351 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002352 }
Chris Masond1310b22008-01-24 16:13:08 -05002353 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002354 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002355 err = -ENOMEM;
2356 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002357 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002358 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002359 em->start = EXTENT_MAP_HOLE;
2360 em->len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04002361
2362 if (!path) {
2363 path = btrfs_alloc_path();
2364 BUG_ON(!path);
2365 }
2366
Chris Mason179e29e2007-11-01 11:28:41 -04002367 ret = btrfs_lookup_file_extent(trans, root, path,
2368 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002369 if (ret < 0) {
2370 err = ret;
2371 goto out;
2372 }
2373
2374 if (ret != 0) {
2375 if (path->slots[0] == 0)
2376 goto not_found;
2377 path->slots[0]--;
2378 }
2379
Chris Mason5f39d392007-10-15 16:14:19 -04002380 leaf = path->nodes[0];
2381 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002382 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002383 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002384 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2385 found_type = btrfs_key_type(&found_key);
2386 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002387 found_type != BTRFS_EXTENT_DATA_KEY) {
2388 goto not_found;
2389 }
2390
Chris Mason5f39d392007-10-15 16:14:19 -04002391 found_type = btrfs_file_extent_type(leaf, item);
2392 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002393 if (found_type == BTRFS_FILE_EXTENT_REG) {
2394 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002395 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002396 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04002397 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002398 em->start = start;
2399 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002400 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002401 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002402 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002403 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002404 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002405 }
2406 goto not_found_em;
2407 }
Chris Masondb945352007-10-15 16:15:53 -04002408 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2409 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002410 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002411 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002412 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002413 goto insert;
2414 }
Chris Masondb945352007-10-15 16:15:53 -04002415 bytenr += btrfs_file_extent_offset(leaf, item);
2416 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002417 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002418 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002419 goto insert;
2420 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002421 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002422 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002423 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002424 size_t size;
2425 size_t extent_offset;
2426 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002427
Chris Mason5f39d392007-10-15 16:14:19 -04002428 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2429 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002430 extent_end = (extent_start + size + root->sectorsize - 1) &
2431 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002432 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002433 em->start = start;
2434 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002435 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002436 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002437 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002438 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002439 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002440 }
2441 goto not_found_em;
2442 }
2443 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002444
2445 if (!page) {
2446 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002447 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002448 goto out;
2449 }
2450
Chris Mason70dec802008-01-29 09:59:12 -05002451 page_start = page_offset(page) + pg_offset;
2452 extent_offset = page_start - extent_start;
2453 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002454 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002455 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002456 em->len = (copy_size + root->sectorsize - 1) &
2457 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002458 map = kmap(page);
2459 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002460 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002461 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002462 copy_size);
2463 flush_dcache_page(page);
2464 } else if (create && PageUptodate(page)) {
2465 if (!trans) {
2466 kunmap(page);
2467 free_extent_map(em);
2468 em = NULL;
2469 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04002470 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04002471 goto again;
2472 }
Chris Mason70dec802008-01-29 09:59:12 -05002473 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002474 copy_size);
2475 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002476 }
Chris Masona52d9a82007-08-27 16:49:44 -04002477 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002478 set_extent_uptodate(io_tree, em->start,
2479 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002480 goto insert;
2481 } else {
2482 printk("unkknown found_type %d\n", found_type);
2483 WARN_ON(1);
2484 }
2485not_found:
2486 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002487 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002488not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002489 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002490insert:
2491 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002492 if (em->start > start || extent_map_end(em) <= start) {
2493 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002494 err = -EIO;
2495 goto out;
2496 }
Chris Masond1310b22008-01-24 16:13:08 -05002497
2498 err = 0;
2499 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002500 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002501 /* it is possible that someone inserted the extent into the tree
2502 * while we had the lock dropped. It is also possible that
2503 * an overlapping map exists in the tree
2504 */
Chris Masona52d9a82007-08-27 16:49:44 -04002505 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002506 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002507
2508 ret = 0;
2509
Chris Mason3b951512008-04-17 11:29:12 -04002510 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002511 if (existing && (existing->start > start ||
2512 existing->start + existing->len <= start)) {
2513 free_extent_map(existing);
2514 existing = NULL;
2515 }
Chris Mason3b951512008-04-17 11:29:12 -04002516 if (!existing) {
2517 existing = lookup_extent_mapping(em_tree, em->start,
2518 em->len);
2519 if (existing) {
2520 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002521 em, start,
2522 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04002523 free_extent_map(existing);
2524 if (err) {
2525 free_extent_map(em);
2526 em = NULL;
2527 }
2528 } else {
2529 err = -EIO;
2530 printk("failing to insert %Lu %Lu\n",
2531 start, len);
2532 free_extent_map(em);
2533 em = NULL;
2534 }
2535 } else {
2536 free_extent_map(em);
2537 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002538 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04002539 }
Chris Masona52d9a82007-08-27 16:49:44 -04002540 }
Chris Masond1310b22008-01-24 16:13:08 -05002541 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002542out:
Chris Masonf4219502008-07-22 11:18:09 -04002543 if (path)
2544 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04002545 if (trans) {
2546 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002547 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04002548 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002549 }
Chris Masona52d9a82007-08-27 16:49:44 -04002550 }
Chris Masona52d9a82007-08-27 16:49:44 -04002551 if (err) {
2552 free_extent_map(em);
2553 WARN_ON(1);
2554 return ERR_PTR(err);
2555 }
2556 return em;
2557}
2558
Chris Masone1c4b742008-04-22 13:26:46 -04002559#if 0 /* waiting for O_DIRECT reads */
Chris Mason16432982008-04-10 10:23:21 -04002560static int btrfs_get_block(struct inode *inode, sector_t iblock,
2561 struct buffer_head *bh_result, int create)
2562{
2563 struct extent_map *em;
2564 u64 start = (u64)iblock << inode->i_blkbits;
2565 struct btrfs_multi_bio *multi = NULL;
2566 struct btrfs_root *root = BTRFS_I(inode)->root;
2567 u64 len;
2568 u64 logical;
2569 u64 map_length;
2570 int ret = 0;
2571
2572 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2573
2574 if (!em || IS_ERR(em))
2575 goto out;
2576
Chris Masone1c4b742008-04-22 13:26:46 -04002577 if (em->start > start || em->start + em->len <= start) {
Chris Mason16432982008-04-10 10:23:21 -04002578 goto out;
Chris Masone1c4b742008-04-22 13:26:46 -04002579 }
Chris Mason16432982008-04-10 10:23:21 -04002580
2581 if (em->block_start == EXTENT_MAP_INLINE) {
2582 ret = -EINVAL;
2583 goto out;
2584 }
2585
Chris Mason16432982008-04-10 10:23:21 -04002586 len = em->start + em->len - start;
2587 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2588
Chris Masone1c4b742008-04-22 13:26:46 -04002589 if (em->block_start == EXTENT_MAP_HOLE ||
2590 em->block_start == EXTENT_MAP_DELALLOC) {
2591 bh_result->b_size = len;
2592 goto out;
2593 }
2594
Chris Mason16432982008-04-10 10:23:21 -04002595 logical = start - em->start;
2596 logical = em->block_start + logical;
2597
2598 map_length = len;
2599 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2600 logical, &map_length, &multi, 0);
2601 BUG_ON(ret);
2602 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2603 bh_result->b_size = min(map_length, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002604
Chris Mason16432982008-04-10 10:23:21 -04002605 bh_result->b_bdev = multi->stripes[0].dev->bdev;
2606 set_buffer_mapped(bh_result);
2607 kfree(multi);
2608out:
2609 free_extent_map(em);
2610 return ret;
2611}
Chris Masone1c4b742008-04-22 13:26:46 -04002612#endif
Chris Mason16432982008-04-10 10:23:21 -04002613
2614static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
2615 const struct iovec *iov, loff_t offset,
2616 unsigned long nr_segs)
2617{
Chris Masone1c4b742008-04-22 13:26:46 -04002618 return -EINVAL;
2619#if 0
Chris Mason16432982008-04-10 10:23:21 -04002620 struct file *file = iocb->ki_filp;
2621 struct inode *inode = file->f_mapping->host;
2622
2623 if (rw == WRITE)
2624 return -EINVAL;
2625
2626 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2627 offset, nr_segs, btrfs_get_block, NULL);
Chris Masone1c4b742008-04-22 13:26:46 -04002628#endif
Chris Mason16432982008-04-10 10:23:21 -04002629}
2630
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002631static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002632{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002633 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002634}
2635
Chris Mason9ebefb182007-06-15 13:50:00 -04002636int btrfs_readpage(struct file *file, struct page *page)
2637{
Chris Masond1310b22008-01-24 16:13:08 -05002638 struct extent_io_tree *tree;
2639 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002640 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002641}
Chris Mason1832a6d2007-12-21 16:27:21 -05002642
Chris Mason39279cc2007-06-12 06:35:45 -04002643static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2644{
Chris Masond1310b22008-01-24 16:13:08 -05002645 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04002646
2647
2648 if (current->flags & PF_MEMALLOC) {
2649 redirty_page_for_writepage(wbc, page);
2650 unlock_page(page);
2651 return 0;
2652 }
Chris Masond1310b22008-01-24 16:13:08 -05002653 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002654 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2655}
Chris Mason39279cc2007-06-12 06:35:45 -04002656
Chris Masonf4219502008-07-22 11:18:09 -04002657int btrfs_writepages(struct address_space *mapping,
2658 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04002659{
Chris Masond1310b22008-01-24 16:13:08 -05002660 struct extent_io_tree *tree;
2661 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04002662 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2663}
2664
Chris Mason3ab2fb52007-11-08 10:59:22 -05002665static int
2666btrfs_readpages(struct file *file, struct address_space *mapping,
2667 struct list_head *pages, unsigned nr_pages)
2668{
Chris Masond1310b22008-01-24 16:13:08 -05002669 struct extent_io_tree *tree;
2670 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002671 return extent_readpages(tree, mapping, pages, nr_pages,
2672 btrfs_get_extent);
2673}
Chris Masone6dcd2d2008-07-17 12:53:50 -04002674static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002675{
Chris Masond1310b22008-01-24 16:13:08 -05002676 struct extent_io_tree *tree;
2677 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002678 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002679
Chris Masond1310b22008-01-24 16:13:08 -05002680 tree = &BTRFS_I(page->mapping->host)->io_tree;
2681 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002682 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002683 if (ret == 1) {
2684 ClearPagePrivate(page);
2685 set_page_private(page, 0);
2686 page_cache_release(page);
2687 }
2688 return ret;
2689}
Chris Mason39279cc2007-06-12 06:35:45 -04002690
Chris Masone6dcd2d2008-07-17 12:53:50 -04002691static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
2692{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002693 return __btrfs_releasepage(page, gfp_flags);
2694}
2695
Chris Masona52d9a82007-08-27 16:49:44 -04002696static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2697{
Chris Masond1310b22008-01-24 16:13:08 -05002698 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002699 struct btrfs_ordered_extent *ordered;
2700 u64 page_start = page_offset(page);
2701 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04002702
Chris Masone6dcd2d2008-07-17 12:53:50 -04002703 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002704 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002705 if (offset) {
2706 btrfs_releasepage(page, GFP_NOFS);
2707 return;
2708 }
2709
2710 lock_extent(tree, page_start, page_end, GFP_NOFS);
2711 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
2712 page_offset(page));
2713 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04002714 /*
2715 * IO on this page will never be started, so we need
2716 * to account for any ordered extents now
2717 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002718 clear_extent_bit(tree, page_start, page_end,
2719 EXTENT_DIRTY | EXTENT_DELALLOC |
2720 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04002721 btrfs_finish_ordered_io(page->mapping->host,
2722 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002723 btrfs_put_ordered_extent(ordered);
2724 lock_extent(tree, page_start, page_end, GFP_NOFS);
2725 }
2726 clear_extent_bit(tree, page_start, page_end,
2727 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
2728 EXTENT_ORDERED,
2729 1, 1, GFP_NOFS);
2730 __btrfs_releasepage(page, GFP_NOFS);
2731
Chris Mason4a096752008-07-21 10:29:44 -04002732 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002733 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002734 ClearPagePrivate(page);
2735 set_page_private(page, 0);
2736 page_cache_release(page);
2737 }
Chris Mason39279cc2007-06-12 06:35:45 -04002738}
2739
Chris Mason9ebefb182007-06-15 13:50:00 -04002740/*
2741 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2742 * called from a page fault handler when a page is first dirtied. Hence we must
2743 * be careful to check for EOF conditions here. We set the page up correctly
2744 * for a written page which means we get ENOSPC checking when writing into
2745 * holes and correct delalloc and unwritten extent mapping on filesystems that
2746 * support these features.
2747 *
2748 * We are not allowed to take the i_mutex here so we have to play games to
2749 * protect against truncate races as the page could now be beyond EOF. Because
2750 * vmtruncate() writes the inode size before removing pages, once we have the
2751 * page lock we can determine safely if the page is beyond EOF. If it is not
2752 * beyond EOF, then the page is guaranteed safe against truncation until we
2753 * unlock the page.
2754 */
2755int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2756{
Chris Mason6da6aba2007-12-18 16:15:09 -05002757 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002758 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002759 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2760 struct btrfs_ordered_extent *ordered;
2761 char *kaddr;
2762 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002763 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002764 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002765 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002766 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04002767
Chris Mason1832a6d2007-12-21 16:27:21 -05002768 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05002769 if (ret)
2770 goto out;
2771
2772 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002773again:
Chris Mason9ebefb182007-06-15 13:50:00 -04002774 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002775 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002776 page_start = page_offset(page);
2777 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04002778
Chris Mason9ebefb182007-06-15 13:50:00 -04002779 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04002780 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002781 /* page got truncated out from underneath us */
2782 goto out_unlock;
2783 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002784 wait_on_page_writeback(page);
2785
2786 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2787 set_page_extent_mapped(page);
2788
Chris Masoneb84ae02008-07-17 13:53:27 -04002789 /*
2790 * we can't set the delalloc bits if there are pending ordered
2791 * extents. Drop our locks and wait for them to finish
2792 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002793 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2794 if (ordered) {
2795 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2796 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04002797 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002798 btrfs_put_ordered_extent(ordered);
2799 goto again;
2800 }
2801
2802 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
2803 page_end, GFP_NOFS);
2804 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04002805
2806 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002807 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002808 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04002809 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04002810 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04002811
Chris Masone6dcd2d2008-07-17 12:53:50 -04002812 if (zero_start != PAGE_CACHE_SIZE) {
2813 kaddr = kmap(page);
2814 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
2815 flush_dcache_page(page);
2816 kunmap(page);
2817 }
Chris Mason247e7432008-07-17 12:53:51 -04002818 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002819 set_page_dirty(page);
2820 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04002821
2822out_unlock:
2823 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002824out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002825 return ret;
2826}
2827
Chris Mason39279cc2007-06-12 06:35:45 -04002828static void btrfs_truncate(struct inode *inode)
2829{
2830 struct btrfs_root *root = BTRFS_I(inode)->root;
2831 int ret;
2832 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002833 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04002834 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002835
2836 if (!S_ISREG(inode->i_mode))
2837 return;
2838 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2839 return;
2840
2841 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04002842 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04002843
Chris Mason39279cc2007-06-12 06:35:45 -04002844 trans = btrfs_start_transaction(root, 1);
2845 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04002846 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04002847
2848 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002849 ret = btrfs_truncate_in_trans(trans, root, inode,
2850 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002851 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002852 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002853
Chris Mason89ce8a62008-06-25 16:01:31 -04002854 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04002855 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002856 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002857}
2858
Sven Wegener3b963622008-06-09 21:57:42 -04002859/*
2860 * Invalidate a single dcache entry at the root of the filesystem.
2861 * Needed after creation of snapshot or subvolume.
2862 */
2863void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
2864 int namelen)
2865{
2866 struct dentry *alias, *entry;
2867 struct qstr qstr;
2868
2869 alias = d_find_alias(root->fs_info->sb->s_root->d_inode);
2870 if (alias) {
2871 qstr.name = name;
2872 qstr.len = namelen;
2873 /* change me if btrfs ever gets a d_hash operation */
2874 qstr.hash = full_name_hash(qstr.name, qstr.len);
2875 entry = d_lookup(alias, &qstr);
2876 dput(alias);
2877 if (entry) {
2878 d_invalidate(entry);
2879 dput(entry);
2880 }
2881 }
2882}
2883
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002884int btrfs_create_subvol_root(struct btrfs_root *new_root,
2885 struct btrfs_trans_handle *trans, u64 new_dirid,
2886 struct btrfs_block_group_cache *block_group)
Chris Mason39279cc2007-06-12 06:35:45 -04002887{
Chris Mason39279cc2007-06-12 06:35:45 -04002888 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002889 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002890
Chris Mason9c583092008-01-29 15:15:18 -05002891 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002892 new_dirid, block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002893 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002894 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002895 inode->i_op = &btrfs_dir_inode_operations;
2896 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002897 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002898
Chris Mason39544012007-12-12 14:38:19 -05002899 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2900 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002901 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04002902 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04002903
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002904 return btrfs_update_inode(trans, new_root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002905}
2906
Chris Masonedbd8d42007-12-21 16:27:24 -05002907unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002908 struct file_ra_state *ra, struct file *file,
2909 pgoff_t offset, pgoff_t last_index)
2910{
Chris Mason8e7bf942008-04-28 09:02:36 -04002911 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04002912
2913#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
Chris Mason86479a02007-09-10 19:58:16 -04002914 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2915 return offset;
2916#else
Chris Mason86479a02007-09-10 19:58:16 -04002917 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2918 return offset + req_size;
2919#endif
2920}
2921
Chris Mason39279cc2007-06-12 06:35:45 -04002922struct inode *btrfs_alloc_inode(struct super_block *sb)
2923{
2924 struct btrfs_inode *ei;
2925
2926 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2927 if (!ei)
2928 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002929 ei->last_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002930 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04002931 return &ei->vfs_inode;
2932}
2933
2934void btrfs_destroy_inode(struct inode *inode)
2935{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002936 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04002937 WARN_ON(!list_empty(&inode->i_dentry));
2938 WARN_ON(inode->i_data.nrpages);
2939
Chris Masone6dcd2d2008-07-17 12:53:50 -04002940 while(1) {
2941 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
2942 if (!ordered)
2943 break;
2944 else {
2945 printk("found ordered extent %Lu %Lu\n",
2946 ordered->file_offset, ordered->len);
2947 btrfs_remove_ordered_extent(inode, ordered);
2948 btrfs_put_ordered_extent(ordered);
2949 btrfs_put_ordered_extent(ordered);
2950 }
2951 }
Chris Mason8c416c92008-01-14 15:10:26 -05002952 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04002953 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2954}
2955
Chris Mason44ec0b72007-10-29 10:55:05 -04002956#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2957static void init_once(struct kmem_cache * cachep, void *foo)
2958#else
Chris Mason39279cc2007-06-12 06:35:45 -04002959static void init_once(void * foo, struct kmem_cache * cachep,
2960 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04002961#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002962{
2963 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2964
2965 inode_init_once(&ei->vfs_inode);
2966}
2967
2968void btrfs_destroy_cachep(void)
2969{
2970 if (btrfs_inode_cachep)
2971 kmem_cache_destroy(btrfs_inode_cachep);
2972 if (btrfs_trans_handle_cachep)
2973 kmem_cache_destroy(btrfs_trans_handle_cachep);
2974 if (btrfs_transaction_cachep)
2975 kmem_cache_destroy(btrfs_transaction_cachep);
2976 if (btrfs_bit_radix_cachep)
2977 kmem_cache_destroy(btrfs_bit_radix_cachep);
2978 if (btrfs_path_cachep)
2979 kmem_cache_destroy(btrfs_path_cachep);
2980}
2981
Chris Mason86479a02007-09-10 19:58:16 -04002982struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04002983 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04002984#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2985 void (*ctor)(struct kmem_cache *, void *)
2986#else
Chris Mason92fee662007-07-25 12:31:35 -04002987 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04002988 unsigned long)
2989#endif
2990 )
Chris Mason92fee662007-07-25 12:31:35 -04002991{
2992 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2993 SLAB_MEM_SPREAD | extra_flags), ctor
2994#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2995 ,NULL
2996#endif
2997 );
2998}
2999
Chris Mason39279cc2007-06-12 06:35:45 -04003000int btrfs_init_cachep(void)
3001{
Chris Mason86479a02007-09-10 19:58:16 -04003002 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04003003 sizeof(struct btrfs_inode),
3004 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04003005 if (!btrfs_inode_cachep)
3006 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003007 btrfs_trans_handle_cachep =
3008 btrfs_cache_create("btrfs_trans_handle_cache",
3009 sizeof(struct btrfs_trans_handle),
3010 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003011 if (!btrfs_trans_handle_cachep)
3012 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003013 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04003014 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04003015 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003016 if (!btrfs_transaction_cachep)
3017 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003018 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04003019 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04003020 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003021 if (!btrfs_path_cachep)
3022 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003023 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04003024 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003025 if (!btrfs_bit_radix_cachep)
3026 goto fail;
3027 return 0;
3028fail:
3029 btrfs_destroy_cachep();
3030 return -ENOMEM;
3031}
3032
3033static int btrfs_getattr(struct vfsmount *mnt,
3034 struct dentry *dentry, struct kstat *stat)
3035{
3036 struct inode *inode = dentry->d_inode;
3037 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05003038 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05003039 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04003040 return 0;
3041}
3042
3043static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3044 struct inode * new_dir,struct dentry *new_dentry)
3045{
3046 struct btrfs_trans_handle *trans;
3047 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3048 struct inode *new_inode = new_dentry->d_inode;
3049 struct inode *old_inode = old_dentry->d_inode;
3050 struct timespec ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04003051 int ret;
3052
3053 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3054 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3055 return -ENOTEMPTY;
3056 }
Chris Mason5f39d392007-10-15 16:14:19 -04003057
Chris Mason1832a6d2007-12-21 16:27:21 -05003058 ret = btrfs_check_free_space(root, 1, 0);
3059 if (ret)
3060 goto out_unlock;
3061
Chris Mason39279cc2007-06-12 06:35:45 -04003062 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003063
Chris Mason39279cc2007-06-12 06:35:45 -04003064 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003065
3066 old_dentry->d_inode->i_nlink++;
3067 old_dir->i_ctime = old_dir->i_mtime = ctime;
3068 new_dir->i_ctime = new_dir->i_mtime = ctime;
3069 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003070
Chris Mason39279cc2007-06-12 06:35:45 -04003071 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
3072 if (ret)
3073 goto out_fail;
3074
3075 if (new_inode) {
3076 new_inode->i_ctime = CURRENT_TIME;
3077 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
3078 if (ret)
3079 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003080 }
Chris Mason9c583092008-01-29 15:15:18 -05003081 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003082 if (ret)
3083 goto out_fail;
3084
3085out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003086 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003087out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003088 return ret;
3089}
3090
3091static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3092 const char *symname)
3093{
3094 struct btrfs_trans_handle *trans;
3095 struct btrfs_root *root = BTRFS_I(dir)->root;
3096 struct btrfs_path *path;
3097 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003098 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003099 int err;
3100 int drop_inode = 0;
3101 u64 objectid;
3102 int name_len;
3103 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003104 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003105 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003106 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003107 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003108
3109 name_len = strlen(symname) + 1;
3110 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3111 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003112
Chris Mason1832a6d2007-12-21 16:27:21 -05003113 err = btrfs_check_free_space(root, 1, 0);
3114 if (err)
3115 goto out_fail;
3116
Chris Mason39279cc2007-06-12 06:35:45 -04003117 trans = btrfs_start_transaction(root, 1);
3118 btrfs_set_trans_block_group(trans, dir);
3119
3120 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3121 if (err) {
3122 err = -ENOSPC;
3123 goto out_unlock;
3124 }
3125
Chris Mason9c583092008-01-29 15:15:18 -05003126 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
3127 dentry->d_name.len,
3128 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003129 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
3130 err = PTR_ERR(inode);
3131 if (IS_ERR(inode))
3132 goto out_unlock;
3133
3134 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003135 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003136 if (err)
3137 drop_inode = 1;
3138 else {
3139 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003140 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003141 inode->i_fop = &btrfs_file_operations;
3142 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003143 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3144 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04003145 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003146 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3147 inode->i_mapping, GFP_NOFS);
Chris Mason1b1e2132008-06-25 16:01:31 -04003148 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04003149 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05003150 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04003151 BTRFS_I(inode)->disk_i_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003152 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonba1da2f2008-07-17 12:54:15 -04003153 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04003154 }
3155 dir->i_sb->s_dirt = 1;
3156 btrfs_update_inode_block_group(trans, inode);
3157 btrfs_update_inode_block_group(trans, dir);
3158 if (drop_inode)
3159 goto out_unlock;
3160
3161 path = btrfs_alloc_path();
3162 BUG_ON(!path);
3163 key.objectid = inode->i_ino;
3164 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003165 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3166 datasize = btrfs_file_extent_calc_inline_size(name_len);
3167 err = btrfs_insert_empty_item(trans, root, path, &key,
3168 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003169 if (err) {
3170 drop_inode = 1;
3171 goto out_unlock;
3172 }
Chris Mason5f39d392007-10-15 16:14:19 -04003173 leaf = path->nodes[0];
3174 ei = btrfs_item_ptr(leaf, path->slots[0],
3175 struct btrfs_file_extent_item);
3176 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3177 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003178 BTRFS_FILE_EXTENT_INLINE);
3179 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003180 write_extent_buffer(leaf, symname, ptr, name_len);
3181 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003182 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003183
Chris Mason39279cc2007-06-12 06:35:45 -04003184 inode->i_op = &btrfs_symlink_inode_operations;
3185 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003186 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masondbe674a2008-07-17 12:54:05 -04003187 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003188 err = btrfs_update_inode(trans, root, inode);
3189 if (err)
3190 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003191
3192out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003193 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003194 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003195out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003196 if (drop_inode) {
3197 inode_dec_link_count(inode);
3198 iput(inode);
3199 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003200 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003201 return err;
3202}
Chris Mason16432982008-04-10 10:23:21 -04003203
Chris Masone6dcd2d2008-07-17 12:53:50 -04003204static int btrfs_set_page_dirty(struct page *page)
3205{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003206 return __set_page_dirty_nobuffers(page);
3207}
3208
Yanfdebe2b2008-01-14 13:26:08 -05003209static int btrfs_permission(struct inode *inode, int mask,
3210 struct nameidata *nd)
3211{
3212 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3213 return -EACCES;
3214 return generic_permission(inode, mask, NULL);
3215}
Chris Mason39279cc2007-06-12 06:35:45 -04003216
3217static struct inode_operations btrfs_dir_inode_operations = {
3218 .lookup = btrfs_lookup,
3219 .create = btrfs_create,
3220 .unlink = btrfs_unlink,
3221 .link = btrfs_link,
3222 .mkdir = btrfs_mkdir,
3223 .rmdir = btrfs_rmdir,
3224 .rename = btrfs_rename,
3225 .symlink = btrfs_symlink,
3226 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003227 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003228 .setxattr = generic_setxattr,
3229 .getxattr = generic_getxattr,
3230 .listxattr = btrfs_listxattr,
3231 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003232 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003233};
Chris Mason39279cc2007-06-12 06:35:45 -04003234static struct inode_operations btrfs_dir_ro_inode_operations = {
3235 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003236 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003237};
Chris Mason39279cc2007-06-12 06:35:45 -04003238static struct file_operations btrfs_dir_file_operations = {
3239 .llseek = generic_file_llseek,
3240 .read = generic_read_dir,
3241 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003242 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003243#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003244 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003245#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04003246 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003247};
3248
Chris Masond1310b22008-01-24 16:13:08 -05003249static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003250 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003251 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003252 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003253 .readpage_io_hook = btrfs_readpage_io_hook,
3254 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003255 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04003256 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04003257 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003258 .set_bit_hook = btrfs_set_bit_hook,
3259 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003260};
3261
Chris Mason39279cc2007-06-12 06:35:45 -04003262static struct address_space_operations btrfs_aops = {
3263 .readpage = btrfs_readpage,
3264 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04003265 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003266 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003267 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003268 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003269 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003270 .invalidatepage = btrfs_invalidatepage,
3271 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003272 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04003273};
3274
3275static struct address_space_operations btrfs_symlink_aops = {
3276 .readpage = btrfs_readpage,
3277 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003278 .invalidatepage = btrfs_invalidatepage,
3279 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003280};
3281
3282static struct inode_operations btrfs_file_inode_operations = {
3283 .truncate = btrfs_truncate,
3284 .getattr = btrfs_getattr,
3285 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003286 .setxattr = generic_setxattr,
3287 .getxattr = generic_getxattr,
3288 .listxattr = btrfs_listxattr,
3289 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003290 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003291};
Josef Bacik618e21d2007-07-11 10:18:17 -04003292static struct inode_operations btrfs_special_inode_operations = {
3293 .getattr = btrfs_getattr,
3294 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003295 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003296};
Chris Mason39279cc2007-06-12 06:35:45 -04003297static struct inode_operations btrfs_symlink_inode_operations = {
3298 .readlink = generic_readlink,
3299 .follow_link = page_follow_link_light,
3300 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003301 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003302};