blob: 0da1ae4ee407dd6ce3674f193548dff3e7248e5a [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>
Josef Bacik33268ea2008-07-24 12:16:36 -040039#include <linux/posix_acl.h>
Chris Mason39279cc2007-06-12 06:35:45 -040040#include "ctree.h"
41#include "disk-io.h"
42#include "transaction.h"
43#include "btrfs_inode.h"
44#include "ioctl.h"
45#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040046#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040047#include "ordered-data.h"
Chris Mason39279cc2007-06-12 06:35:45 -040048
49struct btrfs_iget_args {
50 u64 ino;
51 struct btrfs_root *root;
52};
53
54static struct inode_operations btrfs_dir_inode_operations;
55static struct inode_operations btrfs_symlink_inode_operations;
56static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040057static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040058static struct inode_operations btrfs_file_inode_operations;
59static struct address_space_operations btrfs_aops;
60static struct address_space_operations btrfs_symlink_aops;
61static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050062static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040063
64static struct kmem_cache *btrfs_inode_cachep;
65struct kmem_cache *btrfs_trans_handle_cachep;
66struct kmem_cache *btrfs_transaction_cachep;
67struct kmem_cache *btrfs_bit_radix_cachep;
68struct kmem_cache *btrfs_path_cachep;
69
70#define S_SHIFT 12
71static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
72 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
73 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
74 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
75 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
76 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
77 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
78 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
79};
80
Josef Bacik7b128762008-07-24 12:17:14 -040081static void btrfs_truncate(struct inode *inode);
82
Chris Mason1832a6d2007-12-21 16:27:21 -050083int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
84 int for_del)
85{
Chris Masona2135012008-06-25 16:01:30 -040086 u64 total;
87 u64 used;
Chris Mason1832a6d2007-12-21 16:27:21 -050088 u64 thresh;
Chris Masonbcbfce82008-04-22 13:26:47 -040089 unsigned long flags;
Chris Mason1832a6d2007-12-21 16:27:21 -050090 int ret = 0;
91
Chris Masona2135012008-06-25 16:01:30 -040092 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
93 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
94 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
Chris Mason1832a6d2007-12-21 16:27:21 -050095 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -050096 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -050097 else
Chris Masonf9ef6602008-01-03 09:22:38 -050098 thresh = total * 85;
99
100 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -0500101
Chris Mason1832a6d2007-12-21 16:27:21 -0500102 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
103 ret = -ENOSPC;
Chris Masonbcbfce82008-04-22 13:26:47 -0400104 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -0500105 return ret;
106}
107
Chris Masonbe20aa92007-12-17 20:14:01 -0500108static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db22007-08-27 16:49:44 -0400109{
110 struct btrfs_root *root = BTRFS_I(inode)->root;
111 struct btrfs_trans_handle *trans;
Chris Masonb888db22007-08-27 16:49:44 -0400112 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400113 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500114 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400115 u64 blocksize = root->sectorsize;
Chris Masond1310b22008-01-24 16:13:08 -0500116 u64 orig_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500117 struct btrfs_key ins;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400118 struct extent_map *em;
119 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
120 int ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400121
Chris Masonf9295742008-07-17 12:54:14 -0400122 trans = btrfs_join_transaction(root, 1);
Chris Masonb888db22007-08-27 16:49:44 -0400123 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500124 btrfs_set_trans_block_group(trans, inode);
125
Chris Masondb945352007-10-15 16:15:53 -0400126 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500127 num_bytes = max(blocksize, num_bytes);
Chris Masond1310b22008-01-24 16:13:08 -0500128 orig_num_bytes = num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400129
Chris Mason179e29e2007-11-01 11:28:41 -0400130 if (alloc_hint == EXTENT_MAP_INLINE)
131 goto out;
132
Chris Mason3b951512008-04-17 11:29:12 -0400133 BUG_ON(num_bytes > btrfs_super_total_bytes(&root->fs_info->super_copy));
Chris Masone5a22172008-07-18 20:42:20 -0400134 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400135 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1);
Chris Masone5a22172008-07-18 20:42:20 -0400136 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason3b951512008-04-17 11:29:12 -0400137
Chris Masonc59f8952007-12-17 20:14:04 -0500138 while(num_bytes > 0) {
139 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400140 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
141 root->sectorsize, 0, 0,
142 (u64)-1, &ins, 1);
Chris Masonc59f8952007-12-17 20:14:04 -0500143 if (ret) {
144 WARN_ON(1);
145 goto out;
146 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400147 em = alloc_extent_map(GFP_NOFS);
148 em->start = start;
149 em->len = ins.offset;
150 em->block_start = ins.objectid;
151 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masone5a22172008-07-18 20:42:20 -0400152 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400153 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400154 while(1) {
155 spin_lock(&em_tree->lock);
156 ret = add_extent_mapping(em_tree, em);
157 spin_unlock(&em_tree->lock);
158 if (ret != -EEXIST) {
159 free_extent_map(em);
160 break;
161 }
162 btrfs_drop_extent_cache(inode, start,
163 start + ins.offset - 1);
164 }
Chris Masone5a22172008-07-18 20:42:20 -0400165 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400166
Chris Mason98d20f62008-04-14 09:46:10 -0400167 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400168 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Yan Zheng7ea394f2008-08-05 13:05:02 -0400169 ins.offset, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400170 BUG_ON(ret);
Chris Mason3b951512008-04-17 11:29:12 -0400171 if (num_bytes < cur_alloc_size) {
172 printk("num_bytes %Lu cur_alloc %Lu\n", num_bytes,
173 cur_alloc_size);
174 break;
175 }
Chris Masonc59f8952007-12-17 20:14:04 -0500176 num_bytes -= cur_alloc_size;
177 alloc_hint = ins.objectid + ins.offset;
178 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400179 }
Chris Masonb888db22007-08-27 16:49:44 -0400180out:
181 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500182 return ret;
183}
184
185static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
186{
187 u64 extent_start;
188 u64 extent_end;
189 u64 bytenr;
Chris Mason1832a6d2007-12-21 16:27:21 -0500190 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500191 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500192 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona68d5932008-05-08 14:11:56 -0400193 struct btrfs_block_group_cache *block_group;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400194 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -0500195 struct extent_buffer *leaf;
196 int found_type;
197 struct btrfs_path *path;
198 struct btrfs_file_extent_item *item;
199 int ret;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400200 int err = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500201 struct btrfs_key found_key;
202
Chris Masonc31f8832008-01-08 15:46:31 -0500203 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500204 path = btrfs_alloc_path();
205 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400206 trans = btrfs_join_transaction(root, 1);
207 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500208again:
209 ret = btrfs_lookup_file_extent(NULL, root, path,
210 inode->i_ino, start, 0);
211 if (ret < 0) {
Yan Zheng7ea394f2008-08-05 13:05:02 -0400212 err = ret;
213 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -0500214 }
215
Chris Masonbe20aa92007-12-17 20:14:01 -0500216 if (ret != 0) {
217 if (path->slots[0] == 0)
218 goto not_found;
219 path->slots[0]--;
220 }
221
222 leaf = path->nodes[0];
223 item = btrfs_item_ptr(leaf, path->slots[0],
224 struct btrfs_file_extent_item);
225
226 /* are we inside the extent that was found? */
227 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
228 found_type = btrfs_key_type(&found_key);
229 if (found_key.objectid != inode->i_ino ||
Chris Masonbbaf5492008-05-08 16:31:21 -0400230 found_type != BTRFS_EXTENT_DATA_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -0500231 goto not_found;
Chris Masonbe20aa92007-12-17 20:14:01 -0500232
233 found_type = btrfs_file_extent_type(leaf, item);
234 extent_start = found_key.offset;
235 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Masonc31f8832008-01-08 15:46:31 -0500236 u64 extent_num_bytes;
237
238 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
239 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500240 err = 0;
241
Chris Mason1832a6d2007-12-21 16:27:21 -0500242 if (loops && start != extent_start)
243 goto not_found;
244
Chris Masonbe20aa92007-12-17 20:14:01 -0500245 if (start < extent_start || start >= extent_end)
246 goto not_found;
247
Chris Masonbe20aa92007-12-17 20:14:01 -0500248 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
249 if (bytenr == 0)
250 goto not_found;
251
Yan Zheng7ea394f2008-08-05 13:05:02 -0400252 if (btrfs_cross_ref_exists(trans, root, &found_key, bytenr))
Chris Masona68d5932008-05-08 14:11:56 -0400253 goto not_found;
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
Yan Zheng7ea394f2008-08-05 13:05:02 -0400263 bytenr += btrfs_file_extent_offset(leaf, item);
264 extent_num_bytes = min(end + 1, extent_end) - start;
265 ret = btrfs_add_ordered_extent(inode, start, bytenr,
266 extent_num_bytes, 1);
267 if (ret) {
268 err = ret;
269 goto out;
270 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500271
Yan Zheng7ea394f2008-08-05 13:05:02 -0400272 btrfs_release_path(root, path);
273 start = extent_end;
274 if (start <= end) {
275 loops++;
276 goto again;
277 }
278 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500279not_found:
Yan Zheng7ea394f2008-08-05 13:05:02 -0400280 btrfs_end_transaction(trans, root);
281 btrfs_free_path(path);
282 return cow_file_range(inode, start, end);
283 }
284out:
285 WARN_ON(err);
286 btrfs_end_transaction(trans, root);
287 btrfs_free_path(path);
288 return err;
Chris Masonbe20aa92007-12-17 20:14:01 -0500289}
290
291static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
292{
293 struct btrfs_root *root = BTRFS_I(inode)->root;
294 int ret;
Chris Masona2135012008-06-25 16:01:30 -0400295
Yanb98b6762008-01-08 15:54:37 -0500296 if (btrfs_test_opt(root, NODATACOW) ||
297 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500298 ret = run_delalloc_nocow(inode, start, end);
299 else
300 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500301
Chris Masonb888db22007-08-27 16:49:44 -0400302 return ret;
303}
304
Chris Mason291d6732008-01-29 15:55:23 -0500305int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500306 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500307{
Chris Masonbcbfce82008-04-22 13:26:47 -0400308 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -0500309 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500310 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400311 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -0500312 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -0500313 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -0400314 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
315 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
316 &root->fs_info->delalloc_inodes);
317 }
Chris Masonbcbfce82008-04-22 13:26:47 -0400318 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500319 }
320 return 0;
321}
322
323int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500324 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500325{
Chris Masonb0c68f82008-01-31 11:05:37 -0500326 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500327 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400328 unsigned long flags;
329
330 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -0500331 if (end - start + 1 > root->fs_info->delalloc_bytes) {
332 printk("warning: delalloc account %Lu %Lu\n",
333 end - start + 1, root->fs_info->delalloc_bytes);
334 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -0500335 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -0500336 } else {
337 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -0500338 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -0500339 }
Chris Masonea8c2812008-08-04 23:17:27 -0400340 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
341 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
342 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
343 }
Chris Masonbcbfce82008-04-22 13:26:47 -0400344 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500345 }
346 return 0;
347}
348
Chris Mason239b14b2008-03-24 15:02:07 -0400349int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
350 size_t size, struct bio *bio)
351{
352 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
353 struct btrfs_mapping_tree *map_tree;
Chris Mason239b14b2008-03-24 15:02:07 -0400354 u64 logical = bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -0400355 u64 length = 0;
356 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -0400357 int ret;
358
Chris Masonf2d8d742008-04-21 10:03:05 -0400359 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -0400360 map_tree = &root->fs_info->mapping_tree;
361 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -0400362 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -0400363 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -0400364
Chris Mason239b14b2008-03-24 15:02:07 -0400365 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -0400366 return 1;
367 }
368 return 0;
369}
370
Chris Mason44b8bd72008-04-16 11:14:51 -0400371int __btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400372 int mirror_num)
Chris Mason065631f2008-02-20 12:07:25 -0500373{
Chris Mason065631f2008-02-20 12:07:25 -0500374 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -0500375 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -0400376
Chris Mason3edf7d32008-07-18 06:17:13 -0400377 ret = btrfs_csum_one_bio(root, inode, bio);
Chris Mason44b8bd72008-04-16 11:14:51 -0400378 BUG_ON(ret);
Chris Masone0156402008-04-16 11:15:20 -0400379
Chris Mason8b712842008-06-11 16:50:36 -0400380 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -0400381}
382
383int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
384 int mirror_num)
385{
386 struct btrfs_root *root = BTRFS_I(inode)->root;
387 int ret = 0;
388
Chris Masone6dcd2d2008-07-17 12:53:50 -0400389 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
390 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -0500391
Yan Zheng7ea394f2008-08-05 13:05:02 -0400392 if (btrfs_test_opt(root, NODATASUM) ||
393 btrfs_test_flag(inode, NODATASUM)) {
394 goto mapit;
395 }
396
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400397 if (!(rw & (1 << BIO_RW))) {
398 btrfs_lookup_bio_sums(root, inode, bio);
399 goto mapit;
400 }
Chris Mason44b8bd72008-04-16 11:14:51 -0400401 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
402 inode, rw, bio, mirror_num,
403 __btrfs_submit_bio_hook);
Chris Mason0b86a832008-03-24 15:01:56 -0400404mapit:
Chris Mason8b712842008-06-11 16:50:36 -0400405 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -0500406}
Chris Mason6885f302008-02-20 16:11:05 -0500407
Chris Masonba1da2f2008-07-17 12:54:15 -0400408static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400409 struct inode *inode, u64 file_offset,
410 struct list_head *list)
411{
412 struct list_head *cur;
413 struct btrfs_ordered_sum *sum;
414
415 btrfs_set_trans_block_group(trans, inode);
Chris Masonba1da2f2008-07-17 12:54:15 -0400416 list_for_each(cur, list) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400417 sum = list_entry(cur, struct btrfs_ordered_sum, list);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400418 btrfs_csum_file_blocks(trans, BTRFS_I(inode)->root,
419 inode, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400420 }
421 return 0;
422}
423
Chris Masonea8c2812008-08-04 23:17:27 -0400424int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
425{
426 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
427 GFP_NOFS);
428}
429
Chris Mason247e7432008-07-17 12:53:51 -0400430struct btrfs_writepage_fixup {
431 struct page *page;
432 struct btrfs_work work;
433};
434
435/* see btrfs_writepage_start_hook for details on why this is required */
436void btrfs_writepage_fixup_worker(struct btrfs_work *work)
437{
438 struct btrfs_writepage_fixup *fixup;
439 struct btrfs_ordered_extent *ordered;
440 struct page *page;
441 struct inode *inode;
442 u64 page_start;
443 u64 page_end;
444
445 fixup = container_of(work, struct btrfs_writepage_fixup, work);
446 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -0400447again:
Chris Mason247e7432008-07-17 12:53:51 -0400448 lock_page(page);
449 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
450 ClearPageChecked(page);
451 goto out_page;
452 }
453
454 inode = page->mapping->host;
455 page_start = page_offset(page);
456 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
457
458 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -0400459
460 /* already ordered? We're done */
461 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
462 EXTENT_ORDERED, 0)) {
Chris Mason247e7432008-07-17 12:53:51 -0400463 goto out;
Chris Mason4a096752008-07-21 10:29:44 -0400464 }
465
466 ordered = btrfs_lookup_ordered_extent(inode, page_start);
467 if (ordered) {
468 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
469 page_end, GFP_NOFS);
470 unlock_page(page);
471 btrfs_start_ordered_extent(inode, ordered, 1);
472 goto again;
473 }
Chris Mason247e7432008-07-17 12:53:51 -0400474
Chris Masonea8c2812008-08-04 23:17:27 -0400475 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -0400476 ClearPageChecked(page);
477out:
478 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
479out_page:
480 unlock_page(page);
481 page_cache_release(page);
482}
483
484/*
485 * There are a few paths in the higher layers of the kernel that directly
486 * set the page dirty bit without asking the filesystem if it is a
487 * good idea. This causes problems because we want to make sure COW
488 * properly happens and the data=ordered rules are followed.
489 *
490 * In our case any range that doesn't have the EXTENT_ORDERED bit set
491 * hasn't been properly setup for IO. We kick off an async process
492 * to fix it up. The async helper will wait for ordered extents, set
493 * the delalloc bit and make it safe to write the page.
494 */
495int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
496{
497 struct inode *inode = page->mapping->host;
498 struct btrfs_writepage_fixup *fixup;
499 struct btrfs_root *root = BTRFS_I(inode)->root;
500 int ret;
501
502 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
503 EXTENT_ORDERED, 0);
504 if (ret)
505 return 0;
506
507 if (PageChecked(page))
508 return -EAGAIN;
509
510 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
511 if (!fixup)
512 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -0400513
Chris Mason247e7432008-07-17 12:53:51 -0400514 SetPageChecked(page);
515 page_cache_get(page);
516 fixup->work.func = btrfs_writepage_fixup_worker;
517 fixup->page = page;
518 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
519 return -EAGAIN;
520}
521
Chris Mason211f90e2008-07-18 11:56:15 -0400522static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400523{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400524 struct btrfs_root *root = BTRFS_I(inode)->root;
525 struct btrfs_trans_handle *trans;
526 struct btrfs_ordered_extent *ordered_extent;
527 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
528 u64 alloc_hint = 0;
529 struct list_head list;
530 struct btrfs_key ins;
531 int ret;
532
533 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -0400534 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400535 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400536
Chris Masonf9295742008-07-17 12:54:14 -0400537 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400538
539 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
540 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400541 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
542 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400543
544 lock_extent(io_tree, ordered_extent->file_offset,
545 ordered_extent->file_offset + ordered_extent->len - 1,
546 GFP_NOFS);
547
548 INIT_LIST_HEAD(&list);
549
550 ins.objectid = ordered_extent->start;
551 ins.offset = ordered_extent->len;
552 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone5a22172008-07-18 20:42:20 -0400553
Chris Masone6dcd2d2008-07-17 12:53:50 -0400554 ret = btrfs_alloc_reserved_extent(trans, root, root->root_key.objectid,
555 trans->transid, inode->i_ino,
556 ordered_extent->file_offset, &ins);
557 BUG_ON(ret);
Chris Masonee6e6502008-07-17 12:54:40 -0400558
559 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masone5a22172008-07-18 20:42:20 -0400560
Chris Masone6dcd2d2008-07-17 12:53:50 -0400561 ret = btrfs_drop_extents(trans, root, inode,
562 ordered_extent->file_offset,
563 ordered_extent->file_offset +
564 ordered_extent->len,
565 ordered_extent->file_offset, &alloc_hint);
566 BUG_ON(ret);
567 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
568 ordered_extent->file_offset,
569 ordered_extent->start,
570 ordered_extent->len,
571 ordered_extent->len, 0);
572 BUG_ON(ret);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400573
Chris Masone6dcd2d2008-07-17 12:53:50 -0400574 btrfs_drop_extent_cache(inode, ordered_extent->file_offset,
575 ordered_extent->file_offset +
576 ordered_extent->len - 1);
Chris Masonee6e6502008-07-17 12:54:40 -0400577 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
578
Chris Masone6dcd2d2008-07-17 12:53:50 -0400579 inode->i_blocks += ordered_extent->len >> 9;
580 unlock_extent(io_tree, ordered_extent->file_offset,
581 ordered_extent->file_offset + ordered_extent->len - 1,
582 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400583nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -0400584 add_pending_csums(trans, inode, ordered_extent->file_offset,
585 &ordered_extent->list);
586
Chris Masondbe674a2008-07-17 12:54:05 -0400587 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400588 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400589
Chris Masone6dcd2d2008-07-17 12:53:50 -0400590 /* once for us */
591 btrfs_put_ordered_extent(ordered_extent);
592 /* once for the tree */
593 btrfs_put_ordered_extent(ordered_extent);
594
595 btrfs_update_inode(trans, root, inode);
596 btrfs_end_transaction(trans, root);
597 return 0;
598}
599
Chris Mason211f90e2008-07-18 11:56:15 -0400600int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
601 struct extent_state *state, int uptodate)
602{
603 return btrfs_finish_ordered_io(page->mapping->host, start, end);
604}
605
Chris Mason7e383262008-04-09 16:28:12 -0400606struct io_failure_record {
607 struct page *page;
608 u64 start;
609 u64 len;
610 u64 logical;
611 int last_mirror;
612};
613
Chris Mason1259ab72008-05-12 13:39:03 -0400614int btrfs_io_failed_hook(struct bio *failed_bio,
615 struct page *page, u64 start, u64 end,
616 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -0400617{
618 struct io_failure_record *failrec = NULL;
619 u64 private;
620 struct extent_map *em;
621 struct inode *inode = page->mapping->host;
622 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -0400623 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -0400624 struct bio *bio;
625 int num_copies;
626 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400627 int rw;
Chris Mason7e383262008-04-09 16:28:12 -0400628 u64 logical;
629
630 ret = get_state_private(failure_tree, start, &private);
631 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -0400632 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
633 if (!failrec)
634 return -ENOMEM;
635 failrec->start = start;
636 failrec->len = end - start + 1;
637 failrec->last_mirror = 0;
638
Chris Mason3b951512008-04-17 11:29:12 -0400639 spin_lock(&em_tree->lock);
640 em = lookup_extent_mapping(em_tree, start, failrec->len);
641 if (em->start > start || em->start + em->len < start) {
642 free_extent_map(em);
643 em = NULL;
644 }
645 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -0400646
647 if (!em || IS_ERR(em)) {
648 kfree(failrec);
649 return -EIO;
650 }
651 logical = start - em->start;
652 logical = em->block_start + logical;
653 failrec->logical = logical;
654 free_extent_map(em);
655 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
656 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -0400657 set_state_private(failure_tree, start,
658 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -0400659 } else {
Chris Mason587f7702008-04-11 12:16:46 -0400660 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -0400661 }
662 num_copies = btrfs_num_copies(
663 &BTRFS_I(inode)->root->fs_info->mapping_tree,
664 failrec->logical, failrec->len);
665 failrec->last_mirror++;
666 if (!state) {
667 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
668 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
669 failrec->start,
670 EXTENT_LOCKED);
671 if (state && state->start != failrec->start)
672 state = NULL;
673 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
674 }
675 if (!state || failrec->last_mirror > num_copies) {
676 set_state_private(failure_tree, failrec->start, 0);
677 clear_extent_bits(failure_tree, failrec->start,
678 failrec->start + failrec->len - 1,
679 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
680 kfree(failrec);
681 return -EIO;
682 }
683 bio = bio_alloc(GFP_NOFS, 1);
684 bio->bi_private = state;
685 bio->bi_end_io = failed_bio->bi_end_io;
686 bio->bi_sector = failrec->logical >> 9;
687 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -0400688 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -0400689 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -0400690 if (failed_bio->bi_rw & (1 << BIO_RW))
691 rw = WRITE;
692 else
693 rw = READ;
694
695 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
696 failrec->last_mirror);
697 return 0;
698}
699
700int btrfs_clean_io_failures(struct inode *inode, u64 start)
701{
702 u64 private;
703 u64 private_failure;
704 struct io_failure_record *failure;
705 int ret;
706
707 private = 0;
708 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
709 (u64)-1, 1, EXTENT_DIRTY)) {
710 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
711 start, &private_failure);
712 if (ret == 0) {
713 failure = (struct io_failure_record *)(unsigned long)
714 private_failure;
715 set_state_private(&BTRFS_I(inode)->io_failure_tree,
716 failure->start, 0);
717 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
718 failure->start,
719 failure->start + failure->len - 1,
720 EXTENT_DIRTY | EXTENT_LOCKED,
721 GFP_NOFS);
722 kfree(failure);
723 }
724 }
Chris Mason7e383262008-04-09 16:28:12 -0400725 return 0;
726}
727
Chris Mason70dec802008-01-29 09:59:12 -0500728int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
729 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400730{
Chris Mason35ebb932007-10-30 16:56:53 -0400731 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400732 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500733 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400734 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500735 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400736 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400737 struct btrfs_root *root = BTRFS_I(inode)->root;
738 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400739 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500740
Yanb98b6762008-01-08 15:54:37 -0500741 if (btrfs_test_opt(root, NODATASUM) ||
742 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500743 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500744 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500745 private = state->private;
746 ret = 0;
747 } else {
748 ret = get_state_private(io_tree, start, &private);
749 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400750 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400751 kaddr = kmap_atomic(page, KM_IRQ0);
752 if (ret) {
753 goto zeroit;
754 }
Chris Masonff79f812007-10-15 16:22:25 -0400755 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
756 btrfs_csum_final(csum, (char *)&csum);
757 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400758 goto zeroit;
759 }
760 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400761 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -0400762
763 /* if the io failure tree for this inode is non-empty,
764 * check to see if we've recovered from a failed IO
765 */
Chris Mason1259ab72008-05-12 13:39:03 -0400766 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400767 return 0;
768
769zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500770 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
771 page->mapping->host->i_ino, (unsigned long long)start, csum,
772 private);
Chris Masondb945352007-10-15 16:15:53 -0400773 memset(kaddr + offset, 1, end - start + 1);
774 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400775 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400776 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -0400777 if (private == 0)
778 return 0;
Chris Mason7e383262008-04-09 16:28:12 -0400779 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -0400780}
Chris Masonb888db22007-08-27 16:49:44 -0400781
Josef Bacik7b128762008-07-24 12:17:14 -0400782/*
783 * This creates an orphan entry for the given inode in case something goes
784 * wrong in the middle of an unlink/truncate.
785 */
786int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
787{
788 struct btrfs_root *root = BTRFS_I(inode)->root;
789 int ret = 0;
790
Yanbcc63ab2008-07-30 16:29:20 -0400791 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400792
793 /* already on the orphan list, we're good */
794 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -0400795 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400796 return 0;
797 }
798
799 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
800
Yanbcc63ab2008-07-30 16:29:20 -0400801 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400802
803 /*
804 * insert an orphan item to track this unlinked/truncated file
805 */
806 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
807
808 return ret;
809}
810
811/*
812 * We have done the truncate/delete so we can go ahead and remove the orphan
813 * item for this particular inode.
814 */
815int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
816{
817 struct btrfs_root *root = BTRFS_I(inode)->root;
818 int ret = 0;
819
Yanbcc63ab2008-07-30 16:29:20 -0400820 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400821
822 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -0400823 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400824 return 0;
825 }
826
827 list_del_init(&BTRFS_I(inode)->i_orphan);
828 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -0400829 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400830 return 0;
831 }
832
Yanbcc63ab2008-07-30 16:29:20 -0400833 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400834
835 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
836
837 return ret;
838}
839
840/*
841 * this cleans up any orphans that may be left on the list from the last use
842 * of this root.
843 */
844void btrfs_orphan_cleanup(struct btrfs_root *root)
845{
846 struct btrfs_path *path;
847 struct extent_buffer *leaf;
848 struct btrfs_item *item;
849 struct btrfs_key key, found_key;
850 struct btrfs_trans_handle *trans;
851 struct inode *inode;
852 int ret = 0, nr_unlink = 0, nr_truncate = 0;
853
854 /* don't do orphan cleanup if the fs is readonly. */
855 if (root->inode->i_sb->s_flags & MS_RDONLY)
856 return;
857
858 path = btrfs_alloc_path();
859 if (!path)
860 return;
861 path->reada = -1;
862
863 key.objectid = BTRFS_ORPHAN_OBJECTID;
864 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
865 key.offset = (u64)-1;
866
867 trans = btrfs_start_transaction(root, 1);
868 btrfs_set_trans_block_group(trans, root->inode);
869
870 while (1) {
871 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
872 if (ret < 0) {
873 printk(KERN_ERR "Error searching slot for orphan: %d"
874 "\n", ret);
875 break;
876 }
877
878 /*
879 * if ret == 0 means we found what we were searching for, which
880 * is weird, but possible, so only screw with path if we didnt
881 * find the key and see if we have stuff that matches
882 */
883 if (ret > 0) {
884 if (path->slots[0] == 0)
885 break;
886 path->slots[0]--;
887 }
888
889 /* pull out the item */
890 leaf = path->nodes[0];
891 item = btrfs_item_nr(leaf, path->slots[0]);
892 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
893
894 /* make sure the item matches what we want */
895 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
896 break;
897 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
898 break;
899
900 /* release the path since we're done with it */
901 btrfs_release_path(root, path);
902
903 /*
904 * this is where we are basically btrfs_lookup, without the
905 * crossing root thing. we store the inode number in the
906 * offset of the orphan item.
907 */
908 inode = btrfs_iget_locked(root->inode->i_sb,
909 found_key.offset, root);
910 if (!inode)
911 break;
912
913 if (inode->i_state & I_NEW) {
914 BTRFS_I(inode)->root = root;
915
916 /* have to set the location manually */
917 BTRFS_I(inode)->location.objectid = inode->i_ino;
918 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
919 BTRFS_I(inode)->location.offset = 0;
920
921 btrfs_read_locked_inode(inode);
922 unlock_new_inode(inode);
923 }
924
925 /*
926 * add this inode to the orphan list so btrfs_orphan_del does
927 * the proper thing when we hit it
928 */
Yanbcc63ab2008-07-30 16:29:20 -0400929 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400930 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -0400931 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400932
933 /*
934 * if this is a bad inode, means we actually succeeded in
935 * removing the inode, but not the orphan record, which means
936 * we need to manually delete the orphan since iput will just
937 * do a destroy_inode
938 */
939 if (is_bad_inode(inode)) {
940 btrfs_orphan_del(trans, inode);
941 iput(inode);
942 continue;
943 }
944
945 /* if we have links, this was a truncate, lets do that */
946 if (inode->i_nlink) {
947 nr_truncate++;
948 btrfs_truncate(inode);
949 } else {
950 nr_unlink++;
951 }
952
953 /* this will do delete_inode and everything for us */
954 iput(inode);
955 }
956
957 if (nr_unlink)
958 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
959 if (nr_truncate)
960 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
961
962 btrfs_free_path(path);
963 btrfs_end_transaction(trans, root);
964}
965
Chris Mason39279cc2007-06-12 06:35:45 -0400966void btrfs_read_locked_inode(struct inode *inode)
967{
968 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400969 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400970 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400971 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400972 struct btrfs_root *root = BTRFS_I(inode)->root;
973 struct btrfs_key location;
974 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400975 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400976 int ret;
977
978 path = btrfs_alloc_path();
979 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400980 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500981
Chris Mason39279cc2007-06-12 06:35:45 -0400982 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400983 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400984 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400985
Chris Mason5f39d392007-10-15 16:14:19 -0400986 leaf = path->nodes[0];
987 inode_item = btrfs_item_ptr(leaf, path->slots[0],
988 struct btrfs_inode_item);
989
990 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
991 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
992 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
993 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -0400994 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -0400995
996 tspec = btrfs_inode_atime(inode_item);
997 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
998 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
999
1000 tspec = btrfs_inode_mtime(inode_item);
1001 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1002 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1003
1004 tspec = btrfs_inode_ctime(inode_item);
1005 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1006 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1007
1008 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
1009 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -04001010 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001011 rdev = btrfs_inode_rdev(leaf, inode_item);
1012
Josef Bacikaec74772008-07-24 12:12:38 -04001013 BTRFS_I(inode)->index_cnt = (u64)-1;
1014
Chris Mason5f39d392007-10-15 16:14:19 -04001015 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04001016 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
1017 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -05001018 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -05001019 if (!BTRFS_I(inode)->block_group) {
1020 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -04001021 NULL, 0,
1022 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -05001023 }
Chris Mason39279cc2007-06-12 06:35:45 -04001024 btrfs_free_path(path);
1025 inode_item = NULL;
1026
Chris Mason39279cc2007-06-12 06:35:45 -04001027 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04001028 case S_IFREG:
1029 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001030 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05001031 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001032 inode->i_fop = &btrfs_file_operations;
1033 inode->i_op = &btrfs_file_inode_operations;
1034 break;
1035 case S_IFDIR:
1036 inode->i_fop = &btrfs_dir_file_operations;
1037 if (root == root->fs_info->tree_root)
1038 inode->i_op = &btrfs_dir_ro_inode_operations;
1039 else
1040 inode->i_op = &btrfs_dir_inode_operations;
1041 break;
1042 case S_IFLNK:
1043 inode->i_op = &btrfs_symlink_inode_operations;
1044 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04001045 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001046 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04001047 default:
1048 init_special_inode(inode, inode->i_mode, rdev);
1049 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001050 }
1051 return;
1052
1053make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04001054 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04001055 make_bad_inode(inode);
1056}
1057
Chris Mason5f39d392007-10-15 16:14:19 -04001058static void fill_inode_item(struct extent_buffer *leaf,
1059 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04001060 struct inode *inode)
1061{
Chris Mason5f39d392007-10-15 16:14:19 -04001062 btrfs_set_inode_uid(leaf, item, inode->i_uid);
1063 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04001064 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04001065 btrfs_set_inode_mode(leaf, item, inode->i_mode);
1066 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
1067
1068 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
1069 inode->i_atime.tv_sec);
1070 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
1071 inode->i_atime.tv_nsec);
1072
1073 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
1074 inode->i_mtime.tv_sec);
1075 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
1076 inode->i_mtime.tv_nsec);
1077
1078 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
1079 inode->i_ctime.tv_sec);
1080 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
1081 inode->i_ctime.tv_nsec);
1082
1083 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
1084 btrfs_set_inode_generation(leaf, item, inode->i_generation);
1085 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05001086 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -04001087 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -04001088 BTRFS_I(inode)->block_group->key.objectid);
1089}
1090
Chris Masonba1da2f2008-07-17 12:54:15 -04001091int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -04001092 struct btrfs_root *root,
1093 struct inode *inode)
1094{
1095 struct btrfs_inode_item *inode_item;
1096 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001097 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001098 int ret;
1099
1100 path = btrfs_alloc_path();
1101 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001102 ret = btrfs_lookup_inode(trans, root, path,
1103 &BTRFS_I(inode)->location, 1);
1104 if (ret) {
1105 if (ret > 0)
1106 ret = -ENOENT;
1107 goto failed;
1108 }
1109
Chris Mason5f39d392007-10-15 16:14:19 -04001110 leaf = path->nodes[0];
1111 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04001112 struct btrfs_inode_item);
1113
Chris Mason5f39d392007-10-15 16:14:19 -04001114 fill_inode_item(leaf, inode_item, inode);
1115 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001116 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001117 ret = 0;
1118failed:
Chris Mason39279cc2007-06-12 06:35:45 -04001119 btrfs_free_path(path);
1120 return ret;
1121}
1122
1123
1124static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
1125 struct btrfs_root *root,
1126 struct inode *dir,
1127 struct dentry *dentry)
1128{
1129 struct btrfs_path *path;
1130 const char *name = dentry->d_name.name;
1131 int name_len = dentry->d_name.len;
1132 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001133 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001134 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04001135 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04001136 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04001137
1138 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001139 if (!path) {
1140 ret = -ENOMEM;
1141 goto err;
1142 }
1143
Chris Mason39279cc2007-06-12 06:35:45 -04001144 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
1145 name, name_len, -1);
1146 if (IS_ERR(di)) {
1147 ret = PTR_ERR(di);
1148 goto err;
1149 }
1150 if (!di) {
1151 ret = -ENOENT;
1152 goto err;
1153 }
Chris Mason5f39d392007-10-15 16:14:19 -04001154 leaf = path->nodes[0];
1155 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04001156 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04001157 if (ret)
1158 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04001159 btrfs_release_path(root, path);
1160
Josef Bacikaec74772008-07-24 12:12:38 -04001161 ret = btrfs_del_inode_ref(trans, root, name, name_len,
1162 dentry->d_inode->i_ino,
1163 dentry->d_parent->d_inode->i_ino, &index);
1164 if (ret) {
1165 printk("failed to delete reference to %.*s, "
1166 "inode %lu parent %lu\n", name_len, name,
1167 dentry->d_inode->i_ino,
1168 dentry->d_parent->d_inode->i_ino);
1169 goto err;
1170 }
1171
Chris Mason39279cc2007-06-12 06:35:45 -04001172 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04001173 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04001174 if (IS_ERR(di)) {
1175 ret = PTR_ERR(di);
1176 goto err;
1177 }
1178 if (!di) {
1179 ret = -ENOENT;
1180 goto err;
1181 }
1182 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04001183 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04001184
1185 dentry->d_inode->i_ctime = dir->i_ctime;
1186err:
1187 btrfs_free_path(path);
1188 if (!ret) {
Chris Masondbe674a2008-07-17 12:54:05 -04001189 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04001190 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001191 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -05001192#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1193 dentry->d_inode->i_nlink--;
1194#else
Chris Mason39279cc2007-06-12 06:35:45 -04001195 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001196#endif
Chris Mason54aa1f42007-06-22 14:16:25 -04001197 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001198 dir->i_sb->s_dirt = 1;
1199 }
1200 return ret;
1201}
1202
1203static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
1204{
1205 struct btrfs_root *root;
1206 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04001207 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001208 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05001209 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001210
1211 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001212
1213 ret = btrfs_check_free_space(root, 1, 1);
1214 if (ret)
1215 goto fail;
1216
Chris Mason39279cc2007-06-12 06:35:45 -04001217 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001218
Chris Mason39279cc2007-06-12 06:35:45 -04001219 btrfs_set_trans_block_group(trans, dir);
1220 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Josef Bacik7b128762008-07-24 12:17:14 -04001221
1222 if (inode->i_nlink == 0)
1223 ret = btrfs_orphan_add(trans, inode);
1224
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001225 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04001226
Chris Mason89ce8a62008-06-25 16:01:31 -04001227 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001228fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001229 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001230 return ret;
1231}
1232
1233static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
1234{
1235 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001236 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001237 int ret;
1238 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04001239 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05001240 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001241
Chris Mason925baed2008-06-25 16:01:30 -04001242 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
Yan134d4512007-10-25 15:49:25 -04001243 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04001244 }
Yan134d4512007-10-25 15:49:25 -04001245
Chris Mason1832a6d2007-12-21 16:27:21 -05001246 ret = btrfs_check_free_space(root, 1, 1);
1247 if (ret)
1248 goto fail;
1249
Chris Mason39279cc2007-06-12 06:35:45 -04001250 trans = btrfs_start_transaction(root, 1);
1251 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04001252
Josef Bacik7b128762008-07-24 12:17:14 -04001253 err = btrfs_orphan_add(trans, inode);
1254 if (err)
1255 goto fail_trans;
1256
Chris Mason39279cc2007-06-12 06:35:45 -04001257 /* now the directory is empty */
1258 err = btrfs_unlink_trans(trans, root, dir, dentry);
1259 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04001260 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001261 }
Chris Mason39544012007-12-12 14:38:19 -05001262
Josef Bacik7b128762008-07-24 12:17:14 -04001263fail_trans:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001264 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04001265 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001266fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001267 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05001268
Chris Mason39279cc2007-06-12 06:35:45 -04001269 if (ret && !err)
1270 err = ret;
1271 return err;
1272}
1273
Chris Mason39279cc2007-06-12 06:35:45 -04001274/*
Chris Mason39279cc2007-06-12 06:35:45 -04001275 * this can truncate away extent items, csum items and directory items.
1276 * It starts at a high offset and removes keys until it can't find
1277 * any higher than i_size.
1278 *
1279 * csum items that cross the new i_size are truncated to the new size
1280 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04001281 *
1282 * min_type is the minimum key type to truncate down to. If set to 0, this
1283 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04001284 */
1285static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
1286 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -05001287 struct inode *inode,
1288 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001289{
1290 int ret;
1291 struct btrfs_path *path;
1292 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001293 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001294 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04001295 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001296 struct btrfs_file_extent_item *fi;
1297 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04001298 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001299 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001300 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001301 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001302 int found_extent;
1303 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05001304 int pending_del_nr = 0;
1305 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04001306 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -04001307 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001308
Chris Mason3b951512008-04-17 11:29:12 -04001309 btrfs_drop_extent_cache(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04001310 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04001311 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04001312 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04001313
Chris Mason39279cc2007-06-12 06:35:45 -04001314 /* FIXME, add redo link to tree so we don't leak on crash */
1315 key.objectid = inode->i_ino;
1316 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04001317 key.type = (u8)-1;
1318
Chris Mason85e21ba2008-01-29 15:11:36 -05001319 btrfs_init_path(path);
1320search_again:
1321 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1322 if (ret < 0) {
1323 goto error;
1324 }
1325 if (ret > 0) {
1326 BUG_ON(path->slots[0] == 0);
1327 path->slots[0]--;
1328 }
1329
Chris Mason39279cc2007-06-12 06:35:45 -04001330 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001331 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001332 leaf = path->nodes[0];
1333 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1334 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04001335
Chris Mason5f39d392007-10-15 16:14:19 -04001336 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04001337 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001338
Chris Mason85e21ba2008-01-29 15:11:36 -05001339 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001340 break;
1341
Chris Mason5f39d392007-10-15 16:14:19 -04001342 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001343 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04001344 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04001345 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04001346 extent_type = btrfs_file_extent_type(leaf, fi);
1347 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04001348 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04001349 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04001350 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1351 struct btrfs_item *item = btrfs_item_nr(leaf,
1352 path->slots[0]);
1353 item_end += btrfs_file_extent_inline_len(leaf,
1354 item);
Chris Mason39279cc2007-06-12 06:35:45 -04001355 }
Yan008630c2007-11-07 13:31:09 -05001356 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04001357 }
1358 if (found_type == BTRFS_CSUM_ITEM_KEY) {
1359 ret = btrfs_csum_truncate(trans, root, path,
1360 inode->i_size);
1361 BUG_ON(ret);
1362 }
Yan008630c2007-11-07 13:31:09 -05001363 if (item_end < inode->i_size) {
Chris Masonb888db22007-08-27 16:49:44 -04001364 if (found_type == BTRFS_DIR_ITEM_KEY) {
1365 found_type = BTRFS_INODE_ITEM_KEY;
1366 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
1367 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05001368 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
1369 found_type = BTRFS_XATTR_ITEM_KEY;
1370 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
1371 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04001372 } else if (found_type) {
1373 found_type--;
1374 } else {
1375 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001376 }
Yana61721d2007-09-17 11:08:38 -04001377 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05001378 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04001379 }
Chris Mason5f39d392007-10-15 16:14:19 -04001380 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -04001381 del_item = 1;
1382 else
1383 del_item = 0;
1384 found_extent = 0;
1385
1386 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001387 if (found_type != BTRFS_EXTENT_DATA_KEY)
1388 goto delete;
1389
1390 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001391 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001392 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001393 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001394 u64 orig_num_bytes =
1395 btrfs_file_extent_num_bytes(leaf, fi);
1396 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001397 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05001398 extent_num_bytes = extent_num_bytes &
1399 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001400 btrfs_set_file_extent_num_bytes(leaf, fi,
1401 extent_num_bytes);
1402 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001403 extent_num_bytes);
1404 if (extent_start != 0)
1405 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001406 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001407 } else {
Chris Masondb945352007-10-15 16:15:53 -04001408 extent_num_bytes =
1409 btrfs_file_extent_disk_num_bytes(leaf,
1410 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001411 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001412 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001413 if (extent_start != 0) {
1414 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -05001415 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001416 }
Chris Masond8d5f3e2007-12-11 12:42:00 -05001417 root_gen = btrfs_header_generation(leaf);
1418 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001419 }
Chris Mason90692182008-02-08 13:49:28 -05001420 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1421 if (!del_item) {
1422 u32 newsize = inode->i_size - found_key.offset;
1423 dec_i_blocks(inode, item_end + 1 -
1424 found_key.offset - newsize);
1425 newsize =
1426 btrfs_file_extent_calc_inline_size(newsize);
1427 ret = btrfs_truncate_item(trans, root, path,
1428 newsize, 1);
1429 BUG_ON(ret);
1430 } else {
1431 dec_i_blocks(inode, item_end + 1 -
1432 found_key.offset);
1433 }
Chris Mason39279cc2007-06-12 06:35:45 -04001434 }
Chris Mason179e29e2007-11-01 11:28:41 -04001435delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001436 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001437 if (!pending_del_nr) {
1438 /* no pending yet, add ourselves */
1439 pending_del_slot = path->slots[0];
1440 pending_del_nr = 1;
1441 } else if (pending_del_nr &&
1442 path->slots[0] + 1 == pending_del_slot) {
1443 /* hop on the pending chunk */
1444 pending_del_nr++;
1445 pending_del_slot = path->slots[0];
1446 } else {
1447 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1448 }
Chris Mason39279cc2007-06-12 06:35:45 -04001449 } else {
1450 break;
1451 }
Chris Mason39279cc2007-06-12 06:35:45 -04001452 if (found_extent) {
1453 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001454 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -05001455 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001456 root_gen, inode->i_ino,
1457 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001458 BUG_ON(ret);
1459 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001460next:
1461 if (path->slots[0] == 0) {
1462 if (pending_del_nr)
1463 goto del_pending;
1464 btrfs_release_path(root, path);
1465 goto search_again;
1466 }
1467
1468 path->slots[0]--;
1469 if (pending_del_nr &&
1470 path->slots[0] + 1 != pending_del_slot) {
1471 struct btrfs_key debug;
1472del_pending:
1473 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1474 pending_del_slot);
1475 ret = btrfs_del_items(trans, root, path,
1476 pending_del_slot,
1477 pending_del_nr);
1478 BUG_ON(ret);
1479 pending_del_nr = 0;
1480 btrfs_release_path(root, path);
1481 goto search_again;
1482 }
Chris Mason39279cc2007-06-12 06:35:45 -04001483 }
1484 ret = 0;
1485error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001486 if (pending_del_nr) {
1487 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1488 pending_del_nr);
1489 }
Chris Mason39279cc2007-06-12 06:35:45 -04001490 btrfs_free_path(path);
1491 inode->i_sb->s_dirt = 1;
1492 return ret;
1493}
1494
Chris Masona52d9a82007-08-27 16:49:44 -04001495/*
1496 * taken from block_truncate_page, but does cow as it zeros out
1497 * any bytes left in the last page in the file.
1498 */
1499static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1500{
1501 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001502 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001503 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1504 struct btrfs_ordered_extent *ordered;
1505 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04001506 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001507 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1508 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1509 struct page *page;
1510 int ret = 0;
1511 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001512 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04001513
1514 if ((offset & (blocksize - 1)) == 0)
1515 goto out;
1516
1517 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04001518again:
Chris Masona52d9a82007-08-27 16:49:44 -04001519 page = grab_cache_page(mapping, index);
1520 if (!page)
1521 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001522
1523 page_start = page_offset(page);
1524 page_end = page_start + PAGE_CACHE_SIZE - 1;
1525
Chris Masona52d9a82007-08-27 16:49:44 -04001526 if (!PageUptodate(page)) {
1527 ret = btrfs_readpage(NULL, page);
1528 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04001529 if (page->mapping != mapping) {
1530 unlock_page(page);
1531 page_cache_release(page);
1532 goto again;
1533 }
Chris Masona52d9a82007-08-27 16:49:44 -04001534 if (!PageUptodate(page)) {
1535 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04001536 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04001537 }
1538 }
Chris Mason211c17f2008-05-15 09:13:45 -04001539 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001540
1541 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
1542 set_page_extent_mapped(page);
1543
1544 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1545 if (ordered) {
1546 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
1547 unlock_page(page);
1548 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04001549 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001550 btrfs_put_ordered_extent(ordered);
1551 goto again;
1552 }
1553
Chris Masonea8c2812008-08-04 23:17:27 -04001554 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001555 ret = 0;
1556 if (offset != PAGE_CACHE_SIZE) {
1557 kaddr = kmap(page);
1558 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
1559 flush_dcache_page(page);
1560 kunmap(page);
1561 }
Chris Mason247e7432008-07-17 12:53:51 -04001562 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001563 set_page_dirty(page);
1564 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001565
Chris Mason89642222008-07-24 09:41:53 -04001566out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04001567 unlock_page(page);
1568 page_cache_release(page);
1569out:
1570 return ret;
1571}
1572
1573static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1574{
1575 struct inode *inode = dentry->d_inode;
1576 int err;
1577
1578 err = inode_change_ok(inode, attr);
1579 if (err)
1580 return err;
1581
1582 if (S_ISREG(inode->i_mode) &&
1583 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1584 struct btrfs_trans_handle *trans;
1585 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001586 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001587
Chris Mason5f39d392007-10-15 16:14:19 -04001588 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001589 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001590 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001591 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001592 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001593
Chris Mason1b0f7c22008-01-30 14:33:02 -05001594 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001595 goto out;
1596
Chris Mason1832a6d2007-12-21 16:27:21 -05001597 err = btrfs_check_free_space(root, 1, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05001598 if (err)
1599 goto fail;
1600
Chris Mason39279cc2007-06-12 06:35:45 -04001601 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1602
Chris Mason5f564062008-01-22 16:47:59 -05001603 hole_size = block_end - hole_start;
Chris Mason7c2fe322008-08-20 08:51:50 -04001604 while(1) {
1605 struct btrfs_ordered_extent *ordered;
1606 btrfs_wait_ordered_range(inode, hole_start, hole_size);
1607
1608 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
1609 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
1610 if (ordered) {
1611 unlock_extent(io_tree, hole_start,
1612 block_end - 1, GFP_NOFS);
1613 btrfs_put_ordered_extent(ordered);
1614 } else {
1615 break;
1616 }
1617 }
Chris Mason39279cc2007-06-12 06:35:45 -04001618
Chris Mason39279cc2007-06-12 06:35:45 -04001619 trans = btrfs_start_transaction(root, 1);
1620 btrfs_set_trans_block_group(trans, inode);
Chris Masonee6e6502008-07-17 12:54:40 -04001621 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -04001622 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001623 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001624 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001625
Chris Mason179e29e2007-11-01 11:28:41 -04001626 if (alloc_hint != EXTENT_MAP_INLINE) {
1627 err = btrfs_insert_file_extent(trans, root,
1628 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001629 hole_start, 0, 0,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001630 hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001631 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001632 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001633 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001634 }
Chris Masonee6e6502008-07-17 12:54:40 -04001635 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001636 btrfs_end_transaction(trans, root);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001637 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001638 if (err)
1639 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001640 }
1641out:
1642 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04001643
1644 if (!err && ((attr->ia_valid & ATTR_MODE)))
1645 err = btrfs_acl_chmod(inode);
Chris Mason1832a6d2007-12-21 16:27:21 -05001646fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001647 return err;
1648}
Chris Mason61295eb2008-01-14 16:24:38 -05001649
Chris Mason39279cc2007-06-12 06:35:45 -04001650void btrfs_delete_inode(struct inode *inode)
1651{
1652 struct btrfs_trans_handle *trans;
1653 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001654 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001655 int ret;
1656
1657 truncate_inode_pages(&inode->i_data, 0);
1658 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04001659 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001660 goto no_delete;
1661 }
Chris Mason4a096752008-07-21 10:29:44 -04001662 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04001663
Chris Masondbe674a2008-07-17 12:54:05 -04001664 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001665 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001666
Chris Mason39279cc2007-06-12 06:35:45 -04001667 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001668 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04001669 if (ret) {
1670 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04001671 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04001672 }
1673
1674 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001675
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001676 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001677 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001678
Chris Mason39279cc2007-06-12 06:35:45 -04001679 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001680 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001681 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001682
1683no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001684 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001685 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001686 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001687no_delete:
1688 clear_inode(inode);
1689}
1690
1691/*
1692 * this returns the key found in the dir entry in the location pointer.
1693 * If no dir entries were found, location->objectid is 0.
1694 */
1695static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1696 struct btrfs_key *location)
1697{
1698 const char *name = dentry->d_name.name;
1699 int namelen = dentry->d_name.len;
1700 struct btrfs_dir_item *di;
1701 struct btrfs_path *path;
1702 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001703 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001704
Chris Mason39544012007-12-12 14:38:19 -05001705 if (namelen == 1 && strcmp(name, ".") == 0) {
1706 location->objectid = dir->i_ino;
1707 location->type = BTRFS_INODE_ITEM_KEY;
1708 location->offset = 0;
1709 return 0;
1710 }
Chris Mason39279cc2007-06-12 06:35:45 -04001711 path = btrfs_alloc_path();
1712 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001713
Chris Mason7a720532007-12-13 09:06:59 -05001714 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001715 struct btrfs_key key;
1716 struct extent_buffer *leaf;
Chris Mason39544012007-12-12 14:38:19 -05001717 int slot;
1718
1719 key.objectid = dir->i_ino;
Yan445dceb2008-07-24 12:19:32 -04001720 key.offset = (u64)-1;
Chris Mason39544012007-12-12 14:38:19 -05001721 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
Yan445dceb2008-07-24 12:19:32 -04001722 if (ret < 0 || path->slots[0] == 0)
1723 goto out_err;
Chris Mason39544012007-12-12 14:38:19 -05001724 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1725 BUG_ON(ret == 0);
1726 ret = 0;
Chris Mason39544012007-12-12 14:38:19 -05001727 leaf = path->nodes[0];
Yan445dceb2008-07-24 12:19:32 -04001728 slot = path->slots[0] - 1;
Chris Mason39544012007-12-12 14:38:19 -05001729
1730 btrfs_item_key_to_cpu(leaf, &key, slot);
1731 if (key.objectid != dir->i_ino ||
1732 key.type != BTRFS_INODE_REF_KEY) {
1733 goto out_err;
1734 }
1735 location->objectid = key.offset;
1736 location->type = BTRFS_INODE_ITEM_KEY;
1737 location->offset = 0;
1738 goto out;
1739 }
1740
Chris Mason39279cc2007-06-12 06:35:45 -04001741 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1742 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001743 if (IS_ERR(di))
1744 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001745 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001746 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001747 }
Chris Mason5f39d392007-10-15 16:14:19 -04001748 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001749out:
Chris Mason39279cc2007-06-12 06:35:45 -04001750 btrfs_free_path(path);
1751 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001752out_err:
1753 location->objectid = 0;
1754 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001755}
1756
1757/*
1758 * when we hit a tree root in a directory, the btrfs part of the inode
1759 * needs to be changed to reflect the root directory of the tree root. This
1760 * is kind of like crossing a mount point.
1761 */
1762static int fixup_tree_root_location(struct btrfs_root *root,
1763 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001764 struct btrfs_root **sub_root,
1765 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001766{
Chris Mason39279cc2007-06-12 06:35:45 -04001767 struct btrfs_root_item *ri;
1768
1769 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1770 return 0;
1771 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1772 return 0;
1773
Josef Bacik58176a92007-08-29 15:47:34 -04001774 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1775 dentry->d_name.name,
1776 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001777 if (IS_ERR(*sub_root))
1778 return PTR_ERR(*sub_root);
1779
1780 ri = &(*sub_root)->root_item;
1781 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001782 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1783 location->offset = 0;
1784
Chris Mason39279cc2007-06-12 06:35:45 -04001785 return 0;
1786}
1787
1788static int btrfs_init_locked_inode(struct inode *inode, void *p)
1789{
1790 struct btrfs_iget_args *args = p;
1791 inode->i_ino = args->ino;
1792 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001793 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondb69e0e2008-08-15 15:34:14 -04001794 inode->i_mapping->writeback_index = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04001795 BTRFS_I(inode)->disk_i_size = 0;
Josef Bacikaec74772008-07-24 12:12:38 -04001796 BTRFS_I(inode)->index_cnt = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001797 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1798 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001799 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001800 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1801 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001802 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Masonba1da2f2008-07-17 12:54:15 -04001803 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04001804 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04001805 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001806 return 0;
1807}
1808
1809static int btrfs_find_actor(struct inode *inode, void *opaque)
1810{
1811 struct btrfs_iget_args *args = opaque;
1812 return (args->ino == inode->i_ino &&
1813 args->root == BTRFS_I(inode)->root);
1814}
1815
Chris Masondc17ff82008-01-08 15:46:30 -05001816struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1817 u64 root_objectid)
1818{
1819 struct btrfs_iget_args args;
1820 args.ino = objectid;
1821 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1822
1823 if (!args.root)
1824 return NULL;
1825
1826 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1827}
1828
Chris Mason39279cc2007-06-12 06:35:45 -04001829struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1830 struct btrfs_root *root)
1831{
1832 struct inode *inode;
1833 struct btrfs_iget_args args;
1834 args.ino = objectid;
1835 args.root = root;
1836
1837 inode = iget5_locked(s, objectid, btrfs_find_actor,
1838 btrfs_init_locked_inode,
1839 (void *)&args);
1840 return inode;
1841}
1842
Balaji Rao1a54ef82008-07-21 02:01:04 +05301843/* Get an inode object given its location and corresponding root.
1844 * Returns in *is_new if the inode was read from disk
1845 */
1846struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
1847 struct btrfs_root *root, int *is_new)
1848{
1849 struct inode *inode;
1850
1851 inode = btrfs_iget_locked(s, location->objectid, root);
1852 if (!inode)
1853 return ERR_PTR(-EACCES);
1854
1855 if (inode->i_state & I_NEW) {
1856 BTRFS_I(inode)->root = root;
1857 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
1858 btrfs_read_locked_inode(inode);
1859 unlock_new_inode(inode);
1860 if (is_new)
1861 *is_new = 1;
1862 } else {
1863 if (is_new)
1864 *is_new = 0;
1865 }
1866
1867 return inode;
1868}
1869
Chris Mason39279cc2007-06-12 06:35:45 -04001870static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1871 struct nameidata *nd)
1872{
1873 struct inode * inode;
1874 struct btrfs_inode *bi = BTRFS_I(dir);
1875 struct btrfs_root *root = bi->root;
1876 struct btrfs_root *sub_root = root;
1877 struct btrfs_key location;
Balaji Rao1a54ef82008-07-21 02:01:04 +05301878 int ret, new, do_orphan = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001879
1880 if (dentry->d_name.len > BTRFS_NAME_LEN)
1881 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001882
Chris Mason39279cc2007-06-12 06:35:45 -04001883 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001884
Chris Mason39279cc2007-06-12 06:35:45 -04001885 if (ret < 0)
1886 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001887
Chris Mason39279cc2007-06-12 06:35:45 -04001888 inode = NULL;
1889 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001890 ret = fixup_tree_root_location(root, &location, &sub_root,
1891 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001892 if (ret < 0)
1893 return ERR_PTR(ret);
1894 if (ret > 0)
1895 return ERR_PTR(-ENOENT);
Balaji Rao1a54ef82008-07-21 02:01:04 +05301896 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
1897 if (IS_ERR(inode))
1898 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04001899
Balaji Rao1a54ef82008-07-21 02:01:04 +05301900 /* the inode and parent dir are two different roots */
1901 if (new && root != sub_root) {
1902 igrab(inode);
1903 sub_root->inode = inode;
1904 do_orphan = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001905 }
1906 }
Josef Bacik7b128762008-07-24 12:17:14 -04001907
1908 if (unlikely(do_orphan))
1909 btrfs_orphan_cleanup(sub_root);
1910
Chris Mason39279cc2007-06-12 06:35:45 -04001911 return d_splice_alias(inode, dentry);
1912}
1913
Chris Mason39279cc2007-06-12 06:35:45 -04001914static unsigned char btrfs_filetype_table[] = {
1915 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1916};
1917
David Woodhousecbdf5a22008-08-06 19:42:33 +01001918static int btrfs_real_readdir(struct file *filp, void *dirent,
1919 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04001920{
Chris Mason6da6aba2007-12-18 16:15:09 -05001921 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001922 struct btrfs_root *root = BTRFS_I(inode)->root;
1923 struct btrfs_item *item;
1924 struct btrfs_dir_item *di;
1925 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001926 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001927 struct btrfs_path *path;
1928 int ret;
1929 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001930 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001931 int slot;
1932 int advance;
1933 unsigned char d_type;
1934 int over = 0;
1935 u32 di_cur;
1936 u32 di_total;
1937 u32 di_len;
1938 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001939 char tmp_name[32];
1940 char *name_ptr;
1941 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001942
1943 /* FIXME, use a real flag for deciding about the key type */
1944 if (root->fs_info->tree_root == root)
1945 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001946
Chris Mason39544012007-12-12 14:38:19 -05001947 /* special case for "." */
1948 if (filp->f_pos == 0) {
1949 over = filldir(dirent, ".", 1,
1950 1, inode->i_ino,
1951 DT_DIR);
1952 if (over)
1953 return 0;
1954 filp->f_pos = 1;
1955 }
1956
Chris Mason39279cc2007-06-12 06:35:45 -04001957 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001958 path = btrfs_alloc_path();
1959 path->reada = 2;
1960
1961 /* special case for .., just use the back ref */
1962 if (filp->f_pos == 1) {
1963 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
Yan445dceb2008-07-24 12:19:32 -04001964 key.offset = (u64)-1;
Chris Mason39544012007-12-12 14:38:19 -05001965 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Yan445dceb2008-07-24 12:19:32 -04001966 if (ret < 0 || path->slots[0] == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001967 btrfs_release_path(root, path);
1968 goto read_dir_items;
1969 }
Yan445dceb2008-07-24 12:19:32 -04001970 BUG_ON(ret == 0);
1971 leaf = path->nodes[0];
1972 slot = path->slots[0] - 1;
Chris Mason39544012007-12-12 14:38:19 -05001973 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1974 btrfs_release_path(root, path);
1975 if (found_key.objectid != key.objectid ||
1976 found_key.type != BTRFS_INODE_REF_KEY)
1977 goto read_dir_items;
1978 over = filldir(dirent, "..", 2,
1979 2, found_key.offset, DT_DIR);
1980 if (over)
1981 goto nopos;
1982 filp->f_pos = 2;
1983 }
1984
1985read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001986 btrfs_set_key_type(&key, key_type);
1987 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001988
Chris Mason39279cc2007-06-12 06:35:45 -04001989 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1990 if (ret < 0)
1991 goto err;
1992 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001993 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001994 leaf = path->nodes[0];
1995 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001996 slot = path->slots[0];
1997 if (advance || slot >= nritems) {
1998 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001999 ret = btrfs_next_leaf(root, path);
2000 if (ret)
2001 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002002 leaf = path->nodes[0];
2003 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002004 slot = path->slots[0];
2005 } else {
2006 slot++;
2007 path->slots[0]++;
2008 }
2009 }
2010 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002011 item = btrfs_item_nr(leaf, slot);
2012 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2013
2014 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04002015 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002016 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002017 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002018 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04002019 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04002020
2021 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04002022 advance = 1;
2023 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
2024 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002025 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04002026 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04002027 struct btrfs_key location;
2028
2029 name_len = btrfs_dir_name_len(leaf, di);
2030 if (name_len < 32) {
2031 name_ptr = tmp_name;
2032 } else {
2033 name_ptr = kmalloc(name_len, GFP_NOFS);
2034 BUG_ON(!name_ptr);
2035 }
2036 read_extent_buffer(leaf, name_ptr,
2037 (unsigned long)(di + 1), name_len);
2038
2039 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
2040 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04002041 over = filldir(dirent, name_ptr, name_len,
2042 found_key.offset,
2043 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002044 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04002045
2046 if (name_ptr != tmp_name)
2047 kfree(name_ptr);
2048
Chris Mason39279cc2007-06-12 06:35:45 -04002049 if (over)
2050 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05002051 di_len = btrfs_dir_name_len(leaf, di) +
2052 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04002053 di_cur += di_len;
2054 di = (struct btrfs_dir_item *)((char *)di + di_len);
2055 }
2056 }
Yan Zheng5e591a02008-02-19 11:41:02 -05002057 if (key_type == BTRFS_DIR_INDEX_KEY)
2058 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
2059 else
2060 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04002061nopos:
2062 ret = 0;
2063err:
Chris Mason39279cc2007-06-12 06:35:45 -04002064 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002065 return ret;
2066}
2067
David Woodhousecbdf5a22008-08-06 19:42:33 +01002068/* Kernels earlier than 2.6.28 still have the NFS deadlock where nfsd
2069 will call the file system's ->lookup() method from within its
2070 filldir callback, which in turn was called from the file system's
2071 ->readdir() method. And will deadlock for many file systems. */
2072#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
2073
2074struct nfshack_dirent {
2075 u64 ino;
2076 loff_t offset;
2077 int namlen;
2078 unsigned int d_type;
2079 char name[];
2080};
2081
2082struct nfshack_readdir {
2083 char *dirent;
2084 size_t used;
2085};
2086
2087
2088
2089static int btrfs_nfshack_filldir(void *__buf, const char *name, int namlen,
2090 loff_t offset, u64 ino, unsigned int d_type)
2091{
2092 struct nfshack_readdir *buf = __buf;
2093 struct nfshack_dirent *de = (void *)(buf->dirent + buf->used);
2094 unsigned int reclen;
2095
2096 reclen = ALIGN(sizeof(struct nfshack_dirent) + namlen, sizeof(u64));
2097 if (buf->used + reclen > PAGE_SIZE)
2098 return -EINVAL;
2099
2100 de->namlen = namlen;
2101 de->offset = offset;
2102 de->ino = ino;
2103 de->d_type = d_type;
2104 memcpy(de->name, name, namlen);
2105 buf->used += reclen;
2106
2107 return 0;
2108}
2109
2110static int btrfs_nfshack_readdir(struct file *file, void *dirent,
2111 filldir_t filldir)
2112{
2113 struct nfshack_readdir buf;
2114 struct nfshack_dirent *de;
2115 int err;
2116 int size;
2117 loff_t offset;
2118
2119 buf.dirent = (void *)__get_free_page(GFP_KERNEL);
2120 if (!buf.dirent)
2121 return -ENOMEM;
2122
2123 offset = file->f_pos;
2124
2125 while (1) {
2126 unsigned int reclen;
2127
2128 buf.used = 0;
2129
2130 err = btrfs_real_readdir(file, &buf, btrfs_nfshack_filldir);
2131 if (err)
2132 break;
2133
2134 size = buf.used;
2135
2136 if (!size)
2137 break;
2138
2139 de = (struct nfshack_dirent *)buf.dirent;
2140 while (size > 0) {
2141 offset = de->offset;
2142
2143 if (filldir(dirent, de->name, de->namlen, de->offset,
2144 de->ino, de->d_type))
2145 goto done;
2146 offset = file->f_pos;
2147
2148 reclen = ALIGN(sizeof(*de) + de->namlen,
2149 sizeof(u64));
2150 size -= reclen;
2151 de = (struct nfshack_dirent *)((char *)de + reclen);
2152 }
2153 }
2154
2155 done:
2156 free_page((unsigned long)buf.dirent);
2157 file->f_pos = offset;
2158
2159 return err;
2160}
2161#endif
2162
Chris Mason39279cc2007-06-12 06:35:45 -04002163int btrfs_write_inode(struct inode *inode, int wait)
2164{
2165 struct btrfs_root *root = BTRFS_I(inode)->root;
2166 struct btrfs_trans_handle *trans;
2167 int ret = 0;
2168
Chris Mason4ca8b412008-08-05 13:30:48 -04002169 if (root->fs_info->closing > 1)
2170 return 0;
2171
Chris Mason39279cc2007-06-12 06:35:45 -04002172 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04002173 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002174 btrfs_set_trans_block_group(trans, inode);
2175 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04002176 }
2177 return ret;
2178}
2179
2180/*
Chris Mason54aa1f42007-06-22 14:16:25 -04002181 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04002182 * inode changes. But, it is most likely to find the inode in cache.
2183 * FIXME, needs more benchmarking...there are no reasons other than performance
2184 * to keep or drop this code.
2185 */
2186void btrfs_dirty_inode(struct inode *inode)
2187{
2188 struct btrfs_root *root = BTRFS_I(inode)->root;
2189 struct btrfs_trans_handle *trans;
2190
Chris Masonf9295742008-07-17 12:54:14 -04002191 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002192 btrfs_set_trans_block_group(trans, inode);
2193 btrfs_update_inode(trans, root, inode);
2194 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04002195}
2196
Josef Bacikaec74772008-07-24 12:12:38 -04002197static int btrfs_set_inode_index_count(struct inode *inode)
2198{
2199 struct btrfs_root *root = BTRFS_I(inode)->root;
2200 struct btrfs_key key, found_key;
2201 struct btrfs_path *path;
2202 struct extent_buffer *leaf;
2203 int ret;
2204
2205 key.objectid = inode->i_ino;
2206 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
2207 key.offset = (u64)-1;
2208
2209 path = btrfs_alloc_path();
2210 if (!path)
2211 return -ENOMEM;
2212
2213 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2214 if (ret < 0)
2215 goto out;
2216 /* FIXME: we should be able to handle this */
2217 if (ret == 0)
2218 goto out;
2219 ret = 0;
2220
2221 /*
2222 * MAGIC NUMBER EXPLANATION:
2223 * since we search a directory based on f_pos we have to start at 2
2224 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
2225 * else has to start at 2
2226 */
2227 if (path->slots[0] == 0) {
2228 BTRFS_I(inode)->index_cnt = 2;
2229 goto out;
2230 }
2231
2232 path->slots[0]--;
2233
2234 leaf = path->nodes[0];
2235 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2236
2237 if (found_key.objectid != inode->i_ino ||
2238 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
2239 BTRFS_I(inode)->index_cnt = 2;
2240 goto out;
2241 }
2242
2243 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
2244out:
2245 btrfs_free_path(path);
2246 return ret;
2247}
2248
Chris Mason00e4e6b2008-08-05 11:18:09 -04002249static int btrfs_set_inode_index(struct inode *dir, struct inode *inode,
2250 u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04002251{
2252 int ret = 0;
2253
2254 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
2255 ret = btrfs_set_inode_index_count(dir);
2256 if (ret)
2257 return ret;
2258 }
2259
Chris Mason00e4e6b2008-08-05 11:18:09 -04002260 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04002261 BTRFS_I(dir)->index_cnt++;
2262
2263 return ret;
2264}
2265
Chris Mason39279cc2007-06-12 06:35:45 -04002266static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
2267 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04002268 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05002269 const char *name, int name_len,
2270 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002271 u64 objectid,
2272 struct btrfs_block_group_cache *group,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002273 int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04002274{
2275 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04002276 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04002277 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04002278 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04002279 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05002280 struct btrfs_inode_ref *ref;
2281 struct btrfs_key key[2];
2282 u32 sizes[2];
2283 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04002284 int ret;
2285 int owner;
2286
Chris Mason5f39d392007-10-15 16:14:19 -04002287 path = btrfs_alloc_path();
2288 BUG_ON(!path);
2289
Chris Mason39279cc2007-06-12 06:35:45 -04002290 inode = new_inode(root->fs_info->sb);
2291 if (!inode)
2292 return ERR_PTR(-ENOMEM);
2293
Josef Bacikaec74772008-07-24 12:12:38 -04002294 if (dir) {
Chris Mason00e4e6b2008-08-05 11:18:09 -04002295 ret = btrfs_set_inode_index(dir, inode, index);
Josef Bacikaec74772008-07-24 12:12:38 -04002296 if (ret)
2297 return ERR_PTR(ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002298 }
2299 /*
2300 * index_cnt is ignored for everything but a dir,
2301 * btrfs_get_inode_index_count has an explanation for the magic
2302 * number
2303 */
2304 BTRFS_I(inode)->index_cnt = 2;
2305
Chris Masond1310b22008-01-24 16:13:08 -05002306 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2307 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04002308 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04002309 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2310 inode->i_mapping, GFP_NOFS);
Chris Masonba1da2f2008-07-17 12:54:15 -04002311 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Masonea8c2812008-08-04 23:17:27 -04002312 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Mason1b1e2132008-06-25 16:01:31 -04002313 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04002314 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05002315 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondb69e0e2008-08-15 15:34:14 -04002316 inode->i_mapping->writeback_index = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04002317 BTRFS_I(inode)->disk_i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002318 BTRFS_I(inode)->root = root;
Chris Masonb888db22007-08-27 16:49:44 -04002319
Chris Mason39279cc2007-06-12 06:35:45 -04002320 if (mode & S_IFDIR)
2321 owner = 0;
2322 else
2323 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04002324 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04002325 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04002326 if (!new_inode_group) {
2327 printk("find_block group failed\n");
2328 new_inode_group = group;
2329 }
2330 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05002331 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05002332
2333 key[0].objectid = objectid;
2334 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
2335 key[0].offset = 0;
2336
2337 key[1].objectid = objectid;
2338 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
2339 key[1].offset = ref_objectid;
2340
2341 sizes[0] = sizeof(struct btrfs_inode_item);
2342 sizes[1] = name_len + sizeof(*ref);
2343
2344 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
2345 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04002346 goto fail;
2347
Chris Mason9c583092008-01-29 15:15:18 -05002348 if (objectid > root->highest_inode)
2349 root->highest_inode = objectid;
2350
Chris Mason39279cc2007-06-12 06:35:45 -04002351 inode->i_uid = current->fsuid;
2352 inode->i_gid = current->fsgid;
2353 inode->i_mode = mode;
2354 inode->i_ino = objectid;
2355 inode->i_blocks = 0;
2356 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04002357 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2358 struct btrfs_inode_item);
2359 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002360
2361 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
2362 struct btrfs_inode_ref);
2363 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04002364 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05002365 ptr = (unsigned long)(ref + 1);
2366 write_extent_buffer(path->nodes[0], name, ptr, name_len);
2367
Chris Mason5f39d392007-10-15 16:14:19 -04002368 btrfs_mark_buffer_dirty(path->nodes[0]);
2369 btrfs_free_path(path);
2370
Chris Mason39279cc2007-06-12 06:35:45 -04002371 location = &BTRFS_I(inode)->location;
2372 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04002373 location->offset = 0;
2374 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
2375
Chris Mason39279cc2007-06-12 06:35:45 -04002376 insert_inode_hash(inode);
2377 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04002378fail:
Josef Bacikaec74772008-07-24 12:12:38 -04002379 if (dir)
2380 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04002381 btrfs_free_path(path);
2382 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002383}
2384
2385static inline u8 btrfs_inode_type(struct inode *inode)
2386{
2387 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
2388}
2389
2390static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05002391 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002392 int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04002393{
2394 int ret;
2395 struct btrfs_key key;
2396 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Josef Bacikaec74772008-07-24 12:12:38 -04002397 struct inode *parent_inode = dentry->d_parent->d_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04002398
Chris Mason39279cc2007-06-12 06:35:45 -04002399 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04002400 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
2401 key.offset = 0;
2402
2403 ret = btrfs_insert_dir_item(trans, root,
2404 dentry->d_name.name, dentry->d_name.len,
2405 dentry->d_parent->d_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002406 &key, btrfs_inode_type(inode),
Chris Mason00e4e6b2008-08-05 11:18:09 -04002407 index);
Chris Mason39279cc2007-06-12 06:35:45 -04002408 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05002409 if (add_backref) {
2410 ret = btrfs_insert_inode_ref(trans, root,
2411 dentry->d_name.name,
2412 dentry->d_name.len,
2413 inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002414 parent_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002415 index);
Chris Mason9c583092008-01-29 15:15:18 -05002416 }
Chris Masondbe674a2008-07-17 12:54:05 -04002417 btrfs_i_size_write(parent_inode, parent_inode->i_size +
2418 dentry->d_name.len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04002419 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04002420 ret = btrfs_update_inode(trans, root,
2421 dentry->d_parent->d_inode);
2422 }
2423 return ret;
2424}
2425
2426static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05002427 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002428 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04002429{
Chris Mason00e4e6b2008-08-05 11:18:09 -04002430 int err = btrfs_add_link(trans, dentry, inode, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04002431 if (!err) {
2432 d_instantiate(dentry, inode);
2433 return 0;
2434 }
2435 if (err > 0)
2436 err = -EEXIST;
2437 return err;
2438}
2439
Josef Bacik618e21d2007-07-11 10:18:17 -04002440static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
2441 int mode, dev_t rdev)
2442{
2443 struct btrfs_trans_handle *trans;
2444 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002445 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04002446 int err;
2447 int drop_inode = 0;
2448 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05002449 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002450 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04002451
2452 if (!new_valid_dev(rdev))
2453 return -EINVAL;
2454
Chris Mason1832a6d2007-12-21 16:27:21 -05002455 err = btrfs_check_free_space(root, 1, 0);
2456 if (err)
2457 goto fail;
2458
Josef Bacik618e21d2007-07-11 10:18:17 -04002459 trans = btrfs_start_transaction(root, 1);
2460 btrfs_set_trans_block_group(trans, dir);
2461
2462 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2463 if (err) {
2464 err = -ENOSPC;
2465 goto out_unlock;
2466 }
2467
Josef Bacikaec74772008-07-24 12:12:38 -04002468 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05002469 dentry->d_name.len,
2470 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002471 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04002472 err = PTR_ERR(inode);
2473 if (IS_ERR(inode))
2474 goto out_unlock;
2475
Josef Bacik33268ea2008-07-24 12:16:36 -04002476 err = btrfs_init_acl(inode, dir);
2477 if (err) {
2478 drop_inode = 1;
2479 goto out_unlock;
2480 }
2481
Josef Bacik618e21d2007-07-11 10:18:17 -04002482 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04002483 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04002484 if (err)
2485 drop_inode = 1;
2486 else {
2487 inode->i_op = &btrfs_special_inode_operations;
2488 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04002489 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04002490 }
2491 dir->i_sb->s_dirt = 1;
2492 btrfs_update_inode_block_group(trans, inode);
2493 btrfs_update_inode_block_group(trans, dir);
2494out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002495 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002496 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002497fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04002498 if (drop_inode) {
2499 inode_dec_link_count(inode);
2500 iput(inode);
2501 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002502 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04002503 return err;
2504}
2505
Chris Mason39279cc2007-06-12 06:35:45 -04002506static int btrfs_create(struct inode *dir, struct dentry *dentry,
2507 int mode, struct nameidata *nd)
2508{
2509 struct btrfs_trans_handle *trans;
2510 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002511 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002512 int err;
2513 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05002514 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002515 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002516 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002517
Chris Mason1832a6d2007-12-21 16:27:21 -05002518 err = btrfs_check_free_space(root, 1, 0);
2519 if (err)
2520 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002521 trans = btrfs_start_transaction(root, 1);
2522 btrfs_set_trans_block_group(trans, dir);
2523
2524 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2525 if (err) {
2526 err = -ENOSPC;
2527 goto out_unlock;
2528 }
2529
Josef Bacikaec74772008-07-24 12:12:38 -04002530 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05002531 dentry->d_name.len,
2532 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002533 objectid, BTRFS_I(dir)->block_group, mode,
2534 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04002535 err = PTR_ERR(inode);
2536 if (IS_ERR(inode))
2537 goto out_unlock;
2538
Josef Bacik33268ea2008-07-24 12:16:36 -04002539 err = btrfs_init_acl(inode, dir);
2540 if (err) {
2541 drop_inode = 1;
2542 goto out_unlock;
2543 }
2544
Chris Mason39279cc2007-06-12 06:35:45 -04002545 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04002546 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04002547 if (err)
2548 drop_inode = 1;
2549 else {
2550 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002551 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002552 inode->i_fop = &btrfs_file_operations;
2553 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05002554 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2555 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04002556 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04002557 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2558 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04002559 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Mason1b1e2132008-06-25 16:01:31 -04002560 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04002561 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05002562 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04002563 BTRFS_I(inode)->disk_i_size = 0;
Chris Masondb69e0e2008-08-15 15:34:14 -04002564 inode->i_mapping->writeback_index = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002565 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonba1da2f2008-07-17 12:54:15 -04002566 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04002567 }
2568 dir->i_sb->s_dirt = 1;
2569 btrfs_update_inode_block_group(trans, inode);
2570 btrfs_update_inode_block_group(trans, dir);
2571out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002572 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04002573 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002574fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002575 if (drop_inode) {
2576 inode_dec_link_count(inode);
2577 iput(inode);
2578 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002579 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002580 return err;
2581}
2582
2583static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
2584 struct dentry *dentry)
2585{
2586 struct btrfs_trans_handle *trans;
2587 struct btrfs_root *root = BTRFS_I(dir)->root;
2588 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002589 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05002590 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002591 int err;
2592 int drop_inode = 0;
2593
2594 if (inode->i_nlink == 0)
2595 return -ENOENT;
2596
Chris Mason6da6aba2007-12-18 16:15:09 -05002597#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2598 inode->i_nlink++;
2599#else
Chris Mason39279cc2007-06-12 06:35:45 -04002600 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05002601#endif
Chris Mason1832a6d2007-12-21 16:27:21 -05002602 err = btrfs_check_free_space(root, 1, 0);
2603 if (err)
2604 goto fail;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002605 err = btrfs_set_inode_index(dir, inode, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002606 if (err)
2607 goto fail;
2608
Chris Mason39279cc2007-06-12 06:35:45 -04002609 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002610
Chris Mason39279cc2007-06-12 06:35:45 -04002611 btrfs_set_trans_block_group(trans, dir);
2612 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04002613
Chris Mason00e4e6b2008-08-05 11:18:09 -04002614 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04002615
Chris Mason39279cc2007-06-12 06:35:45 -04002616 if (err)
2617 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002618
Chris Mason39279cc2007-06-12 06:35:45 -04002619 dir->i_sb->s_dirt = 1;
2620 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002621 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002622
Chris Mason54aa1f42007-06-22 14:16:25 -04002623 if (err)
2624 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002625
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002626 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04002627 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002628fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002629 if (drop_inode) {
2630 inode_dec_link_count(inode);
2631 iput(inode);
2632 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002633 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002634 return err;
2635}
2636
Chris Mason39279cc2007-06-12 06:35:45 -04002637static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2638{
Chris Masonb9d86662008-05-02 16:13:49 -04002639 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002640 struct btrfs_trans_handle *trans;
2641 struct btrfs_root *root = BTRFS_I(dir)->root;
2642 int err = 0;
2643 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04002644 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002645 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002646 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002647
Chris Mason1832a6d2007-12-21 16:27:21 -05002648 err = btrfs_check_free_space(root, 1, 0);
2649 if (err)
2650 goto out_unlock;
2651
Chris Mason39279cc2007-06-12 06:35:45 -04002652 trans = btrfs_start_transaction(root, 1);
2653 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002654
Chris Mason39279cc2007-06-12 06:35:45 -04002655 if (IS_ERR(trans)) {
2656 err = PTR_ERR(trans);
2657 goto out_unlock;
2658 }
2659
2660 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2661 if (err) {
2662 err = -ENOSPC;
2663 goto out_unlock;
2664 }
2665
Josef Bacikaec74772008-07-24 12:12:38 -04002666 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05002667 dentry->d_name.len,
2668 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002669 BTRFS_I(dir)->block_group, S_IFDIR | mode,
2670 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04002671 if (IS_ERR(inode)) {
2672 err = PTR_ERR(inode);
2673 goto out_fail;
2674 }
Chris Mason5f39d392007-10-15 16:14:19 -04002675
Chris Mason39279cc2007-06-12 06:35:45 -04002676 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04002677
2678 err = btrfs_init_acl(inode, dir);
2679 if (err)
2680 goto out_fail;
2681
Chris Mason39279cc2007-06-12 06:35:45 -04002682 inode->i_op = &btrfs_dir_inode_operations;
2683 inode->i_fop = &btrfs_dir_file_operations;
2684 btrfs_set_trans_block_group(trans, inode);
2685
Chris Masondbe674a2008-07-17 12:54:05 -04002686 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002687 err = btrfs_update_inode(trans, root, inode);
2688 if (err)
2689 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002690
Chris Mason00e4e6b2008-08-05 11:18:09 -04002691 err = btrfs_add_link(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04002692 if (err)
2693 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002694
Chris Mason39279cc2007-06-12 06:35:45 -04002695 d_instantiate(dentry, inode);
2696 drop_on_err = 0;
2697 dir->i_sb->s_dirt = 1;
2698 btrfs_update_inode_block_group(trans, inode);
2699 btrfs_update_inode_block_group(trans, dir);
2700
2701out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002702 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04002703 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002704
Chris Mason39279cc2007-06-12 06:35:45 -04002705out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002706 if (drop_on_err)
2707 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002708 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002709 return err;
2710}
2711
Chris Mason3b951512008-04-17 11:29:12 -04002712static int merge_extent_mapping(struct extent_map_tree *em_tree,
2713 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002714 struct extent_map *em,
2715 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04002716{
2717 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04002718
Chris Masone6dcd2d2008-07-17 12:53:50 -04002719 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
2720 start_diff = map_start - em->start;
2721 em->start = map_start;
2722 em->len = map_len;
2723 if (em->block_start < EXTENT_MAP_LAST_BYTE)
2724 em->block_start += start_diff;
2725 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002726}
2727
Chris Masona52d9a82007-08-27 16:49:44 -04002728struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002729 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002730 int create)
2731{
2732 int ret;
2733 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002734 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002735 u64 extent_start = 0;
2736 u64 extent_end = 0;
2737 u64 objectid = inode->i_ino;
2738 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04002739 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04002740 struct btrfs_root *root = BTRFS_I(inode)->root;
2741 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002742 struct extent_buffer *leaf;
2743 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002744 struct extent_map *em = NULL;
2745 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002746 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002747 struct btrfs_trans_handle *trans = NULL;
2748
Chris Masona52d9a82007-08-27 16:49:44 -04002749again:
Chris Masond1310b22008-01-24 16:13:08 -05002750 spin_lock(&em_tree->lock);
2751 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04002752 if (em)
2753 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002754 spin_unlock(&em_tree->lock);
2755
Chris Masona52d9a82007-08-27 16:49:44 -04002756 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04002757 if (em->start > start || em->start + em->len <= start)
2758 free_extent_map(em);
2759 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05002760 free_extent_map(em);
2761 else
2762 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002763 }
Chris Masond1310b22008-01-24 16:13:08 -05002764 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002765 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002766 err = -ENOMEM;
2767 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002768 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002769 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002770 em->start = EXTENT_MAP_HOLE;
2771 em->len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04002772
2773 if (!path) {
2774 path = btrfs_alloc_path();
2775 BUG_ON(!path);
2776 }
2777
Chris Mason179e29e2007-11-01 11:28:41 -04002778 ret = btrfs_lookup_file_extent(trans, root, path,
2779 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002780 if (ret < 0) {
2781 err = ret;
2782 goto out;
2783 }
2784
2785 if (ret != 0) {
2786 if (path->slots[0] == 0)
2787 goto not_found;
2788 path->slots[0]--;
2789 }
2790
Chris Mason5f39d392007-10-15 16:14:19 -04002791 leaf = path->nodes[0];
2792 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002793 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002794 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002795 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2796 found_type = btrfs_key_type(&found_key);
2797 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002798 found_type != BTRFS_EXTENT_DATA_KEY) {
2799 goto not_found;
2800 }
2801
Chris Mason5f39d392007-10-15 16:14:19 -04002802 found_type = btrfs_file_extent_type(leaf, item);
2803 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002804 if (found_type == BTRFS_FILE_EXTENT_REG) {
2805 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002806 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002807 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04002808 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002809 em->start = start;
2810 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002811 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002812 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002813 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002814 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002815 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002816 }
2817 goto not_found_em;
2818 }
Chris Masondb945352007-10-15 16:15:53 -04002819 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2820 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002821 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002822 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002823 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002824 goto insert;
2825 }
Chris Masondb945352007-10-15 16:15:53 -04002826 bytenr += btrfs_file_extent_offset(leaf, item);
2827 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002828 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002829 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002830 goto insert;
2831 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002832 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002833 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002834 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002835 size_t size;
2836 size_t extent_offset;
2837 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002838
Chris Mason5f39d392007-10-15 16:14:19 -04002839 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2840 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002841 extent_end = (extent_start + size + root->sectorsize - 1) &
2842 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002843 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002844 em->start = start;
2845 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002846 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002847 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002848 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002849 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002850 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002851 }
2852 goto not_found_em;
2853 }
2854 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002855
2856 if (!page) {
2857 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002858 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002859 goto out;
2860 }
2861
Chris Mason70dec802008-01-29 09:59:12 -05002862 page_start = page_offset(page) + pg_offset;
2863 extent_offset = page_start - extent_start;
2864 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002865 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002866 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002867 em->len = (copy_size + root->sectorsize - 1) &
2868 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002869 map = kmap(page);
2870 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002871 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002872 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002873 copy_size);
2874 flush_dcache_page(page);
2875 } else if (create && PageUptodate(page)) {
2876 if (!trans) {
2877 kunmap(page);
2878 free_extent_map(em);
2879 em = NULL;
2880 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04002881 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04002882 goto again;
2883 }
Chris Mason70dec802008-01-29 09:59:12 -05002884 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002885 copy_size);
2886 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002887 }
Chris Masona52d9a82007-08-27 16:49:44 -04002888 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002889 set_extent_uptodate(io_tree, em->start,
2890 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002891 goto insert;
2892 } else {
2893 printk("unkknown found_type %d\n", found_type);
2894 WARN_ON(1);
2895 }
2896not_found:
2897 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002898 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002899not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002900 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002901insert:
2902 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002903 if (em->start > start || extent_map_end(em) <= start) {
2904 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002905 err = -EIO;
2906 goto out;
2907 }
Chris Masond1310b22008-01-24 16:13:08 -05002908
2909 err = 0;
2910 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002911 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002912 /* it is possible that someone inserted the extent into the tree
2913 * while we had the lock dropped. It is also possible that
2914 * an overlapping map exists in the tree
2915 */
Chris Masona52d9a82007-08-27 16:49:44 -04002916 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002917 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002918
2919 ret = 0;
2920
Chris Mason3b951512008-04-17 11:29:12 -04002921 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002922 if (existing && (existing->start > start ||
2923 existing->start + existing->len <= start)) {
2924 free_extent_map(existing);
2925 existing = NULL;
2926 }
Chris Mason3b951512008-04-17 11:29:12 -04002927 if (!existing) {
2928 existing = lookup_extent_mapping(em_tree, em->start,
2929 em->len);
2930 if (existing) {
2931 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002932 em, start,
2933 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04002934 free_extent_map(existing);
2935 if (err) {
2936 free_extent_map(em);
2937 em = NULL;
2938 }
2939 } else {
2940 err = -EIO;
2941 printk("failing to insert %Lu %Lu\n",
2942 start, len);
2943 free_extent_map(em);
2944 em = NULL;
2945 }
2946 } else {
2947 free_extent_map(em);
2948 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002949 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04002950 }
Chris Masona52d9a82007-08-27 16:49:44 -04002951 }
Chris Masond1310b22008-01-24 16:13:08 -05002952 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002953out:
Chris Masonf4219502008-07-22 11:18:09 -04002954 if (path)
2955 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04002956 if (trans) {
2957 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002958 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04002959 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002960 }
Chris Masona52d9a82007-08-27 16:49:44 -04002961 }
Chris Masona52d9a82007-08-27 16:49:44 -04002962 if (err) {
2963 free_extent_map(em);
2964 WARN_ON(1);
2965 return ERR_PTR(err);
2966 }
2967 return em;
2968}
2969
Chris Masone1c4b742008-04-22 13:26:46 -04002970#if 0 /* waiting for O_DIRECT reads */
Chris Mason16432982008-04-10 10:23:21 -04002971static int btrfs_get_block(struct inode *inode, sector_t iblock,
2972 struct buffer_head *bh_result, int create)
2973{
2974 struct extent_map *em;
2975 u64 start = (u64)iblock << inode->i_blkbits;
2976 struct btrfs_multi_bio *multi = NULL;
2977 struct btrfs_root *root = BTRFS_I(inode)->root;
2978 u64 len;
2979 u64 logical;
2980 u64 map_length;
2981 int ret = 0;
2982
2983 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2984
2985 if (!em || IS_ERR(em))
2986 goto out;
2987
Chris Masone1c4b742008-04-22 13:26:46 -04002988 if (em->start > start || em->start + em->len <= start) {
Chris Mason16432982008-04-10 10:23:21 -04002989 goto out;
Chris Masone1c4b742008-04-22 13:26:46 -04002990 }
Chris Mason16432982008-04-10 10:23:21 -04002991
2992 if (em->block_start == EXTENT_MAP_INLINE) {
2993 ret = -EINVAL;
2994 goto out;
2995 }
2996
Chris Mason16432982008-04-10 10:23:21 -04002997 len = em->start + em->len - start;
2998 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2999
Chris Masone1c4b742008-04-22 13:26:46 -04003000 if (em->block_start == EXTENT_MAP_HOLE ||
3001 em->block_start == EXTENT_MAP_DELALLOC) {
3002 bh_result->b_size = len;
3003 goto out;
3004 }
3005
Chris Mason16432982008-04-10 10:23:21 -04003006 logical = start - em->start;
3007 logical = em->block_start + logical;
3008
3009 map_length = len;
3010 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
3011 logical, &map_length, &multi, 0);
3012 BUG_ON(ret);
3013 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
3014 bh_result->b_size = min(map_length, len);
Chris Masone1c4b742008-04-22 13:26:46 -04003015
Chris Mason16432982008-04-10 10:23:21 -04003016 bh_result->b_bdev = multi->stripes[0].dev->bdev;
3017 set_buffer_mapped(bh_result);
3018 kfree(multi);
3019out:
3020 free_extent_map(em);
3021 return ret;
3022}
Chris Masone1c4b742008-04-22 13:26:46 -04003023#endif
Chris Mason16432982008-04-10 10:23:21 -04003024
3025static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
3026 const struct iovec *iov, loff_t offset,
3027 unsigned long nr_segs)
3028{
Chris Masone1c4b742008-04-22 13:26:46 -04003029 return -EINVAL;
3030#if 0
Chris Mason16432982008-04-10 10:23:21 -04003031 struct file *file = iocb->ki_filp;
3032 struct inode *inode = file->f_mapping->host;
3033
3034 if (rw == WRITE)
3035 return -EINVAL;
3036
3037 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
3038 offset, nr_segs, btrfs_get_block, NULL);
Chris Masone1c4b742008-04-22 13:26:46 -04003039#endif
Chris Mason16432982008-04-10 10:23:21 -04003040}
3041
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04003042static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04003043{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04003044 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04003045}
3046
Chris Mason9ebefb182007-06-15 13:50:00 -04003047int btrfs_readpage(struct file *file, struct page *page)
3048{
Chris Masond1310b22008-01-24 16:13:08 -05003049 struct extent_io_tree *tree;
3050 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003051 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04003052}
Chris Mason1832a6d2007-12-21 16:27:21 -05003053
Chris Mason39279cc2007-06-12 06:35:45 -04003054static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
3055{
Chris Masond1310b22008-01-24 16:13:08 -05003056 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04003057
3058
3059 if (current->flags & PF_MEMALLOC) {
3060 redirty_page_for_writepage(wbc, page);
3061 unlock_page(page);
3062 return 0;
3063 }
Chris Masond1310b22008-01-24 16:13:08 -05003064 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003065 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
3066}
Chris Mason39279cc2007-06-12 06:35:45 -04003067
Chris Masonf4219502008-07-22 11:18:09 -04003068int btrfs_writepages(struct address_space *mapping,
3069 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04003070{
Chris Masond1310b22008-01-24 16:13:08 -05003071 struct extent_io_tree *tree;
3072 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04003073 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
3074}
3075
Chris Mason3ab2fb52007-11-08 10:59:22 -05003076static int
3077btrfs_readpages(struct file *file, struct address_space *mapping,
3078 struct list_head *pages, unsigned nr_pages)
3079{
Chris Masond1310b22008-01-24 16:13:08 -05003080 struct extent_io_tree *tree;
3081 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05003082 return extent_readpages(tree, mapping, pages, nr_pages,
3083 btrfs_get_extent);
3084}
Chris Masone6dcd2d2008-07-17 12:53:50 -04003085static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04003086{
Chris Masond1310b22008-01-24 16:13:08 -05003087 struct extent_io_tree *tree;
3088 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04003089 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003090
Chris Masond1310b22008-01-24 16:13:08 -05003091 tree = &BTRFS_I(page->mapping->host)->io_tree;
3092 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05003093 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04003094 if (ret == 1) {
3095 ClearPagePrivate(page);
3096 set_page_private(page, 0);
3097 page_cache_release(page);
3098 }
3099 return ret;
3100}
Chris Mason39279cc2007-06-12 06:35:45 -04003101
Chris Masone6dcd2d2008-07-17 12:53:50 -04003102static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
3103{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003104 return __btrfs_releasepage(page, gfp_flags);
3105}
3106
Chris Masona52d9a82007-08-27 16:49:44 -04003107static void btrfs_invalidatepage(struct page *page, unsigned long offset)
3108{
Chris Masond1310b22008-01-24 16:13:08 -05003109 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003110 struct btrfs_ordered_extent *ordered;
3111 u64 page_start = page_offset(page);
3112 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04003113
Chris Masone6dcd2d2008-07-17 12:53:50 -04003114 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003115 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003116 if (offset) {
3117 btrfs_releasepage(page, GFP_NOFS);
3118 return;
3119 }
3120
3121 lock_extent(tree, page_start, page_end, GFP_NOFS);
3122 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
3123 page_offset(page));
3124 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04003125 /*
3126 * IO on this page will never be started, so we need
3127 * to account for any ordered extents now
3128 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04003129 clear_extent_bit(tree, page_start, page_end,
3130 EXTENT_DIRTY | EXTENT_DELALLOC |
3131 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04003132 btrfs_finish_ordered_io(page->mapping->host,
3133 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003134 btrfs_put_ordered_extent(ordered);
3135 lock_extent(tree, page_start, page_end, GFP_NOFS);
3136 }
3137 clear_extent_bit(tree, page_start, page_end,
3138 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3139 EXTENT_ORDERED,
3140 1, 1, GFP_NOFS);
3141 __btrfs_releasepage(page, GFP_NOFS);
3142
Chris Mason4a096752008-07-21 10:29:44 -04003143 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04003144 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04003145 ClearPagePrivate(page);
3146 set_page_private(page, 0);
3147 page_cache_release(page);
3148 }
Chris Mason39279cc2007-06-12 06:35:45 -04003149}
3150
Chris Mason9ebefb182007-06-15 13:50:00 -04003151/*
3152 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
3153 * called from a page fault handler when a page is first dirtied. Hence we must
3154 * be careful to check for EOF conditions here. We set the page up correctly
3155 * for a written page which means we get ENOSPC checking when writing into
3156 * holes and correct delalloc and unwritten extent mapping on filesystems that
3157 * support these features.
3158 *
3159 * We are not allowed to take the i_mutex here so we have to play games to
3160 * protect against truncate races as the page could now be beyond EOF. Because
3161 * vmtruncate() writes the inode size before removing pages, once we have the
3162 * page lock we can determine safely if the page is beyond EOF. If it is not
3163 * beyond EOF, then the page is guaranteed safe against truncation until we
3164 * unlock the page.
3165 */
3166int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
3167{
Chris Mason6da6aba2007-12-18 16:15:09 -05003168 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003169 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003170 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3171 struct btrfs_ordered_extent *ordered;
3172 char *kaddr;
3173 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04003174 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05003175 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04003176 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003177 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04003178
Chris Mason1832a6d2007-12-21 16:27:21 -05003179 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05003180 if (ret)
3181 goto out;
3182
3183 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003184again:
Chris Mason9ebefb182007-06-15 13:50:00 -04003185 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04003186 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003187 page_start = page_offset(page);
3188 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04003189
Chris Mason9ebefb182007-06-15 13:50:00 -04003190 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04003191 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04003192 /* page got truncated out from underneath us */
3193 goto out_unlock;
3194 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003195 wait_on_page_writeback(page);
3196
3197 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
3198 set_page_extent_mapped(page);
3199
Chris Masoneb84ae02008-07-17 13:53:27 -04003200 /*
3201 * we can't set the delalloc bits if there are pending ordered
3202 * extents. Drop our locks and wait for them to finish
3203 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04003204 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3205 if (ordered) {
3206 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3207 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003208 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003209 btrfs_put_ordered_extent(ordered);
3210 goto again;
3211 }
3212
Chris Masonea8c2812008-08-04 23:17:27 -04003213 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003214 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04003215
3216 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04003217 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003218 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04003219 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04003220 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04003221
Chris Masone6dcd2d2008-07-17 12:53:50 -04003222 if (zero_start != PAGE_CACHE_SIZE) {
3223 kaddr = kmap(page);
3224 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
3225 flush_dcache_page(page);
3226 kunmap(page);
3227 }
Chris Mason247e7432008-07-17 12:53:51 -04003228 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003229 set_page_dirty(page);
3230 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04003231
3232out_unlock:
3233 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05003234out:
Chris Mason9ebefb182007-06-15 13:50:00 -04003235 return ret;
3236}
3237
Chris Mason39279cc2007-06-12 06:35:45 -04003238static void btrfs_truncate(struct inode *inode)
3239{
3240 struct btrfs_root *root = BTRFS_I(inode)->root;
3241 int ret;
3242 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003243 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04003244 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003245
3246 if (!S_ISREG(inode->i_mode))
3247 return;
3248 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3249 return;
3250
3251 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04003252 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003253
Chris Mason39279cc2007-06-12 06:35:45 -04003254 trans = btrfs_start_transaction(root, 1);
3255 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04003256 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04003257
Josef Bacik7b128762008-07-24 12:17:14 -04003258 ret = btrfs_orphan_add(trans, inode);
3259 if (ret)
3260 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003261 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05003262 ret = btrfs_truncate_in_trans(trans, root, inode,
3263 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003264 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003265
Josef Bacik7b128762008-07-24 12:17:14 -04003266 ret = btrfs_orphan_del(trans, inode);
3267 BUG_ON(ret);
3268
3269out:
3270 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003271 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003272 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003273 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003274}
3275
Sven Wegener3b963622008-06-09 21:57:42 -04003276/*
3277 * Invalidate a single dcache entry at the root of the filesystem.
3278 * Needed after creation of snapshot or subvolume.
3279 */
3280void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
3281 int namelen)
3282{
3283 struct dentry *alias, *entry;
3284 struct qstr qstr;
3285
3286 alias = d_find_alias(root->fs_info->sb->s_root->d_inode);
3287 if (alias) {
3288 qstr.name = name;
3289 qstr.len = namelen;
3290 /* change me if btrfs ever gets a d_hash operation */
3291 qstr.hash = full_name_hash(qstr.name, qstr.len);
3292 entry = d_lookup(alias, &qstr);
3293 dput(alias);
3294 if (entry) {
3295 d_invalidate(entry);
3296 dput(entry);
3297 }
3298 }
3299}
3300
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003301int btrfs_create_subvol_root(struct btrfs_root *new_root,
3302 struct btrfs_trans_handle *trans, u64 new_dirid,
3303 struct btrfs_block_group_cache *block_group)
Chris Mason39279cc2007-06-12 06:35:45 -04003304{
Chris Mason39279cc2007-06-12 06:35:45 -04003305 struct inode *inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003306 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003307
Josef Bacikaec74772008-07-24 12:12:38 -04003308 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003309 new_dirid, block_group, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04003310 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003311 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003312 inode->i_op = &btrfs_dir_inode_operations;
3313 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04003314 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003315
Chris Mason39279cc2007-06-12 06:35:45 -04003316 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04003317 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04003318
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003319 return btrfs_update_inode(trans, new_root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003320}
3321
Chris Masonedbd8d42007-12-21 16:27:24 -05003322unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04003323 struct file_ra_state *ra, struct file *file,
3324 pgoff_t offset, pgoff_t last_index)
3325{
Chris Mason8e7bf942008-04-28 09:02:36 -04003326 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04003327
3328#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
Chris Mason86479a02007-09-10 19:58:16 -04003329 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
3330 return offset;
3331#else
Chris Mason86479a02007-09-10 19:58:16 -04003332 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
3333 return offset + req_size;
3334#endif
3335}
3336
Chris Mason39279cc2007-06-12 06:35:45 -04003337struct inode *btrfs_alloc_inode(struct super_block *sb)
3338{
3339 struct btrfs_inode *ei;
3340
3341 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
3342 if (!ei)
3343 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003344 ei->last_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003345 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik33268ea2008-07-24 12:16:36 -04003346 ei->i_acl = BTRFS_ACL_NOT_CACHED;
3347 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
Josef Bacik7b128762008-07-24 12:17:14 -04003348 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason39279cc2007-06-12 06:35:45 -04003349 return &ei->vfs_inode;
3350}
3351
3352void btrfs_destroy_inode(struct inode *inode)
3353{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003354 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04003355 WARN_ON(!list_empty(&inode->i_dentry));
3356 WARN_ON(inode->i_data.nrpages);
3357
Josef Bacik33268ea2008-07-24 12:16:36 -04003358 if (BTRFS_I(inode)->i_acl &&
3359 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
3360 posix_acl_release(BTRFS_I(inode)->i_acl);
3361 if (BTRFS_I(inode)->i_default_acl &&
3362 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
3363 posix_acl_release(BTRFS_I(inode)->i_default_acl);
3364
Yanbcc63ab2008-07-30 16:29:20 -04003365 spin_lock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003366 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
3367 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
3368 " list\n", inode->i_ino);
3369 dump_stack();
3370 }
Yanbcc63ab2008-07-30 16:29:20 -04003371 spin_unlock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003372
Chris Masone6dcd2d2008-07-17 12:53:50 -04003373 while(1) {
3374 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
3375 if (!ordered)
3376 break;
3377 else {
3378 printk("found ordered extent %Lu %Lu\n",
3379 ordered->file_offset, ordered->len);
3380 btrfs_remove_ordered_extent(inode, ordered);
3381 btrfs_put_ordered_extent(ordered);
3382 btrfs_put_ordered_extent(ordered);
3383 }
3384 }
Chris Mason8c416c92008-01-14 15:10:26 -05003385 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003386 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
3387}
3388
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003389#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3390static void init_once(void *foo)
3391#elif LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason44ec0b72007-10-29 10:55:05 -04003392static void init_once(struct kmem_cache * cachep, void *foo)
3393#else
Chris Mason39279cc2007-06-12 06:35:45 -04003394static void init_once(void * foo, struct kmem_cache * cachep,
3395 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04003396#endif
Chris Mason39279cc2007-06-12 06:35:45 -04003397{
3398 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
3399
3400 inode_init_once(&ei->vfs_inode);
3401}
3402
3403void btrfs_destroy_cachep(void)
3404{
3405 if (btrfs_inode_cachep)
3406 kmem_cache_destroy(btrfs_inode_cachep);
3407 if (btrfs_trans_handle_cachep)
3408 kmem_cache_destroy(btrfs_trans_handle_cachep);
3409 if (btrfs_transaction_cachep)
3410 kmem_cache_destroy(btrfs_transaction_cachep);
3411 if (btrfs_bit_radix_cachep)
3412 kmem_cache_destroy(btrfs_bit_radix_cachep);
3413 if (btrfs_path_cachep)
3414 kmem_cache_destroy(btrfs_path_cachep);
3415}
3416
Chris Mason86479a02007-09-10 19:58:16 -04003417struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04003418 unsigned long extra_flags,
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003419#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3420 void (*ctor)(void *)
3421#elif LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason44ec0b72007-10-29 10:55:05 -04003422 void (*ctor)(struct kmem_cache *, void *)
3423#else
Chris Mason92fee662007-07-25 12:31:35 -04003424 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04003425 unsigned long)
3426#endif
3427 )
Chris Mason92fee662007-07-25 12:31:35 -04003428{
3429 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
3430 SLAB_MEM_SPREAD | extra_flags), ctor
3431#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
3432 ,NULL
3433#endif
3434 );
3435}
3436
Chris Mason39279cc2007-06-12 06:35:45 -04003437int btrfs_init_cachep(void)
3438{
Chris Mason86479a02007-09-10 19:58:16 -04003439 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04003440 sizeof(struct btrfs_inode),
3441 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04003442 if (!btrfs_inode_cachep)
3443 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003444 btrfs_trans_handle_cachep =
3445 btrfs_cache_create("btrfs_trans_handle_cache",
3446 sizeof(struct btrfs_trans_handle),
3447 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003448 if (!btrfs_trans_handle_cachep)
3449 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003450 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04003451 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04003452 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003453 if (!btrfs_transaction_cachep)
3454 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003455 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04003456 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04003457 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003458 if (!btrfs_path_cachep)
3459 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003460 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04003461 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003462 if (!btrfs_bit_radix_cachep)
3463 goto fail;
3464 return 0;
3465fail:
3466 btrfs_destroy_cachep();
3467 return -ENOMEM;
3468}
3469
3470static int btrfs_getattr(struct vfsmount *mnt,
3471 struct dentry *dentry, struct kstat *stat)
3472{
3473 struct inode *inode = dentry->d_inode;
3474 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05003475 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05003476 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04003477 return 0;
3478}
3479
3480static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3481 struct inode * new_dir,struct dentry *new_dentry)
3482{
3483 struct btrfs_trans_handle *trans;
3484 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3485 struct inode *new_inode = new_dentry->d_inode;
3486 struct inode *old_inode = old_dentry->d_inode;
3487 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003488 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003489 int ret;
3490
3491 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3492 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3493 return -ENOTEMPTY;
3494 }
Chris Mason5f39d392007-10-15 16:14:19 -04003495
Chris Mason1832a6d2007-12-21 16:27:21 -05003496 ret = btrfs_check_free_space(root, 1, 0);
3497 if (ret)
3498 goto out_unlock;
3499
Chris Mason39279cc2007-06-12 06:35:45 -04003500 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003501
Chris Mason39279cc2007-06-12 06:35:45 -04003502 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003503
3504 old_dentry->d_inode->i_nlink++;
3505 old_dir->i_ctime = old_dir->i_mtime = ctime;
3506 new_dir->i_ctime = new_dir->i_mtime = ctime;
3507 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003508
Chris Mason39279cc2007-06-12 06:35:45 -04003509 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
3510 if (ret)
3511 goto out_fail;
3512
3513 if (new_inode) {
3514 new_inode->i_ctime = CURRENT_TIME;
3515 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
3516 if (ret)
3517 goto out_fail;
Josef Bacik7b128762008-07-24 12:17:14 -04003518 if (new_inode->i_nlink == 0) {
3519 ret = btrfs_orphan_add(trans, new_inode);
3520 if (ret)
3521 goto out_fail;
3522 }
Chris Mason39279cc2007-06-12 06:35:45 -04003523 }
Chris Mason00e4e6b2008-08-05 11:18:09 -04003524 ret = btrfs_set_inode_index(new_dir, old_inode, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003525 if (ret)
3526 goto out_fail;
3527
Chris Mason00e4e6b2008-08-05 11:18:09 -04003528 ret = btrfs_add_link(trans, new_dentry, old_inode, 1, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003529 if (ret)
3530 goto out_fail;
3531
3532out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04003533 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003534out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003535 return ret;
3536}
3537
Chris Masonea8c2812008-08-04 23:17:27 -04003538int btrfs_start_delalloc_inodes(struct btrfs_root *root)
3539{
3540 struct list_head *head = &root->fs_info->delalloc_inodes;
3541 struct btrfs_inode *binode;
3542 unsigned long flags;
3543
3544 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
3545 while(!list_empty(head)) {
3546 binode = list_entry(head->next, struct btrfs_inode,
3547 delalloc_inodes);
3548 atomic_inc(&binode->vfs_inode.i_count);
3549 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
3550 filemap_write_and_wait(binode->vfs_inode.i_mapping);
3551 iput(&binode->vfs_inode);
3552 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
3553 }
3554 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
3555 return 0;
3556}
3557
Chris Mason39279cc2007-06-12 06:35:45 -04003558static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3559 const char *symname)
3560{
3561 struct btrfs_trans_handle *trans;
3562 struct btrfs_root *root = BTRFS_I(dir)->root;
3563 struct btrfs_path *path;
3564 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003565 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003566 int err;
3567 int drop_inode = 0;
3568 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003569 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04003570 int name_len;
3571 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003572 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003573 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003574 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003575 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003576
3577 name_len = strlen(symname) + 1;
3578 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3579 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003580
Chris Mason1832a6d2007-12-21 16:27:21 -05003581 err = btrfs_check_free_space(root, 1, 0);
3582 if (err)
3583 goto out_fail;
3584
Chris Mason39279cc2007-06-12 06:35:45 -04003585 trans = btrfs_start_transaction(root, 1);
3586 btrfs_set_trans_block_group(trans, dir);
3587
3588 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3589 if (err) {
3590 err = -ENOSPC;
3591 goto out_unlock;
3592 }
3593
Josef Bacikaec74772008-07-24 12:12:38 -04003594 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003595 dentry->d_name.len,
3596 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003597 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
3598 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003599 err = PTR_ERR(inode);
3600 if (IS_ERR(inode))
3601 goto out_unlock;
3602
Josef Bacik33268ea2008-07-24 12:16:36 -04003603 err = btrfs_init_acl(inode, dir);
3604 if (err) {
3605 drop_inode = 1;
3606 goto out_unlock;
3607 }
3608
Chris Mason39279cc2007-06-12 06:35:45 -04003609 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003610 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003611 if (err)
3612 drop_inode = 1;
3613 else {
3614 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003615 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003616 inode->i_fop = &btrfs_file_operations;
3617 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003618 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3619 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04003620 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003621 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3622 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04003623 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Mason1b1e2132008-06-25 16:01:31 -04003624 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04003625 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05003626 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04003627 BTRFS_I(inode)->disk_i_size = 0;
Chris Masondb69e0e2008-08-15 15:34:14 -04003628 inode->i_mapping->writeback_index = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003629 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonba1da2f2008-07-17 12:54:15 -04003630 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04003631 }
3632 dir->i_sb->s_dirt = 1;
3633 btrfs_update_inode_block_group(trans, inode);
3634 btrfs_update_inode_block_group(trans, dir);
3635 if (drop_inode)
3636 goto out_unlock;
3637
3638 path = btrfs_alloc_path();
3639 BUG_ON(!path);
3640 key.objectid = inode->i_ino;
3641 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003642 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3643 datasize = btrfs_file_extent_calc_inline_size(name_len);
3644 err = btrfs_insert_empty_item(trans, root, path, &key,
3645 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003646 if (err) {
3647 drop_inode = 1;
3648 goto out_unlock;
3649 }
Chris Mason5f39d392007-10-15 16:14:19 -04003650 leaf = path->nodes[0];
3651 ei = btrfs_item_ptr(leaf, path->slots[0],
3652 struct btrfs_file_extent_item);
3653 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3654 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003655 BTRFS_FILE_EXTENT_INLINE);
3656 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003657 write_extent_buffer(leaf, symname, ptr, name_len);
3658 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003659 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003660
Chris Mason39279cc2007-06-12 06:35:45 -04003661 inode->i_op = &btrfs_symlink_inode_operations;
3662 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003663 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masondbe674a2008-07-17 12:54:05 -04003664 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003665 err = btrfs_update_inode(trans, root, inode);
3666 if (err)
3667 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003668
3669out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003670 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003671 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003672out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003673 if (drop_inode) {
3674 inode_dec_link_count(inode);
3675 iput(inode);
3676 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003677 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003678 return err;
3679}
Chris Mason16432982008-04-10 10:23:21 -04003680
Chris Masone6dcd2d2008-07-17 12:53:50 -04003681static int btrfs_set_page_dirty(struct page *page)
3682{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003683 return __set_page_dirty_nobuffers(page);
3684}
3685
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003686#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3687static int btrfs_permission(struct inode *inode, int mask)
3688#else
Yanfdebe2b2008-01-14 13:26:08 -05003689static int btrfs_permission(struct inode *inode, int mask,
3690 struct nameidata *nd)
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003691#endif
Yanfdebe2b2008-01-14 13:26:08 -05003692{
3693 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3694 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04003695 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05003696}
Chris Mason39279cc2007-06-12 06:35:45 -04003697
3698static struct inode_operations btrfs_dir_inode_operations = {
3699 .lookup = btrfs_lookup,
3700 .create = btrfs_create,
3701 .unlink = btrfs_unlink,
3702 .link = btrfs_link,
3703 .mkdir = btrfs_mkdir,
3704 .rmdir = btrfs_rmdir,
3705 .rename = btrfs_rename,
3706 .symlink = btrfs_symlink,
3707 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003708 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003709 .setxattr = generic_setxattr,
3710 .getxattr = generic_getxattr,
3711 .listxattr = btrfs_listxattr,
3712 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003713 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003714};
Chris Mason39279cc2007-06-12 06:35:45 -04003715static struct inode_operations btrfs_dir_ro_inode_operations = {
3716 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003717 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003718};
Chris Mason39279cc2007-06-12 06:35:45 -04003719static struct file_operations btrfs_dir_file_operations = {
3720 .llseek = generic_file_llseek,
3721 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01003722#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
3723 .readdir = btrfs_nfshack_readdir,
3724#else /* NFSd readdir/lookup deadlock is fixed */
3725 .readdir = btrfs_real_readdir,
3726#endif
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003727 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003728#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003729 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003730#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04003731 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003732};
3733
Chris Masond1310b22008-01-24 16:13:08 -05003734static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003735 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003736 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003737 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003738 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003739 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04003740 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04003741 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003742 .set_bit_hook = btrfs_set_bit_hook,
3743 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003744};
3745
Chris Mason39279cc2007-06-12 06:35:45 -04003746static struct address_space_operations btrfs_aops = {
3747 .readpage = btrfs_readpage,
3748 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04003749 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003750 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003751 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003752 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003753 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003754 .invalidatepage = btrfs_invalidatepage,
3755 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003756 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04003757};
3758
3759static struct address_space_operations btrfs_symlink_aops = {
3760 .readpage = btrfs_readpage,
3761 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003762 .invalidatepage = btrfs_invalidatepage,
3763 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003764};
3765
3766static struct inode_operations btrfs_file_inode_operations = {
3767 .truncate = btrfs_truncate,
3768 .getattr = btrfs_getattr,
3769 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003770 .setxattr = generic_setxattr,
3771 .getxattr = generic_getxattr,
3772 .listxattr = btrfs_listxattr,
3773 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003774 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003775};
Josef Bacik618e21d2007-07-11 10:18:17 -04003776static struct inode_operations btrfs_special_inode_operations = {
3777 .getattr = btrfs_getattr,
3778 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003779 .permission = btrfs_permission,
Josef Bacik33268ea2008-07-24 12:16:36 -04003780 .setxattr = generic_setxattr,
3781 .getxattr = generic_getxattr,
3782 .listxattr = btrfs_listxattr,
3783 .removexattr = generic_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003784};
Chris Mason39279cc2007-06-12 06:35:45 -04003785static struct inode_operations btrfs_symlink_inode_operations = {
3786 .readlink = generic_readlink,
3787 .follow_link = page_follow_link_light,
3788 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003789 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003790};