blob: adb169d739ce4f874376901ae0135ab7b8c706e3 [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"
Christoph Hellwig95819c02008-08-28 06:21:17 -040048#include "xattr.h"
Chris Masone02119d2008-09-05 16:13:11 -040049#include "compat.h"
50#include "tree-log.h"
Chris Mason39279cc2007-06-12 06:35:45 -040051
52struct btrfs_iget_args {
53 u64 ino;
54 struct btrfs_root *root;
55};
56
57static struct inode_operations btrfs_dir_inode_operations;
58static struct inode_operations btrfs_symlink_inode_operations;
59static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040060static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040061static struct inode_operations btrfs_file_inode_operations;
62static struct address_space_operations btrfs_aops;
63static struct address_space_operations btrfs_symlink_aops;
64static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050065static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040066
67static struct kmem_cache *btrfs_inode_cachep;
68struct kmem_cache *btrfs_trans_handle_cachep;
69struct kmem_cache *btrfs_transaction_cachep;
70struct kmem_cache *btrfs_bit_radix_cachep;
71struct kmem_cache *btrfs_path_cachep;
72
73#define S_SHIFT 12
74static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
75 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
76 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
77 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
78 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
79 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
80 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
81 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
82};
83
Josef Bacik7b128762008-07-24 12:17:14 -040084static void btrfs_truncate(struct inode *inode);
85
Chris Mason1832a6d2007-12-21 16:27:21 -050086int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
87 int for_del)
88{
Chris Masona2135012008-06-25 16:01:30 -040089 u64 total;
90 u64 used;
Chris Mason1832a6d2007-12-21 16:27:21 -050091 u64 thresh;
Chris Masonbcbfce82008-04-22 13:26:47 -040092 unsigned long flags;
Chris Mason1832a6d2007-12-21 16:27:21 -050093 int ret = 0;
94
Chris Masona2135012008-06-25 16:01:30 -040095 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
96 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
97 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
Chris Mason1832a6d2007-12-21 16:27:21 -050098 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -050099 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -0500100 else
Chris Masonf9ef6602008-01-03 09:22:38 -0500101 thresh = total * 85;
102
103 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -0500104
Chris Mason1832a6d2007-12-21 16:27:21 -0500105 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
106 ret = -ENOSPC;
Chris Masonbcbfce82008-04-22 13:26:47 -0400107 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -0500108 return ret;
109}
110
Chris Masonbe20aa92007-12-17 20:14:01 -0500111static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db22007-08-27 16:49:44 -0400112{
113 struct btrfs_root *root = BTRFS_I(inode)->root;
114 struct btrfs_trans_handle *trans;
Chris Masonb888db22007-08-27 16:49:44 -0400115 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400116 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500117 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400118 u64 blocksize = root->sectorsize;
Chris Masond1310b22008-01-24 16:13:08 -0500119 u64 orig_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500120 struct btrfs_key ins;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400121 struct extent_map *em;
122 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
123 int ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400124
Chris Masonf9295742008-07-17 12:54:14 -0400125 trans = btrfs_join_transaction(root, 1);
Chris Masonb888db22007-08-27 16:49:44 -0400126 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500127 btrfs_set_trans_block_group(trans, inode);
128
Chris Masondb945352007-10-15 16:15:53 -0400129 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500130 num_bytes = max(blocksize, num_bytes);
Chris Masond1310b22008-01-24 16:13:08 -0500131 orig_num_bytes = num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400132
Chris Mason179e29e2007-11-01 11:28:41 -0400133 if (alloc_hint == EXTENT_MAP_INLINE)
134 goto out;
135
Chris Mason3b951512008-04-17 11:29:12 -0400136 BUG_ON(num_bytes > btrfs_super_total_bytes(&root->fs_info->super_copy));
Chris Masone5a22172008-07-18 20:42:20 -0400137 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400138 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1);
Chris Masone5a22172008-07-18 20:42:20 -0400139 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason3b951512008-04-17 11:29:12 -0400140
Chris Masonc59f8952007-12-17 20:14:04 -0500141 while(num_bytes > 0) {
142 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400143 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400144 root->sectorsize, 0, alloc_hint,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400145 (u64)-1, &ins, 1);
Chris Masonc59f8952007-12-17 20:14:04 -0500146 if (ret) {
147 WARN_ON(1);
148 goto out;
149 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400150 em = alloc_extent_map(GFP_NOFS);
151 em->start = start;
152 em->len = ins.offset;
153 em->block_start = ins.objectid;
154 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masone5a22172008-07-18 20:42:20 -0400155 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400156 set_bit(EXTENT_FLAG_PINNED, &em->flags);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400157 while(1) {
158 spin_lock(&em_tree->lock);
159 ret = add_extent_mapping(em_tree, em);
160 spin_unlock(&em_tree->lock);
161 if (ret != -EEXIST) {
162 free_extent_map(em);
163 break;
164 }
165 btrfs_drop_extent_cache(inode, start,
166 start + ins.offset - 1);
167 }
Chris Masone5a22172008-07-18 20:42:20 -0400168 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400169
Chris Mason98d20f62008-04-14 09:46:10 -0400170 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400171 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
Yan Zheng7ea394f2008-08-05 13:05:02 -0400172 ins.offset, 0);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400173 BUG_ON(ret);
Chris Mason3b951512008-04-17 11:29:12 -0400174 if (num_bytes < cur_alloc_size) {
175 printk("num_bytes %Lu cur_alloc %Lu\n", num_bytes,
176 cur_alloc_size);
177 break;
178 }
Chris Masonc59f8952007-12-17 20:14:04 -0500179 num_bytes -= cur_alloc_size;
180 alloc_hint = ins.objectid + ins.offset;
181 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400182 }
Chris Masonb888db22007-08-27 16:49:44 -0400183out:
184 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500185 return ret;
186}
187
188static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
189{
190 u64 extent_start;
191 u64 extent_end;
192 u64 bytenr;
Chris Mason1832a6d2007-12-21 16:27:21 -0500193 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500194 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500195 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona68d5932008-05-08 14:11:56 -0400196 struct btrfs_block_group_cache *block_group;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400197 struct btrfs_trans_handle *trans;
Chris Masonbe20aa92007-12-17 20:14:01 -0500198 struct extent_buffer *leaf;
199 int found_type;
200 struct btrfs_path *path;
201 struct btrfs_file_extent_item *item;
202 int ret;
Yan Zheng7ea394f2008-08-05 13:05:02 -0400203 int err = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500204 struct btrfs_key found_key;
205
Chris Masonc31f8832008-01-08 15:46:31 -0500206 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500207 path = btrfs_alloc_path();
208 BUG_ON(!path);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400209 trans = btrfs_join_transaction(root, 1);
210 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500211again:
212 ret = btrfs_lookup_file_extent(NULL, root, path,
213 inode->i_ino, start, 0);
214 if (ret < 0) {
Yan Zheng7ea394f2008-08-05 13:05:02 -0400215 err = ret;
216 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -0500217 }
218
Chris Masonbe20aa92007-12-17 20:14:01 -0500219 if (ret != 0) {
220 if (path->slots[0] == 0)
221 goto not_found;
222 path->slots[0]--;
223 }
224
225 leaf = path->nodes[0];
226 item = btrfs_item_ptr(leaf, path->slots[0],
227 struct btrfs_file_extent_item);
228
229 /* are we inside the extent that was found? */
230 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
231 found_type = btrfs_key_type(&found_key);
232 if (found_key.objectid != inode->i_ino ||
Chris Masonbbaf5492008-05-08 16:31:21 -0400233 found_type != BTRFS_EXTENT_DATA_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -0500234 goto not_found;
Chris Masonbe20aa92007-12-17 20:14:01 -0500235
236 found_type = btrfs_file_extent_type(leaf, item);
237 extent_start = found_key.offset;
238 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Masonc31f8832008-01-08 15:46:31 -0500239 u64 extent_num_bytes;
240
241 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
242 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500243 err = 0;
244
Chris Mason1832a6d2007-12-21 16:27:21 -0500245 if (loops && start != extent_start)
246 goto not_found;
247
Chris Masonbe20aa92007-12-17 20:14:01 -0500248 if (start < extent_start || start >= extent_end)
249 goto not_found;
250
Chris Masonbe20aa92007-12-17 20:14:01 -0500251 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
252 if (bytenr == 0)
253 goto not_found;
254
Yan Zheng7ea394f2008-08-05 13:05:02 -0400255 if (btrfs_cross_ref_exists(trans, root, &found_key, bytenr))
Chris Masona68d5932008-05-08 14:11:56 -0400256 goto not_found;
Chris Masonc31f8832008-01-08 15:46:31 -0500257 /*
258 * we may be called by the resizer, make sure we're inside
259 * the limits of the FS
260 */
Chris Masona68d5932008-05-08 14:11:56 -0400261 block_group = btrfs_lookup_block_group(root->fs_info,
262 bytenr);
263 if (!block_group || block_group->ro)
Chris Masonc31f8832008-01-08 15:46:31 -0500264 goto not_found;
265
Yan Zheng7ea394f2008-08-05 13:05:02 -0400266 bytenr += btrfs_file_extent_offset(leaf, item);
267 extent_num_bytes = min(end + 1, extent_end) - start;
268 ret = btrfs_add_ordered_extent(inode, start, bytenr,
269 extent_num_bytes, 1);
270 if (ret) {
271 err = ret;
272 goto out;
273 }
Chris Masonbe20aa92007-12-17 20:14:01 -0500274
Yan Zheng7ea394f2008-08-05 13:05:02 -0400275 btrfs_release_path(root, path);
276 start = extent_end;
277 if (start <= end) {
278 loops++;
279 goto again;
280 }
281 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500282not_found:
Yan Zheng7ea394f2008-08-05 13:05:02 -0400283 btrfs_end_transaction(trans, root);
284 btrfs_free_path(path);
285 return cow_file_range(inode, start, end);
286 }
287out:
288 WARN_ON(err);
289 btrfs_end_transaction(trans, root);
290 btrfs_free_path(path);
291 return err;
Chris Masonbe20aa92007-12-17 20:14:01 -0500292}
293
294static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
295{
296 struct btrfs_root *root = BTRFS_I(inode)->root;
297 int ret;
Chris Masona2135012008-06-25 16:01:30 -0400298
Yanb98b6762008-01-08 15:54:37 -0500299 if (btrfs_test_opt(root, NODATACOW) ||
300 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500301 ret = run_delalloc_nocow(inode, start, end);
302 else
303 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500304
Chris Masonb888db22007-08-27 16:49:44 -0400305 return ret;
306}
307
Chris Mason291d6732008-01-29 15:55:23 -0500308int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500309 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500310{
Chris Masonbcbfce82008-04-22 13:26:47 -0400311 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -0500312 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500313 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400314 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -0500315 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -0500316 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonea8c2812008-08-04 23:17:27 -0400317 if (list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
318 list_add_tail(&BTRFS_I(inode)->delalloc_inodes,
319 &root->fs_info->delalloc_inodes);
320 }
Chris Masonbcbfce82008-04-22 13:26:47 -0400321 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500322 }
323 return 0;
324}
325
326int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500327 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500328{
Chris Masonb0c68f82008-01-31 11:05:37 -0500329 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500330 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400331 unsigned long flags;
332
333 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -0500334 if (end - start + 1 > root->fs_info->delalloc_bytes) {
335 printk("warning: delalloc account %Lu %Lu\n",
336 end - start + 1, root->fs_info->delalloc_bytes);
337 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -0500338 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -0500339 } else {
340 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -0500341 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -0500342 }
Chris Masonea8c2812008-08-04 23:17:27 -0400343 if (BTRFS_I(inode)->delalloc_bytes == 0 &&
344 !list_empty(&BTRFS_I(inode)->delalloc_inodes)) {
345 list_del_init(&BTRFS_I(inode)->delalloc_inodes);
346 }
Chris Masonbcbfce82008-04-22 13:26:47 -0400347 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500348 }
349 return 0;
350}
351
Chris Mason239b14b2008-03-24 15:02:07 -0400352int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
353 size_t size, struct bio *bio)
354{
355 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
356 struct btrfs_mapping_tree *map_tree;
Chris Mason239b14b2008-03-24 15:02:07 -0400357 u64 logical = bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -0400358 u64 length = 0;
359 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -0400360 int ret;
361
Chris Masonf2d8d742008-04-21 10:03:05 -0400362 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -0400363 map_tree = &root->fs_info->mapping_tree;
364 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -0400365 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -0400366 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -0400367
Chris Mason239b14b2008-03-24 15:02:07 -0400368 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -0400369 return 1;
370 }
371 return 0;
372}
373
Chris Mason44b8bd72008-04-16 11:14:51 -0400374int __btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400375 int mirror_num)
Chris Mason065631f2008-02-20 12:07:25 -0500376{
Chris Mason065631f2008-02-20 12:07:25 -0500377 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -0500378 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -0400379
Chris Mason3edf7d32008-07-18 06:17:13 -0400380 ret = btrfs_csum_one_bio(root, inode, bio);
Chris Mason44b8bd72008-04-16 11:14:51 -0400381 BUG_ON(ret);
Chris Masone0156402008-04-16 11:15:20 -0400382
Chris Mason8b712842008-06-11 16:50:36 -0400383 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -0400384}
385
386int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
387 int mirror_num)
388{
389 struct btrfs_root *root = BTRFS_I(inode)->root;
390 int ret = 0;
391
Chris Masone6dcd2d2008-07-17 12:53:50 -0400392 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
393 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -0500394
Yan Zheng7ea394f2008-08-05 13:05:02 -0400395 if (btrfs_test_opt(root, NODATASUM) ||
396 btrfs_test_flag(inode, NODATASUM)) {
397 goto mapit;
398 }
399
Chris Mason4d1b5fb2008-08-20 09:44:52 -0400400 if (!(rw & (1 << BIO_RW))) {
401 btrfs_lookup_bio_sums(root, inode, bio);
402 goto mapit;
403 }
Chris Mason44b8bd72008-04-16 11:14:51 -0400404 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
405 inode, rw, bio, mirror_num,
406 __btrfs_submit_bio_hook);
Chris Mason0b86a832008-03-24 15:01:56 -0400407mapit:
Chris Mason8b712842008-06-11 16:50:36 -0400408 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -0500409}
Chris Mason6885f302008-02-20 16:11:05 -0500410
Chris Masonba1da2f2008-07-17 12:54:15 -0400411static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400412 struct inode *inode, u64 file_offset,
413 struct list_head *list)
414{
415 struct list_head *cur;
416 struct btrfs_ordered_sum *sum;
417
418 btrfs_set_trans_block_group(trans, inode);
Chris Masonba1da2f2008-07-17 12:54:15 -0400419 list_for_each(cur, list) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400420 sum = list_entry(cur, struct btrfs_ordered_sum, list);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400421 btrfs_csum_file_blocks(trans, BTRFS_I(inode)->root,
422 inode, sum);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400423 }
424 return 0;
425}
426
Chris Masonea8c2812008-08-04 23:17:27 -0400427int btrfs_set_extent_delalloc(struct inode *inode, u64 start, u64 end)
428{
429 return set_extent_delalloc(&BTRFS_I(inode)->io_tree, start, end,
430 GFP_NOFS);
431}
432
Chris Mason247e7432008-07-17 12:53:51 -0400433struct btrfs_writepage_fixup {
434 struct page *page;
435 struct btrfs_work work;
436};
437
438/* see btrfs_writepage_start_hook for details on why this is required */
439void btrfs_writepage_fixup_worker(struct btrfs_work *work)
440{
441 struct btrfs_writepage_fixup *fixup;
442 struct btrfs_ordered_extent *ordered;
443 struct page *page;
444 struct inode *inode;
445 u64 page_start;
446 u64 page_end;
447
448 fixup = container_of(work, struct btrfs_writepage_fixup, work);
449 page = fixup->page;
Chris Mason4a096752008-07-21 10:29:44 -0400450again:
Chris Mason247e7432008-07-17 12:53:51 -0400451 lock_page(page);
452 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
453 ClearPageChecked(page);
454 goto out_page;
455 }
456
457 inode = page->mapping->host;
458 page_start = page_offset(page);
459 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
460
461 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
Chris Mason4a096752008-07-21 10:29:44 -0400462
463 /* already ordered? We're done */
464 if (test_range_bit(&BTRFS_I(inode)->io_tree, page_start, page_end,
465 EXTENT_ORDERED, 0)) {
Chris Mason247e7432008-07-17 12:53:51 -0400466 goto out;
Chris Mason4a096752008-07-21 10:29:44 -0400467 }
468
469 ordered = btrfs_lookup_ordered_extent(inode, page_start);
470 if (ordered) {
471 unlock_extent(&BTRFS_I(inode)->io_tree, page_start,
472 page_end, GFP_NOFS);
473 unlock_page(page);
474 btrfs_start_ordered_extent(inode, ordered, 1);
475 goto again;
476 }
Chris Mason247e7432008-07-17 12:53:51 -0400477
Chris Masonea8c2812008-08-04 23:17:27 -0400478 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Mason247e7432008-07-17 12:53:51 -0400479 ClearPageChecked(page);
480out:
481 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
482out_page:
483 unlock_page(page);
484 page_cache_release(page);
485}
486
487/*
488 * There are a few paths in the higher layers of the kernel that directly
489 * set the page dirty bit without asking the filesystem if it is a
490 * good idea. This causes problems because we want to make sure COW
491 * properly happens and the data=ordered rules are followed.
492 *
493 * In our case any range that doesn't have the EXTENT_ORDERED bit set
494 * hasn't been properly setup for IO. We kick off an async process
495 * to fix it up. The async helper will wait for ordered extents, set
496 * the delalloc bit and make it safe to write the page.
497 */
498int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
499{
500 struct inode *inode = page->mapping->host;
501 struct btrfs_writepage_fixup *fixup;
502 struct btrfs_root *root = BTRFS_I(inode)->root;
503 int ret;
504
505 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
506 EXTENT_ORDERED, 0);
507 if (ret)
508 return 0;
509
510 if (PageChecked(page))
511 return -EAGAIN;
512
513 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
514 if (!fixup)
515 return -EAGAIN;
Chris Masonf4219502008-07-22 11:18:09 -0400516
Chris Mason247e7432008-07-17 12:53:51 -0400517 SetPageChecked(page);
518 page_cache_get(page);
519 fixup->work.func = btrfs_writepage_fixup_worker;
520 fixup->page = page;
521 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
522 return -EAGAIN;
523}
524
Chris Mason211f90e2008-07-18 11:56:15 -0400525static int btrfs_finish_ordered_io(struct inode *inode, u64 start, u64 end)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400526{
Chris Masone6dcd2d2008-07-17 12:53:50 -0400527 struct btrfs_root *root = BTRFS_I(inode)->root;
528 struct btrfs_trans_handle *trans;
529 struct btrfs_ordered_extent *ordered_extent;
530 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Zheng Yan31840ae2008-09-23 13:14:14 -0400531 struct btrfs_file_extent_item *extent_item;
532 struct btrfs_path *path = NULL;
533 struct extent_buffer *leaf;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400534 u64 alloc_hint = 0;
535 struct list_head list;
536 struct btrfs_key ins;
537 int ret;
538
539 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -0400540 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400541 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400542
Chris Masonf9295742008-07-17 12:54:14 -0400543 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400544
545 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
546 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400547 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
548 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400549
Zheng Yan31840ae2008-09-23 13:14:14 -0400550 path = btrfs_alloc_path();
551 BUG_ON(!path);
552
Chris Masone6dcd2d2008-07-17 12:53:50 -0400553 lock_extent(io_tree, ordered_extent->file_offset,
554 ordered_extent->file_offset + ordered_extent->len - 1,
555 GFP_NOFS);
556
557 INIT_LIST_HEAD(&list);
558
Chris Masonee6e6502008-07-17 12:54:40 -0400559 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);
Zheng Yan31840ae2008-09-23 13:14:14 -0400567
568 ins.objectid = inode->i_ino;
569 ins.offset = ordered_extent->file_offset;
570 ins.type = BTRFS_EXTENT_DATA_KEY;
571 ret = btrfs_insert_empty_item(trans, root, path, &ins,
572 sizeof(*extent_item));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400573 BUG_ON(ret);
Zheng Yan31840ae2008-09-23 13:14:14 -0400574 leaf = path->nodes[0];
575 extent_item = btrfs_item_ptr(leaf, path->slots[0],
576 struct btrfs_file_extent_item);
577 btrfs_set_file_extent_generation(leaf, extent_item, trans->transid);
578 btrfs_set_file_extent_type(leaf, extent_item, BTRFS_FILE_EXTENT_REG);
579 btrfs_set_file_extent_disk_bytenr(leaf, extent_item,
580 ordered_extent->start);
581 btrfs_set_file_extent_disk_num_bytes(leaf, extent_item,
582 ordered_extent->len);
583 btrfs_set_file_extent_offset(leaf, extent_item, 0);
584 btrfs_set_file_extent_num_bytes(leaf, extent_item,
585 ordered_extent->len);
586 btrfs_mark_buffer_dirty(leaf);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400587
Chris Masone6dcd2d2008-07-17 12:53:50 -0400588 btrfs_drop_extent_cache(inode, ordered_extent->file_offset,
589 ordered_extent->file_offset +
590 ordered_extent->len - 1);
Chris Masonee6e6502008-07-17 12:54:40 -0400591 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
592
Zheng Yan31840ae2008-09-23 13:14:14 -0400593 ins.objectid = ordered_extent->start;
594 ins.offset = ordered_extent->len;
595 ins.type = BTRFS_EXTENT_ITEM_KEY;
596 ret = btrfs_alloc_reserved_extent(trans, root, leaf->start,
597 root->root_key.objectid,
598 trans->transid, inode->i_ino,
599 ordered_extent->file_offset, &ins);
600 BUG_ON(ret);
601 btrfs_release_path(root, path);
602
Chris Masone6dcd2d2008-07-17 12:53:50 -0400603 inode->i_blocks += ordered_extent->len >> 9;
604 unlock_extent(io_tree, ordered_extent->file_offset,
605 ordered_extent->file_offset + ordered_extent->len - 1,
606 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400607nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -0400608 add_pending_csums(trans, inode, ordered_extent->file_offset,
609 &ordered_extent->list);
610
Chris Mason34353022008-09-23 20:19:49 -0400611 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masondbe674a2008-07-17 12:54:05 -0400612 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone02119d2008-09-05 16:13:11 -0400613 btrfs_update_inode(trans, root, inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400614 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason34353022008-09-23 20:19:49 -0400615 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400616
Chris Masone6dcd2d2008-07-17 12:53:50 -0400617 /* once for us */
618 btrfs_put_ordered_extent(ordered_extent);
619 /* once for the tree */
620 btrfs_put_ordered_extent(ordered_extent);
621
Chris Masone6dcd2d2008-07-17 12:53:50 -0400622 btrfs_end_transaction(trans, root);
Zheng Yan31840ae2008-09-23 13:14:14 -0400623 if (path)
624 btrfs_free_path(path);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400625 return 0;
626}
627
Chris Mason211f90e2008-07-18 11:56:15 -0400628int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
629 struct extent_state *state, int uptodate)
630{
631 return btrfs_finish_ordered_io(page->mapping->host, start, end);
632}
633
Chris Mason7e383262008-04-09 16:28:12 -0400634struct io_failure_record {
635 struct page *page;
636 u64 start;
637 u64 len;
638 u64 logical;
639 int last_mirror;
640};
641
Chris Mason1259ab72008-05-12 13:39:03 -0400642int btrfs_io_failed_hook(struct bio *failed_bio,
643 struct page *page, u64 start, u64 end,
644 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -0400645{
646 struct io_failure_record *failrec = NULL;
647 u64 private;
648 struct extent_map *em;
649 struct inode *inode = page->mapping->host;
650 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -0400651 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -0400652 struct bio *bio;
653 int num_copies;
654 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400655 int rw;
Chris Mason7e383262008-04-09 16:28:12 -0400656 u64 logical;
657
658 ret = get_state_private(failure_tree, start, &private);
659 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -0400660 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
661 if (!failrec)
662 return -ENOMEM;
663 failrec->start = start;
664 failrec->len = end - start + 1;
665 failrec->last_mirror = 0;
666
Chris Mason3b951512008-04-17 11:29:12 -0400667 spin_lock(&em_tree->lock);
668 em = lookup_extent_mapping(em_tree, start, failrec->len);
669 if (em->start > start || em->start + em->len < start) {
670 free_extent_map(em);
671 em = NULL;
672 }
673 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -0400674
675 if (!em || IS_ERR(em)) {
676 kfree(failrec);
677 return -EIO;
678 }
679 logical = start - em->start;
680 logical = em->block_start + logical;
681 failrec->logical = logical;
682 free_extent_map(em);
683 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
684 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -0400685 set_state_private(failure_tree, start,
686 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -0400687 } else {
Chris Mason587f7702008-04-11 12:16:46 -0400688 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -0400689 }
690 num_copies = btrfs_num_copies(
691 &BTRFS_I(inode)->root->fs_info->mapping_tree,
692 failrec->logical, failrec->len);
693 failrec->last_mirror++;
694 if (!state) {
695 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
696 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
697 failrec->start,
698 EXTENT_LOCKED);
699 if (state && state->start != failrec->start)
700 state = NULL;
701 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
702 }
703 if (!state || failrec->last_mirror > num_copies) {
704 set_state_private(failure_tree, failrec->start, 0);
705 clear_extent_bits(failure_tree, failrec->start,
706 failrec->start + failrec->len - 1,
707 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
708 kfree(failrec);
709 return -EIO;
710 }
711 bio = bio_alloc(GFP_NOFS, 1);
712 bio->bi_private = state;
713 bio->bi_end_io = failed_bio->bi_end_io;
714 bio->bi_sector = failrec->logical >> 9;
715 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -0400716 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -0400717 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -0400718 if (failed_bio->bi_rw & (1 << BIO_RW))
719 rw = WRITE;
720 else
721 rw = READ;
722
723 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
724 failrec->last_mirror);
725 return 0;
726}
727
728int btrfs_clean_io_failures(struct inode *inode, u64 start)
729{
730 u64 private;
731 u64 private_failure;
732 struct io_failure_record *failure;
733 int ret;
734
735 private = 0;
736 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
737 (u64)-1, 1, EXTENT_DIRTY)) {
738 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
739 start, &private_failure);
740 if (ret == 0) {
741 failure = (struct io_failure_record *)(unsigned long)
742 private_failure;
743 set_state_private(&BTRFS_I(inode)->io_failure_tree,
744 failure->start, 0);
745 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
746 failure->start,
747 failure->start + failure->len - 1,
748 EXTENT_DIRTY | EXTENT_LOCKED,
749 GFP_NOFS);
750 kfree(failure);
751 }
752 }
Chris Mason7e383262008-04-09 16:28:12 -0400753 return 0;
754}
755
Chris Mason70dec802008-01-29 09:59:12 -0500756int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
757 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400758{
Chris Mason35ebb932007-10-30 16:56:53 -0400759 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400760 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500761 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400762 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500763 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400764 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400765 struct btrfs_root *root = BTRFS_I(inode)->root;
766 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400767 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500768
Yanb98b6762008-01-08 15:54:37 -0500769 if (btrfs_test_opt(root, NODATASUM) ||
770 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500771 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500772 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500773 private = state->private;
774 ret = 0;
775 } else {
776 ret = get_state_private(io_tree, start, &private);
777 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400778 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400779 kaddr = kmap_atomic(page, KM_IRQ0);
780 if (ret) {
781 goto zeroit;
782 }
Chris Masonff79f812007-10-15 16:22:25 -0400783 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
784 btrfs_csum_final(csum, (char *)&csum);
785 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400786 goto zeroit;
787 }
788 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400789 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -0400790
791 /* if the io failure tree for this inode is non-empty,
792 * check to see if we've recovered from a failed IO
793 */
Chris Mason1259ab72008-05-12 13:39:03 -0400794 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400795 return 0;
796
797zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500798 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
799 page->mapping->host->i_ino, (unsigned long long)start, csum,
800 private);
Chris Masondb945352007-10-15 16:15:53 -0400801 memset(kaddr + offset, 1, end - start + 1);
802 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400803 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400804 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -0400805 if (private == 0)
806 return 0;
Chris Mason7e383262008-04-09 16:28:12 -0400807 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -0400808}
Chris Masonb888db22007-08-27 16:49:44 -0400809
Josef Bacik7b128762008-07-24 12:17:14 -0400810/*
811 * This creates an orphan entry for the given inode in case something goes
812 * wrong in the middle of an unlink/truncate.
813 */
814int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
815{
816 struct btrfs_root *root = BTRFS_I(inode)->root;
817 int ret = 0;
818
Yanbcc63ab2008-07-30 16:29:20 -0400819 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400820
821 /* already on the orphan list, we're good */
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_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
828
Yanbcc63ab2008-07-30 16:29:20 -0400829 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400830
831 /*
832 * insert an orphan item to track this unlinked/truncated file
833 */
834 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
835
836 return ret;
837}
838
839/*
840 * We have done the truncate/delete so we can go ahead and remove the orphan
841 * item for this particular inode.
842 */
843int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
844{
845 struct btrfs_root *root = BTRFS_I(inode)->root;
846 int ret = 0;
847
Yanbcc63ab2008-07-30 16:29:20 -0400848 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400849
850 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -0400851 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400852 return 0;
853 }
854
855 list_del_init(&BTRFS_I(inode)->i_orphan);
856 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -0400857 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400858 return 0;
859 }
860
Yanbcc63ab2008-07-30 16:29:20 -0400861 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400862
863 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
864
865 return ret;
866}
867
868/*
869 * this cleans up any orphans that may be left on the list from the last use
870 * of this root.
871 */
872void btrfs_orphan_cleanup(struct btrfs_root *root)
873{
874 struct btrfs_path *path;
875 struct extent_buffer *leaf;
876 struct btrfs_item *item;
877 struct btrfs_key key, found_key;
878 struct btrfs_trans_handle *trans;
879 struct inode *inode;
880 int ret = 0, nr_unlink = 0, nr_truncate = 0;
881
882 /* don't do orphan cleanup if the fs is readonly. */
883 if (root->inode->i_sb->s_flags & MS_RDONLY)
884 return;
885
886 path = btrfs_alloc_path();
887 if (!path)
888 return;
889 path->reada = -1;
890
891 key.objectid = BTRFS_ORPHAN_OBJECTID;
892 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
893 key.offset = (u64)-1;
894
895 trans = btrfs_start_transaction(root, 1);
896 btrfs_set_trans_block_group(trans, root->inode);
897
898 while (1) {
899 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
900 if (ret < 0) {
901 printk(KERN_ERR "Error searching slot for orphan: %d"
902 "\n", ret);
903 break;
904 }
905
906 /*
907 * if ret == 0 means we found what we were searching for, which
908 * is weird, but possible, so only screw with path if we didnt
909 * find the key and see if we have stuff that matches
910 */
911 if (ret > 0) {
912 if (path->slots[0] == 0)
913 break;
914 path->slots[0]--;
915 }
916
917 /* pull out the item */
918 leaf = path->nodes[0];
919 item = btrfs_item_nr(leaf, path->slots[0]);
920 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
921
922 /* make sure the item matches what we want */
923 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
924 break;
925 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
926 break;
927
928 /* release the path since we're done with it */
929 btrfs_release_path(root, path);
930
931 /*
932 * this is where we are basically btrfs_lookup, without the
933 * crossing root thing. we store the inode number in the
934 * offset of the orphan item.
935 */
936 inode = btrfs_iget_locked(root->inode->i_sb,
937 found_key.offset, root);
938 if (!inode)
939 break;
940
941 if (inode->i_state & I_NEW) {
942 BTRFS_I(inode)->root = root;
943
944 /* have to set the location manually */
945 BTRFS_I(inode)->location.objectid = inode->i_ino;
946 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
947 BTRFS_I(inode)->location.offset = 0;
948
949 btrfs_read_locked_inode(inode);
950 unlock_new_inode(inode);
951 }
952
953 /*
954 * add this inode to the orphan list so btrfs_orphan_del does
955 * the proper thing when we hit it
956 */
Yanbcc63ab2008-07-30 16:29:20 -0400957 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400958 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -0400959 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400960
961 /*
962 * if this is a bad inode, means we actually succeeded in
963 * removing the inode, but not the orphan record, which means
964 * we need to manually delete the orphan since iput will just
965 * do a destroy_inode
966 */
967 if (is_bad_inode(inode)) {
968 btrfs_orphan_del(trans, inode);
969 iput(inode);
970 continue;
971 }
972
973 /* if we have links, this was a truncate, lets do that */
974 if (inode->i_nlink) {
975 nr_truncate++;
976 btrfs_truncate(inode);
977 } else {
978 nr_unlink++;
979 }
980
981 /* this will do delete_inode and everything for us */
982 iput(inode);
983 }
984
985 if (nr_unlink)
986 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
987 if (nr_truncate)
988 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
989
990 btrfs_free_path(path);
991 btrfs_end_transaction(trans, root);
992}
993
Chris Mason39279cc2007-06-12 06:35:45 -0400994void btrfs_read_locked_inode(struct inode *inode)
995{
996 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400997 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400998 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400999 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -04001000 struct btrfs_root *root = BTRFS_I(inode)->root;
1001 struct btrfs_key location;
1002 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -04001003 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -04001004 int ret;
1005
1006 path = btrfs_alloc_path();
1007 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001008 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -05001009
Chris Mason39279cc2007-06-12 06:35:45 -04001010 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001011 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -04001012 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -04001013
Chris Mason5f39d392007-10-15 16:14:19 -04001014 leaf = path->nodes[0];
1015 inode_item = btrfs_item_ptr(leaf, path->slots[0],
1016 struct btrfs_inode_item);
1017
1018 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
1019 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
1020 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
1021 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -04001022 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04001023
1024 tspec = btrfs_inode_atime(inode_item);
1025 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1026 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1027
1028 tspec = btrfs_inode_mtime(inode_item);
1029 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1030 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1031
1032 tspec = btrfs_inode_ctime(inode_item);
1033 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1034 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1035
1036 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04001037 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
1038 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04001039 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001040 rdev = btrfs_inode_rdev(leaf, inode_item);
1041
Josef Bacikaec74772008-07-24 12:12:38 -04001042 BTRFS_I(inode)->index_cnt = (u64)-1;
1043
Chris Mason5f39d392007-10-15 16:14:19 -04001044 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04001045 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
1046 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -05001047 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -05001048 if (!BTRFS_I(inode)->block_group) {
1049 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -04001050 NULL, 0,
1051 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -05001052 }
Chris Mason39279cc2007-06-12 06:35:45 -04001053 btrfs_free_path(path);
1054 inode_item = NULL;
1055
Chris Mason39279cc2007-06-12 06:35:45 -04001056 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04001057 case S_IFREG:
1058 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001059 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05001060 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001061 inode->i_fop = &btrfs_file_operations;
1062 inode->i_op = &btrfs_file_inode_operations;
1063 break;
1064 case S_IFDIR:
1065 inode->i_fop = &btrfs_dir_file_operations;
1066 if (root == root->fs_info->tree_root)
1067 inode->i_op = &btrfs_dir_ro_inode_operations;
1068 else
1069 inode->i_op = &btrfs_dir_inode_operations;
1070 break;
1071 case S_IFLNK:
1072 inode->i_op = &btrfs_symlink_inode_operations;
1073 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04001074 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001075 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04001076 default:
1077 init_special_inode(inode, inode->i_mode, rdev);
1078 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001079 }
1080 return;
1081
1082make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04001083 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04001084 make_bad_inode(inode);
1085}
1086
Chris Masone02119d2008-09-05 16:13:11 -04001087static void fill_inode_item(struct btrfs_trans_handle *trans,
1088 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04001089 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04001090 struct inode *inode)
1091{
Chris Mason5f39d392007-10-15 16:14:19 -04001092 btrfs_set_inode_uid(leaf, item, inode->i_uid);
1093 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04001094 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04001095 btrfs_set_inode_mode(leaf, item, inode->i_mode);
1096 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
1097
1098 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
1099 inode->i_atime.tv_sec);
1100 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
1101 inode->i_atime.tv_nsec);
1102
1103 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
1104 inode->i_mtime.tv_sec);
1105 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
1106 inode->i_mtime.tv_nsec);
1107
1108 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
1109 inode->i_ctime.tv_sec);
1110 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
1111 inode->i_ctime.tv_nsec);
1112
1113 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
Chris Masone02119d2008-09-05 16:13:11 -04001114 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
1115 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04001116 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05001117 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -04001118 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -04001119 BTRFS_I(inode)->block_group->key.objectid);
1120}
1121
Chris Masonba1da2f2008-07-17 12:54:15 -04001122int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -04001123 struct btrfs_root *root,
1124 struct inode *inode)
1125{
1126 struct btrfs_inode_item *inode_item;
1127 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001128 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001129 int ret;
1130
1131 path = btrfs_alloc_path();
1132 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001133 ret = btrfs_lookup_inode(trans, root, path,
1134 &BTRFS_I(inode)->location, 1);
1135 if (ret) {
1136 if (ret > 0)
1137 ret = -ENOENT;
1138 goto failed;
1139 }
1140
Chris Mason5f39d392007-10-15 16:14:19 -04001141 leaf = path->nodes[0];
1142 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04001143 struct btrfs_inode_item);
1144
Chris Masone02119d2008-09-05 16:13:11 -04001145 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001146 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001147 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001148 ret = 0;
1149failed:
Chris Mason39279cc2007-06-12 06:35:45 -04001150 btrfs_free_path(path);
1151 return ret;
1152}
1153
1154
Chris Masone02119d2008-09-05 16:13:11 -04001155int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
1156 struct btrfs_root *root,
1157 struct inode *dir, struct inode *inode,
1158 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04001159{
1160 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04001161 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001162 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001163 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04001164 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04001165 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04001166
1167 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001168 if (!path) {
1169 ret = -ENOMEM;
1170 goto err;
1171 }
1172
Chris Mason39279cc2007-06-12 06:35:45 -04001173 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
1174 name, name_len, -1);
1175 if (IS_ERR(di)) {
1176 ret = PTR_ERR(di);
1177 goto err;
1178 }
1179 if (!di) {
1180 ret = -ENOENT;
1181 goto err;
1182 }
Chris Mason5f39d392007-10-15 16:14:19 -04001183 leaf = path->nodes[0];
1184 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04001185 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04001186 if (ret)
1187 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04001188 btrfs_release_path(root, path);
1189
Josef Bacikaec74772008-07-24 12:12:38 -04001190 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04001191 inode->i_ino,
1192 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04001193 if (ret) {
1194 printk("failed to delete reference to %.*s, "
1195 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04001196 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04001197 goto err;
1198 }
1199
Chris Mason39279cc2007-06-12 06:35:45 -04001200 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04001201 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04001202 if (IS_ERR(di)) {
1203 ret = PTR_ERR(di);
1204 goto err;
1205 }
1206 if (!di) {
1207 ret = -ENOENT;
1208 goto err;
1209 }
1210 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04001211 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04001212
Chris Masone02119d2008-09-05 16:13:11 -04001213 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
1214 inode, dir->i_ino);
Chris Mason49eb7e42008-09-11 15:53:12 -04001215 BUG_ON(ret != 0 && ret != -ENOENT);
1216 if (ret != -ENOENT)
1217 BTRFS_I(dir)->log_dirty_trans = trans->transid;
Chris Masone02119d2008-09-05 16:13:11 -04001218
1219 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
1220 dir, index);
1221 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001222err:
1223 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001224 if (ret)
1225 goto out;
1226
1227 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
1228 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
1229 btrfs_update_inode(trans, root, dir);
1230 btrfs_drop_nlink(inode);
1231 ret = btrfs_update_inode(trans, root, inode);
1232 dir->i_sb->s_dirt = 1;
1233out:
Chris Mason39279cc2007-06-12 06:35:45 -04001234 return ret;
1235}
1236
1237static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
1238{
1239 struct btrfs_root *root;
1240 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04001241 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001242 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05001243 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001244
1245 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001246
1247 ret = btrfs_check_free_space(root, 1, 1);
1248 if (ret)
1249 goto fail;
1250
Chris Mason39279cc2007-06-12 06:35:45 -04001251 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001252
Chris Mason39279cc2007-06-12 06:35:45 -04001253 btrfs_set_trans_block_group(trans, dir);
Chris Masone02119d2008-09-05 16:13:11 -04001254 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
1255 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04001256
1257 if (inode->i_nlink == 0)
1258 ret = btrfs_orphan_add(trans, inode);
1259
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001260 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04001261
Chris Mason89ce8a62008-06-25 16:01:31 -04001262 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001263fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001264 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001265 return ret;
1266}
1267
1268static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
1269{
1270 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001271 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001272 int ret;
1273 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04001274 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05001275 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001276
Chris Mason925baed2008-06-25 16:01:30 -04001277 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
Yan134d4512007-10-25 15:49:25 -04001278 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04001279 }
Yan134d4512007-10-25 15:49:25 -04001280
Chris Mason1832a6d2007-12-21 16:27:21 -05001281 ret = btrfs_check_free_space(root, 1, 1);
1282 if (ret)
1283 goto fail;
1284
Chris Mason39279cc2007-06-12 06:35:45 -04001285 trans = btrfs_start_transaction(root, 1);
1286 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04001287
Josef Bacik7b128762008-07-24 12:17:14 -04001288 err = btrfs_orphan_add(trans, inode);
1289 if (err)
1290 goto fail_trans;
1291
Chris Mason39279cc2007-06-12 06:35:45 -04001292 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04001293 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
1294 dentry->d_name.name, dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001295 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04001296 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001297 }
Chris Mason39544012007-12-12 14:38:19 -05001298
Josef Bacik7b128762008-07-24 12:17:14 -04001299fail_trans:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001300 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04001301 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001302fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001303 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05001304
Chris Mason39279cc2007-06-12 06:35:45 -04001305 if (ret && !err)
1306 err = ret;
1307 return err;
1308}
1309
Chris Mason39279cc2007-06-12 06:35:45 -04001310/*
Chris Mason39279cc2007-06-12 06:35:45 -04001311 * this can truncate away extent items, csum items and directory items.
1312 * It starts at a high offset and removes keys until it can't find
1313 * any higher than i_size.
1314 *
1315 * csum items that cross the new i_size are truncated to the new size
1316 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04001317 *
1318 * min_type is the minimum key type to truncate down to. If set to 0, this
1319 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04001320 */
Chris Masone02119d2008-09-05 16:13:11 -04001321noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
1322 struct btrfs_root *root,
1323 struct inode *inode,
1324 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001325{
1326 int ret;
1327 struct btrfs_path *path;
1328 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001329 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001330 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04001331 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001332 struct btrfs_file_extent_item *fi;
1333 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04001334 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001335 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001336 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001337 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001338 int found_extent;
1339 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05001340 int pending_del_nr = 0;
1341 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04001342 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -04001343 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001344
Chris Masone02119d2008-09-05 16:13:11 -04001345 if (root->ref_cows)
1346 btrfs_drop_extent_cache(inode,
1347 new_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04001348 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04001349 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04001350 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04001351
Chris Mason39279cc2007-06-12 06:35:45 -04001352 /* FIXME, add redo link to tree so we don't leak on crash */
1353 key.objectid = inode->i_ino;
1354 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04001355 key.type = (u8)-1;
1356
Chris Mason85e21ba2008-01-29 15:11:36 -05001357 btrfs_init_path(path);
1358search_again:
1359 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1360 if (ret < 0) {
1361 goto error;
1362 }
1363 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001364 /* there are no items in the tree for us to truncate, we're
1365 * done
1366 */
1367 if (path->slots[0] == 0) {
1368 ret = 0;
1369 goto error;
1370 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001371 path->slots[0]--;
1372 }
1373
Chris Mason39279cc2007-06-12 06:35:45 -04001374 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001375 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001376 leaf = path->nodes[0];
1377 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1378 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04001379
Chris Mason5f39d392007-10-15 16:14:19 -04001380 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04001381 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001382
Chris Mason85e21ba2008-01-29 15:11:36 -05001383 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001384 break;
1385
Chris Mason5f39d392007-10-15 16:14:19 -04001386 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001387 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04001388 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04001389 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04001390 extent_type = btrfs_file_extent_type(leaf, fi);
1391 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04001392 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04001393 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04001394 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1395 struct btrfs_item *item = btrfs_item_nr(leaf,
1396 path->slots[0]);
1397 item_end += btrfs_file_extent_inline_len(leaf,
1398 item);
Chris Mason39279cc2007-06-12 06:35:45 -04001399 }
Yan008630c2007-11-07 13:31:09 -05001400 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04001401 }
1402 if (found_type == BTRFS_CSUM_ITEM_KEY) {
1403 ret = btrfs_csum_truncate(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04001404 new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04001405 BUG_ON(ret);
1406 }
Chris Masone02119d2008-09-05 16:13:11 -04001407 if (item_end < new_size) {
Chris Masonb888db22007-08-27 16:49:44 -04001408 if (found_type == BTRFS_DIR_ITEM_KEY) {
1409 found_type = BTRFS_INODE_ITEM_KEY;
1410 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
1411 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05001412 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
1413 found_type = BTRFS_XATTR_ITEM_KEY;
1414 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
1415 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04001416 } else if (found_type) {
1417 found_type--;
1418 } else {
1419 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001420 }
Yana61721d2007-09-17 11:08:38 -04001421 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05001422 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04001423 }
Chris Masone02119d2008-09-05 16:13:11 -04001424 if (found_key.offset >= new_size)
Chris Mason39279cc2007-06-12 06:35:45 -04001425 del_item = 1;
1426 else
1427 del_item = 0;
1428 found_extent = 0;
1429
1430 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001431 if (found_type != BTRFS_EXTENT_DATA_KEY)
1432 goto delete;
1433
1434 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001435 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001436 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001437 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001438 u64 orig_num_bytes =
1439 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04001440 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001441 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05001442 extent_num_bytes = extent_num_bytes &
1443 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001444 btrfs_set_file_extent_num_bytes(leaf, fi,
1445 extent_num_bytes);
1446 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001447 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04001448 if (root->ref_cows && extent_start != 0)
Chris Mason90692182008-02-08 13:49:28 -05001449 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001450 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001451 } else {
Chris Masondb945352007-10-15 16:15:53 -04001452 extent_num_bytes =
1453 btrfs_file_extent_disk_num_bytes(leaf,
1454 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001455 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001456 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001457 if (extent_start != 0) {
1458 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04001459 if (root->ref_cows)
1460 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001461 }
Zheng Yan31840ae2008-09-23 13:14:14 -04001462 root_gen = btrfs_header_generation(leaf);
Chris Masond8d5f3e2007-12-11 12:42:00 -05001463 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001464 }
Chris Mason90692182008-02-08 13:49:28 -05001465 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1466 if (!del_item) {
Chris Masone02119d2008-09-05 16:13:11 -04001467 u32 size = new_size - found_key.offset;
1468
1469 if (root->ref_cows) {
1470 dec_i_blocks(inode, item_end + 1 -
1471 found_key.offset - size);
1472 }
1473 size =
1474 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05001475 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04001476 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05001477 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04001478 } else if (root->ref_cows) {
Chris Mason90692182008-02-08 13:49:28 -05001479 dec_i_blocks(inode, item_end + 1 -
1480 found_key.offset);
1481 }
Chris Mason39279cc2007-06-12 06:35:45 -04001482 }
Chris Mason179e29e2007-11-01 11:28:41 -04001483delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001484 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001485 if (!pending_del_nr) {
1486 /* no pending yet, add ourselves */
1487 pending_del_slot = path->slots[0];
1488 pending_del_nr = 1;
1489 } else if (pending_del_nr &&
1490 path->slots[0] + 1 == pending_del_slot) {
1491 /* hop on the pending chunk */
1492 pending_del_nr++;
1493 pending_del_slot = path->slots[0];
1494 } else {
1495 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1496 }
Chris Mason39279cc2007-06-12 06:35:45 -04001497 } else {
1498 break;
1499 }
Chris Mason39279cc2007-06-12 06:35:45 -04001500 if (found_extent) {
1501 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001502 extent_num_bytes,
Zheng Yan31840ae2008-09-23 13:14:14 -04001503 leaf->start, root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001504 root_gen, inode->i_ino,
1505 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001506 BUG_ON(ret);
1507 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001508next:
1509 if (path->slots[0] == 0) {
1510 if (pending_del_nr)
1511 goto del_pending;
1512 btrfs_release_path(root, path);
1513 goto search_again;
1514 }
1515
1516 path->slots[0]--;
1517 if (pending_del_nr &&
1518 path->slots[0] + 1 != pending_del_slot) {
1519 struct btrfs_key debug;
1520del_pending:
1521 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1522 pending_del_slot);
1523 ret = btrfs_del_items(trans, root, path,
1524 pending_del_slot,
1525 pending_del_nr);
1526 BUG_ON(ret);
1527 pending_del_nr = 0;
1528 btrfs_release_path(root, path);
1529 goto search_again;
1530 }
Chris Mason39279cc2007-06-12 06:35:45 -04001531 }
1532 ret = 0;
1533error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001534 if (pending_del_nr) {
1535 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1536 pending_del_nr);
1537 }
Chris Mason39279cc2007-06-12 06:35:45 -04001538 btrfs_free_path(path);
1539 inode->i_sb->s_dirt = 1;
1540 return ret;
1541}
1542
Chris Masona52d9a82007-08-27 16:49:44 -04001543/*
1544 * taken from block_truncate_page, but does cow as it zeros out
1545 * any bytes left in the last page in the file.
1546 */
1547static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1548{
1549 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001550 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001551 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1552 struct btrfs_ordered_extent *ordered;
1553 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04001554 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001555 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1556 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1557 struct page *page;
1558 int ret = 0;
1559 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001560 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04001561
1562 if ((offset & (blocksize - 1)) == 0)
1563 goto out;
1564
1565 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04001566again:
Chris Masona52d9a82007-08-27 16:49:44 -04001567 page = grab_cache_page(mapping, index);
1568 if (!page)
1569 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001570
1571 page_start = page_offset(page);
1572 page_end = page_start + PAGE_CACHE_SIZE - 1;
1573
Chris Masona52d9a82007-08-27 16:49:44 -04001574 if (!PageUptodate(page)) {
1575 ret = btrfs_readpage(NULL, page);
1576 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04001577 if (page->mapping != mapping) {
1578 unlock_page(page);
1579 page_cache_release(page);
1580 goto again;
1581 }
Chris Masona52d9a82007-08-27 16:49:44 -04001582 if (!PageUptodate(page)) {
1583 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04001584 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04001585 }
1586 }
Chris Mason211c17f2008-05-15 09:13:45 -04001587 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001588
1589 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
1590 set_page_extent_mapped(page);
1591
1592 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1593 if (ordered) {
1594 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
1595 unlock_page(page);
1596 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04001597 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001598 btrfs_put_ordered_extent(ordered);
1599 goto again;
1600 }
1601
Chris Masonea8c2812008-08-04 23:17:27 -04001602 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001603 ret = 0;
1604 if (offset != PAGE_CACHE_SIZE) {
1605 kaddr = kmap(page);
1606 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
1607 flush_dcache_page(page);
1608 kunmap(page);
1609 }
Chris Mason247e7432008-07-17 12:53:51 -04001610 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001611 set_page_dirty(page);
1612 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001613
Chris Mason89642222008-07-24 09:41:53 -04001614out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04001615 unlock_page(page);
1616 page_cache_release(page);
1617out:
1618 return ret;
1619}
1620
1621static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1622{
1623 struct inode *inode = dentry->d_inode;
1624 int err;
1625
1626 err = inode_change_ok(inode, attr);
1627 if (err)
1628 return err;
1629
1630 if (S_ISREG(inode->i_mode) &&
1631 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1632 struct btrfs_trans_handle *trans;
1633 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001634 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001635
Chris Mason5f39d392007-10-15 16:14:19 -04001636 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001637 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001638 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001639 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001640 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001641
Chris Mason1b0f7c22008-01-30 14:33:02 -05001642 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001643 goto out;
1644
Chris Mason1832a6d2007-12-21 16:27:21 -05001645 err = btrfs_check_free_space(root, 1, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05001646 if (err)
1647 goto fail;
1648
Chris Mason39279cc2007-06-12 06:35:45 -04001649 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1650
Chris Mason5f564062008-01-22 16:47:59 -05001651 hole_size = block_end - hole_start;
Chris Mason7c2fe322008-08-20 08:51:50 -04001652 while(1) {
1653 struct btrfs_ordered_extent *ordered;
1654 btrfs_wait_ordered_range(inode, hole_start, hole_size);
1655
1656 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
1657 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
1658 if (ordered) {
1659 unlock_extent(io_tree, hole_start,
1660 block_end - 1, GFP_NOFS);
1661 btrfs_put_ordered_extent(ordered);
1662 } else {
1663 break;
1664 }
1665 }
Chris Mason39279cc2007-06-12 06:35:45 -04001666
Chris Mason39279cc2007-06-12 06:35:45 -04001667 trans = btrfs_start_transaction(root, 1);
1668 btrfs_set_trans_block_group(trans, inode);
Chris Masonee6e6502008-07-17 12:54:40 -04001669 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -04001670 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001671 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001672 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001673
Chris Mason179e29e2007-11-01 11:28:41 -04001674 if (alloc_hint != EXTENT_MAP_INLINE) {
1675 err = btrfs_insert_file_extent(trans, root,
1676 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001677 hole_start, 0, 0,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001678 hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001679 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001680 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001681 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001682 }
Chris Masonee6e6502008-07-17 12:54:40 -04001683 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001684 btrfs_end_transaction(trans, root);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001685 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001686 if (err)
1687 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001688 }
1689out:
1690 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04001691
1692 if (!err && ((attr->ia_valid & ATTR_MODE)))
1693 err = btrfs_acl_chmod(inode);
Chris Mason1832a6d2007-12-21 16:27:21 -05001694fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001695 return err;
1696}
Chris Mason61295eb2008-01-14 16:24:38 -05001697
Chris Mason39279cc2007-06-12 06:35:45 -04001698void btrfs_delete_inode(struct inode *inode)
1699{
1700 struct btrfs_trans_handle *trans;
1701 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001702 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001703 int ret;
1704
1705 truncate_inode_pages(&inode->i_data, 0);
1706 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04001707 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001708 goto no_delete;
1709 }
Chris Mason4a096752008-07-21 10:29:44 -04001710 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04001711
Chris Masondbe674a2008-07-17 12:54:05 -04001712 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001713 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001714
Chris Mason39279cc2007-06-12 06:35:45 -04001715 btrfs_set_trans_block_group(trans, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001716 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04001717 if (ret) {
1718 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04001719 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04001720 }
1721
1722 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001723
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001724 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001725 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001726
Chris Mason39279cc2007-06-12 06:35:45 -04001727 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001728 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001729 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001730
1731no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001732 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001733 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001734 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001735no_delete:
1736 clear_inode(inode);
1737}
1738
1739/*
1740 * this returns the key found in the dir entry in the location pointer.
1741 * If no dir entries were found, location->objectid is 0.
1742 */
1743static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1744 struct btrfs_key *location)
1745{
1746 const char *name = dentry->d_name.name;
1747 int namelen = dentry->d_name.len;
1748 struct btrfs_dir_item *di;
1749 struct btrfs_path *path;
1750 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001751 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001752
1753 path = btrfs_alloc_path();
1754 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001755
Chris Mason39279cc2007-06-12 06:35:45 -04001756 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1757 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001758 if (IS_ERR(di))
1759 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001760 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001761 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001762 }
Chris Mason5f39d392007-10-15 16:14:19 -04001763 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001764out:
Chris Mason39279cc2007-06-12 06:35:45 -04001765 btrfs_free_path(path);
1766 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001767out_err:
1768 location->objectid = 0;
1769 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001770}
1771
1772/*
1773 * when we hit a tree root in a directory, the btrfs part of the inode
1774 * needs to be changed to reflect the root directory of the tree root. This
1775 * is kind of like crossing a mount point.
1776 */
1777static int fixup_tree_root_location(struct btrfs_root *root,
1778 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001779 struct btrfs_root **sub_root,
1780 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001781{
Chris Mason39279cc2007-06-12 06:35:45 -04001782 struct btrfs_root_item *ri;
1783
1784 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1785 return 0;
1786 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1787 return 0;
1788
Josef Bacik58176a92007-08-29 15:47:34 -04001789 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1790 dentry->d_name.name,
1791 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001792 if (IS_ERR(*sub_root))
1793 return PTR_ERR(*sub_root);
1794
1795 ri = &(*sub_root)->root_item;
1796 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001797 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1798 location->offset = 0;
1799
Chris Mason39279cc2007-06-12 06:35:45 -04001800 return 0;
1801}
1802
Chris Masone02119d2008-09-05 16:13:11 -04001803static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04001804{
Chris Masone02119d2008-09-05 16:13:11 -04001805 struct btrfs_inode *bi = BTRFS_I(inode);
1806
1807 bi->i_acl = NULL;
1808 bi->i_default_acl = NULL;
1809
1810 bi->generation = 0;
1811 bi->last_trans = 0;
1812 bi->logged_trans = 0;
1813 bi->delalloc_bytes = 0;
1814 bi->disk_i_size = 0;
1815 bi->flags = 0;
1816 bi->index_cnt = (u64)-1;
Chris Mason49eb7e42008-09-11 15:53:12 -04001817 bi->log_dirty_trans = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001818 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1819 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001820 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001821 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1822 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001823 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Masonba1da2f2008-07-17 12:54:15 -04001824 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04001825 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04001826 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001827 mutex_init(&BTRFS_I(inode)->log_mutex);
1828}
1829
1830static int btrfs_init_locked_inode(struct inode *inode, void *p)
1831{
1832 struct btrfs_iget_args *args = p;
1833 inode->i_ino = args->ino;
1834 init_btrfs_i(inode);
1835 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04001836 return 0;
1837}
1838
1839static int btrfs_find_actor(struct inode *inode, void *opaque)
1840{
1841 struct btrfs_iget_args *args = opaque;
1842 return (args->ino == inode->i_ino &&
1843 args->root == BTRFS_I(inode)->root);
1844}
1845
1846struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1847 struct btrfs_root *root)
1848{
1849 struct inode *inode;
1850 struct btrfs_iget_args args;
1851 args.ino = objectid;
1852 args.root = root;
1853
1854 inode = iget5_locked(s, objectid, btrfs_find_actor,
1855 btrfs_init_locked_inode,
1856 (void *)&args);
1857 return inode;
1858}
1859
Balaji Rao1a54ef82008-07-21 02:01:04 +05301860/* Get an inode object given its location and corresponding root.
1861 * Returns in *is_new if the inode was read from disk
1862 */
1863struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
1864 struct btrfs_root *root, int *is_new)
1865{
1866 struct inode *inode;
1867
1868 inode = btrfs_iget_locked(s, location->objectid, root);
1869 if (!inode)
1870 return ERR_PTR(-EACCES);
1871
1872 if (inode->i_state & I_NEW) {
1873 BTRFS_I(inode)->root = root;
1874 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
1875 btrfs_read_locked_inode(inode);
1876 unlock_new_inode(inode);
1877 if (is_new)
1878 *is_new = 1;
1879 } else {
1880 if (is_new)
1881 *is_new = 0;
1882 }
1883
1884 return inode;
1885}
1886
Chris Mason39279cc2007-06-12 06:35:45 -04001887static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1888 struct nameidata *nd)
1889{
1890 struct inode * inode;
1891 struct btrfs_inode *bi = BTRFS_I(dir);
1892 struct btrfs_root *root = bi->root;
1893 struct btrfs_root *sub_root = root;
1894 struct btrfs_key location;
Balaji Rao1a54ef82008-07-21 02:01:04 +05301895 int ret, new, do_orphan = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001896
1897 if (dentry->d_name.len > BTRFS_NAME_LEN)
1898 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001899
Chris Mason39279cc2007-06-12 06:35:45 -04001900 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001901
Chris Mason39279cc2007-06-12 06:35:45 -04001902 if (ret < 0)
1903 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001904
Chris Mason39279cc2007-06-12 06:35:45 -04001905 inode = NULL;
1906 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001907 ret = fixup_tree_root_location(root, &location, &sub_root,
1908 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001909 if (ret < 0)
1910 return ERR_PTR(ret);
1911 if (ret > 0)
1912 return ERR_PTR(-ENOENT);
Balaji Rao1a54ef82008-07-21 02:01:04 +05301913 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
1914 if (IS_ERR(inode))
1915 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04001916
Balaji Rao1a54ef82008-07-21 02:01:04 +05301917 /* the inode and parent dir are two different roots */
1918 if (new && root != sub_root) {
1919 igrab(inode);
1920 sub_root->inode = inode;
1921 do_orphan = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001922 }
1923 }
Josef Bacik7b128762008-07-24 12:17:14 -04001924
1925 if (unlikely(do_orphan))
1926 btrfs_orphan_cleanup(sub_root);
1927
Chris Mason39279cc2007-06-12 06:35:45 -04001928 return d_splice_alias(inode, dentry);
1929}
1930
Chris Mason39279cc2007-06-12 06:35:45 -04001931static unsigned char btrfs_filetype_table[] = {
1932 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1933};
1934
David Woodhousecbdf5a22008-08-06 19:42:33 +01001935static int btrfs_real_readdir(struct file *filp, void *dirent,
1936 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04001937{
Chris Mason6da6aba2007-12-18 16:15:09 -05001938 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001939 struct btrfs_root *root = BTRFS_I(inode)->root;
1940 struct btrfs_item *item;
1941 struct btrfs_dir_item *di;
1942 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001943 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001944 struct btrfs_path *path;
1945 int ret;
1946 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001947 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001948 int slot;
1949 int advance;
1950 unsigned char d_type;
1951 int over = 0;
1952 u32 di_cur;
1953 u32 di_total;
1954 u32 di_len;
1955 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001956 char tmp_name[32];
1957 char *name_ptr;
1958 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001959
1960 /* FIXME, use a real flag for deciding about the key type */
1961 if (root->fs_info->tree_root == root)
1962 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001963
Chris Mason39544012007-12-12 14:38:19 -05001964 /* special case for "." */
1965 if (filp->f_pos == 0) {
1966 over = filldir(dirent, ".", 1,
1967 1, inode->i_ino,
1968 DT_DIR);
1969 if (over)
1970 return 0;
1971 filp->f_pos = 1;
1972 }
Chris Mason39544012007-12-12 14:38:19 -05001973 /* special case for .., just use the back ref */
1974 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01001975 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05001976 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01001977 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05001978 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01001979 return 0;
Chris Mason39544012007-12-12 14:38:19 -05001980 filp->f_pos = 2;
1981 }
1982
David Woodhouse49593bf2008-08-17 17:08:36 +01001983 path = btrfs_alloc_path();
1984 path->reada = 2;
1985
Chris Mason39279cc2007-06-12 06:35:45 -04001986 btrfs_set_key_type(&key, key_type);
1987 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01001988 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04001989
Chris Mason39279cc2007-06-12 06:35:45 -04001990 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1991 if (ret < 0)
1992 goto err;
1993 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01001994
1995 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001996 leaf = path->nodes[0];
1997 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001998 slot = path->slots[0];
1999 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01002000 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04002001 ret = btrfs_next_leaf(root, path);
2002 if (ret)
2003 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002004 leaf = path->nodes[0];
2005 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002006 slot = path->slots[0];
2007 } else {
2008 slot++;
2009 path->slots[0]++;
2010 }
2011 }
2012 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002013 item = btrfs_item_nr(leaf, slot);
2014 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2015
2016 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04002017 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002018 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002019 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002020 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04002021 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04002022
2023 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01002024
Chris Mason39279cc2007-06-12 06:35:45 -04002025 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
2026 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002027 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01002028
2029 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04002030 struct btrfs_key location;
2031
2032 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01002033 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04002034 name_ptr = tmp_name;
2035 } else {
2036 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01002037 if (!name_ptr) {
2038 ret = -ENOMEM;
2039 goto err;
2040 }
Chris Mason5f39d392007-10-15 16:14:19 -04002041 }
2042 read_extent_buffer(leaf, name_ptr,
2043 (unsigned long)(di + 1), name_len);
2044
2045 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
2046 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04002047 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01002048 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002049 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04002050
2051 if (name_ptr != tmp_name)
2052 kfree(name_ptr);
2053
Chris Mason39279cc2007-06-12 06:35:45 -04002054 if (over)
2055 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01002056
Josef Bacik5103e942007-11-16 11:45:54 -05002057 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01002058 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04002059 di_cur += di_len;
2060 di = (struct btrfs_dir_item *)((char *)di + di_len);
2061 }
2062 }
David Woodhouse49593bf2008-08-17 17:08:36 +01002063
2064 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05002065 if (key_type == BTRFS_DIR_INDEX_KEY)
2066 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
2067 else
2068 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04002069nopos:
2070 ret = 0;
2071err:
Chris Mason39279cc2007-06-12 06:35:45 -04002072 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002073 return ret;
2074}
2075
David Woodhousecbdf5a22008-08-06 19:42:33 +01002076/* Kernels earlier than 2.6.28 still have the NFS deadlock where nfsd
2077 will call the file system's ->lookup() method from within its
2078 filldir callback, which in turn was called from the file system's
2079 ->readdir() method. And will deadlock for many file systems. */
2080#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
2081
2082struct nfshack_dirent {
2083 u64 ino;
2084 loff_t offset;
2085 int namlen;
2086 unsigned int d_type;
2087 char name[];
2088};
2089
2090struct nfshack_readdir {
2091 char *dirent;
2092 size_t used;
David Woodhousef2322b12008-08-17 17:12:56 +01002093 int full;
David Woodhousecbdf5a22008-08-06 19:42:33 +01002094};
2095
2096
2097
2098static int btrfs_nfshack_filldir(void *__buf, const char *name, int namlen,
2099 loff_t offset, u64 ino, unsigned int d_type)
2100{
2101 struct nfshack_readdir *buf = __buf;
2102 struct nfshack_dirent *de = (void *)(buf->dirent + buf->used);
2103 unsigned int reclen;
2104
2105 reclen = ALIGN(sizeof(struct nfshack_dirent) + namlen, sizeof(u64));
David Woodhousef2322b12008-08-17 17:12:56 +01002106 if (buf->used + reclen > PAGE_SIZE) {
2107 buf->full = 1;
David Woodhousecbdf5a22008-08-06 19:42:33 +01002108 return -EINVAL;
David Woodhousef2322b12008-08-17 17:12:56 +01002109 }
David Woodhousecbdf5a22008-08-06 19:42:33 +01002110
2111 de->namlen = namlen;
2112 de->offset = offset;
2113 de->ino = ino;
2114 de->d_type = d_type;
2115 memcpy(de->name, name, namlen);
2116 buf->used += reclen;
2117
2118 return 0;
2119}
2120
2121static int btrfs_nfshack_readdir(struct file *file, void *dirent,
2122 filldir_t filldir)
2123{
2124 struct nfshack_readdir buf;
2125 struct nfshack_dirent *de;
2126 int err;
2127 int size;
2128 loff_t offset;
2129
2130 buf.dirent = (void *)__get_free_page(GFP_KERNEL);
2131 if (!buf.dirent)
2132 return -ENOMEM;
2133
2134 offset = file->f_pos;
2135
David Woodhousef2322b12008-08-17 17:12:56 +01002136 do {
David Woodhousecbdf5a22008-08-06 19:42:33 +01002137 unsigned int reclen;
2138
2139 buf.used = 0;
David Woodhousef2322b12008-08-17 17:12:56 +01002140 buf.full = 0;
David Woodhousecbdf5a22008-08-06 19:42:33 +01002141 err = btrfs_real_readdir(file, &buf, btrfs_nfshack_filldir);
2142 if (err)
2143 break;
2144
2145 size = buf.used;
2146
2147 if (!size)
2148 break;
2149
2150 de = (struct nfshack_dirent *)buf.dirent;
2151 while (size > 0) {
2152 offset = de->offset;
2153
2154 if (filldir(dirent, de->name, de->namlen, de->offset,
2155 de->ino, de->d_type))
2156 goto done;
2157 offset = file->f_pos;
2158
2159 reclen = ALIGN(sizeof(*de) + de->namlen,
2160 sizeof(u64));
2161 size -= reclen;
2162 de = (struct nfshack_dirent *)((char *)de + reclen);
2163 }
David Woodhousef2322b12008-08-17 17:12:56 +01002164 } while (buf.full);
David Woodhousecbdf5a22008-08-06 19:42:33 +01002165
2166 done:
2167 free_page((unsigned long)buf.dirent);
2168 file->f_pos = offset;
2169
2170 return err;
2171}
2172#endif
2173
Chris Mason39279cc2007-06-12 06:35:45 -04002174int btrfs_write_inode(struct inode *inode, int wait)
2175{
2176 struct btrfs_root *root = BTRFS_I(inode)->root;
2177 struct btrfs_trans_handle *trans;
2178 int ret = 0;
2179
Chris Mason4ca8b412008-08-05 13:30:48 -04002180 if (root->fs_info->closing > 1)
2181 return 0;
2182
Chris Mason39279cc2007-06-12 06:35:45 -04002183 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04002184 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002185 btrfs_set_trans_block_group(trans, inode);
2186 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04002187 }
2188 return ret;
2189}
2190
2191/*
Chris Mason54aa1f42007-06-22 14:16:25 -04002192 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04002193 * inode changes. But, it is most likely to find the inode in cache.
2194 * FIXME, needs more benchmarking...there are no reasons other than performance
2195 * to keep or drop this code.
2196 */
2197void btrfs_dirty_inode(struct inode *inode)
2198{
2199 struct btrfs_root *root = BTRFS_I(inode)->root;
2200 struct btrfs_trans_handle *trans;
2201
Chris Masonf9295742008-07-17 12:54:14 -04002202 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002203 btrfs_set_trans_block_group(trans, inode);
2204 btrfs_update_inode(trans, root, inode);
2205 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04002206}
2207
Josef Bacikaec74772008-07-24 12:12:38 -04002208static int btrfs_set_inode_index_count(struct inode *inode)
2209{
2210 struct btrfs_root *root = BTRFS_I(inode)->root;
2211 struct btrfs_key key, found_key;
2212 struct btrfs_path *path;
2213 struct extent_buffer *leaf;
2214 int ret;
2215
2216 key.objectid = inode->i_ino;
2217 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
2218 key.offset = (u64)-1;
2219
2220 path = btrfs_alloc_path();
2221 if (!path)
2222 return -ENOMEM;
2223
2224 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2225 if (ret < 0)
2226 goto out;
2227 /* FIXME: we should be able to handle this */
2228 if (ret == 0)
2229 goto out;
2230 ret = 0;
2231
2232 /*
2233 * MAGIC NUMBER EXPLANATION:
2234 * since we search a directory based on f_pos we have to start at 2
2235 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
2236 * else has to start at 2
2237 */
2238 if (path->slots[0] == 0) {
2239 BTRFS_I(inode)->index_cnt = 2;
2240 goto out;
2241 }
2242
2243 path->slots[0]--;
2244
2245 leaf = path->nodes[0];
2246 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2247
2248 if (found_key.objectid != inode->i_ino ||
2249 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
2250 BTRFS_I(inode)->index_cnt = 2;
2251 goto out;
2252 }
2253
2254 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
2255out:
2256 btrfs_free_path(path);
2257 return ret;
2258}
2259
Chris Mason00e4e6b2008-08-05 11:18:09 -04002260static int btrfs_set_inode_index(struct inode *dir, struct inode *inode,
2261 u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04002262{
2263 int ret = 0;
2264
2265 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
2266 ret = btrfs_set_inode_index_count(dir);
Chris Mason8d5bf1c2008-09-11 15:51:21 -04002267 if (ret) {
Josef Bacikaec74772008-07-24 12:12:38 -04002268 return ret;
Chris Mason8d5bf1c2008-09-11 15:51:21 -04002269 }
Josef Bacikaec74772008-07-24 12:12:38 -04002270 }
2271
Chris Mason00e4e6b2008-08-05 11:18:09 -04002272 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04002273 BTRFS_I(dir)->index_cnt++;
2274
2275 return ret;
2276}
2277
Chris Mason39279cc2007-06-12 06:35:45 -04002278static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
2279 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04002280 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05002281 const char *name, int name_len,
2282 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002283 u64 objectid,
2284 struct btrfs_block_group_cache *group,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002285 int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04002286{
2287 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04002288 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04002289 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04002290 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04002291 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05002292 struct btrfs_inode_ref *ref;
2293 struct btrfs_key key[2];
2294 u32 sizes[2];
2295 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04002296 int ret;
2297 int owner;
2298
Chris Mason5f39d392007-10-15 16:14:19 -04002299 path = btrfs_alloc_path();
2300 BUG_ON(!path);
2301
Chris Mason39279cc2007-06-12 06:35:45 -04002302 inode = new_inode(root->fs_info->sb);
2303 if (!inode)
2304 return ERR_PTR(-ENOMEM);
2305
Josef Bacikaec74772008-07-24 12:12:38 -04002306 if (dir) {
Chris Mason00e4e6b2008-08-05 11:18:09 -04002307 ret = btrfs_set_inode_index(dir, inode, index);
Josef Bacikaec74772008-07-24 12:12:38 -04002308 if (ret)
2309 return ERR_PTR(ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002310 }
2311 /*
2312 * index_cnt is ignored for everything but a dir,
2313 * btrfs_get_inode_index_count has an explanation for the magic
2314 * number
2315 */
Chris Masone02119d2008-09-05 16:13:11 -04002316 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04002317 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04002318 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04002319 BTRFS_I(inode)->generation = trans->transid;
Chris Masonb888db22007-08-27 16:49:44 -04002320
Chris Mason39279cc2007-06-12 06:35:45 -04002321 if (mode & S_IFDIR)
2322 owner = 0;
2323 else
2324 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04002325 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04002326 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04002327 if (!new_inode_group) {
2328 printk("find_block group failed\n");
2329 new_inode_group = group;
2330 }
2331 BTRFS_I(inode)->block_group = new_inode_group;
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);
Chris Masone02119d2008-09-05 16:13:11 -04002359 fill_inode_item(trans, 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
Chris Masone02119d2008-09-05 16:13:11 -04002390int btrfs_add_link(struct btrfs_trans_handle *trans,
2391 struct inode *parent_inode, struct inode *inode,
2392 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04002393{
2394 int ret;
2395 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04002396 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04002397
Chris Mason39279cc2007-06-12 06:35:45 -04002398 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04002399 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
2400 key.offset = 0;
2401
Chris Masone02119d2008-09-05 16:13:11 -04002402 ret = btrfs_insert_dir_item(trans, root, name, name_len,
2403 parent_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002404 &key, btrfs_inode_type(inode),
Chris Mason00e4e6b2008-08-05 11:18:09 -04002405 index);
Chris Mason39279cc2007-06-12 06:35:45 -04002406 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05002407 if (add_backref) {
2408 ret = btrfs_insert_inode_ref(trans, root,
Chris Masone02119d2008-09-05 16:13:11 -04002409 name, name_len,
2410 inode->i_ino,
2411 parent_inode->i_ino,
2412 index);
Chris Mason9c583092008-01-29 15:15:18 -05002413 }
Chris Masondbe674a2008-07-17 12:54:05 -04002414 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04002415 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04002416 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04002417 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002418 }
2419 return ret;
2420}
2421
2422static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05002423 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002424 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04002425{
Chris Masone02119d2008-09-05 16:13:11 -04002426 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
2427 inode, dentry->d_name.name,
2428 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04002429 if (!err) {
2430 d_instantiate(dentry, inode);
2431 return 0;
2432 }
2433 if (err > 0)
2434 err = -EEXIST;
2435 return err;
2436}
2437
Josef Bacik618e21d2007-07-11 10:18:17 -04002438static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
2439 int mode, dev_t rdev)
2440{
2441 struct btrfs_trans_handle *trans;
2442 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002443 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04002444 int err;
2445 int drop_inode = 0;
2446 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05002447 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002448 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04002449
2450 if (!new_valid_dev(rdev))
2451 return -EINVAL;
2452
Chris Mason1832a6d2007-12-21 16:27:21 -05002453 err = btrfs_check_free_space(root, 1, 0);
2454 if (err)
2455 goto fail;
2456
Josef Bacik618e21d2007-07-11 10:18:17 -04002457 trans = btrfs_start_transaction(root, 1);
2458 btrfs_set_trans_block_group(trans, dir);
2459
2460 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2461 if (err) {
2462 err = -ENOSPC;
2463 goto out_unlock;
2464 }
2465
Josef Bacikaec74772008-07-24 12:12:38 -04002466 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05002467 dentry->d_name.len,
2468 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002469 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04002470 err = PTR_ERR(inode);
2471 if (IS_ERR(inode))
2472 goto out_unlock;
2473
Josef Bacik33268ea2008-07-24 12:16:36 -04002474 err = btrfs_init_acl(inode, dir);
2475 if (err) {
2476 drop_inode = 1;
2477 goto out_unlock;
2478 }
2479
Josef Bacik618e21d2007-07-11 10:18:17 -04002480 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04002481 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04002482 if (err)
2483 drop_inode = 1;
2484 else {
2485 inode->i_op = &btrfs_special_inode_operations;
2486 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04002487 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04002488 }
2489 dir->i_sb->s_dirt = 1;
2490 btrfs_update_inode_block_group(trans, inode);
2491 btrfs_update_inode_block_group(trans, dir);
2492out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002493 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002494 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002495fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04002496 if (drop_inode) {
2497 inode_dec_link_count(inode);
2498 iput(inode);
2499 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002500 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04002501 return err;
2502}
2503
Chris Mason39279cc2007-06-12 06:35:45 -04002504static int btrfs_create(struct inode *dir, struct dentry *dentry,
2505 int mode, struct nameidata *nd)
2506{
2507 struct btrfs_trans_handle *trans;
2508 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002509 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002510 int err;
2511 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05002512 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002513 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002514 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002515
Chris Mason1832a6d2007-12-21 16:27:21 -05002516 err = btrfs_check_free_space(root, 1, 0);
2517 if (err)
2518 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002519 trans = btrfs_start_transaction(root, 1);
2520 btrfs_set_trans_block_group(trans, dir);
2521
2522 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2523 if (err) {
2524 err = -ENOSPC;
2525 goto out_unlock;
2526 }
2527
Josef Bacikaec74772008-07-24 12:12:38 -04002528 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05002529 dentry->d_name.len,
2530 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002531 objectid, BTRFS_I(dir)->block_group, mode,
2532 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04002533 err = PTR_ERR(inode);
2534 if (IS_ERR(inode))
2535 goto out_unlock;
2536
Josef Bacik33268ea2008-07-24 12:16:36 -04002537 err = btrfs_init_acl(inode, dir);
2538 if (err) {
2539 drop_inode = 1;
2540 goto out_unlock;
2541 }
2542
Chris Mason39279cc2007-06-12 06:35:45 -04002543 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04002544 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04002545 if (err)
2546 drop_inode = 1;
2547 else {
2548 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002549 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002550 inode->i_fop = &btrfs_file_operations;
2551 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05002552 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002553 }
2554 dir->i_sb->s_dirt = 1;
2555 btrfs_update_inode_block_group(trans, inode);
2556 btrfs_update_inode_block_group(trans, dir);
2557out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002558 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04002559 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002560fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002561 if (drop_inode) {
2562 inode_dec_link_count(inode);
2563 iput(inode);
2564 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002565 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002566 return err;
2567}
2568
2569static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
2570 struct dentry *dentry)
2571{
2572 struct btrfs_trans_handle *trans;
2573 struct btrfs_root *root = BTRFS_I(dir)->root;
2574 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002575 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05002576 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002577 int err;
2578 int drop_inode = 0;
2579
2580 if (inode->i_nlink == 0)
2581 return -ENOENT;
2582
Chris Masone02119d2008-09-05 16:13:11 -04002583 btrfs_inc_nlink(inode);
Chris Mason1832a6d2007-12-21 16:27:21 -05002584 err = btrfs_check_free_space(root, 1, 0);
2585 if (err)
2586 goto fail;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002587 err = btrfs_set_inode_index(dir, inode, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002588 if (err)
2589 goto fail;
2590
Chris Mason39279cc2007-06-12 06:35:45 -04002591 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002592
Chris Mason39279cc2007-06-12 06:35:45 -04002593 btrfs_set_trans_block_group(trans, dir);
2594 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04002595
Chris Mason00e4e6b2008-08-05 11:18:09 -04002596 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04002597
Chris Mason39279cc2007-06-12 06:35:45 -04002598 if (err)
2599 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002600
Chris Mason39279cc2007-06-12 06:35:45 -04002601 dir->i_sb->s_dirt = 1;
2602 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002603 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002604
Chris Mason54aa1f42007-06-22 14:16:25 -04002605 if (err)
2606 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002607
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002608 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04002609 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002610fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002611 if (drop_inode) {
2612 inode_dec_link_count(inode);
2613 iput(inode);
2614 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002615 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002616 return err;
2617}
2618
Chris Mason39279cc2007-06-12 06:35:45 -04002619static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2620{
Chris Masonb9d86662008-05-02 16:13:49 -04002621 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002622 struct btrfs_trans_handle *trans;
2623 struct btrfs_root *root = BTRFS_I(dir)->root;
2624 int err = 0;
2625 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04002626 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002627 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002628 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002629
Chris Mason1832a6d2007-12-21 16:27:21 -05002630 err = btrfs_check_free_space(root, 1, 0);
2631 if (err)
2632 goto out_unlock;
2633
Chris Mason39279cc2007-06-12 06:35:45 -04002634 trans = btrfs_start_transaction(root, 1);
2635 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002636
Chris Mason39279cc2007-06-12 06:35:45 -04002637 if (IS_ERR(trans)) {
2638 err = PTR_ERR(trans);
2639 goto out_unlock;
2640 }
2641
2642 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2643 if (err) {
2644 err = -ENOSPC;
2645 goto out_unlock;
2646 }
2647
Josef Bacikaec74772008-07-24 12:12:38 -04002648 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05002649 dentry->d_name.len,
2650 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002651 BTRFS_I(dir)->block_group, S_IFDIR | mode,
2652 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04002653 if (IS_ERR(inode)) {
2654 err = PTR_ERR(inode);
2655 goto out_fail;
2656 }
Chris Mason5f39d392007-10-15 16:14:19 -04002657
Chris Mason39279cc2007-06-12 06:35:45 -04002658 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04002659
2660 err = btrfs_init_acl(inode, dir);
2661 if (err)
2662 goto out_fail;
2663
Chris Mason39279cc2007-06-12 06:35:45 -04002664 inode->i_op = &btrfs_dir_inode_operations;
2665 inode->i_fop = &btrfs_dir_file_operations;
2666 btrfs_set_trans_block_group(trans, inode);
2667
Chris Masondbe674a2008-07-17 12:54:05 -04002668 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002669 err = btrfs_update_inode(trans, root, inode);
2670 if (err)
2671 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002672
Chris Masone02119d2008-09-05 16:13:11 -04002673 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
2674 inode, dentry->d_name.name,
2675 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04002676 if (err)
2677 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002678
Chris Mason39279cc2007-06-12 06:35:45 -04002679 d_instantiate(dentry, inode);
2680 drop_on_err = 0;
2681 dir->i_sb->s_dirt = 1;
2682 btrfs_update_inode_block_group(trans, inode);
2683 btrfs_update_inode_block_group(trans, dir);
2684
2685out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002686 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04002687 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002688
Chris Mason39279cc2007-06-12 06:35:45 -04002689out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002690 if (drop_on_err)
2691 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002692 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002693 return err;
2694}
2695
Chris Mason3b951512008-04-17 11:29:12 -04002696static int merge_extent_mapping(struct extent_map_tree *em_tree,
2697 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002698 struct extent_map *em,
2699 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04002700{
2701 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04002702
Chris Masone6dcd2d2008-07-17 12:53:50 -04002703 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
2704 start_diff = map_start - em->start;
2705 em->start = map_start;
2706 em->len = map_len;
2707 if (em->block_start < EXTENT_MAP_LAST_BYTE)
2708 em->block_start += start_diff;
2709 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002710}
2711
Chris Masona52d9a82007-08-27 16:49:44 -04002712struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002713 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002714 int create)
2715{
2716 int ret;
2717 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002718 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002719 u64 extent_start = 0;
2720 u64 extent_end = 0;
2721 u64 objectid = inode->i_ino;
2722 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04002723 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04002724 struct btrfs_root *root = BTRFS_I(inode)->root;
2725 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002726 struct extent_buffer *leaf;
2727 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002728 struct extent_map *em = NULL;
2729 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002730 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002731 struct btrfs_trans_handle *trans = NULL;
2732
Chris Masona52d9a82007-08-27 16:49:44 -04002733again:
Chris Masond1310b22008-01-24 16:13:08 -05002734 spin_lock(&em_tree->lock);
2735 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04002736 if (em)
2737 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002738 spin_unlock(&em_tree->lock);
2739
Chris Masona52d9a82007-08-27 16:49:44 -04002740 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04002741 if (em->start > start || em->start + em->len <= start)
2742 free_extent_map(em);
2743 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05002744 free_extent_map(em);
2745 else
2746 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002747 }
Chris Masond1310b22008-01-24 16:13:08 -05002748 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002749 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002750 err = -ENOMEM;
2751 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002752 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002753 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002754 em->start = EXTENT_MAP_HOLE;
2755 em->len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04002756
2757 if (!path) {
2758 path = btrfs_alloc_path();
2759 BUG_ON(!path);
2760 }
2761
Chris Mason179e29e2007-11-01 11:28:41 -04002762 ret = btrfs_lookup_file_extent(trans, root, path,
2763 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002764 if (ret < 0) {
2765 err = ret;
2766 goto out;
2767 }
2768
2769 if (ret != 0) {
2770 if (path->slots[0] == 0)
2771 goto not_found;
2772 path->slots[0]--;
2773 }
2774
Chris Mason5f39d392007-10-15 16:14:19 -04002775 leaf = path->nodes[0];
2776 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002777 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002778 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002779 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2780 found_type = btrfs_key_type(&found_key);
2781 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002782 found_type != BTRFS_EXTENT_DATA_KEY) {
2783 goto not_found;
2784 }
2785
Chris Mason5f39d392007-10-15 16:14:19 -04002786 found_type = btrfs_file_extent_type(leaf, item);
2787 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002788 if (found_type == BTRFS_FILE_EXTENT_REG) {
2789 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002790 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002791 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04002792 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002793 em->start = start;
2794 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002795 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002796 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002797 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002798 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002799 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002800 }
2801 goto not_found_em;
2802 }
Chris Masondb945352007-10-15 16:15:53 -04002803 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2804 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002805 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002806 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002807 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002808 goto insert;
2809 }
Chris Masondb945352007-10-15 16:15:53 -04002810 bytenr += btrfs_file_extent_offset(leaf, item);
2811 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002812 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002813 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002814 goto insert;
2815 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002816 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002817 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002818 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002819 size_t size;
2820 size_t extent_offset;
2821 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002822
Chris Mason5f39d392007-10-15 16:14:19 -04002823 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2824 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002825 extent_end = (extent_start + size + root->sectorsize - 1) &
2826 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002827 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002828 em->start = start;
2829 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002830 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002831 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002832 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002833 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002834 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002835 }
2836 goto not_found_em;
2837 }
2838 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002839
2840 if (!page) {
2841 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002842 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002843 goto out;
2844 }
2845
Chris Mason70dec802008-01-29 09:59:12 -05002846 page_start = page_offset(page) + pg_offset;
2847 extent_offset = page_start - extent_start;
2848 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002849 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002850 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002851 em->len = (copy_size + root->sectorsize - 1) &
2852 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002853 map = kmap(page);
2854 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002855 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002856 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002857 copy_size);
2858 flush_dcache_page(page);
2859 } else if (create && PageUptodate(page)) {
2860 if (!trans) {
2861 kunmap(page);
2862 free_extent_map(em);
2863 em = NULL;
2864 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04002865 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04002866 goto again;
2867 }
Chris Mason70dec802008-01-29 09:59:12 -05002868 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002869 copy_size);
2870 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002871 }
Chris Masona52d9a82007-08-27 16:49:44 -04002872 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002873 set_extent_uptodate(io_tree, em->start,
2874 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002875 goto insert;
2876 } else {
2877 printk("unkknown found_type %d\n", found_type);
2878 WARN_ON(1);
2879 }
2880not_found:
2881 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002882 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002883not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002884 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002885insert:
2886 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002887 if (em->start > start || extent_map_end(em) <= start) {
2888 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002889 err = -EIO;
2890 goto out;
2891 }
Chris Masond1310b22008-01-24 16:13:08 -05002892
2893 err = 0;
2894 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002895 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002896 /* it is possible that someone inserted the extent into the tree
2897 * while we had the lock dropped. It is also possible that
2898 * an overlapping map exists in the tree
2899 */
Chris Masona52d9a82007-08-27 16:49:44 -04002900 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002901 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002902
2903 ret = 0;
2904
Chris Mason3b951512008-04-17 11:29:12 -04002905 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002906 if (existing && (existing->start > start ||
2907 existing->start + existing->len <= start)) {
2908 free_extent_map(existing);
2909 existing = NULL;
2910 }
Chris Mason3b951512008-04-17 11:29:12 -04002911 if (!existing) {
2912 existing = lookup_extent_mapping(em_tree, em->start,
2913 em->len);
2914 if (existing) {
2915 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002916 em, start,
2917 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04002918 free_extent_map(existing);
2919 if (err) {
2920 free_extent_map(em);
2921 em = NULL;
2922 }
2923 } else {
2924 err = -EIO;
2925 printk("failing to insert %Lu %Lu\n",
2926 start, len);
2927 free_extent_map(em);
2928 em = NULL;
2929 }
2930 } else {
2931 free_extent_map(em);
2932 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002933 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04002934 }
Chris Masona52d9a82007-08-27 16:49:44 -04002935 }
Chris Masond1310b22008-01-24 16:13:08 -05002936 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002937out:
Chris Masonf4219502008-07-22 11:18:09 -04002938 if (path)
2939 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04002940 if (trans) {
2941 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002942 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04002943 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002944 }
Chris Masona52d9a82007-08-27 16:49:44 -04002945 }
Chris Masona52d9a82007-08-27 16:49:44 -04002946 if (err) {
2947 free_extent_map(em);
2948 WARN_ON(1);
2949 return ERR_PTR(err);
2950 }
2951 return em;
2952}
2953
Chris Masone1c4b742008-04-22 13:26:46 -04002954#if 0 /* waiting for O_DIRECT reads */
Chris Mason16432982008-04-10 10:23:21 -04002955static int btrfs_get_block(struct inode *inode, sector_t iblock,
2956 struct buffer_head *bh_result, int create)
2957{
2958 struct extent_map *em;
2959 u64 start = (u64)iblock << inode->i_blkbits;
2960 struct btrfs_multi_bio *multi = NULL;
2961 struct btrfs_root *root = BTRFS_I(inode)->root;
2962 u64 len;
2963 u64 logical;
2964 u64 map_length;
2965 int ret = 0;
2966
2967 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2968
2969 if (!em || IS_ERR(em))
2970 goto out;
2971
Chris Masone1c4b742008-04-22 13:26:46 -04002972 if (em->start > start || em->start + em->len <= start) {
Chris Mason16432982008-04-10 10:23:21 -04002973 goto out;
Chris Masone1c4b742008-04-22 13:26:46 -04002974 }
Chris Mason16432982008-04-10 10:23:21 -04002975
2976 if (em->block_start == EXTENT_MAP_INLINE) {
2977 ret = -EINVAL;
2978 goto out;
2979 }
2980
Chris Mason16432982008-04-10 10:23:21 -04002981 len = em->start + em->len - start;
2982 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2983
Chris Masone1c4b742008-04-22 13:26:46 -04002984 if (em->block_start == EXTENT_MAP_HOLE ||
2985 em->block_start == EXTENT_MAP_DELALLOC) {
2986 bh_result->b_size = len;
2987 goto out;
2988 }
2989
Chris Mason16432982008-04-10 10:23:21 -04002990 logical = start - em->start;
2991 logical = em->block_start + logical;
2992
2993 map_length = len;
2994 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2995 logical, &map_length, &multi, 0);
2996 BUG_ON(ret);
2997 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2998 bh_result->b_size = min(map_length, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002999
Chris Mason16432982008-04-10 10:23:21 -04003000 bh_result->b_bdev = multi->stripes[0].dev->bdev;
3001 set_buffer_mapped(bh_result);
3002 kfree(multi);
3003out:
3004 free_extent_map(em);
3005 return ret;
3006}
Chris Masone1c4b742008-04-22 13:26:46 -04003007#endif
Chris Mason16432982008-04-10 10:23:21 -04003008
3009static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
3010 const struct iovec *iov, loff_t offset,
3011 unsigned long nr_segs)
3012{
Chris Masone1c4b742008-04-22 13:26:46 -04003013 return -EINVAL;
3014#if 0
Chris Mason16432982008-04-10 10:23:21 -04003015 struct file *file = iocb->ki_filp;
3016 struct inode *inode = file->f_mapping->host;
3017
3018 if (rw == WRITE)
3019 return -EINVAL;
3020
3021 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
3022 offset, nr_segs, btrfs_get_block, NULL);
Chris Masone1c4b742008-04-22 13:26:46 -04003023#endif
Chris Mason16432982008-04-10 10:23:21 -04003024}
3025
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04003026static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04003027{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04003028 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04003029}
3030
Chris Mason9ebefb182007-06-15 13:50:00 -04003031int btrfs_readpage(struct file *file, struct page *page)
3032{
Chris Masond1310b22008-01-24 16:13:08 -05003033 struct extent_io_tree *tree;
3034 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003035 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04003036}
Chris Mason1832a6d2007-12-21 16:27:21 -05003037
Chris Mason39279cc2007-06-12 06:35:45 -04003038static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
3039{
Chris Masond1310b22008-01-24 16:13:08 -05003040 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04003041
3042
3043 if (current->flags & PF_MEMALLOC) {
3044 redirty_page_for_writepage(wbc, page);
3045 unlock_page(page);
3046 return 0;
3047 }
Chris Masond1310b22008-01-24 16:13:08 -05003048 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003049 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
3050}
Chris Mason39279cc2007-06-12 06:35:45 -04003051
Chris Masonf4219502008-07-22 11:18:09 -04003052int btrfs_writepages(struct address_space *mapping,
3053 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04003054{
Chris Masond1310b22008-01-24 16:13:08 -05003055 struct extent_io_tree *tree;
3056 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04003057 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
3058}
3059
Chris Mason3ab2fb52007-11-08 10:59:22 -05003060static int
3061btrfs_readpages(struct file *file, struct address_space *mapping,
3062 struct list_head *pages, unsigned nr_pages)
3063{
Chris Masond1310b22008-01-24 16:13:08 -05003064 struct extent_io_tree *tree;
3065 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05003066 return extent_readpages(tree, mapping, pages, nr_pages,
3067 btrfs_get_extent);
3068}
Chris Masone6dcd2d2008-07-17 12:53:50 -04003069static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04003070{
Chris Masond1310b22008-01-24 16:13:08 -05003071 struct extent_io_tree *tree;
3072 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04003073 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003074
Chris Masond1310b22008-01-24 16:13:08 -05003075 tree = &BTRFS_I(page->mapping->host)->io_tree;
3076 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05003077 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04003078 if (ret == 1) {
3079 ClearPagePrivate(page);
3080 set_page_private(page, 0);
3081 page_cache_release(page);
3082 }
3083 return ret;
3084}
Chris Mason39279cc2007-06-12 06:35:45 -04003085
Chris Masone6dcd2d2008-07-17 12:53:50 -04003086static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
3087{
Chris Mason98509cf2008-09-11 15:51:43 -04003088 if (PageWriteback(page) || PageDirty(page))
3089 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003090 return __btrfs_releasepage(page, gfp_flags);
3091}
3092
Chris Masona52d9a82007-08-27 16:49:44 -04003093static void btrfs_invalidatepage(struct page *page, unsigned long offset)
3094{
Chris Masond1310b22008-01-24 16:13:08 -05003095 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003096 struct btrfs_ordered_extent *ordered;
3097 u64 page_start = page_offset(page);
3098 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04003099
Chris Masone6dcd2d2008-07-17 12:53:50 -04003100 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003101 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003102 if (offset) {
3103 btrfs_releasepage(page, GFP_NOFS);
3104 return;
3105 }
3106
3107 lock_extent(tree, page_start, page_end, GFP_NOFS);
3108 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
3109 page_offset(page));
3110 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04003111 /*
3112 * IO on this page will never be started, so we need
3113 * to account for any ordered extents now
3114 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04003115 clear_extent_bit(tree, page_start, page_end,
3116 EXTENT_DIRTY | EXTENT_DELALLOC |
3117 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04003118 btrfs_finish_ordered_io(page->mapping->host,
3119 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003120 btrfs_put_ordered_extent(ordered);
3121 lock_extent(tree, page_start, page_end, GFP_NOFS);
3122 }
3123 clear_extent_bit(tree, page_start, page_end,
3124 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3125 EXTENT_ORDERED,
3126 1, 1, GFP_NOFS);
3127 __btrfs_releasepage(page, GFP_NOFS);
3128
Chris Mason4a096752008-07-21 10:29:44 -04003129 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04003130 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04003131 ClearPagePrivate(page);
3132 set_page_private(page, 0);
3133 page_cache_release(page);
3134 }
Chris Mason39279cc2007-06-12 06:35:45 -04003135}
3136
Chris Mason9ebefb182007-06-15 13:50:00 -04003137/*
3138 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
3139 * called from a page fault handler when a page is first dirtied. Hence we must
3140 * be careful to check for EOF conditions here. We set the page up correctly
3141 * for a written page which means we get ENOSPC checking when writing into
3142 * holes and correct delalloc and unwritten extent mapping on filesystems that
3143 * support these features.
3144 *
3145 * We are not allowed to take the i_mutex here so we have to play games to
3146 * protect against truncate races as the page could now be beyond EOF. Because
3147 * vmtruncate() writes the inode size before removing pages, once we have the
3148 * page lock we can determine safely if the page is beyond EOF. If it is not
3149 * beyond EOF, then the page is guaranteed safe against truncation until we
3150 * unlock the page.
3151 */
3152int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
3153{
Chris Mason6da6aba2007-12-18 16:15:09 -05003154 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003155 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003156 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3157 struct btrfs_ordered_extent *ordered;
3158 char *kaddr;
3159 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04003160 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05003161 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04003162 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003163 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04003164
Chris Mason1832a6d2007-12-21 16:27:21 -05003165 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05003166 if (ret)
3167 goto out;
3168
3169 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003170again:
Chris Mason9ebefb182007-06-15 13:50:00 -04003171 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04003172 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003173 page_start = page_offset(page);
3174 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04003175
Chris Mason9ebefb182007-06-15 13:50:00 -04003176 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04003177 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04003178 /* page got truncated out from underneath us */
3179 goto out_unlock;
3180 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003181 wait_on_page_writeback(page);
3182
3183 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
3184 set_page_extent_mapped(page);
3185
Chris Masoneb84ae02008-07-17 13:53:27 -04003186 /*
3187 * we can't set the delalloc bits if there are pending ordered
3188 * extents. Drop our locks and wait for them to finish
3189 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04003190 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3191 if (ordered) {
3192 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3193 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003194 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003195 btrfs_put_ordered_extent(ordered);
3196 goto again;
3197 }
3198
Chris Masonea8c2812008-08-04 23:17:27 -04003199 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003200 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04003201
3202 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04003203 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003204 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04003205 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04003206 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04003207
Chris Masone6dcd2d2008-07-17 12:53:50 -04003208 if (zero_start != PAGE_CACHE_SIZE) {
3209 kaddr = kmap(page);
3210 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
3211 flush_dcache_page(page);
3212 kunmap(page);
3213 }
Chris Mason247e7432008-07-17 12:53:51 -04003214 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003215 set_page_dirty(page);
3216 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04003217
3218out_unlock:
3219 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05003220out:
Chris Mason9ebefb182007-06-15 13:50:00 -04003221 return ret;
3222}
3223
Chris Mason39279cc2007-06-12 06:35:45 -04003224static void btrfs_truncate(struct inode *inode)
3225{
3226 struct btrfs_root *root = BTRFS_I(inode)->root;
3227 int ret;
3228 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003229 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04003230 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003231
3232 if (!S_ISREG(inode->i_mode))
3233 return;
3234 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3235 return;
3236
3237 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04003238 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003239
Chris Mason39279cc2007-06-12 06:35:45 -04003240 trans = btrfs_start_transaction(root, 1);
3241 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04003242 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04003243
Josef Bacik7b128762008-07-24 12:17:14 -04003244 ret = btrfs_orphan_add(trans, inode);
3245 if (ret)
3246 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003247 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Masone02119d2008-09-05 16:13:11 -04003248 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
Chris Mason85e21ba2008-01-29 15:11:36 -05003249 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003250 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003251
Josef Bacik7b128762008-07-24 12:17:14 -04003252 ret = btrfs_orphan_del(trans, inode);
3253 BUG_ON(ret);
3254
3255out:
3256 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003257 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003258 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003259 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003260}
3261
Sven Wegener3b963622008-06-09 21:57:42 -04003262/*
3263 * Invalidate a single dcache entry at the root of the filesystem.
3264 * Needed after creation of snapshot or subvolume.
3265 */
3266void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
3267 int namelen)
3268{
3269 struct dentry *alias, *entry;
3270 struct qstr qstr;
3271
3272 alias = d_find_alias(root->fs_info->sb->s_root->d_inode);
3273 if (alias) {
3274 qstr.name = name;
3275 qstr.len = namelen;
3276 /* change me if btrfs ever gets a d_hash operation */
3277 qstr.hash = full_name_hash(qstr.name, qstr.len);
3278 entry = d_lookup(alias, &qstr);
3279 dput(alias);
3280 if (entry) {
3281 d_invalidate(entry);
3282 dput(entry);
3283 }
3284 }
3285}
3286
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003287int btrfs_create_subvol_root(struct btrfs_root *new_root,
3288 struct btrfs_trans_handle *trans, u64 new_dirid,
3289 struct btrfs_block_group_cache *block_group)
Chris Mason39279cc2007-06-12 06:35:45 -04003290{
Chris Mason39279cc2007-06-12 06:35:45 -04003291 struct inode *inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003292 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003293
Josef Bacikaec74772008-07-24 12:12:38 -04003294 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003295 new_dirid, block_group, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04003296 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003297 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003298 inode->i_op = &btrfs_dir_inode_operations;
3299 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04003300 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003301
Chris Mason39279cc2007-06-12 06:35:45 -04003302 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04003303 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04003304
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003305 return btrfs_update_inode(trans, new_root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003306}
3307
Chris Masonedbd8d42007-12-21 16:27:24 -05003308unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04003309 struct file_ra_state *ra, struct file *file,
3310 pgoff_t offset, pgoff_t last_index)
3311{
Chris Mason8e7bf942008-04-28 09:02:36 -04003312 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04003313
3314#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
Chris Mason86479a02007-09-10 19:58:16 -04003315 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
3316 return offset;
3317#else
Chris Mason86479a02007-09-10 19:58:16 -04003318 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
3319 return offset + req_size;
3320#endif
3321}
3322
Chris Mason39279cc2007-06-12 06:35:45 -04003323struct inode *btrfs_alloc_inode(struct super_block *sb)
3324{
3325 struct btrfs_inode *ei;
3326
3327 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
3328 if (!ei)
3329 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003330 ei->last_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003331 ei->logged_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003332 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik33268ea2008-07-24 12:16:36 -04003333 ei->i_acl = BTRFS_ACL_NOT_CACHED;
3334 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
Josef Bacik7b128762008-07-24 12:17:14 -04003335 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason39279cc2007-06-12 06:35:45 -04003336 return &ei->vfs_inode;
3337}
3338
3339void btrfs_destroy_inode(struct inode *inode)
3340{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003341 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04003342 WARN_ON(!list_empty(&inode->i_dentry));
3343 WARN_ON(inode->i_data.nrpages);
3344
Josef Bacik33268ea2008-07-24 12:16:36 -04003345 if (BTRFS_I(inode)->i_acl &&
3346 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
3347 posix_acl_release(BTRFS_I(inode)->i_acl);
3348 if (BTRFS_I(inode)->i_default_acl &&
3349 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
3350 posix_acl_release(BTRFS_I(inode)->i_default_acl);
3351
Yanbcc63ab2008-07-30 16:29:20 -04003352 spin_lock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003353 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
3354 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
3355 " list\n", inode->i_ino);
3356 dump_stack();
3357 }
Yanbcc63ab2008-07-30 16:29:20 -04003358 spin_unlock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003359
Chris Masone6dcd2d2008-07-17 12:53:50 -04003360 while(1) {
3361 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
3362 if (!ordered)
3363 break;
3364 else {
3365 printk("found ordered extent %Lu %Lu\n",
3366 ordered->file_offset, ordered->len);
3367 btrfs_remove_ordered_extent(inode, ordered);
3368 btrfs_put_ordered_extent(ordered);
3369 btrfs_put_ordered_extent(ordered);
3370 }
3371 }
Chris Mason8c416c92008-01-14 15:10:26 -05003372 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003373 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
3374}
3375
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003376#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3377static void init_once(void *foo)
3378#elif LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason44ec0b72007-10-29 10:55:05 -04003379static void init_once(struct kmem_cache * cachep, void *foo)
3380#else
Chris Mason39279cc2007-06-12 06:35:45 -04003381static void init_once(void * foo, struct kmem_cache * cachep,
3382 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04003383#endif
Chris Mason39279cc2007-06-12 06:35:45 -04003384{
3385 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
3386
3387 inode_init_once(&ei->vfs_inode);
3388}
3389
3390void btrfs_destroy_cachep(void)
3391{
3392 if (btrfs_inode_cachep)
3393 kmem_cache_destroy(btrfs_inode_cachep);
3394 if (btrfs_trans_handle_cachep)
3395 kmem_cache_destroy(btrfs_trans_handle_cachep);
3396 if (btrfs_transaction_cachep)
3397 kmem_cache_destroy(btrfs_transaction_cachep);
3398 if (btrfs_bit_radix_cachep)
3399 kmem_cache_destroy(btrfs_bit_radix_cachep);
3400 if (btrfs_path_cachep)
3401 kmem_cache_destroy(btrfs_path_cachep);
3402}
3403
Chris Mason86479a02007-09-10 19:58:16 -04003404struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04003405 unsigned long extra_flags,
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003406#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3407 void (*ctor)(void *)
3408#elif LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason44ec0b72007-10-29 10:55:05 -04003409 void (*ctor)(struct kmem_cache *, void *)
3410#else
Chris Mason92fee662007-07-25 12:31:35 -04003411 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04003412 unsigned long)
3413#endif
3414 )
Chris Mason92fee662007-07-25 12:31:35 -04003415{
3416 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
3417 SLAB_MEM_SPREAD | extra_flags), ctor
3418#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
3419 ,NULL
3420#endif
3421 );
3422}
3423
Chris Mason39279cc2007-06-12 06:35:45 -04003424int btrfs_init_cachep(void)
3425{
Chris Mason86479a02007-09-10 19:58:16 -04003426 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04003427 sizeof(struct btrfs_inode),
3428 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04003429 if (!btrfs_inode_cachep)
3430 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003431 btrfs_trans_handle_cachep =
3432 btrfs_cache_create("btrfs_trans_handle_cache",
3433 sizeof(struct btrfs_trans_handle),
3434 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003435 if (!btrfs_trans_handle_cachep)
3436 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003437 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04003438 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04003439 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003440 if (!btrfs_transaction_cachep)
3441 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003442 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04003443 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04003444 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003445 if (!btrfs_path_cachep)
3446 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003447 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04003448 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003449 if (!btrfs_bit_radix_cachep)
3450 goto fail;
3451 return 0;
3452fail:
3453 btrfs_destroy_cachep();
3454 return -ENOMEM;
3455}
3456
3457static int btrfs_getattr(struct vfsmount *mnt,
3458 struct dentry *dentry, struct kstat *stat)
3459{
3460 struct inode *inode = dentry->d_inode;
3461 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05003462 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05003463 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04003464 return 0;
3465}
3466
3467static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3468 struct inode * new_dir,struct dentry *new_dentry)
3469{
3470 struct btrfs_trans_handle *trans;
3471 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3472 struct inode *new_inode = new_dentry->d_inode;
3473 struct inode *old_inode = old_dentry->d_inode;
3474 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003475 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003476 int ret;
3477
3478 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3479 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3480 return -ENOTEMPTY;
3481 }
Chris Mason5f39d392007-10-15 16:14:19 -04003482
Chris Mason1832a6d2007-12-21 16:27:21 -05003483 ret = btrfs_check_free_space(root, 1, 0);
3484 if (ret)
3485 goto out_unlock;
3486
Chris Mason39279cc2007-06-12 06:35:45 -04003487 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003488
Chris Mason39279cc2007-06-12 06:35:45 -04003489 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003490
Chris Masone02119d2008-09-05 16:13:11 -04003491 btrfs_inc_nlink(old_dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003492 old_dir->i_ctime = old_dir->i_mtime = ctime;
3493 new_dir->i_ctime = new_dir->i_mtime = ctime;
3494 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003495
Chris Masone02119d2008-09-05 16:13:11 -04003496 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
3497 old_dentry->d_name.name,
3498 old_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04003499 if (ret)
3500 goto out_fail;
3501
3502 if (new_inode) {
3503 new_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04003504 ret = btrfs_unlink_inode(trans, root, new_dir,
3505 new_dentry->d_inode,
3506 new_dentry->d_name.name,
3507 new_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04003508 if (ret)
3509 goto out_fail;
Josef Bacik7b128762008-07-24 12:17:14 -04003510 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003511 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003512 if (ret)
3513 goto out_fail;
3514 }
Chris Masone02119d2008-09-05 16:13:11 -04003515
Chris Mason39279cc2007-06-12 06:35:45 -04003516 }
Chris Mason00e4e6b2008-08-05 11:18:09 -04003517 ret = btrfs_set_inode_index(new_dir, old_inode, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003518 if (ret)
3519 goto out_fail;
3520
Chris Masone02119d2008-09-05 16:13:11 -04003521 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
3522 old_inode, new_dentry->d_name.name,
3523 new_dentry->d_name.len, 1, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003524 if (ret)
3525 goto out_fail;
3526
3527out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04003528 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003529out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003530 return ret;
3531}
3532
Chris Masonea8c2812008-08-04 23:17:27 -04003533int btrfs_start_delalloc_inodes(struct btrfs_root *root)
3534{
3535 struct list_head *head = &root->fs_info->delalloc_inodes;
3536 struct btrfs_inode *binode;
3537 unsigned long flags;
3538
3539 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
3540 while(!list_empty(head)) {
3541 binode = list_entry(head->next, struct btrfs_inode,
3542 delalloc_inodes);
3543 atomic_inc(&binode->vfs_inode.i_count);
3544 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
3545 filemap_write_and_wait(binode->vfs_inode.i_mapping);
3546 iput(&binode->vfs_inode);
3547 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
3548 }
3549 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
3550 return 0;
3551}
3552
Chris Mason39279cc2007-06-12 06:35:45 -04003553static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3554 const char *symname)
3555{
3556 struct btrfs_trans_handle *trans;
3557 struct btrfs_root *root = BTRFS_I(dir)->root;
3558 struct btrfs_path *path;
3559 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003560 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003561 int err;
3562 int drop_inode = 0;
3563 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003564 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04003565 int name_len;
3566 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003567 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003568 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003569 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003570 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003571
3572 name_len = strlen(symname) + 1;
3573 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3574 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003575
Chris Mason1832a6d2007-12-21 16:27:21 -05003576 err = btrfs_check_free_space(root, 1, 0);
3577 if (err)
3578 goto out_fail;
3579
Chris Mason39279cc2007-06-12 06:35:45 -04003580 trans = btrfs_start_transaction(root, 1);
3581 btrfs_set_trans_block_group(trans, dir);
3582
3583 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3584 if (err) {
3585 err = -ENOSPC;
3586 goto out_unlock;
3587 }
3588
Josef Bacikaec74772008-07-24 12:12:38 -04003589 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003590 dentry->d_name.len,
3591 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003592 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
3593 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003594 err = PTR_ERR(inode);
3595 if (IS_ERR(inode))
3596 goto out_unlock;
3597
Josef Bacik33268ea2008-07-24 12:16:36 -04003598 err = btrfs_init_acl(inode, dir);
3599 if (err) {
3600 drop_inode = 1;
3601 goto out_unlock;
3602 }
3603
Chris Mason39279cc2007-06-12 06:35:45 -04003604 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003605 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003606 if (err)
3607 drop_inode = 1;
3608 else {
3609 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003610 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003611 inode->i_fop = &btrfs_file_operations;
3612 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003613 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003614 }
3615 dir->i_sb->s_dirt = 1;
3616 btrfs_update_inode_block_group(trans, inode);
3617 btrfs_update_inode_block_group(trans, dir);
3618 if (drop_inode)
3619 goto out_unlock;
3620
3621 path = btrfs_alloc_path();
3622 BUG_ON(!path);
3623 key.objectid = inode->i_ino;
3624 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003625 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3626 datasize = btrfs_file_extent_calc_inline_size(name_len);
3627 err = btrfs_insert_empty_item(trans, root, path, &key,
3628 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003629 if (err) {
3630 drop_inode = 1;
3631 goto out_unlock;
3632 }
Chris Mason5f39d392007-10-15 16:14:19 -04003633 leaf = path->nodes[0];
3634 ei = btrfs_item_ptr(leaf, path->slots[0],
3635 struct btrfs_file_extent_item);
3636 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3637 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003638 BTRFS_FILE_EXTENT_INLINE);
3639 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003640 write_extent_buffer(leaf, symname, ptr, name_len);
3641 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003642 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003643
Chris Mason39279cc2007-06-12 06:35:45 -04003644 inode->i_op = &btrfs_symlink_inode_operations;
3645 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003646 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masondbe674a2008-07-17 12:54:05 -04003647 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003648 err = btrfs_update_inode(trans, root, inode);
3649 if (err)
3650 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003651
3652out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003653 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003654 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003655out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003656 if (drop_inode) {
3657 inode_dec_link_count(inode);
3658 iput(inode);
3659 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003660 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003661 return err;
3662}
Chris Mason16432982008-04-10 10:23:21 -04003663
Chris Masone6dcd2d2008-07-17 12:53:50 -04003664static int btrfs_set_page_dirty(struct page *page)
3665{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003666 return __set_page_dirty_nobuffers(page);
3667}
3668
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003669#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3670static int btrfs_permission(struct inode *inode, int mask)
3671#else
Yanfdebe2b2008-01-14 13:26:08 -05003672static int btrfs_permission(struct inode *inode, int mask,
3673 struct nameidata *nd)
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003674#endif
Yanfdebe2b2008-01-14 13:26:08 -05003675{
3676 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3677 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04003678 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05003679}
Chris Mason39279cc2007-06-12 06:35:45 -04003680
3681static struct inode_operations btrfs_dir_inode_operations = {
3682 .lookup = btrfs_lookup,
3683 .create = btrfs_create,
3684 .unlink = btrfs_unlink,
3685 .link = btrfs_link,
3686 .mkdir = btrfs_mkdir,
3687 .rmdir = btrfs_rmdir,
3688 .rename = btrfs_rename,
3689 .symlink = btrfs_symlink,
3690 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003691 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003692 .setxattr = btrfs_setxattr,
3693 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003694 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003695 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003696 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003697};
Chris Mason39279cc2007-06-12 06:35:45 -04003698static struct inode_operations btrfs_dir_ro_inode_operations = {
3699 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003700 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003701};
Chris Mason39279cc2007-06-12 06:35:45 -04003702static struct file_operations btrfs_dir_file_operations = {
3703 .llseek = generic_file_llseek,
3704 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01003705#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
3706 .readdir = btrfs_nfshack_readdir,
3707#else /* NFSd readdir/lookup deadlock is fixed */
3708 .readdir = btrfs_real_readdir,
3709#endif
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003710 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003711#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003712 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003713#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04003714 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04003715 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003716};
3717
Chris Masond1310b22008-01-24 16:13:08 -05003718static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003719 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003720 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003721 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003722 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003723 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04003724 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04003725 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003726 .set_bit_hook = btrfs_set_bit_hook,
3727 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003728};
3729
Chris Mason39279cc2007-06-12 06:35:45 -04003730static struct address_space_operations btrfs_aops = {
3731 .readpage = btrfs_readpage,
3732 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04003733 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003734 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003735 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003736 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003737 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003738 .invalidatepage = btrfs_invalidatepage,
3739 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003740 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04003741};
3742
3743static struct address_space_operations btrfs_symlink_aops = {
3744 .readpage = btrfs_readpage,
3745 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003746 .invalidatepage = btrfs_invalidatepage,
3747 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003748};
3749
3750static struct inode_operations btrfs_file_inode_operations = {
3751 .truncate = btrfs_truncate,
3752 .getattr = btrfs_getattr,
3753 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003754 .setxattr = btrfs_setxattr,
3755 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003756 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003757 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003758 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003759};
Josef Bacik618e21d2007-07-11 10:18:17 -04003760static struct inode_operations btrfs_special_inode_operations = {
3761 .getattr = btrfs_getattr,
3762 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003763 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003764 .setxattr = btrfs_setxattr,
3765 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04003766 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003767 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003768};
Chris Mason39279cc2007-06-12 06:35:45 -04003769static struct inode_operations btrfs_symlink_inode_operations = {
3770 .readlink = generic_readlink,
3771 .follow_link = page_follow_link_light,
3772 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003773 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003774};