blob: 65df9d8302302792b895df6f9ec712193ef70f01 [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,
144 root->sectorsize, 0, 0,
145 (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;
531 u64 alloc_hint = 0;
532 struct list_head list;
533 struct btrfs_key ins;
534 int ret;
535
536 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -0400537 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400538 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400539
Chris Masonf9295742008-07-17 12:54:14 -0400540 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400541
542 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
543 BUG_ON(!ordered_extent);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400544 if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags))
545 goto nocow;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400546
547 lock_extent(io_tree, ordered_extent->file_offset,
548 ordered_extent->file_offset + ordered_extent->len - 1,
549 GFP_NOFS);
550
551 INIT_LIST_HEAD(&list);
552
553 ins.objectid = ordered_extent->start;
554 ins.offset = ordered_extent->len;
555 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masone5a22172008-07-18 20:42:20 -0400556
Chris Masone6dcd2d2008-07-17 12:53:50 -0400557 ret = btrfs_alloc_reserved_extent(trans, root, root->root_key.objectid,
558 trans->transid, inode->i_ino,
559 ordered_extent->file_offset, &ins);
560 BUG_ON(ret);
Chris Masonee6e6502008-07-17 12:54:40 -0400561
562 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masone5a22172008-07-18 20:42:20 -0400563
Chris Masone6dcd2d2008-07-17 12:53:50 -0400564 ret = btrfs_drop_extents(trans, root, inode,
565 ordered_extent->file_offset,
566 ordered_extent->file_offset +
567 ordered_extent->len,
568 ordered_extent->file_offset, &alloc_hint);
569 BUG_ON(ret);
570 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
571 ordered_extent->file_offset,
572 ordered_extent->start,
573 ordered_extent->len,
574 ordered_extent->len, 0);
575 BUG_ON(ret);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400576
Chris Masone6dcd2d2008-07-17 12:53:50 -0400577 btrfs_drop_extent_cache(inode, ordered_extent->file_offset,
578 ordered_extent->file_offset +
579 ordered_extent->len - 1);
Chris Masonee6e6502008-07-17 12:54:40 -0400580 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
581
Chris Masone6dcd2d2008-07-17 12:53:50 -0400582 inode->i_blocks += ordered_extent->len >> 9;
583 unlock_extent(io_tree, ordered_extent->file_offset,
584 ordered_extent->file_offset + ordered_extent->len - 1,
585 GFP_NOFS);
Yan Zheng7ea394f2008-08-05 13:05:02 -0400586nocow:
Chris Masone6dcd2d2008-07-17 12:53:50 -0400587 add_pending_csums(trans, inode, ordered_extent->file_offset,
588 &ordered_extent->list);
589
Chris Masondbe674a2008-07-17 12:54:05 -0400590 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone02119d2008-09-05 16:13:11 -0400591 btrfs_update_inode(trans, root, inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400592 btrfs_remove_ordered_extent(inode, ordered_extent);
Chris Mason7f3c74f2008-07-18 12:01:11 -0400593
Chris Masone6dcd2d2008-07-17 12:53:50 -0400594 /* once for us */
595 btrfs_put_ordered_extent(ordered_extent);
596 /* once for the tree */
597 btrfs_put_ordered_extent(ordered_extent);
598
Chris Masone6dcd2d2008-07-17 12:53:50 -0400599 btrfs_end_transaction(trans, root);
600 return 0;
601}
602
Chris Mason211f90e2008-07-18 11:56:15 -0400603int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
604 struct extent_state *state, int uptodate)
605{
606 return btrfs_finish_ordered_io(page->mapping->host, start, end);
607}
608
Chris Mason7e383262008-04-09 16:28:12 -0400609struct io_failure_record {
610 struct page *page;
611 u64 start;
612 u64 len;
613 u64 logical;
614 int last_mirror;
615};
616
Chris Mason1259ab72008-05-12 13:39:03 -0400617int btrfs_io_failed_hook(struct bio *failed_bio,
618 struct page *page, u64 start, u64 end,
619 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -0400620{
621 struct io_failure_record *failrec = NULL;
622 u64 private;
623 struct extent_map *em;
624 struct inode *inode = page->mapping->host;
625 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -0400626 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -0400627 struct bio *bio;
628 int num_copies;
629 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400630 int rw;
Chris Mason7e383262008-04-09 16:28:12 -0400631 u64 logical;
632
633 ret = get_state_private(failure_tree, start, &private);
634 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -0400635 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
636 if (!failrec)
637 return -ENOMEM;
638 failrec->start = start;
639 failrec->len = end - start + 1;
640 failrec->last_mirror = 0;
641
Chris Mason3b951512008-04-17 11:29:12 -0400642 spin_lock(&em_tree->lock);
643 em = lookup_extent_mapping(em_tree, start, failrec->len);
644 if (em->start > start || em->start + em->len < start) {
645 free_extent_map(em);
646 em = NULL;
647 }
648 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -0400649
650 if (!em || IS_ERR(em)) {
651 kfree(failrec);
652 return -EIO;
653 }
654 logical = start - em->start;
655 logical = em->block_start + logical;
656 failrec->logical = logical;
657 free_extent_map(em);
658 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
659 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -0400660 set_state_private(failure_tree, start,
661 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -0400662 } else {
Chris Mason587f7702008-04-11 12:16:46 -0400663 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -0400664 }
665 num_copies = btrfs_num_copies(
666 &BTRFS_I(inode)->root->fs_info->mapping_tree,
667 failrec->logical, failrec->len);
668 failrec->last_mirror++;
669 if (!state) {
670 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
671 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
672 failrec->start,
673 EXTENT_LOCKED);
674 if (state && state->start != failrec->start)
675 state = NULL;
676 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
677 }
678 if (!state || failrec->last_mirror > num_copies) {
679 set_state_private(failure_tree, failrec->start, 0);
680 clear_extent_bits(failure_tree, failrec->start,
681 failrec->start + failrec->len - 1,
682 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
683 kfree(failrec);
684 return -EIO;
685 }
686 bio = bio_alloc(GFP_NOFS, 1);
687 bio->bi_private = state;
688 bio->bi_end_io = failed_bio->bi_end_io;
689 bio->bi_sector = failrec->logical >> 9;
690 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -0400691 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -0400692 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -0400693 if (failed_bio->bi_rw & (1 << BIO_RW))
694 rw = WRITE;
695 else
696 rw = READ;
697
698 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
699 failrec->last_mirror);
700 return 0;
701}
702
703int btrfs_clean_io_failures(struct inode *inode, u64 start)
704{
705 u64 private;
706 u64 private_failure;
707 struct io_failure_record *failure;
708 int ret;
709
710 private = 0;
711 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
712 (u64)-1, 1, EXTENT_DIRTY)) {
713 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
714 start, &private_failure);
715 if (ret == 0) {
716 failure = (struct io_failure_record *)(unsigned long)
717 private_failure;
718 set_state_private(&BTRFS_I(inode)->io_failure_tree,
719 failure->start, 0);
720 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
721 failure->start,
722 failure->start + failure->len - 1,
723 EXTENT_DIRTY | EXTENT_LOCKED,
724 GFP_NOFS);
725 kfree(failure);
726 }
727 }
Chris Mason7e383262008-04-09 16:28:12 -0400728 return 0;
729}
730
Chris Mason70dec802008-01-29 09:59:12 -0500731int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
732 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400733{
Chris Mason35ebb932007-10-30 16:56:53 -0400734 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400735 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500736 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400737 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500738 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400739 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400740 struct btrfs_root *root = BTRFS_I(inode)->root;
741 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400742 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500743
Yanb98b6762008-01-08 15:54:37 -0500744 if (btrfs_test_opt(root, NODATASUM) ||
745 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500746 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500747 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500748 private = state->private;
749 ret = 0;
750 } else {
751 ret = get_state_private(io_tree, start, &private);
752 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400753 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400754 kaddr = kmap_atomic(page, KM_IRQ0);
755 if (ret) {
756 goto zeroit;
757 }
Chris Masonff79f812007-10-15 16:22:25 -0400758 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
759 btrfs_csum_final(csum, (char *)&csum);
760 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400761 goto zeroit;
762 }
763 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400764 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -0400765
766 /* if the io failure tree for this inode is non-empty,
767 * check to see if we've recovered from a failed IO
768 */
Chris Mason1259ab72008-05-12 13:39:03 -0400769 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400770 return 0;
771
772zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500773 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
774 page->mapping->host->i_ino, (unsigned long long)start, csum,
775 private);
Chris Masondb945352007-10-15 16:15:53 -0400776 memset(kaddr + offset, 1, end - start + 1);
777 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400778 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400779 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -0400780 if (private == 0)
781 return 0;
Chris Mason7e383262008-04-09 16:28:12 -0400782 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -0400783}
Chris Masonb888db22007-08-27 16:49:44 -0400784
Josef Bacik7b128762008-07-24 12:17:14 -0400785/*
786 * This creates an orphan entry for the given inode in case something goes
787 * wrong in the middle of an unlink/truncate.
788 */
789int btrfs_orphan_add(struct btrfs_trans_handle *trans, struct inode *inode)
790{
791 struct btrfs_root *root = BTRFS_I(inode)->root;
792 int ret = 0;
793
Yanbcc63ab2008-07-30 16:29:20 -0400794 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400795
796 /* already on the orphan list, we're good */
797 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -0400798 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400799 return 0;
800 }
801
802 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
803
Yanbcc63ab2008-07-30 16:29:20 -0400804 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400805
806 /*
807 * insert an orphan item to track this unlinked/truncated file
808 */
809 ret = btrfs_insert_orphan_item(trans, root, inode->i_ino);
810
811 return ret;
812}
813
814/*
815 * We have done the truncate/delete so we can go ahead and remove the orphan
816 * item for this particular inode.
817 */
818int btrfs_orphan_del(struct btrfs_trans_handle *trans, struct inode *inode)
819{
820 struct btrfs_root *root = BTRFS_I(inode)->root;
821 int ret = 0;
822
Yanbcc63ab2008-07-30 16:29:20 -0400823 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400824
825 if (list_empty(&BTRFS_I(inode)->i_orphan)) {
Yanbcc63ab2008-07-30 16:29:20 -0400826 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400827 return 0;
828 }
829
830 list_del_init(&BTRFS_I(inode)->i_orphan);
831 if (!trans) {
Yanbcc63ab2008-07-30 16:29:20 -0400832 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400833 return 0;
834 }
835
Yanbcc63ab2008-07-30 16:29:20 -0400836 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400837
838 ret = btrfs_del_orphan_item(trans, root, inode->i_ino);
839
840 return ret;
841}
842
843/*
844 * this cleans up any orphans that may be left on the list from the last use
845 * of this root.
846 */
847void btrfs_orphan_cleanup(struct btrfs_root *root)
848{
849 struct btrfs_path *path;
850 struct extent_buffer *leaf;
851 struct btrfs_item *item;
852 struct btrfs_key key, found_key;
853 struct btrfs_trans_handle *trans;
854 struct inode *inode;
855 int ret = 0, nr_unlink = 0, nr_truncate = 0;
856
857 /* don't do orphan cleanup if the fs is readonly. */
858 if (root->inode->i_sb->s_flags & MS_RDONLY)
859 return;
860
861 path = btrfs_alloc_path();
862 if (!path)
863 return;
864 path->reada = -1;
865
866 key.objectid = BTRFS_ORPHAN_OBJECTID;
867 btrfs_set_key_type(&key, BTRFS_ORPHAN_ITEM_KEY);
868 key.offset = (u64)-1;
869
870 trans = btrfs_start_transaction(root, 1);
871 btrfs_set_trans_block_group(trans, root->inode);
872
873 while (1) {
874 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
875 if (ret < 0) {
876 printk(KERN_ERR "Error searching slot for orphan: %d"
877 "\n", ret);
878 break;
879 }
880
881 /*
882 * if ret == 0 means we found what we were searching for, which
883 * is weird, but possible, so only screw with path if we didnt
884 * find the key and see if we have stuff that matches
885 */
886 if (ret > 0) {
887 if (path->slots[0] == 0)
888 break;
889 path->slots[0]--;
890 }
891
892 /* pull out the item */
893 leaf = path->nodes[0];
894 item = btrfs_item_nr(leaf, path->slots[0]);
895 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
896
897 /* make sure the item matches what we want */
898 if (found_key.objectid != BTRFS_ORPHAN_OBJECTID)
899 break;
900 if (btrfs_key_type(&found_key) != BTRFS_ORPHAN_ITEM_KEY)
901 break;
902
903 /* release the path since we're done with it */
904 btrfs_release_path(root, path);
905
906 /*
907 * this is where we are basically btrfs_lookup, without the
908 * crossing root thing. we store the inode number in the
909 * offset of the orphan item.
910 */
911 inode = btrfs_iget_locked(root->inode->i_sb,
912 found_key.offset, root);
913 if (!inode)
914 break;
915
916 if (inode->i_state & I_NEW) {
917 BTRFS_I(inode)->root = root;
918
919 /* have to set the location manually */
920 BTRFS_I(inode)->location.objectid = inode->i_ino;
921 BTRFS_I(inode)->location.type = BTRFS_INODE_ITEM_KEY;
922 BTRFS_I(inode)->location.offset = 0;
923
924 btrfs_read_locked_inode(inode);
925 unlock_new_inode(inode);
926 }
927
928 /*
929 * add this inode to the orphan list so btrfs_orphan_del does
930 * the proper thing when we hit it
931 */
Yanbcc63ab2008-07-30 16:29:20 -0400932 spin_lock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400933 list_add(&BTRFS_I(inode)->i_orphan, &root->orphan_list);
Yanbcc63ab2008-07-30 16:29:20 -0400934 spin_unlock(&root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -0400935
936 /*
937 * if this is a bad inode, means we actually succeeded in
938 * removing the inode, but not the orphan record, which means
939 * we need to manually delete the orphan since iput will just
940 * do a destroy_inode
941 */
942 if (is_bad_inode(inode)) {
943 btrfs_orphan_del(trans, inode);
944 iput(inode);
945 continue;
946 }
947
948 /* if we have links, this was a truncate, lets do that */
949 if (inode->i_nlink) {
950 nr_truncate++;
951 btrfs_truncate(inode);
952 } else {
953 nr_unlink++;
954 }
955
956 /* this will do delete_inode and everything for us */
957 iput(inode);
958 }
959
960 if (nr_unlink)
961 printk(KERN_INFO "btrfs: unlinked %d orphans\n", nr_unlink);
962 if (nr_truncate)
963 printk(KERN_INFO "btrfs: truncated %d orphans\n", nr_truncate);
964
965 btrfs_free_path(path);
966 btrfs_end_transaction(trans, root);
967}
968
Chris Mason39279cc2007-06-12 06:35:45 -0400969void btrfs_read_locked_inode(struct inode *inode)
970{
971 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400972 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400973 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400974 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400975 struct btrfs_root *root = BTRFS_I(inode)->root;
976 struct btrfs_key location;
977 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400978 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400979 int ret;
980
981 path = btrfs_alloc_path();
982 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400983 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500984
Chris Mason39279cc2007-06-12 06:35:45 -0400985 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400986 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400987 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400988
Chris Mason5f39d392007-10-15 16:14:19 -0400989 leaf = path->nodes[0];
990 inode_item = btrfs_item_ptr(leaf, path->slots[0],
991 struct btrfs_inode_item);
992
993 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
994 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
995 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
996 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -0400997 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -0400998
999 tspec = btrfs_inode_atime(inode_item);
1000 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1001 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1002
1003 tspec = btrfs_inode_mtime(inode_item);
1004 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1005 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1006
1007 tspec = btrfs_inode_ctime(inode_item);
1008 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
1009 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
1010
1011 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04001012 BTRFS_I(inode)->generation = btrfs_inode_generation(leaf, inode_item);
1013 inode->i_generation = BTRFS_I(inode)->generation;
Josef Bacik618e21d2007-07-11 10:18:17 -04001014 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001015 rdev = btrfs_inode_rdev(leaf, inode_item);
1016
Josef Bacikaec74772008-07-24 12:12:38 -04001017 BTRFS_I(inode)->index_cnt = (u64)-1;
1018
Chris Mason5f39d392007-10-15 16:14:19 -04001019 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -04001020 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
1021 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -05001022 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -05001023 if (!BTRFS_I(inode)->block_group) {
1024 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -04001025 NULL, 0,
1026 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -05001027 }
Chris Mason39279cc2007-06-12 06:35:45 -04001028 btrfs_free_path(path);
1029 inode_item = NULL;
1030
Chris Mason39279cc2007-06-12 06:35:45 -04001031 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -04001032 case S_IFREG:
1033 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001034 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -05001035 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001036 inode->i_fop = &btrfs_file_operations;
1037 inode->i_op = &btrfs_file_inode_operations;
1038 break;
1039 case S_IFDIR:
1040 inode->i_fop = &btrfs_dir_file_operations;
1041 if (root == root->fs_info->tree_root)
1042 inode->i_op = &btrfs_dir_ro_inode_operations;
1043 else
1044 inode->i_op = &btrfs_dir_inode_operations;
1045 break;
1046 case S_IFLNK:
1047 inode->i_op = &btrfs_symlink_inode_operations;
1048 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04001049 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001050 break;
Josef Bacik618e21d2007-07-11 10:18:17 -04001051 default:
1052 init_special_inode(inode, inode->i_mode, rdev);
1053 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001054 }
1055 return;
1056
1057make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -04001058 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04001059 make_bad_inode(inode);
1060}
1061
Chris Masone02119d2008-09-05 16:13:11 -04001062static void fill_inode_item(struct btrfs_trans_handle *trans,
1063 struct extent_buffer *leaf,
Chris Mason5f39d392007-10-15 16:14:19 -04001064 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -04001065 struct inode *inode)
1066{
Chris Mason5f39d392007-10-15 16:14:19 -04001067 btrfs_set_inode_uid(leaf, item, inode->i_uid);
1068 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -04001069 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -04001070 btrfs_set_inode_mode(leaf, item, inode->i_mode);
1071 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
1072
1073 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
1074 inode->i_atime.tv_sec);
1075 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
1076 inode->i_atime.tv_nsec);
1077
1078 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
1079 inode->i_mtime.tv_sec);
1080 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
1081 inode->i_mtime.tv_nsec);
1082
1083 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
1084 inode->i_ctime.tv_sec);
1085 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
1086 inode->i_ctime.tv_nsec);
1087
1088 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
Chris Masone02119d2008-09-05 16:13:11 -04001089 btrfs_set_inode_generation(leaf, item, BTRFS_I(inode)->generation);
1090 btrfs_set_inode_transid(leaf, item, trans->transid);
Chris Mason5f39d392007-10-15 16:14:19 -04001091 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -05001092 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -04001093 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -04001094 BTRFS_I(inode)->block_group->key.objectid);
1095}
1096
Chris Masonba1da2f2008-07-17 12:54:15 -04001097int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -04001098 struct btrfs_root *root,
1099 struct inode *inode)
1100{
1101 struct btrfs_inode_item *inode_item;
1102 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -04001103 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001104 int ret;
1105
1106 path = btrfs_alloc_path();
1107 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001108 ret = btrfs_lookup_inode(trans, root, path,
1109 &BTRFS_I(inode)->location, 1);
1110 if (ret) {
1111 if (ret > 0)
1112 ret = -ENOENT;
1113 goto failed;
1114 }
1115
Chris Mason5f39d392007-10-15 16:14:19 -04001116 leaf = path->nodes[0];
1117 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04001118 struct btrfs_inode_item);
1119
Chris Masone02119d2008-09-05 16:13:11 -04001120 fill_inode_item(trans, leaf, inode_item, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001121 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -04001122 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001123 ret = 0;
1124failed:
Chris Mason39279cc2007-06-12 06:35:45 -04001125 btrfs_free_path(path);
1126 return ret;
1127}
1128
1129
Chris Masone02119d2008-09-05 16:13:11 -04001130int btrfs_unlink_inode(struct btrfs_trans_handle *trans,
1131 struct btrfs_root *root,
1132 struct inode *dir, struct inode *inode,
1133 const char *name, int name_len)
Chris Mason39279cc2007-06-12 06:35:45 -04001134{
1135 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04001136 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001137 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001138 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -04001139 struct btrfs_key key;
Josef Bacikaec74772008-07-24 12:12:38 -04001140 u64 index;
Chris Mason39279cc2007-06-12 06:35:45 -04001141
1142 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04001143 if (!path) {
1144 ret = -ENOMEM;
1145 goto err;
1146 }
1147
Chris Mason39279cc2007-06-12 06:35:45 -04001148 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
1149 name, name_len, -1);
1150 if (IS_ERR(di)) {
1151 ret = PTR_ERR(di);
1152 goto err;
1153 }
1154 if (!di) {
1155 ret = -ENOENT;
1156 goto err;
1157 }
Chris Mason5f39d392007-10-15 16:14:19 -04001158 leaf = path->nodes[0];
1159 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -04001160 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -04001161 if (ret)
1162 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -04001163 btrfs_release_path(root, path);
1164
Josef Bacikaec74772008-07-24 12:12:38 -04001165 ret = btrfs_del_inode_ref(trans, root, name, name_len,
Chris Masone02119d2008-09-05 16:13:11 -04001166 inode->i_ino,
1167 dir->i_ino, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04001168 if (ret) {
1169 printk("failed to delete reference to %.*s, "
1170 "inode %lu parent %lu\n", name_len, name,
Chris Masone02119d2008-09-05 16:13:11 -04001171 inode->i_ino, dir->i_ino);
Josef Bacikaec74772008-07-24 12:12:38 -04001172 goto err;
1173 }
1174
Chris Mason39279cc2007-06-12 06:35:45 -04001175 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04001176 index, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -04001177 if (IS_ERR(di)) {
1178 ret = PTR_ERR(di);
1179 goto err;
1180 }
1181 if (!di) {
1182 ret = -ENOENT;
1183 goto err;
1184 }
1185 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -04001186 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -04001187
Chris Masone02119d2008-09-05 16:13:11 -04001188 ret = btrfs_del_inode_ref_in_log(trans, root, name, name_len,
1189 inode, dir->i_ino);
1190 BUG_ON(ret);
1191
1192 ret = btrfs_del_dir_entries_in_log(trans, root, name, name_len,
1193 dir, index);
1194 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001195err:
1196 btrfs_free_path(path);
Chris Masone02119d2008-09-05 16:13:11 -04001197 if (ret)
1198 goto out;
1199
1200 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
1201 inode->i_ctime = dir->i_mtime = dir->i_ctime = CURRENT_TIME;
1202 btrfs_update_inode(trans, root, dir);
1203 btrfs_drop_nlink(inode);
1204 ret = btrfs_update_inode(trans, root, inode);
1205 dir->i_sb->s_dirt = 1;
1206out:
Chris Mason39279cc2007-06-12 06:35:45 -04001207 return ret;
1208}
1209
1210static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
1211{
1212 struct btrfs_root *root;
1213 struct btrfs_trans_handle *trans;
Josef Bacik7b128762008-07-24 12:17:14 -04001214 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001215 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05001216 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001217
1218 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001219
1220 ret = btrfs_check_free_space(root, 1, 1);
1221 if (ret)
1222 goto fail;
1223
Chris Mason39279cc2007-06-12 06:35:45 -04001224 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001225
Chris Mason39279cc2007-06-12 06:35:45 -04001226 btrfs_set_trans_block_group(trans, dir);
Chris Masone02119d2008-09-05 16:13:11 -04001227 ret = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
1228 dentry->d_name.name, dentry->d_name.len);
Josef Bacik7b128762008-07-24 12:17:14 -04001229
1230 if (inode->i_nlink == 0)
1231 ret = btrfs_orphan_add(trans, inode);
1232
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001233 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04001234
Chris Mason89ce8a62008-06-25 16:01:31 -04001235 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001236fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001237 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001238 return ret;
1239}
1240
1241static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
1242{
1243 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001244 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001245 int ret;
1246 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04001247 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05001248 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001249
Chris Mason925baed2008-06-25 16:01:30 -04001250 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
Yan134d4512007-10-25 15:49:25 -04001251 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04001252 }
Yan134d4512007-10-25 15:49:25 -04001253
Chris Mason1832a6d2007-12-21 16:27:21 -05001254 ret = btrfs_check_free_space(root, 1, 1);
1255 if (ret)
1256 goto fail;
1257
Chris Mason39279cc2007-06-12 06:35:45 -04001258 trans = btrfs_start_transaction(root, 1);
1259 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04001260
Josef Bacik7b128762008-07-24 12:17:14 -04001261 err = btrfs_orphan_add(trans, inode);
1262 if (err)
1263 goto fail_trans;
1264
Chris Mason39279cc2007-06-12 06:35:45 -04001265 /* now the directory is empty */
Chris Masone02119d2008-09-05 16:13:11 -04001266 err = btrfs_unlink_inode(trans, root, dir, dentry->d_inode,
1267 dentry->d_name.name, dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001268 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04001269 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001270 }
Chris Mason39544012007-12-12 14:38:19 -05001271
Josef Bacik7b128762008-07-24 12:17:14 -04001272fail_trans:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001273 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04001274 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001275fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001276 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05001277
Chris Mason39279cc2007-06-12 06:35:45 -04001278 if (ret && !err)
1279 err = ret;
1280 return err;
1281}
1282
Chris Mason39279cc2007-06-12 06:35:45 -04001283/*
Chris Mason39279cc2007-06-12 06:35:45 -04001284 * this can truncate away extent items, csum items and directory items.
1285 * It starts at a high offset and removes keys until it can't find
1286 * any higher than i_size.
1287 *
1288 * csum items that cross the new i_size are truncated to the new size
1289 * as well.
Josef Bacik7b128762008-07-24 12:17:14 -04001290 *
1291 * min_type is the minimum key type to truncate down to. If set to 0, this
1292 * will kill all the items on this inode, including the INODE_ITEM_KEY.
Chris Mason39279cc2007-06-12 06:35:45 -04001293 */
Chris Masone02119d2008-09-05 16:13:11 -04001294noinline int btrfs_truncate_inode_items(struct btrfs_trans_handle *trans,
1295 struct btrfs_root *root,
1296 struct inode *inode,
1297 u64 new_size, u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001298{
1299 int ret;
1300 struct btrfs_path *path;
1301 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001302 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001303 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04001304 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001305 struct btrfs_file_extent_item *fi;
1306 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04001307 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001308 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001309 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001310 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001311 int found_extent;
1312 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05001313 int pending_del_nr = 0;
1314 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04001315 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -04001316 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001317
Chris Masone02119d2008-09-05 16:13:11 -04001318 if (root->ref_cows)
1319 btrfs_drop_extent_cache(inode,
1320 new_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04001321 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04001322 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04001323 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04001324
Chris Mason39279cc2007-06-12 06:35:45 -04001325 /* FIXME, add redo link to tree so we don't leak on crash */
1326 key.objectid = inode->i_ino;
1327 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04001328 key.type = (u8)-1;
1329
Chris Mason85e21ba2008-01-29 15:11:36 -05001330 btrfs_init_path(path);
1331search_again:
1332 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1333 if (ret < 0) {
1334 goto error;
1335 }
1336 if (ret > 0) {
Chris Masone02119d2008-09-05 16:13:11 -04001337 /* there are no items in the tree for us to truncate, we're
1338 * done
1339 */
1340 if (path->slots[0] == 0) {
1341 ret = 0;
1342 goto error;
1343 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001344 path->slots[0]--;
1345 }
1346
Chris Mason39279cc2007-06-12 06:35:45 -04001347 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001348 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001349 leaf = path->nodes[0];
1350 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1351 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04001352
Chris Mason5f39d392007-10-15 16:14:19 -04001353 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04001354 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001355
Chris Mason85e21ba2008-01-29 15:11:36 -05001356 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001357 break;
1358
Chris Mason5f39d392007-10-15 16:14:19 -04001359 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001360 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04001361 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04001362 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04001363 extent_type = btrfs_file_extent_type(leaf, fi);
1364 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04001365 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04001366 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04001367 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1368 struct btrfs_item *item = btrfs_item_nr(leaf,
1369 path->slots[0]);
1370 item_end += btrfs_file_extent_inline_len(leaf,
1371 item);
Chris Mason39279cc2007-06-12 06:35:45 -04001372 }
Yan008630c2007-11-07 13:31:09 -05001373 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04001374 }
1375 if (found_type == BTRFS_CSUM_ITEM_KEY) {
1376 ret = btrfs_csum_truncate(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04001377 new_size);
Chris Mason39279cc2007-06-12 06:35:45 -04001378 BUG_ON(ret);
1379 }
Chris Masone02119d2008-09-05 16:13:11 -04001380 if (item_end < new_size) {
Chris Masonb888db22007-08-27 16:49:44 -04001381 if (found_type == BTRFS_DIR_ITEM_KEY) {
1382 found_type = BTRFS_INODE_ITEM_KEY;
1383 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
1384 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05001385 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
1386 found_type = BTRFS_XATTR_ITEM_KEY;
1387 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
1388 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04001389 } else if (found_type) {
1390 found_type--;
1391 } else {
1392 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001393 }
Yana61721d2007-09-17 11:08:38 -04001394 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05001395 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04001396 }
Chris Masone02119d2008-09-05 16:13:11 -04001397 if (found_key.offset >= new_size)
Chris Mason39279cc2007-06-12 06:35:45 -04001398 del_item = 1;
1399 else
1400 del_item = 0;
1401 found_extent = 0;
1402
1403 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001404 if (found_type != BTRFS_EXTENT_DATA_KEY)
1405 goto delete;
1406
1407 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001408 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001409 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001410 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001411 u64 orig_num_bytes =
1412 btrfs_file_extent_num_bytes(leaf, fi);
Chris Masone02119d2008-09-05 16:13:11 -04001413 extent_num_bytes = new_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001414 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05001415 extent_num_bytes = extent_num_bytes &
1416 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001417 btrfs_set_file_extent_num_bytes(leaf, fi,
1418 extent_num_bytes);
1419 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001420 extent_num_bytes);
Chris Masone02119d2008-09-05 16:13:11 -04001421 if (root->ref_cows && extent_start != 0)
Chris Mason90692182008-02-08 13:49:28 -05001422 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001423 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001424 } else {
Chris Masondb945352007-10-15 16:15:53 -04001425 extent_num_bytes =
1426 btrfs_file_extent_disk_num_bytes(leaf,
1427 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001428 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001429 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001430 if (extent_start != 0) {
1431 found_extent = 1;
Chris Masone02119d2008-09-05 16:13:11 -04001432 if (root->ref_cows)
1433 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001434 }
Chris Masone02119d2008-09-05 16:13:11 -04001435 if (root->ref_cows) {
1436 root_gen =
1437 btrfs_header_generation(leaf);
1438 }
Chris Masond8d5f3e2007-12-11 12:42:00 -05001439 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001440 }
Chris Mason90692182008-02-08 13:49:28 -05001441 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1442 if (!del_item) {
Chris Masone02119d2008-09-05 16:13:11 -04001443 u32 size = new_size - found_key.offset;
1444
1445 if (root->ref_cows) {
1446 dec_i_blocks(inode, item_end + 1 -
1447 found_key.offset - size);
1448 }
1449 size =
1450 btrfs_file_extent_calc_inline_size(size);
Chris Mason90692182008-02-08 13:49:28 -05001451 ret = btrfs_truncate_item(trans, root, path,
Chris Masone02119d2008-09-05 16:13:11 -04001452 size, 1);
Chris Mason90692182008-02-08 13:49:28 -05001453 BUG_ON(ret);
Chris Masone02119d2008-09-05 16:13:11 -04001454 } else if (root->ref_cows) {
Chris Mason90692182008-02-08 13:49:28 -05001455 dec_i_blocks(inode, item_end + 1 -
1456 found_key.offset);
1457 }
Chris Mason39279cc2007-06-12 06:35:45 -04001458 }
Chris Mason179e29e2007-11-01 11:28:41 -04001459delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001460 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001461 if (!pending_del_nr) {
1462 /* no pending yet, add ourselves */
1463 pending_del_slot = path->slots[0];
1464 pending_del_nr = 1;
1465 } else if (pending_del_nr &&
1466 path->slots[0] + 1 == pending_del_slot) {
1467 /* hop on the pending chunk */
1468 pending_del_nr++;
1469 pending_del_slot = path->slots[0];
1470 } else {
1471 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1472 }
Chris Mason39279cc2007-06-12 06:35:45 -04001473 } else {
1474 break;
1475 }
Chris Mason39279cc2007-06-12 06:35:45 -04001476 if (found_extent) {
1477 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001478 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -05001479 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001480 root_gen, inode->i_ino,
1481 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001482 BUG_ON(ret);
1483 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001484next:
1485 if (path->slots[0] == 0) {
1486 if (pending_del_nr)
1487 goto del_pending;
1488 btrfs_release_path(root, path);
1489 goto search_again;
1490 }
1491
1492 path->slots[0]--;
1493 if (pending_del_nr &&
1494 path->slots[0] + 1 != pending_del_slot) {
1495 struct btrfs_key debug;
1496del_pending:
1497 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1498 pending_del_slot);
1499 ret = btrfs_del_items(trans, root, path,
1500 pending_del_slot,
1501 pending_del_nr);
1502 BUG_ON(ret);
1503 pending_del_nr = 0;
1504 btrfs_release_path(root, path);
1505 goto search_again;
1506 }
Chris Mason39279cc2007-06-12 06:35:45 -04001507 }
1508 ret = 0;
1509error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001510 if (pending_del_nr) {
1511 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1512 pending_del_nr);
1513 }
Chris Mason39279cc2007-06-12 06:35:45 -04001514 btrfs_free_path(path);
1515 inode->i_sb->s_dirt = 1;
1516 return ret;
1517}
1518
Chris Masona52d9a82007-08-27 16:49:44 -04001519/*
1520 * taken from block_truncate_page, but does cow as it zeros out
1521 * any bytes left in the last page in the file.
1522 */
1523static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1524{
1525 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001526 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001527 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1528 struct btrfs_ordered_extent *ordered;
1529 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04001530 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001531 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1532 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1533 struct page *page;
1534 int ret = 0;
1535 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001536 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04001537
1538 if ((offset & (blocksize - 1)) == 0)
1539 goto out;
1540
1541 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04001542again:
Chris Masona52d9a82007-08-27 16:49:44 -04001543 page = grab_cache_page(mapping, index);
1544 if (!page)
1545 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001546
1547 page_start = page_offset(page);
1548 page_end = page_start + PAGE_CACHE_SIZE - 1;
1549
Chris Masona52d9a82007-08-27 16:49:44 -04001550 if (!PageUptodate(page)) {
1551 ret = btrfs_readpage(NULL, page);
1552 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04001553 if (page->mapping != mapping) {
1554 unlock_page(page);
1555 page_cache_release(page);
1556 goto again;
1557 }
Chris Masona52d9a82007-08-27 16:49:44 -04001558 if (!PageUptodate(page)) {
1559 ret = -EIO;
Chris Mason89642222008-07-24 09:41:53 -04001560 goto out_unlock;
Chris Masona52d9a82007-08-27 16:49:44 -04001561 }
1562 }
Chris Mason211c17f2008-05-15 09:13:45 -04001563 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001564
1565 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
1566 set_page_extent_mapped(page);
1567
1568 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1569 if (ordered) {
1570 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
1571 unlock_page(page);
1572 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04001573 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001574 btrfs_put_ordered_extent(ordered);
1575 goto again;
1576 }
1577
Chris Masonea8c2812008-08-04 23:17:27 -04001578 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001579 ret = 0;
1580 if (offset != PAGE_CACHE_SIZE) {
1581 kaddr = kmap(page);
1582 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
1583 flush_dcache_page(page);
1584 kunmap(page);
1585 }
Chris Mason247e7432008-07-17 12:53:51 -04001586 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001587 set_page_dirty(page);
1588 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001589
Chris Mason89642222008-07-24 09:41:53 -04001590out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04001591 unlock_page(page);
1592 page_cache_release(page);
1593out:
1594 return ret;
1595}
1596
1597static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1598{
1599 struct inode *inode = dentry->d_inode;
1600 int err;
1601
1602 err = inode_change_ok(inode, attr);
1603 if (err)
1604 return err;
1605
1606 if (S_ISREG(inode->i_mode) &&
1607 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1608 struct btrfs_trans_handle *trans;
1609 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001610 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001611
Chris Mason5f39d392007-10-15 16:14:19 -04001612 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001613 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001614 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001615 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001616 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001617
Chris Mason1b0f7c22008-01-30 14:33:02 -05001618 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001619 goto out;
1620
Chris Mason1832a6d2007-12-21 16:27:21 -05001621 err = btrfs_check_free_space(root, 1, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05001622 if (err)
1623 goto fail;
1624
Chris Mason39279cc2007-06-12 06:35:45 -04001625 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1626
Chris Mason5f564062008-01-22 16:47:59 -05001627 hole_size = block_end - hole_start;
Chris Mason7c2fe322008-08-20 08:51:50 -04001628 while(1) {
1629 struct btrfs_ordered_extent *ordered;
1630 btrfs_wait_ordered_range(inode, hole_start, hole_size);
1631
1632 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
1633 ordered = btrfs_lookup_ordered_extent(inode, hole_start);
1634 if (ordered) {
1635 unlock_extent(io_tree, hole_start,
1636 block_end - 1, GFP_NOFS);
1637 btrfs_put_ordered_extent(ordered);
1638 } else {
1639 break;
1640 }
1641 }
Chris Mason39279cc2007-06-12 06:35:45 -04001642
Chris Mason39279cc2007-06-12 06:35:45 -04001643 trans = btrfs_start_transaction(root, 1);
1644 btrfs_set_trans_block_group(trans, inode);
Chris Masonee6e6502008-07-17 12:54:40 -04001645 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -04001646 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001647 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001648 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001649
Chris Mason179e29e2007-11-01 11:28:41 -04001650 if (alloc_hint != EXTENT_MAP_INLINE) {
1651 err = btrfs_insert_file_extent(trans, root,
1652 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001653 hole_start, 0, 0,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001654 hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001655 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001656 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001657 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001658 }
Chris Masonee6e6502008-07-17 12:54:40 -04001659 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001660 btrfs_end_transaction(trans, root);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001661 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001662 if (err)
1663 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001664 }
1665out:
1666 err = inode_setattr(inode, attr);
Josef Bacik33268ea2008-07-24 12:16:36 -04001667
1668 if (!err && ((attr->ia_valid & ATTR_MODE)))
1669 err = btrfs_acl_chmod(inode);
Chris Mason1832a6d2007-12-21 16:27:21 -05001670fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001671 return err;
1672}
Chris Mason61295eb2008-01-14 16:24:38 -05001673
Chris Mason39279cc2007-06-12 06:35:45 -04001674void btrfs_delete_inode(struct inode *inode)
1675{
1676 struct btrfs_trans_handle *trans;
1677 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001678 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001679 int ret;
1680
1681 truncate_inode_pages(&inode->i_data, 0);
1682 if (is_bad_inode(inode)) {
Josef Bacik7b128762008-07-24 12:17:14 -04001683 btrfs_orphan_del(NULL, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001684 goto no_delete;
1685 }
Chris Mason4a096752008-07-21 10:29:44 -04001686 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason5f39d392007-10-15 16:14:19 -04001687
Chris Masondbe674a2008-07-17 12:54:05 -04001688 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001689 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001690
Chris Mason39279cc2007-06-12 06:35:45 -04001691 btrfs_set_trans_block_group(trans, inode);
Chris Masone02119d2008-09-05 16:13:11 -04001692 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size, 0);
Josef Bacik7b128762008-07-24 12:17:14 -04001693 if (ret) {
1694 btrfs_orphan_del(NULL, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04001695 goto no_delete_lock;
Josef Bacik7b128762008-07-24 12:17:14 -04001696 }
1697
1698 btrfs_orphan_del(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001699
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001700 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001701 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001702
Chris Mason39279cc2007-06-12 06:35:45 -04001703 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001704 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001705 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001706
1707no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001708 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001709 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001710 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001711no_delete:
1712 clear_inode(inode);
1713}
1714
1715/*
1716 * this returns the key found in the dir entry in the location pointer.
1717 * If no dir entries were found, location->objectid is 0.
1718 */
1719static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1720 struct btrfs_key *location)
1721{
1722 const char *name = dentry->d_name.name;
1723 int namelen = dentry->d_name.len;
1724 struct btrfs_dir_item *di;
1725 struct btrfs_path *path;
1726 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001727 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001728
1729 path = btrfs_alloc_path();
1730 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001731
Chris Mason39279cc2007-06-12 06:35:45 -04001732 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1733 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001734 if (IS_ERR(di))
1735 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001736 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001737 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001738 }
Chris Mason5f39d392007-10-15 16:14:19 -04001739 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001740out:
Chris Mason39279cc2007-06-12 06:35:45 -04001741 btrfs_free_path(path);
1742 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001743out_err:
1744 location->objectid = 0;
1745 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001746}
1747
1748/*
1749 * when we hit a tree root in a directory, the btrfs part of the inode
1750 * needs to be changed to reflect the root directory of the tree root. This
1751 * is kind of like crossing a mount point.
1752 */
1753static int fixup_tree_root_location(struct btrfs_root *root,
1754 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001755 struct btrfs_root **sub_root,
1756 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001757{
Chris Mason39279cc2007-06-12 06:35:45 -04001758 struct btrfs_root_item *ri;
1759
1760 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1761 return 0;
1762 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1763 return 0;
1764
Josef Bacik58176a92007-08-29 15:47:34 -04001765 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1766 dentry->d_name.name,
1767 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001768 if (IS_ERR(*sub_root))
1769 return PTR_ERR(*sub_root);
1770
1771 ri = &(*sub_root)->root_item;
1772 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001773 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1774 location->offset = 0;
1775
Chris Mason39279cc2007-06-12 06:35:45 -04001776 return 0;
1777}
1778
Chris Masone02119d2008-09-05 16:13:11 -04001779static noinline void init_btrfs_i(struct inode *inode)
Chris Mason39279cc2007-06-12 06:35:45 -04001780{
Chris Masone02119d2008-09-05 16:13:11 -04001781 struct btrfs_inode *bi = BTRFS_I(inode);
1782
1783 bi->i_acl = NULL;
1784 bi->i_default_acl = NULL;
1785
1786 bi->generation = 0;
1787 bi->last_trans = 0;
1788 bi->logged_trans = 0;
1789 bi->delalloc_bytes = 0;
1790 bi->disk_i_size = 0;
1791 bi->flags = 0;
1792 bi->index_cnt = (u64)-1;
Chris Masond1310b22008-01-24 16:13:08 -05001793 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1794 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001795 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001796 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1797 inode->i_mapping, GFP_NOFS);
Chris Masonea8c2812008-08-04 23:17:27 -04001798 INIT_LIST_HEAD(&BTRFS_I(inode)->delalloc_inodes);
Chris Masonba1da2f2008-07-17 12:54:15 -04001799 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04001800 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04001801 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Masone02119d2008-09-05 16:13:11 -04001802 mutex_init(&BTRFS_I(inode)->log_mutex);
1803}
1804
1805static int btrfs_init_locked_inode(struct inode *inode, void *p)
1806{
1807 struct btrfs_iget_args *args = p;
1808 inode->i_ino = args->ino;
1809 init_btrfs_i(inode);
1810 BTRFS_I(inode)->root = args->root;
Chris Mason39279cc2007-06-12 06:35:45 -04001811 return 0;
1812}
1813
1814static int btrfs_find_actor(struct inode *inode, void *opaque)
1815{
1816 struct btrfs_iget_args *args = opaque;
1817 return (args->ino == inode->i_ino &&
1818 args->root == BTRFS_I(inode)->root);
1819}
1820
Chris Masondc17ff82008-01-08 15:46:30 -05001821struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1822 u64 root_objectid)
1823{
1824 struct btrfs_iget_args args;
1825 args.ino = objectid;
1826 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1827
1828 if (!args.root)
1829 return NULL;
1830
1831 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1832}
1833
Chris Mason39279cc2007-06-12 06:35:45 -04001834struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1835 struct btrfs_root *root)
1836{
1837 struct inode *inode;
1838 struct btrfs_iget_args args;
1839 args.ino = objectid;
1840 args.root = root;
1841
1842 inode = iget5_locked(s, objectid, btrfs_find_actor,
1843 btrfs_init_locked_inode,
1844 (void *)&args);
1845 return inode;
1846}
1847
Balaji Rao1a54ef82008-07-21 02:01:04 +05301848/* Get an inode object given its location and corresponding root.
1849 * Returns in *is_new if the inode was read from disk
1850 */
1851struct inode *btrfs_iget(struct super_block *s, struct btrfs_key *location,
1852 struct btrfs_root *root, int *is_new)
1853{
1854 struct inode *inode;
1855
1856 inode = btrfs_iget_locked(s, location->objectid, root);
1857 if (!inode)
1858 return ERR_PTR(-EACCES);
1859
1860 if (inode->i_state & I_NEW) {
1861 BTRFS_I(inode)->root = root;
1862 memcpy(&BTRFS_I(inode)->location, location, sizeof(*location));
1863 btrfs_read_locked_inode(inode);
1864 unlock_new_inode(inode);
1865 if (is_new)
1866 *is_new = 1;
1867 } else {
1868 if (is_new)
1869 *is_new = 0;
1870 }
1871
1872 return inode;
1873}
1874
Chris Mason39279cc2007-06-12 06:35:45 -04001875static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1876 struct nameidata *nd)
1877{
1878 struct inode * inode;
1879 struct btrfs_inode *bi = BTRFS_I(dir);
1880 struct btrfs_root *root = bi->root;
1881 struct btrfs_root *sub_root = root;
1882 struct btrfs_key location;
Balaji Rao1a54ef82008-07-21 02:01:04 +05301883 int ret, new, do_orphan = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001884
1885 if (dentry->d_name.len > BTRFS_NAME_LEN)
1886 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001887
Chris Mason39279cc2007-06-12 06:35:45 -04001888 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001889
Chris Mason39279cc2007-06-12 06:35:45 -04001890 if (ret < 0)
1891 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001892
Chris Mason39279cc2007-06-12 06:35:45 -04001893 inode = NULL;
1894 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001895 ret = fixup_tree_root_location(root, &location, &sub_root,
1896 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001897 if (ret < 0)
1898 return ERR_PTR(ret);
1899 if (ret > 0)
1900 return ERR_PTR(-ENOENT);
Balaji Rao1a54ef82008-07-21 02:01:04 +05301901 inode = btrfs_iget(dir->i_sb, &location, sub_root, &new);
1902 if (IS_ERR(inode))
1903 return ERR_CAST(inode);
Josef Bacik7b128762008-07-24 12:17:14 -04001904
Balaji Rao1a54ef82008-07-21 02:01:04 +05301905 /* the inode and parent dir are two different roots */
1906 if (new && root != sub_root) {
1907 igrab(inode);
1908 sub_root->inode = inode;
1909 do_orphan = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001910 }
1911 }
Josef Bacik7b128762008-07-24 12:17:14 -04001912
1913 if (unlikely(do_orphan))
1914 btrfs_orphan_cleanup(sub_root);
1915
Chris Mason39279cc2007-06-12 06:35:45 -04001916 return d_splice_alias(inode, dentry);
1917}
1918
Chris Mason39279cc2007-06-12 06:35:45 -04001919static unsigned char btrfs_filetype_table[] = {
1920 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1921};
1922
David Woodhousecbdf5a22008-08-06 19:42:33 +01001923static int btrfs_real_readdir(struct file *filp, void *dirent,
1924 filldir_t filldir)
Chris Mason39279cc2007-06-12 06:35:45 -04001925{
Chris Mason6da6aba2007-12-18 16:15:09 -05001926 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001927 struct btrfs_root *root = BTRFS_I(inode)->root;
1928 struct btrfs_item *item;
1929 struct btrfs_dir_item *di;
1930 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001931 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001932 struct btrfs_path *path;
1933 int ret;
1934 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001935 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001936 int slot;
1937 int advance;
1938 unsigned char d_type;
1939 int over = 0;
1940 u32 di_cur;
1941 u32 di_total;
1942 u32 di_len;
1943 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001944 char tmp_name[32];
1945 char *name_ptr;
1946 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001947
1948 /* FIXME, use a real flag for deciding about the key type */
1949 if (root->fs_info->tree_root == root)
1950 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001951
Chris Mason39544012007-12-12 14:38:19 -05001952 /* special case for "." */
1953 if (filp->f_pos == 0) {
1954 over = filldir(dirent, ".", 1,
1955 1, inode->i_ino,
1956 DT_DIR);
1957 if (over)
1958 return 0;
1959 filp->f_pos = 1;
1960 }
Chris Mason39544012007-12-12 14:38:19 -05001961 /* special case for .., just use the back ref */
1962 if (filp->f_pos == 1) {
David Woodhouse5ecc7e52008-08-17 15:14:48 +01001963 u64 pino = parent_ino(filp->f_path.dentry);
Chris Mason39544012007-12-12 14:38:19 -05001964 over = filldir(dirent, "..", 2,
David Woodhouse5ecc7e52008-08-17 15:14:48 +01001965 2, pino, DT_DIR);
Chris Mason39544012007-12-12 14:38:19 -05001966 if (over)
David Woodhouse49593bf2008-08-17 17:08:36 +01001967 return 0;
Chris Mason39544012007-12-12 14:38:19 -05001968 filp->f_pos = 2;
1969 }
1970
David Woodhouse49593bf2008-08-17 17:08:36 +01001971 path = btrfs_alloc_path();
1972 path->reada = 2;
1973
Chris Mason39279cc2007-06-12 06:35:45 -04001974 btrfs_set_key_type(&key, key_type);
1975 key.offset = filp->f_pos;
David Woodhouse49593bf2008-08-17 17:08:36 +01001976 key.objectid = inode->i_ino;
Chris Mason5f39d392007-10-15 16:14:19 -04001977
Chris Mason39279cc2007-06-12 06:35:45 -04001978 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1979 if (ret < 0)
1980 goto err;
1981 advance = 0;
David Woodhouse49593bf2008-08-17 17:08:36 +01001982
1983 while (1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001984 leaf = path->nodes[0];
1985 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001986 slot = path->slots[0];
1987 if (advance || slot >= nritems) {
David Woodhouse49593bf2008-08-17 17:08:36 +01001988 if (slot >= nritems - 1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001989 ret = btrfs_next_leaf(root, path);
1990 if (ret)
1991 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001992 leaf = path->nodes[0];
1993 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001994 slot = path->slots[0];
1995 } else {
1996 slot++;
1997 path->slots[0]++;
1998 }
1999 }
2000 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002001 item = btrfs_item_nr(leaf, slot);
2002 btrfs_item_key_to_cpu(leaf, &found_key, slot);
2003
2004 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04002005 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002006 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04002007 break;
Chris Mason5f39d392007-10-15 16:14:19 -04002008 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04002009 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04002010
2011 filp->f_pos = found_key.offset;
David Woodhouse49593bf2008-08-17 17:08:36 +01002012
Chris Mason39279cc2007-06-12 06:35:45 -04002013 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
2014 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002015 di_total = btrfs_item_size(leaf, item);
David Woodhouse49593bf2008-08-17 17:08:36 +01002016
2017 while (di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04002018 struct btrfs_key location;
2019
2020 name_len = btrfs_dir_name_len(leaf, di);
David Woodhouse49593bf2008-08-17 17:08:36 +01002021 if (name_len <= sizeof(tmp_name)) {
Chris Mason5f39d392007-10-15 16:14:19 -04002022 name_ptr = tmp_name;
2023 } else {
2024 name_ptr = kmalloc(name_len, GFP_NOFS);
David Woodhouse49593bf2008-08-17 17:08:36 +01002025 if (!name_ptr) {
2026 ret = -ENOMEM;
2027 goto err;
2028 }
Chris Mason5f39d392007-10-15 16:14:19 -04002029 }
2030 read_extent_buffer(leaf, name_ptr,
2031 (unsigned long)(di + 1), name_len);
2032
2033 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
2034 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04002035 over = filldir(dirent, name_ptr, name_len,
David Woodhouse49593bf2008-08-17 17:08:36 +01002036 found_key.offset, location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002037 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04002038
2039 if (name_ptr != tmp_name)
2040 kfree(name_ptr);
2041
Chris Mason39279cc2007-06-12 06:35:45 -04002042 if (over)
2043 goto nopos;
David Woodhouse49593bf2008-08-17 17:08:36 +01002044
Josef Bacik5103e942007-11-16 11:45:54 -05002045 di_len = btrfs_dir_name_len(leaf, di) +
David Woodhouse49593bf2008-08-17 17:08:36 +01002046 btrfs_dir_data_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04002047 di_cur += di_len;
2048 di = (struct btrfs_dir_item *)((char *)di + di_len);
2049 }
2050 }
David Woodhouse49593bf2008-08-17 17:08:36 +01002051
2052 /* Reached end of directory/root. Bump pos past the last item. */
Yan Zheng5e591a02008-02-19 11:41:02 -05002053 if (key_type == BTRFS_DIR_INDEX_KEY)
2054 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
2055 else
2056 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04002057nopos:
2058 ret = 0;
2059err:
Chris Mason39279cc2007-06-12 06:35:45 -04002060 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04002061 return ret;
2062}
2063
David Woodhousecbdf5a22008-08-06 19:42:33 +01002064/* Kernels earlier than 2.6.28 still have the NFS deadlock where nfsd
2065 will call the file system's ->lookup() method from within its
2066 filldir callback, which in turn was called from the file system's
2067 ->readdir() method. And will deadlock for many file systems. */
2068#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
2069
2070struct nfshack_dirent {
2071 u64 ino;
2072 loff_t offset;
2073 int namlen;
2074 unsigned int d_type;
2075 char name[];
2076};
2077
2078struct nfshack_readdir {
2079 char *dirent;
2080 size_t used;
David Woodhousef2322b12008-08-17 17:12:56 +01002081 int full;
David Woodhousecbdf5a22008-08-06 19:42:33 +01002082};
2083
2084
2085
2086static int btrfs_nfshack_filldir(void *__buf, const char *name, int namlen,
2087 loff_t offset, u64 ino, unsigned int d_type)
2088{
2089 struct nfshack_readdir *buf = __buf;
2090 struct nfshack_dirent *de = (void *)(buf->dirent + buf->used);
2091 unsigned int reclen;
2092
2093 reclen = ALIGN(sizeof(struct nfshack_dirent) + namlen, sizeof(u64));
David Woodhousef2322b12008-08-17 17:12:56 +01002094 if (buf->used + reclen > PAGE_SIZE) {
2095 buf->full = 1;
David Woodhousecbdf5a22008-08-06 19:42:33 +01002096 return -EINVAL;
David Woodhousef2322b12008-08-17 17:12:56 +01002097 }
David Woodhousecbdf5a22008-08-06 19:42:33 +01002098
2099 de->namlen = namlen;
2100 de->offset = offset;
2101 de->ino = ino;
2102 de->d_type = d_type;
2103 memcpy(de->name, name, namlen);
2104 buf->used += reclen;
2105
2106 return 0;
2107}
2108
2109static int btrfs_nfshack_readdir(struct file *file, void *dirent,
2110 filldir_t filldir)
2111{
2112 struct nfshack_readdir buf;
2113 struct nfshack_dirent *de;
2114 int err;
2115 int size;
2116 loff_t offset;
2117
2118 buf.dirent = (void *)__get_free_page(GFP_KERNEL);
2119 if (!buf.dirent)
2120 return -ENOMEM;
2121
2122 offset = file->f_pos;
2123
David Woodhousef2322b12008-08-17 17:12:56 +01002124 do {
David Woodhousecbdf5a22008-08-06 19:42:33 +01002125 unsigned int reclen;
2126
2127 buf.used = 0;
David Woodhousef2322b12008-08-17 17:12:56 +01002128 buf.full = 0;
David Woodhousecbdf5a22008-08-06 19:42:33 +01002129 err = btrfs_real_readdir(file, &buf, btrfs_nfshack_filldir);
2130 if (err)
2131 break;
2132
2133 size = buf.used;
2134
2135 if (!size)
2136 break;
2137
2138 de = (struct nfshack_dirent *)buf.dirent;
2139 while (size > 0) {
2140 offset = de->offset;
2141
2142 if (filldir(dirent, de->name, de->namlen, de->offset,
2143 de->ino, de->d_type))
2144 goto done;
2145 offset = file->f_pos;
2146
2147 reclen = ALIGN(sizeof(*de) + de->namlen,
2148 sizeof(u64));
2149 size -= reclen;
2150 de = (struct nfshack_dirent *)((char *)de + reclen);
2151 }
David Woodhousef2322b12008-08-17 17:12:56 +01002152 } while (buf.full);
David Woodhousecbdf5a22008-08-06 19:42:33 +01002153
2154 done:
2155 free_page((unsigned long)buf.dirent);
2156 file->f_pos = offset;
2157
2158 return err;
2159}
2160#endif
2161
Chris Mason39279cc2007-06-12 06:35:45 -04002162int btrfs_write_inode(struct inode *inode, int wait)
2163{
2164 struct btrfs_root *root = BTRFS_I(inode)->root;
2165 struct btrfs_trans_handle *trans;
2166 int ret = 0;
2167
Chris Mason4ca8b412008-08-05 13:30:48 -04002168 if (root->fs_info->closing > 1)
2169 return 0;
2170
Chris Mason39279cc2007-06-12 06:35:45 -04002171 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04002172 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002173 btrfs_set_trans_block_group(trans, inode);
2174 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04002175 }
2176 return ret;
2177}
2178
2179/*
Chris Mason54aa1f42007-06-22 14:16:25 -04002180 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04002181 * inode changes. But, it is most likely to find the inode in cache.
2182 * FIXME, needs more benchmarking...there are no reasons other than performance
2183 * to keep or drop this code.
2184 */
2185void btrfs_dirty_inode(struct inode *inode)
2186{
2187 struct btrfs_root *root = BTRFS_I(inode)->root;
2188 struct btrfs_trans_handle *trans;
2189
Chris Masonf9295742008-07-17 12:54:14 -04002190 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002191 btrfs_set_trans_block_group(trans, inode);
2192 btrfs_update_inode(trans, root, inode);
2193 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04002194}
2195
Josef Bacikaec74772008-07-24 12:12:38 -04002196static int btrfs_set_inode_index_count(struct inode *inode)
2197{
2198 struct btrfs_root *root = BTRFS_I(inode)->root;
2199 struct btrfs_key key, found_key;
2200 struct btrfs_path *path;
2201 struct extent_buffer *leaf;
2202 int ret;
2203
2204 key.objectid = inode->i_ino;
2205 btrfs_set_key_type(&key, BTRFS_DIR_INDEX_KEY);
2206 key.offset = (u64)-1;
2207
2208 path = btrfs_alloc_path();
2209 if (!path)
2210 return -ENOMEM;
2211
2212 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2213 if (ret < 0)
2214 goto out;
2215 /* FIXME: we should be able to handle this */
2216 if (ret == 0)
2217 goto out;
2218 ret = 0;
2219
2220 /*
2221 * MAGIC NUMBER EXPLANATION:
2222 * since we search a directory based on f_pos we have to start at 2
2223 * since '.' and '..' have f_pos of 0 and 1 respectively, so everybody
2224 * else has to start at 2
2225 */
2226 if (path->slots[0] == 0) {
2227 BTRFS_I(inode)->index_cnt = 2;
2228 goto out;
2229 }
2230
2231 path->slots[0]--;
2232
2233 leaf = path->nodes[0];
2234 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2235
2236 if (found_key.objectid != inode->i_ino ||
2237 btrfs_key_type(&found_key) != BTRFS_DIR_INDEX_KEY) {
2238 BTRFS_I(inode)->index_cnt = 2;
2239 goto out;
2240 }
2241
2242 BTRFS_I(inode)->index_cnt = found_key.offset + 1;
2243out:
2244 btrfs_free_path(path);
2245 return ret;
2246}
2247
Chris Mason00e4e6b2008-08-05 11:18:09 -04002248static int btrfs_set_inode_index(struct inode *dir, struct inode *inode,
2249 u64 *index)
Josef Bacikaec74772008-07-24 12:12:38 -04002250{
2251 int ret = 0;
2252
2253 if (BTRFS_I(dir)->index_cnt == (u64)-1) {
2254 ret = btrfs_set_inode_index_count(dir);
2255 if (ret)
2256 return ret;
2257 }
2258
Chris Mason00e4e6b2008-08-05 11:18:09 -04002259 *index = BTRFS_I(dir)->index_cnt;
Josef Bacikaec74772008-07-24 12:12:38 -04002260 BTRFS_I(dir)->index_cnt++;
2261
2262 return ret;
2263}
2264
Chris Mason39279cc2007-06-12 06:35:45 -04002265static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
2266 struct btrfs_root *root,
Josef Bacikaec74772008-07-24 12:12:38 -04002267 struct inode *dir,
Chris Mason9c583092008-01-29 15:15:18 -05002268 const char *name, int name_len,
2269 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002270 u64 objectid,
2271 struct btrfs_block_group_cache *group,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002272 int mode, u64 *index)
Chris Mason39279cc2007-06-12 06:35:45 -04002273{
2274 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04002275 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04002276 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04002277 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04002278 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05002279 struct btrfs_inode_ref *ref;
2280 struct btrfs_key key[2];
2281 u32 sizes[2];
2282 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04002283 int ret;
2284 int owner;
2285
Chris Mason5f39d392007-10-15 16:14:19 -04002286 path = btrfs_alloc_path();
2287 BUG_ON(!path);
2288
Chris Mason39279cc2007-06-12 06:35:45 -04002289 inode = new_inode(root->fs_info->sb);
2290 if (!inode)
2291 return ERR_PTR(-ENOMEM);
2292
Josef Bacikaec74772008-07-24 12:12:38 -04002293 if (dir) {
Chris Mason00e4e6b2008-08-05 11:18:09 -04002294 ret = btrfs_set_inode_index(dir, inode, index);
Josef Bacikaec74772008-07-24 12:12:38 -04002295 if (ret)
2296 return ERR_PTR(ret);
Josef Bacikaec74772008-07-24 12:12:38 -04002297 }
2298 /*
2299 * index_cnt is ignored for everything but a dir,
2300 * btrfs_get_inode_index_count has an explanation for the magic
2301 * number
2302 */
Chris Masone02119d2008-09-05 16:13:11 -04002303 init_btrfs_i(inode);
Josef Bacikaec74772008-07-24 12:12:38 -04002304 BTRFS_I(inode)->index_cnt = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04002305 BTRFS_I(inode)->root = root;
Chris Masone02119d2008-09-05 16:13:11 -04002306 BTRFS_I(inode)->generation = trans->transid;
Chris Masonb888db22007-08-27 16:49:44 -04002307
Chris Mason39279cc2007-06-12 06:35:45 -04002308 if (mode & S_IFDIR)
2309 owner = 0;
2310 else
2311 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04002312 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04002313 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04002314 if (!new_inode_group) {
2315 printk("find_block group failed\n");
2316 new_inode_group = group;
2317 }
2318 BTRFS_I(inode)->block_group = new_inode_group;
Chris Mason9c583092008-01-29 15:15:18 -05002319
2320 key[0].objectid = objectid;
2321 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
2322 key[0].offset = 0;
2323
2324 key[1].objectid = objectid;
2325 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
2326 key[1].offset = ref_objectid;
2327
2328 sizes[0] = sizeof(struct btrfs_inode_item);
2329 sizes[1] = name_len + sizeof(*ref);
2330
2331 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
2332 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04002333 goto fail;
2334
Chris Mason9c583092008-01-29 15:15:18 -05002335 if (objectid > root->highest_inode)
2336 root->highest_inode = objectid;
2337
Chris Mason39279cc2007-06-12 06:35:45 -04002338 inode->i_uid = current->fsuid;
2339 inode->i_gid = current->fsgid;
2340 inode->i_mode = mode;
2341 inode->i_ino = objectid;
2342 inode->i_blocks = 0;
2343 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04002344 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
2345 struct btrfs_inode_item);
Chris Masone02119d2008-09-05 16:13:11 -04002346 fill_inode_item(trans, path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002347
2348 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
2349 struct btrfs_inode_ref);
2350 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
Chris Mason00e4e6b2008-08-05 11:18:09 -04002351 btrfs_set_inode_ref_index(path->nodes[0], ref, *index);
Chris Mason9c583092008-01-29 15:15:18 -05002352 ptr = (unsigned long)(ref + 1);
2353 write_extent_buffer(path->nodes[0], name, ptr, name_len);
2354
Chris Mason5f39d392007-10-15 16:14:19 -04002355 btrfs_mark_buffer_dirty(path->nodes[0]);
2356 btrfs_free_path(path);
2357
Chris Mason39279cc2007-06-12 06:35:45 -04002358 location = &BTRFS_I(inode)->location;
2359 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04002360 location->offset = 0;
2361 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
2362
Chris Mason39279cc2007-06-12 06:35:45 -04002363 insert_inode_hash(inode);
2364 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04002365fail:
Josef Bacikaec74772008-07-24 12:12:38 -04002366 if (dir)
2367 BTRFS_I(dir)->index_cnt--;
Chris Mason5f39d392007-10-15 16:14:19 -04002368 btrfs_free_path(path);
2369 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04002370}
2371
2372static inline u8 btrfs_inode_type(struct inode *inode)
2373{
2374 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
2375}
2376
Chris Masone02119d2008-09-05 16:13:11 -04002377int btrfs_add_link(struct btrfs_trans_handle *trans,
2378 struct inode *parent_inode, struct inode *inode,
2379 const char *name, int name_len, int add_backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04002380{
2381 int ret;
2382 struct btrfs_key key;
Chris Masone02119d2008-09-05 16:13:11 -04002383 struct btrfs_root *root = BTRFS_I(parent_inode)->root;
Chris Mason5f39d392007-10-15 16:14:19 -04002384
Chris Mason39279cc2007-06-12 06:35:45 -04002385 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04002386 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
2387 key.offset = 0;
2388
Chris Masone02119d2008-09-05 16:13:11 -04002389 ret = btrfs_insert_dir_item(trans, root, name, name_len,
2390 parent_inode->i_ino,
Josef Bacikaec74772008-07-24 12:12:38 -04002391 &key, btrfs_inode_type(inode),
Chris Mason00e4e6b2008-08-05 11:18:09 -04002392 index);
Chris Mason39279cc2007-06-12 06:35:45 -04002393 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05002394 if (add_backref) {
2395 ret = btrfs_insert_inode_ref(trans, root,
Chris Masone02119d2008-09-05 16:13:11 -04002396 name, name_len,
2397 inode->i_ino,
2398 parent_inode->i_ino,
2399 index);
Chris Mason9c583092008-01-29 15:15:18 -05002400 }
Chris Masondbe674a2008-07-17 12:54:05 -04002401 btrfs_i_size_write(parent_inode, parent_inode->i_size +
Chris Masone02119d2008-09-05 16:13:11 -04002402 name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04002403 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04002404 ret = btrfs_update_inode(trans, root, parent_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002405 }
2406 return ret;
2407}
2408
2409static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05002410 struct dentry *dentry, struct inode *inode,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002411 int backref, u64 index)
Chris Mason39279cc2007-06-12 06:35:45 -04002412{
Chris Masone02119d2008-09-05 16:13:11 -04002413 int err = btrfs_add_link(trans, dentry->d_parent->d_inode,
2414 inode, dentry->d_name.name,
2415 dentry->d_name.len, backref, index);
Chris Mason39279cc2007-06-12 06:35:45 -04002416 if (!err) {
2417 d_instantiate(dentry, inode);
2418 return 0;
2419 }
2420 if (err > 0)
2421 err = -EEXIST;
2422 return err;
2423}
2424
Josef Bacik618e21d2007-07-11 10:18:17 -04002425static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
2426 int mode, dev_t rdev)
2427{
2428 struct btrfs_trans_handle *trans;
2429 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002430 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04002431 int err;
2432 int drop_inode = 0;
2433 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05002434 unsigned long nr = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002435 u64 index = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04002436
2437 if (!new_valid_dev(rdev))
2438 return -EINVAL;
2439
Chris Mason1832a6d2007-12-21 16:27:21 -05002440 err = btrfs_check_free_space(root, 1, 0);
2441 if (err)
2442 goto fail;
2443
Josef Bacik618e21d2007-07-11 10:18:17 -04002444 trans = btrfs_start_transaction(root, 1);
2445 btrfs_set_trans_block_group(trans, dir);
2446
2447 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2448 if (err) {
2449 err = -ENOSPC;
2450 goto out_unlock;
2451 }
2452
Josef Bacikaec74772008-07-24 12:12:38 -04002453 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05002454 dentry->d_name.len,
2455 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002456 BTRFS_I(dir)->block_group, mode, &index);
Josef Bacik618e21d2007-07-11 10:18:17 -04002457 err = PTR_ERR(inode);
2458 if (IS_ERR(inode))
2459 goto out_unlock;
2460
Josef Bacik33268ea2008-07-24 12:16:36 -04002461 err = btrfs_init_acl(inode, dir);
2462 if (err) {
2463 drop_inode = 1;
2464 goto out_unlock;
2465 }
2466
Josef Bacik618e21d2007-07-11 10:18:17 -04002467 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04002468 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Josef Bacik618e21d2007-07-11 10:18:17 -04002469 if (err)
2470 drop_inode = 1;
2471 else {
2472 inode->i_op = &btrfs_special_inode_operations;
2473 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04002474 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04002475 }
2476 dir->i_sb->s_dirt = 1;
2477 btrfs_update_inode_block_group(trans, inode);
2478 btrfs_update_inode_block_group(trans, dir);
2479out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002480 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002481 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002482fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04002483 if (drop_inode) {
2484 inode_dec_link_count(inode);
2485 iput(inode);
2486 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002487 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04002488 return err;
2489}
2490
Chris Mason39279cc2007-06-12 06:35:45 -04002491static int btrfs_create(struct inode *dir, struct dentry *dentry,
2492 int mode, struct nameidata *nd)
2493{
2494 struct btrfs_trans_handle *trans;
2495 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002496 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002497 int err;
2498 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05002499 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002500 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002501 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002502
Chris Mason1832a6d2007-12-21 16:27:21 -05002503 err = btrfs_check_free_space(root, 1, 0);
2504 if (err)
2505 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002506 trans = btrfs_start_transaction(root, 1);
2507 btrfs_set_trans_block_group(trans, dir);
2508
2509 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2510 if (err) {
2511 err = -ENOSPC;
2512 goto out_unlock;
2513 }
2514
Josef Bacikaec74772008-07-24 12:12:38 -04002515 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05002516 dentry->d_name.len,
2517 dentry->d_parent->d_inode->i_ino,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002518 objectid, BTRFS_I(dir)->block_group, mode,
2519 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04002520 err = PTR_ERR(inode);
2521 if (IS_ERR(inode))
2522 goto out_unlock;
2523
Josef Bacik33268ea2008-07-24 12:16:36 -04002524 err = btrfs_init_acl(inode, dir);
2525 if (err) {
2526 drop_inode = 1;
2527 goto out_unlock;
2528 }
2529
Chris Mason39279cc2007-06-12 06:35:45 -04002530 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04002531 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04002532 if (err)
2533 drop_inode = 1;
2534 else {
2535 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002536 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002537 inode->i_fop = &btrfs_file_operations;
2538 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05002539 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002540 }
2541 dir->i_sb->s_dirt = 1;
2542 btrfs_update_inode_block_group(trans, inode);
2543 btrfs_update_inode_block_group(trans, dir);
2544out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002545 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04002546 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002547fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002548 if (drop_inode) {
2549 inode_dec_link_count(inode);
2550 iput(inode);
2551 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002552 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002553 return err;
2554}
2555
2556static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
2557 struct dentry *dentry)
2558{
2559 struct btrfs_trans_handle *trans;
2560 struct btrfs_root *root = BTRFS_I(dir)->root;
2561 struct inode *inode = old_dentry->d_inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002562 u64 index;
Chris Mason1832a6d2007-12-21 16:27:21 -05002563 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002564 int err;
2565 int drop_inode = 0;
2566
2567 if (inode->i_nlink == 0)
2568 return -ENOENT;
2569
Chris Masone02119d2008-09-05 16:13:11 -04002570 btrfs_inc_nlink(inode);
Chris Mason1832a6d2007-12-21 16:27:21 -05002571 err = btrfs_check_free_space(root, 1, 0);
2572 if (err)
2573 goto fail;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002574 err = btrfs_set_inode_index(dir, inode, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04002575 if (err)
2576 goto fail;
2577
Chris Mason39279cc2007-06-12 06:35:45 -04002578 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002579
Chris Mason39279cc2007-06-12 06:35:45 -04002580 btrfs_set_trans_block_group(trans, dir);
2581 atomic_inc(&inode->i_count);
Josef Bacikaec74772008-07-24 12:12:38 -04002582
Chris Mason00e4e6b2008-08-05 11:18:09 -04002583 err = btrfs_add_nondir(trans, dentry, inode, 1, index);
Chris Mason5f39d392007-10-15 16:14:19 -04002584
Chris Mason39279cc2007-06-12 06:35:45 -04002585 if (err)
2586 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002587
Chris Mason39279cc2007-06-12 06:35:45 -04002588 dir->i_sb->s_dirt = 1;
2589 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002590 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002591
Chris Mason54aa1f42007-06-22 14:16:25 -04002592 if (err)
2593 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002594
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002595 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04002596 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002597fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002598 if (drop_inode) {
2599 inode_dec_link_count(inode);
2600 iput(inode);
2601 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002602 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002603 return err;
2604}
2605
Chris Mason39279cc2007-06-12 06:35:45 -04002606static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2607{
Chris Masonb9d86662008-05-02 16:13:49 -04002608 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002609 struct btrfs_trans_handle *trans;
2610 struct btrfs_root *root = BTRFS_I(dir)->root;
2611 int err = 0;
2612 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04002613 u64 objectid = 0;
Chris Mason00e4e6b2008-08-05 11:18:09 -04002614 u64 index = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002615 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002616
Chris Mason1832a6d2007-12-21 16:27:21 -05002617 err = btrfs_check_free_space(root, 1, 0);
2618 if (err)
2619 goto out_unlock;
2620
Chris Mason39279cc2007-06-12 06:35:45 -04002621 trans = btrfs_start_transaction(root, 1);
2622 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002623
Chris Mason39279cc2007-06-12 06:35:45 -04002624 if (IS_ERR(trans)) {
2625 err = PTR_ERR(trans);
2626 goto out_unlock;
2627 }
2628
2629 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2630 if (err) {
2631 err = -ENOSPC;
2632 goto out_unlock;
2633 }
2634
Josef Bacikaec74772008-07-24 12:12:38 -04002635 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05002636 dentry->d_name.len,
2637 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04002638 BTRFS_I(dir)->block_group, S_IFDIR | mode,
2639 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04002640 if (IS_ERR(inode)) {
2641 err = PTR_ERR(inode);
2642 goto out_fail;
2643 }
Chris Mason5f39d392007-10-15 16:14:19 -04002644
Chris Mason39279cc2007-06-12 06:35:45 -04002645 drop_on_err = 1;
Josef Bacik33268ea2008-07-24 12:16:36 -04002646
2647 err = btrfs_init_acl(inode, dir);
2648 if (err)
2649 goto out_fail;
2650
Chris Mason39279cc2007-06-12 06:35:45 -04002651 inode->i_op = &btrfs_dir_inode_operations;
2652 inode->i_fop = &btrfs_dir_file_operations;
2653 btrfs_set_trans_block_group(trans, inode);
2654
Chris Masondbe674a2008-07-17 12:54:05 -04002655 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002656 err = btrfs_update_inode(trans, root, inode);
2657 if (err)
2658 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002659
Chris Masone02119d2008-09-05 16:13:11 -04002660 err = btrfs_add_link(trans, dentry->d_parent->d_inode,
2661 inode, dentry->d_name.name,
2662 dentry->d_name.len, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04002663 if (err)
2664 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002665
Chris Mason39279cc2007-06-12 06:35:45 -04002666 d_instantiate(dentry, inode);
2667 drop_on_err = 0;
2668 dir->i_sb->s_dirt = 1;
2669 btrfs_update_inode_block_group(trans, inode);
2670 btrfs_update_inode_block_group(trans, dir);
2671
2672out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002673 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04002674 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002675
Chris Mason39279cc2007-06-12 06:35:45 -04002676out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002677 if (drop_on_err)
2678 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002679 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002680 return err;
2681}
2682
Chris Mason3b951512008-04-17 11:29:12 -04002683static int merge_extent_mapping(struct extent_map_tree *em_tree,
2684 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002685 struct extent_map *em,
2686 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04002687{
2688 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04002689
Chris Masone6dcd2d2008-07-17 12:53:50 -04002690 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
2691 start_diff = map_start - em->start;
2692 em->start = map_start;
2693 em->len = map_len;
2694 if (em->block_start < EXTENT_MAP_LAST_BYTE)
2695 em->block_start += start_diff;
2696 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002697}
2698
Chris Masona52d9a82007-08-27 16:49:44 -04002699struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002700 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002701 int create)
2702{
2703 int ret;
2704 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002705 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002706 u64 extent_start = 0;
2707 u64 extent_end = 0;
2708 u64 objectid = inode->i_ino;
2709 u32 found_type;
Chris Masonf4219502008-07-22 11:18:09 -04002710 struct btrfs_path *path = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04002711 struct btrfs_root *root = BTRFS_I(inode)->root;
2712 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002713 struct extent_buffer *leaf;
2714 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002715 struct extent_map *em = NULL;
2716 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002717 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002718 struct btrfs_trans_handle *trans = NULL;
2719
Chris Masona52d9a82007-08-27 16:49:44 -04002720again:
Chris Masond1310b22008-01-24 16:13:08 -05002721 spin_lock(&em_tree->lock);
2722 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04002723 if (em)
2724 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002725 spin_unlock(&em_tree->lock);
2726
Chris Masona52d9a82007-08-27 16:49:44 -04002727 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04002728 if (em->start > start || em->start + em->len <= start)
2729 free_extent_map(em);
2730 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05002731 free_extent_map(em);
2732 else
2733 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002734 }
Chris Masond1310b22008-01-24 16:13:08 -05002735 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002736 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002737 err = -ENOMEM;
2738 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002739 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002740 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002741 em->start = EXTENT_MAP_HOLE;
2742 em->len = (u64)-1;
Chris Masonf4219502008-07-22 11:18:09 -04002743
2744 if (!path) {
2745 path = btrfs_alloc_path();
2746 BUG_ON(!path);
2747 }
2748
Chris Mason179e29e2007-11-01 11:28:41 -04002749 ret = btrfs_lookup_file_extent(trans, root, path,
2750 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002751 if (ret < 0) {
2752 err = ret;
2753 goto out;
2754 }
2755
2756 if (ret != 0) {
2757 if (path->slots[0] == 0)
2758 goto not_found;
2759 path->slots[0]--;
2760 }
2761
Chris Mason5f39d392007-10-15 16:14:19 -04002762 leaf = path->nodes[0];
2763 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002764 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002765 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002766 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2767 found_type = btrfs_key_type(&found_key);
2768 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002769 found_type != BTRFS_EXTENT_DATA_KEY) {
2770 goto not_found;
2771 }
2772
Chris Mason5f39d392007-10-15 16:14:19 -04002773 found_type = btrfs_file_extent_type(leaf, item);
2774 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002775 if (found_type == BTRFS_FILE_EXTENT_REG) {
2776 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002777 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002778 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04002779 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002780 em->start = start;
2781 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002782 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002783 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002784 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002785 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002786 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002787 }
2788 goto not_found_em;
2789 }
Chris Masondb945352007-10-15 16:15:53 -04002790 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2791 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002792 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002793 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002794 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002795 goto insert;
2796 }
Chris Masondb945352007-10-15 16:15:53 -04002797 bytenr += btrfs_file_extent_offset(leaf, item);
2798 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002799 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002800 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002801 goto insert;
2802 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002803 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002804 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002805 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002806 size_t size;
2807 size_t extent_offset;
2808 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002809
Chris Mason5f39d392007-10-15 16:14:19 -04002810 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2811 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002812 extent_end = (extent_start + size + root->sectorsize - 1) &
2813 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002814 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002815 em->start = start;
2816 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002817 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002818 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002819 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002820 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002821 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002822 }
2823 goto not_found_em;
2824 }
2825 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002826
2827 if (!page) {
2828 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002829 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002830 goto out;
2831 }
2832
Chris Mason70dec802008-01-29 09:59:12 -05002833 page_start = page_offset(page) + pg_offset;
2834 extent_offset = page_start - extent_start;
2835 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002836 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002837 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002838 em->len = (copy_size + root->sectorsize - 1) &
2839 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002840 map = kmap(page);
2841 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002842 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002843 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002844 copy_size);
2845 flush_dcache_page(page);
2846 } else if (create && PageUptodate(page)) {
2847 if (!trans) {
2848 kunmap(page);
2849 free_extent_map(em);
2850 em = NULL;
2851 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04002852 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04002853 goto again;
2854 }
Chris Mason70dec802008-01-29 09:59:12 -05002855 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002856 copy_size);
2857 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002858 }
Chris Masona52d9a82007-08-27 16:49:44 -04002859 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002860 set_extent_uptodate(io_tree, em->start,
2861 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002862 goto insert;
2863 } else {
2864 printk("unkknown found_type %d\n", found_type);
2865 WARN_ON(1);
2866 }
2867not_found:
2868 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002869 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002870not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002871 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002872insert:
2873 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002874 if (em->start > start || extent_map_end(em) <= start) {
2875 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002876 err = -EIO;
2877 goto out;
2878 }
Chris Masond1310b22008-01-24 16:13:08 -05002879
2880 err = 0;
2881 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002882 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002883 /* it is possible that someone inserted the extent into the tree
2884 * while we had the lock dropped. It is also possible that
2885 * an overlapping map exists in the tree
2886 */
Chris Masona52d9a82007-08-27 16:49:44 -04002887 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002888 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002889
2890 ret = 0;
2891
Chris Mason3b951512008-04-17 11:29:12 -04002892 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002893 if (existing && (existing->start > start ||
2894 existing->start + existing->len <= start)) {
2895 free_extent_map(existing);
2896 existing = NULL;
2897 }
Chris Mason3b951512008-04-17 11:29:12 -04002898 if (!existing) {
2899 existing = lookup_extent_mapping(em_tree, em->start,
2900 em->len);
2901 if (existing) {
2902 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002903 em, start,
2904 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04002905 free_extent_map(existing);
2906 if (err) {
2907 free_extent_map(em);
2908 em = NULL;
2909 }
2910 } else {
2911 err = -EIO;
2912 printk("failing to insert %Lu %Lu\n",
2913 start, len);
2914 free_extent_map(em);
2915 em = NULL;
2916 }
2917 } else {
2918 free_extent_map(em);
2919 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002920 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04002921 }
Chris Masona52d9a82007-08-27 16:49:44 -04002922 }
Chris Masond1310b22008-01-24 16:13:08 -05002923 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002924out:
Chris Masonf4219502008-07-22 11:18:09 -04002925 if (path)
2926 btrfs_free_path(path);
Chris Masona52d9a82007-08-27 16:49:44 -04002927 if (trans) {
2928 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002929 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04002930 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002931 }
Chris Masona52d9a82007-08-27 16:49:44 -04002932 }
Chris Masona52d9a82007-08-27 16:49:44 -04002933 if (err) {
2934 free_extent_map(em);
2935 WARN_ON(1);
2936 return ERR_PTR(err);
2937 }
2938 return em;
2939}
2940
Chris Masone1c4b742008-04-22 13:26:46 -04002941#if 0 /* waiting for O_DIRECT reads */
Chris Mason16432982008-04-10 10:23:21 -04002942static int btrfs_get_block(struct inode *inode, sector_t iblock,
2943 struct buffer_head *bh_result, int create)
2944{
2945 struct extent_map *em;
2946 u64 start = (u64)iblock << inode->i_blkbits;
2947 struct btrfs_multi_bio *multi = NULL;
2948 struct btrfs_root *root = BTRFS_I(inode)->root;
2949 u64 len;
2950 u64 logical;
2951 u64 map_length;
2952 int ret = 0;
2953
2954 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2955
2956 if (!em || IS_ERR(em))
2957 goto out;
2958
Chris Masone1c4b742008-04-22 13:26:46 -04002959 if (em->start > start || em->start + em->len <= start) {
Chris Mason16432982008-04-10 10:23:21 -04002960 goto out;
Chris Masone1c4b742008-04-22 13:26:46 -04002961 }
Chris Mason16432982008-04-10 10:23:21 -04002962
2963 if (em->block_start == EXTENT_MAP_INLINE) {
2964 ret = -EINVAL;
2965 goto out;
2966 }
2967
Chris Mason16432982008-04-10 10:23:21 -04002968 len = em->start + em->len - start;
2969 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2970
Chris Masone1c4b742008-04-22 13:26:46 -04002971 if (em->block_start == EXTENT_MAP_HOLE ||
2972 em->block_start == EXTENT_MAP_DELALLOC) {
2973 bh_result->b_size = len;
2974 goto out;
2975 }
2976
Chris Mason16432982008-04-10 10:23:21 -04002977 logical = start - em->start;
2978 logical = em->block_start + logical;
2979
2980 map_length = len;
2981 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2982 logical, &map_length, &multi, 0);
2983 BUG_ON(ret);
2984 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2985 bh_result->b_size = min(map_length, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002986
Chris Mason16432982008-04-10 10:23:21 -04002987 bh_result->b_bdev = multi->stripes[0].dev->bdev;
2988 set_buffer_mapped(bh_result);
2989 kfree(multi);
2990out:
2991 free_extent_map(em);
2992 return ret;
2993}
Chris Masone1c4b742008-04-22 13:26:46 -04002994#endif
Chris Mason16432982008-04-10 10:23:21 -04002995
2996static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
2997 const struct iovec *iov, loff_t offset,
2998 unsigned long nr_segs)
2999{
Chris Masone1c4b742008-04-22 13:26:46 -04003000 return -EINVAL;
3001#if 0
Chris Mason16432982008-04-10 10:23:21 -04003002 struct file *file = iocb->ki_filp;
3003 struct inode *inode = file->f_mapping->host;
3004
3005 if (rw == WRITE)
3006 return -EINVAL;
3007
3008 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
3009 offset, nr_segs, btrfs_get_block, NULL);
Chris Masone1c4b742008-04-22 13:26:46 -04003010#endif
Chris Mason16432982008-04-10 10:23:21 -04003011}
3012
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04003013static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04003014{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04003015 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04003016}
3017
Chris Mason9ebefb182007-06-15 13:50:00 -04003018int btrfs_readpage(struct file *file, struct page *page)
3019{
Chris Masond1310b22008-01-24 16:13:08 -05003020 struct extent_io_tree *tree;
3021 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003022 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04003023}
Chris Mason1832a6d2007-12-21 16:27:21 -05003024
Chris Mason39279cc2007-06-12 06:35:45 -04003025static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
3026{
Chris Masond1310b22008-01-24 16:13:08 -05003027 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04003028
3029
3030 if (current->flags & PF_MEMALLOC) {
3031 redirty_page_for_writepage(wbc, page);
3032 unlock_page(page);
3033 return 0;
3034 }
Chris Masond1310b22008-01-24 16:13:08 -05003035 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04003036 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
3037}
Chris Mason39279cc2007-06-12 06:35:45 -04003038
Chris Masonf4219502008-07-22 11:18:09 -04003039int btrfs_writepages(struct address_space *mapping,
3040 struct writeback_control *wbc)
Chris Masonb293f022007-11-01 19:45:34 -04003041{
Chris Masond1310b22008-01-24 16:13:08 -05003042 struct extent_io_tree *tree;
3043 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04003044 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
3045}
3046
Chris Mason3ab2fb52007-11-08 10:59:22 -05003047static int
3048btrfs_readpages(struct file *file, struct address_space *mapping,
3049 struct list_head *pages, unsigned nr_pages)
3050{
Chris Masond1310b22008-01-24 16:13:08 -05003051 struct extent_io_tree *tree;
3052 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05003053 return extent_readpages(tree, mapping, pages, nr_pages,
3054 btrfs_get_extent);
3055}
Chris Masone6dcd2d2008-07-17 12:53:50 -04003056static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04003057{
Chris Masond1310b22008-01-24 16:13:08 -05003058 struct extent_io_tree *tree;
3059 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04003060 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04003061
Chris Masond1310b22008-01-24 16:13:08 -05003062 tree = &BTRFS_I(page->mapping->host)->io_tree;
3063 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05003064 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04003065 if (ret == 1) {
3066 ClearPagePrivate(page);
3067 set_page_private(page, 0);
3068 page_cache_release(page);
3069 }
3070 return ret;
3071}
Chris Mason39279cc2007-06-12 06:35:45 -04003072
Chris Masone6dcd2d2008-07-17 12:53:50 -04003073static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
3074{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003075 return __btrfs_releasepage(page, gfp_flags);
3076}
3077
Chris Masona52d9a82007-08-27 16:49:44 -04003078static void btrfs_invalidatepage(struct page *page, unsigned long offset)
3079{
Chris Masond1310b22008-01-24 16:13:08 -05003080 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003081 struct btrfs_ordered_extent *ordered;
3082 u64 page_start = page_offset(page);
3083 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04003084
Chris Masone6dcd2d2008-07-17 12:53:50 -04003085 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05003086 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003087 if (offset) {
3088 btrfs_releasepage(page, GFP_NOFS);
3089 return;
3090 }
3091
3092 lock_extent(tree, page_start, page_end, GFP_NOFS);
3093 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
3094 page_offset(page));
3095 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04003096 /*
3097 * IO on this page will never be started, so we need
3098 * to account for any ordered extents now
3099 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04003100 clear_extent_bit(tree, page_start, page_end,
3101 EXTENT_DIRTY | EXTENT_DELALLOC |
3102 EXTENT_LOCKED, 1, 0, GFP_NOFS);
Chris Mason211f90e2008-07-18 11:56:15 -04003103 btrfs_finish_ordered_io(page->mapping->host,
3104 page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003105 btrfs_put_ordered_extent(ordered);
3106 lock_extent(tree, page_start, page_end, GFP_NOFS);
3107 }
3108 clear_extent_bit(tree, page_start, page_end,
3109 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
3110 EXTENT_ORDERED,
3111 1, 1, GFP_NOFS);
3112 __btrfs_releasepage(page, GFP_NOFS);
3113
Chris Mason4a096752008-07-21 10:29:44 -04003114 ClearPageChecked(page);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04003115 if (PagePrivate(page)) {
Chris Mason9ad6b7b2008-04-18 16:11:30 -04003116 ClearPagePrivate(page);
3117 set_page_private(page, 0);
3118 page_cache_release(page);
3119 }
Chris Mason39279cc2007-06-12 06:35:45 -04003120}
3121
Chris Mason9ebefb182007-06-15 13:50:00 -04003122/*
3123 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
3124 * called from a page fault handler when a page is first dirtied. Hence we must
3125 * be careful to check for EOF conditions here. We set the page up correctly
3126 * for a written page which means we get ENOSPC checking when writing into
3127 * holes and correct delalloc and unwritten extent mapping on filesystems that
3128 * support these features.
3129 *
3130 * We are not allowed to take the i_mutex here so we have to play games to
3131 * protect against truncate races as the page could now be beyond EOF. Because
3132 * vmtruncate() writes the inode size before removing pages, once we have the
3133 * page lock we can determine safely if the page is beyond EOF. If it is not
3134 * beyond EOF, then the page is guaranteed safe against truncation until we
3135 * unlock the page.
3136 */
3137int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
3138{
Chris Mason6da6aba2007-12-18 16:15:09 -05003139 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05003140 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003141 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
3142 struct btrfs_ordered_extent *ordered;
3143 char *kaddr;
3144 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04003145 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05003146 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04003147 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003148 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04003149
Chris Mason1832a6d2007-12-21 16:27:21 -05003150 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05003151 if (ret)
3152 goto out;
3153
3154 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003155again:
Chris Mason9ebefb182007-06-15 13:50:00 -04003156 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04003157 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003158 page_start = page_offset(page);
3159 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04003160
Chris Mason9ebefb182007-06-15 13:50:00 -04003161 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04003162 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04003163 /* page got truncated out from underneath us */
3164 goto out_unlock;
3165 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04003166 wait_on_page_writeback(page);
3167
3168 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
3169 set_page_extent_mapped(page);
3170
Chris Masoneb84ae02008-07-17 13:53:27 -04003171 /*
3172 * we can't set the delalloc bits if there are pending ordered
3173 * extents. Drop our locks and wait for them to finish
3174 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04003175 ordered = btrfs_lookup_ordered_extent(inode, page_start);
3176 if (ordered) {
3177 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
3178 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04003179 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003180 btrfs_put_ordered_extent(ordered);
3181 goto again;
3182 }
3183
Chris Masonea8c2812008-08-04 23:17:27 -04003184 btrfs_set_extent_delalloc(inode, page_start, page_end);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003185 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04003186
3187 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04003188 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04003189 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04003190 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04003191 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04003192
Chris Masone6dcd2d2008-07-17 12:53:50 -04003193 if (zero_start != PAGE_CACHE_SIZE) {
3194 kaddr = kmap(page);
3195 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
3196 flush_dcache_page(page);
3197 kunmap(page);
3198 }
Chris Mason247e7432008-07-17 12:53:51 -04003199 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04003200 set_page_dirty(page);
3201 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04003202
3203out_unlock:
3204 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05003205out:
Chris Mason9ebefb182007-06-15 13:50:00 -04003206 return ret;
3207}
3208
Chris Mason39279cc2007-06-12 06:35:45 -04003209static void btrfs_truncate(struct inode *inode)
3210{
3211 struct btrfs_root *root = BTRFS_I(inode)->root;
3212 int ret;
3213 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003214 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04003215 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003216
3217 if (!S_ISREG(inode->i_mode))
3218 return;
3219 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3220 return;
3221
3222 btrfs_truncate_page(inode->i_mapping, inode->i_size);
Chris Mason4a096752008-07-21 10:29:44 -04003223 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003224
Chris Mason39279cc2007-06-12 06:35:45 -04003225 trans = btrfs_start_transaction(root, 1);
3226 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04003227 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04003228
Josef Bacik7b128762008-07-24 12:17:14 -04003229 ret = btrfs_orphan_add(trans, inode);
3230 if (ret)
3231 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04003232 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Masone02119d2008-09-05 16:13:11 -04003233 ret = btrfs_truncate_inode_items(trans, root, inode, inode->i_size,
Chris Mason85e21ba2008-01-29 15:11:36 -05003234 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04003235 btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04003236
Josef Bacik7b128762008-07-24 12:17:14 -04003237 ret = btrfs_orphan_del(trans, inode);
3238 BUG_ON(ret);
3239
3240out:
3241 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003242 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04003243 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003244 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003245}
3246
Sven Wegener3b963622008-06-09 21:57:42 -04003247/*
3248 * Invalidate a single dcache entry at the root of the filesystem.
3249 * Needed after creation of snapshot or subvolume.
3250 */
3251void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
3252 int namelen)
3253{
3254 struct dentry *alias, *entry;
3255 struct qstr qstr;
3256
3257 alias = d_find_alias(root->fs_info->sb->s_root->d_inode);
3258 if (alias) {
3259 qstr.name = name;
3260 qstr.len = namelen;
3261 /* change me if btrfs ever gets a d_hash operation */
3262 qstr.hash = full_name_hash(qstr.name, qstr.len);
3263 entry = d_lookup(alias, &qstr);
3264 dput(alias);
3265 if (entry) {
3266 d_invalidate(entry);
3267 dput(entry);
3268 }
3269 }
3270}
3271
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003272int btrfs_create_subvol_root(struct btrfs_root *new_root,
3273 struct btrfs_trans_handle *trans, u64 new_dirid,
3274 struct btrfs_block_group_cache *block_group)
Chris Mason39279cc2007-06-12 06:35:45 -04003275{
Chris Mason39279cc2007-06-12 06:35:45 -04003276 struct inode *inode;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003277 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003278
Josef Bacikaec74772008-07-24 12:12:38 -04003279 inode = btrfs_new_inode(trans, new_root, NULL, "..", 2, new_dirid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003280 new_dirid, block_group, S_IFDIR | 0700, &index);
Chris Mason54aa1f42007-06-22 14:16:25 -04003281 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003282 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003283 inode->i_op = &btrfs_dir_inode_operations;
3284 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04003285 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003286
Chris Mason39279cc2007-06-12 06:35:45 -04003287 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04003288 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04003289
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04003290 return btrfs_update_inode(trans, new_root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003291}
3292
Chris Masonedbd8d42007-12-21 16:27:24 -05003293unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04003294 struct file_ra_state *ra, struct file *file,
3295 pgoff_t offset, pgoff_t last_index)
3296{
Chris Mason8e7bf942008-04-28 09:02:36 -04003297 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04003298
3299#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
Chris Mason86479a02007-09-10 19:58:16 -04003300 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
3301 return offset;
3302#else
Chris Mason86479a02007-09-10 19:58:16 -04003303 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
3304 return offset + req_size;
3305#endif
3306}
3307
Chris Mason39279cc2007-06-12 06:35:45 -04003308struct inode *btrfs_alloc_inode(struct super_block *sb)
3309{
3310 struct btrfs_inode *ei;
3311
3312 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
3313 if (!ei)
3314 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003315 ei->last_trans = 0;
Chris Masone02119d2008-09-05 16:13:11 -04003316 ei->logged_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04003317 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Josef Bacik33268ea2008-07-24 12:16:36 -04003318 ei->i_acl = BTRFS_ACL_NOT_CACHED;
3319 ei->i_default_acl = BTRFS_ACL_NOT_CACHED;
Josef Bacik7b128762008-07-24 12:17:14 -04003320 INIT_LIST_HEAD(&ei->i_orphan);
Chris Mason39279cc2007-06-12 06:35:45 -04003321 return &ei->vfs_inode;
3322}
3323
3324void btrfs_destroy_inode(struct inode *inode)
3325{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003326 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04003327 WARN_ON(!list_empty(&inode->i_dentry));
3328 WARN_ON(inode->i_data.nrpages);
3329
Josef Bacik33268ea2008-07-24 12:16:36 -04003330 if (BTRFS_I(inode)->i_acl &&
3331 BTRFS_I(inode)->i_acl != BTRFS_ACL_NOT_CACHED)
3332 posix_acl_release(BTRFS_I(inode)->i_acl);
3333 if (BTRFS_I(inode)->i_default_acl &&
3334 BTRFS_I(inode)->i_default_acl != BTRFS_ACL_NOT_CACHED)
3335 posix_acl_release(BTRFS_I(inode)->i_default_acl);
3336
Yanbcc63ab2008-07-30 16:29:20 -04003337 spin_lock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003338 if (!list_empty(&BTRFS_I(inode)->i_orphan)) {
3339 printk(KERN_ERR "BTRFS: inode %lu: inode still on the orphan"
3340 " list\n", inode->i_ino);
3341 dump_stack();
3342 }
Yanbcc63ab2008-07-30 16:29:20 -04003343 spin_unlock(&BTRFS_I(inode)->root->list_lock);
Josef Bacik7b128762008-07-24 12:17:14 -04003344
Chris Masone6dcd2d2008-07-17 12:53:50 -04003345 while(1) {
3346 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
3347 if (!ordered)
3348 break;
3349 else {
3350 printk("found ordered extent %Lu %Lu\n",
3351 ordered->file_offset, ordered->len);
3352 btrfs_remove_ordered_extent(inode, ordered);
3353 btrfs_put_ordered_extent(ordered);
3354 btrfs_put_ordered_extent(ordered);
3355 }
3356 }
Chris Mason8c416c92008-01-14 15:10:26 -05003357 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003358 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
3359}
3360
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003361#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3362static void init_once(void *foo)
3363#elif LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason44ec0b72007-10-29 10:55:05 -04003364static void init_once(struct kmem_cache * cachep, void *foo)
3365#else
Chris Mason39279cc2007-06-12 06:35:45 -04003366static void init_once(void * foo, struct kmem_cache * cachep,
3367 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04003368#endif
Chris Mason39279cc2007-06-12 06:35:45 -04003369{
3370 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
3371
3372 inode_init_once(&ei->vfs_inode);
3373}
3374
3375void btrfs_destroy_cachep(void)
3376{
3377 if (btrfs_inode_cachep)
3378 kmem_cache_destroy(btrfs_inode_cachep);
3379 if (btrfs_trans_handle_cachep)
3380 kmem_cache_destroy(btrfs_trans_handle_cachep);
3381 if (btrfs_transaction_cachep)
3382 kmem_cache_destroy(btrfs_transaction_cachep);
3383 if (btrfs_bit_radix_cachep)
3384 kmem_cache_destroy(btrfs_bit_radix_cachep);
3385 if (btrfs_path_cachep)
3386 kmem_cache_destroy(btrfs_path_cachep);
3387}
3388
Chris Mason86479a02007-09-10 19:58:16 -04003389struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04003390 unsigned long extra_flags,
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003391#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3392 void (*ctor)(void *)
3393#elif LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
Chris Mason44ec0b72007-10-29 10:55:05 -04003394 void (*ctor)(struct kmem_cache *, void *)
3395#else
Chris Mason92fee662007-07-25 12:31:35 -04003396 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04003397 unsigned long)
3398#endif
3399 )
Chris Mason92fee662007-07-25 12:31:35 -04003400{
3401 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
3402 SLAB_MEM_SPREAD | extra_flags), ctor
3403#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
3404 ,NULL
3405#endif
3406 );
3407}
3408
Chris Mason39279cc2007-06-12 06:35:45 -04003409int btrfs_init_cachep(void)
3410{
Chris Mason86479a02007-09-10 19:58:16 -04003411 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04003412 sizeof(struct btrfs_inode),
3413 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04003414 if (!btrfs_inode_cachep)
3415 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003416 btrfs_trans_handle_cachep =
3417 btrfs_cache_create("btrfs_trans_handle_cache",
3418 sizeof(struct btrfs_trans_handle),
3419 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003420 if (!btrfs_trans_handle_cachep)
3421 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003422 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04003423 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04003424 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003425 if (!btrfs_transaction_cachep)
3426 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003427 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04003428 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04003429 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003430 if (!btrfs_path_cachep)
3431 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003432 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04003433 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003434 if (!btrfs_bit_radix_cachep)
3435 goto fail;
3436 return 0;
3437fail:
3438 btrfs_destroy_cachep();
3439 return -ENOMEM;
3440}
3441
3442static int btrfs_getattr(struct vfsmount *mnt,
3443 struct dentry *dentry, struct kstat *stat)
3444{
3445 struct inode *inode = dentry->d_inode;
3446 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05003447 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05003448 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04003449 return 0;
3450}
3451
3452static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3453 struct inode * new_dir,struct dentry *new_dentry)
3454{
3455 struct btrfs_trans_handle *trans;
3456 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3457 struct inode *new_inode = new_dentry->d_inode;
3458 struct inode *old_inode = old_dentry->d_inode;
3459 struct timespec ctime = CURRENT_TIME;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003460 u64 index = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003461 int ret;
3462
3463 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3464 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3465 return -ENOTEMPTY;
3466 }
Chris Mason5f39d392007-10-15 16:14:19 -04003467
Chris Mason1832a6d2007-12-21 16:27:21 -05003468 ret = btrfs_check_free_space(root, 1, 0);
3469 if (ret)
3470 goto out_unlock;
3471
Chris Mason39279cc2007-06-12 06:35:45 -04003472 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003473
Chris Mason39279cc2007-06-12 06:35:45 -04003474 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003475
Chris Masone02119d2008-09-05 16:13:11 -04003476 btrfs_inc_nlink(old_dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04003477 old_dir->i_ctime = old_dir->i_mtime = ctime;
3478 new_dir->i_ctime = new_dir->i_mtime = ctime;
3479 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003480
Chris Masone02119d2008-09-05 16:13:11 -04003481 ret = btrfs_unlink_inode(trans, root, old_dir, old_dentry->d_inode,
3482 old_dentry->d_name.name,
3483 old_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04003484 if (ret)
3485 goto out_fail;
3486
3487 if (new_inode) {
3488 new_inode->i_ctime = CURRENT_TIME;
Chris Masone02119d2008-09-05 16:13:11 -04003489 ret = btrfs_unlink_inode(trans, root, new_dir,
3490 new_dentry->d_inode,
3491 new_dentry->d_name.name,
3492 new_dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04003493 if (ret)
3494 goto out_fail;
Josef Bacik7b128762008-07-24 12:17:14 -04003495 if (new_inode->i_nlink == 0) {
Chris Masone02119d2008-09-05 16:13:11 -04003496 ret = btrfs_orphan_add(trans, new_dentry->d_inode);
Josef Bacik7b128762008-07-24 12:17:14 -04003497 if (ret)
3498 goto out_fail;
3499 }
Chris Masone02119d2008-09-05 16:13:11 -04003500
Chris Mason39279cc2007-06-12 06:35:45 -04003501 }
Chris Mason00e4e6b2008-08-05 11:18:09 -04003502 ret = btrfs_set_inode_index(new_dir, old_inode, &index);
Josef Bacikaec74772008-07-24 12:12:38 -04003503 if (ret)
3504 goto out_fail;
3505
Chris Masone02119d2008-09-05 16:13:11 -04003506 ret = btrfs_add_link(trans, new_dentry->d_parent->d_inode,
3507 old_inode, new_dentry->d_name.name,
3508 new_dentry->d_name.len, 1, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003509 if (ret)
3510 goto out_fail;
3511
3512out_fail:
Chris Masonab78c842008-07-29 16:15:18 -04003513 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003514out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003515 return ret;
3516}
3517
Chris Masonea8c2812008-08-04 23:17:27 -04003518int btrfs_start_delalloc_inodes(struct btrfs_root *root)
3519{
3520 struct list_head *head = &root->fs_info->delalloc_inodes;
3521 struct btrfs_inode *binode;
3522 unsigned long flags;
3523
3524 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
3525 while(!list_empty(head)) {
3526 binode = list_entry(head->next, struct btrfs_inode,
3527 delalloc_inodes);
3528 atomic_inc(&binode->vfs_inode.i_count);
3529 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
3530 filemap_write_and_wait(binode->vfs_inode.i_mapping);
3531 iput(&binode->vfs_inode);
3532 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
3533 }
3534 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
3535 return 0;
3536}
3537
Chris Mason39279cc2007-06-12 06:35:45 -04003538static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3539 const char *symname)
3540{
3541 struct btrfs_trans_handle *trans;
3542 struct btrfs_root *root = BTRFS_I(dir)->root;
3543 struct btrfs_path *path;
3544 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003545 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003546 int err;
3547 int drop_inode = 0;
3548 u64 objectid;
Chris Mason00e4e6b2008-08-05 11:18:09 -04003549 u64 index = 0 ;
Chris Mason39279cc2007-06-12 06:35:45 -04003550 int name_len;
3551 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003552 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003553 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003554 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003555 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003556
3557 name_len = strlen(symname) + 1;
3558 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3559 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003560
Chris Mason1832a6d2007-12-21 16:27:21 -05003561 err = btrfs_check_free_space(root, 1, 0);
3562 if (err)
3563 goto out_fail;
3564
Chris Mason39279cc2007-06-12 06:35:45 -04003565 trans = btrfs_start_transaction(root, 1);
3566 btrfs_set_trans_block_group(trans, dir);
3567
3568 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3569 if (err) {
3570 err = -ENOSPC;
3571 goto out_unlock;
3572 }
3573
Josef Bacikaec74772008-07-24 12:12:38 -04003574 inode = btrfs_new_inode(trans, root, dir, dentry->d_name.name,
Chris Mason9c583092008-01-29 15:15:18 -05003575 dentry->d_name.len,
3576 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason00e4e6b2008-08-05 11:18:09 -04003577 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO,
3578 &index);
Chris Mason39279cc2007-06-12 06:35:45 -04003579 err = PTR_ERR(inode);
3580 if (IS_ERR(inode))
3581 goto out_unlock;
3582
Josef Bacik33268ea2008-07-24 12:16:36 -04003583 err = btrfs_init_acl(inode, dir);
3584 if (err) {
3585 drop_inode = 1;
3586 goto out_unlock;
3587 }
3588
Chris Mason39279cc2007-06-12 06:35:45 -04003589 btrfs_set_trans_block_group(trans, inode);
Chris Mason00e4e6b2008-08-05 11:18:09 -04003590 err = btrfs_add_nondir(trans, dentry, inode, 0, index);
Chris Mason39279cc2007-06-12 06:35:45 -04003591 if (err)
3592 drop_inode = 1;
3593 else {
3594 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003595 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003596 inode->i_fop = &btrfs_file_operations;
3597 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003598 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003599 }
3600 dir->i_sb->s_dirt = 1;
3601 btrfs_update_inode_block_group(trans, inode);
3602 btrfs_update_inode_block_group(trans, dir);
3603 if (drop_inode)
3604 goto out_unlock;
3605
3606 path = btrfs_alloc_path();
3607 BUG_ON(!path);
3608 key.objectid = inode->i_ino;
3609 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003610 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3611 datasize = btrfs_file_extent_calc_inline_size(name_len);
3612 err = btrfs_insert_empty_item(trans, root, path, &key,
3613 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003614 if (err) {
3615 drop_inode = 1;
3616 goto out_unlock;
3617 }
Chris Mason5f39d392007-10-15 16:14:19 -04003618 leaf = path->nodes[0];
3619 ei = btrfs_item_ptr(leaf, path->slots[0],
3620 struct btrfs_file_extent_item);
3621 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3622 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003623 BTRFS_FILE_EXTENT_INLINE);
3624 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003625 write_extent_buffer(leaf, symname, ptr, name_len);
3626 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003627 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003628
Chris Mason39279cc2007-06-12 06:35:45 -04003629 inode->i_op = &btrfs_symlink_inode_operations;
3630 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003631 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masondbe674a2008-07-17 12:54:05 -04003632 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003633 err = btrfs_update_inode(trans, root, inode);
3634 if (err)
3635 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003636
3637out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003638 nr = trans->blocks_used;
Chris Masonab78c842008-07-29 16:15:18 -04003639 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003640out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003641 if (drop_inode) {
3642 inode_dec_link_count(inode);
3643 iput(inode);
3644 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003645 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003646 return err;
3647}
Chris Mason16432982008-04-10 10:23:21 -04003648
Chris Masone6dcd2d2008-07-17 12:53:50 -04003649static int btrfs_set_page_dirty(struct page *page)
3650{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003651 return __set_page_dirty_nobuffers(page);
3652}
3653
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003654#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,26)
3655static int btrfs_permission(struct inode *inode, int mask)
3656#else
Yanfdebe2b2008-01-14 13:26:08 -05003657static int btrfs_permission(struct inode *inode, int mask,
3658 struct nameidata *nd)
Sven Wegener0ee0fda2008-07-30 16:54:26 -04003659#endif
Yanfdebe2b2008-01-14 13:26:08 -05003660{
3661 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3662 return -EACCES;
Josef Bacik33268ea2008-07-24 12:16:36 -04003663 return generic_permission(inode, mask, btrfs_check_acl);
Yanfdebe2b2008-01-14 13:26:08 -05003664}
Chris Mason39279cc2007-06-12 06:35:45 -04003665
3666static struct inode_operations btrfs_dir_inode_operations = {
3667 .lookup = btrfs_lookup,
3668 .create = btrfs_create,
3669 .unlink = btrfs_unlink,
3670 .link = btrfs_link,
3671 .mkdir = btrfs_mkdir,
3672 .rmdir = btrfs_rmdir,
3673 .rename = btrfs_rename,
3674 .symlink = btrfs_symlink,
3675 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003676 .mknod = btrfs_mknod,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003677 .setxattr = btrfs_setxattr,
3678 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003679 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003680 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003681 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003682};
Chris Mason39279cc2007-06-12 06:35:45 -04003683static struct inode_operations btrfs_dir_ro_inode_operations = {
3684 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003685 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003686};
Chris Mason39279cc2007-06-12 06:35:45 -04003687static struct file_operations btrfs_dir_file_operations = {
3688 .llseek = generic_file_llseek,
3689 .read = generic_read_dir,
David Woodhousecbdf5a22008-08-06 19:42:33 +01003690#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
3691 .readdir = btrfs_nfshack_readdir,
3692#else /* NFSd readdir/lookup deadlock is fixed */
3693 .readdir = btrfs_real_readdir,
3694#endif
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003695 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003696#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003697 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003698#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04003699 .release = btrfs_release_file,
Chris Masone02119d2008-09-05 16:13:11 -04003700 .fsync = btrfs_sync_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003701};
3702
Chris Masond1310b22008-01-24 16:13:08 -05003703static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003704 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003705 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003706 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003707 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003708 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04003709 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04003710 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003711 .set_bit_hook = btrfs_set_bit_hook,
3712 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003713};
3714
Chris Mason39279cc2007-06-12 06:35:45 -04003715static struct address_space_operations btrfs_aops = {
3716 .readpage = btrfs_readpage,
3717 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04003718 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003719 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003720 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003721 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003722 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003723 .invalidatepage = btrfs_invalidatepage,
3724 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003725 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04003726};
3727
3728static struct address_space_operations btrfs_symlink_aops = {
3729 .readpage = btrfs_readpage,
3730 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003731 .invalidatepage = btrfs_invalidatepage,
3732 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003733};
3734
3735static struct inode_operations btrfs_file_inode_operations = {
3736 .truncate = btrfs_truncate,
3737 .getattr = btrfs_getattr,
3738 .setattr = btrfs_setattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003739 .setxattr = btrfs_setxattr,
3740 .getxattr = btrfs_getxattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003741 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003742 .removexattr = btrfs_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003743 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003744};
Josef Bacik618e21d2007-07-11 10:18:17 -04003745static struct inode_operations btrfs_special_inode_operations = {
3746 .getattr = btrfs_getattr,
3747 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003748 .permission = btrfs_permission,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003749 .setxattr = btrfs_setxattr,
3750 .getxattr = btrfs_getxattr,
Josef Bacik33268ea2008-07-24 12:16:36 -04003751 .listxattr = btrfs_listxattr,
Christoph Hellwig95819c02008-08-28 06:21:17 -04003752 .removexattr = btrfs_removexattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003753};
Chris Mason39279cc2007-06-12 06:35:45 -04003754static struct inode_operations btrfs_symlink_inode_operations = {
3755 .readlink = generic_readlink,
3756 .follow_link = page_follow_link_light,
3757 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003758 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003759};