blob: 4d729d90d2b88957660467afc55b176c630d5310 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
29#include <linux/smp_lock.h>
30#include <linux/backing-dev.h>
31#include <linux/mpage.h>
32#include <linux/swap.h>
33#include <linux/writeback.h>
34#include <linux/statfs.h>
35#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040036#include <linux/bit_spinlock.h>
Chris Mason92fee662007-07-25 12:31:35 -040037#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050038#include <linux/xattr.h>
Chris Mason39279cc2007-06-12 06:35:45 -040039#include "ctree.h"
40#include "disk-io.h"
41#include "transaction.h"
42#include "btrfs_inode.h"
43#include "ioctl.h"
44#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040045#include "volumes.h"
Chris Masone6dcd2d2008-07-17 12:53:50 -040046#include "ordered-data.h"
Chris Mason39279cc2007-06-12 06:35:45 -040047
48struct btrfs_iget_args {
49 u64 ino;
50 struct btrfs_root *root;
51};
52
53static struct inode_operations btrfs_dir_inode_operations;
54static struct inode_operations btrfs_symlink_inode_operations;
55static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040056static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040057static struct inode_operations btrfs_file_inode_operations;
58static struct address_space_operations btrfs_aops;
59static struct address_space_operations btrfs_symlink_aops;
60static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050061static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040062
63static struct kmem_cache *btrfs_inode_cachep;
64struct kmem_cache *btrfs_trans_handle_cachep;
65struct kmem_cache *btrfs_transaction_cachep;
66struct kmem_cache *btrfs_bit_radix_cachep;
67struct kmem_cache *btrfs_path_cachep;
68
69#define S_SHIFT 12
70static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
71 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
72 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
73 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
74 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
75 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
76 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
77 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
78};
79
Chris Mason1832a6d2007-12-21 16:27:21 -050080int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
81 int for_del)
82{
Chris Masona2135012008-06-25 16:01:30 -040083 u64 total;
84 u64 used;
Chris Mason1832a6d2007-12-21 16:27:21 -050085 u64 thresh;
Chris Masonbcbfce82008-04-22 13:26:47 -040086 unsigned long flags;
Chris Mason1832a6d2007-12-21 16:27:21 -050087 int ret = 0;
88
Chris Masona2135012008-06-25 16:01:30 -040089 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
90 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
91 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
Chris Mason1832a6d2007-12-21 16:27:21 -050092 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -050093 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -050094 else
Chris Masonf9ef6602008-01-03 09:22:38 -050095 thresh = total * 85;
96
97 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -050098
Chris Mason1832a6d2007-12-21 16:27:21 -050099 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
100 ret = -ENOSPC;
Chris Masonbcbfce82008-04-22 13:26:47 -0400101 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -0500102 return ret;
103}
104
Chris Masonbe20aa92007-12-17 20:14:01 -0500105static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db22007-08-27 16:49:44 -0400106{
107 struct btrfs_root *root = BTRFS_I(inode)->root;
108 struct btrfs_trans_handle *trans;
Chris Masonb888db22007-08-27 16:49:44 -0400109 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400110 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500111 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400112 u64 blocksize = root->sectorsize;
Chris Masond1310b22008-01-24 16:13:08 -0500113 u64 orig_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500114 struct btrfs_key ins;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400115 struct extent_map *em;
116 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
117 int ret = 0;
Chris Masonb888db22007-08-27 16:49:44 -0400118
Chris Masonf9295742008-07-17 12:54:14 -0400119 trans = btrfs_join_transaction(root, 1);
Chris Masonb888db22007-08-27 16:49:44 -0400120 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500121 btrfs_set_trans_block_group(trans, inode);
122
Chris Masondb945352007-10-15 16:15:53 -0400123 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500124 num_bytes = max(blocksize, num_bytes);
Chris Masond1310b22008-01-24 16:13:08 -0500125 orig_num_bytes = num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400126
Chris Mason179e29e2007-11-01 11:28:41 -0400127 if (alloc_hint == EXTENT_MAP_INLINE)
128 goto out;
129
Chris Mason3b951512008-04-17 11:29:12 -0400130 BUG_ON(num_bytes > btrfs_super_total_bytes(&root->fs_info->super_copy));
Chris Masone6dcd2d2008-07-17 12:53:50 -0400131 btrfs_drop_extent_cache(inode, start, start + num_bytes - 1);
Chris Mason3b951512008-04-17 11:29:12 -0400132
Chris Masonc59f8952007-12-17 20:14:04 -0500133 while(num_bytes > 0) {
134 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400135 ret = btrfs_reserve_extent(trans, root, cur_alloc_size,
136 root->sectorsize, 0, 0,
137 (u64)-1, &ins, 1);
Chris Masonc59f8952007-12-17 20:14:04 -0500138 if (ret) {
139 WARN_ON(1);
140 goto out;
141 }
Chris Masone6dcd2d2008-07-17 12:53:50 -0400142 em = alloc_extent_map(GFP_NOFS);
143 em->start = start;
144 em->len = ins.offset;
145 em->block_start = ins.objectid;
146 em->bdev = root->fs_info->fs_devices->latest_bdev;
147 while(1) {
148 spin_lock(&em_tree->lock);
149 ret = add_extent_mapping(em_tree, em);
150 spin_unlock(&em_tree->lock);
151 if (ret != -EEXIST) {
152 free_extent_map(em);
153 break;
154 }
155 btrfs_drop_extent_cache(inode, start,
156 start + ins.offset - 1);
157 }
158
Chris Mason98d20f62008-04-14 09:46:10 -0400159 cur_alloc_size = ins.offset;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400160 ret = btrfs_add_ordered_extent(inode, start, ins.objectid,
161 ins.offset);
162 BUG_ON(ret);
Chris Mason3b951512008-04-17 11:29:12 -0400163 if (num_bytes < cur_alloc_size) {
164 printk("num_bytes %Lu cur_alloc %Lu\n", num_bytes,
165 cur_alloc_size);
166 break;
167 }
Chris Masonc59f8952007-12-17 20:14:04 -0500168 num_bytes -= cur_alloc_size;
169 alloc_hint = ins.objectid + ins.offset;
170 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400171 }
Chris Masonb888db22007-08-27 16:49:44 -0400172out:
173 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500174 return ret;
175}
176
177static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
178{
179 u64 extent_start;
180 u64 extent_end;
181 u64 bytenr;
182 u64 cow_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500183 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500184 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500185 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masona68d5932008-05-08 14:11:56 -0400186 struct btrfs_block_group_cache *block_group;
Chris Masonbe20aa92007-12-17 20:14:01 -0500187 struct extent_buffer *leaf;
188 int found_type;
189 struct btrfs_path *path;
190 struct btrfs_file_extent_item *item;
191 int ret;
192 int err;
193 struct btrfs_key found_key;
194
Chris Masonc31f8832008-01-08 15:46:31 -0500195 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500196 path = btrfs_alloc_path();
197 BUG_ON(!path);
198again:
199 ret = btrfs_lookup_file_extent(NULL, root, path,
200 inode->i_ino, start, 0);
201 if (ret < 0) {
202 btrfs_free_path(path);
203 return ret;
204 }
205
206 cow_end = end;
207 if (ret != 0) {
208 if (path->slots[0] == 0)
209 goto not_found;
210 path->slots[0]--;
211 }
212
213 leaf = path->nodes[0];
214 item = btrfs_item_ptr(leaf, path->slots[0],
215 struct btrfs_file_extent_item);
216
217 /* are we inside the extent that was found? */
218 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
219 found_type = btrfs_key_type(&found_key);
220 if (found_key.objectid != inode->i_ino ||
Chris Masonbbaf5492008-05-08 16:31:21 -0400221 found_type != BTRFS_EXTENT_DATA_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -0500222 goto not_found;
Chris Masonbe20aa92007-12-17 20:14:01 -0500223
224 found_type = btrfs_file_extent_type(leaf, item);
225 extent_start = found_key.offset;
226 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Masonc31f8832008-01-08 15:46:31 -0500227 u64 extent_num_bytes;
228
229 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
230 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500231 err = 0;
232
Chris Mason1832a6d2007-12-21 16:27:21 -0500233 if (loops && start != extent_start)
234 goto not_found;
235
Chris Masonbe20aa92007-12-17 20:14:01 -0500236 if (start < extent_start || start >= extent_end)
237 goto not_found;
238
239 cow_end = min(end, extent_end - 1);
240 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
241 if (bytenr == 0)
242 goto not_found;
243
Chris Masona68d5932008-05-08 14:11:56 -0400244 if (btrfs_count_snapshots_in_path(root, path, inode->i_ino,
245 bytenr) != 1) {
246 goto not_found;
247 }
248
Chris Masonc31f8832008-01-08 15:46:31 -0500249 /*
250 * we may be called by the resizer, make sure we're inside
251 * the limits of the FS
252 */
Chris Masona68d5932008-05-08 14:11:56 -0400253 block_group = btrfs_lookup_block_group(root->fs_info,
254 bytenr);
255 if (!block_group || block_group->ro)
Chris Masonc31f8832008-01-08 15:46:31 -0500256 goto not_found;
257
Chris Masonbe20aa92007-12-17 20:14:01 -0500258 start = extent_end;
Chris Masonbd098352008-01-03 13:23:19 -0500259 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500260 goto not_found;
261 }
262loop:
263 if (start > end) {
264 btrfs_free_path(path);
265 return 0;
266 }
267 btrfs_release_path(root, path);
Chris Mason1832a6d2007-12-21 16:27:21 -0500268 loops++;
Chris Masonbe20aa92007-12-17 20:14:01 -0500269 goto again;
270
271not_found:
Chris Masonbbaf5492008-05-08 16:31:21 -0400272 cow_file_range(inode, start, end);
273 start = end + 1;
Chris Masonbe20aa92007-12-17 20:14:01 -0500274 goto loop;
275}
276
277static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
278{
279 struct btrfs_root *root = BTRFS_I(inode)->root;
280 int ret;
Chris Masona2135012008-06-25 16:01:30 -0400281
Yanb98b6762008-01-08 15:54:37 -0500282 if (btrfs_test_opt(root, NODATACOW) ||
283 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500284 ret = run_delalloc_nocow(inode, start, end);
285 else
286 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500287
Chris Masonb888db22007-08-27 16:49:44 -0400288 return ret;
289}
290
Chris Mason291d6732008-01-29 15:55:23 -0500291int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500292 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500293{
Chris Masonbcbfce82008-04-22 13:26:47 -0400294 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -0500295 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500296 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400297 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -0500298 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -0500299 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonbcbfce82008-04-22 13:26:47 -0400300 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500301 }
302 return 0;
303}
304
305int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500306 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500307{
Chris Masonb0c68f82008-01-31 11:05:37 -0500308 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500309 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400310 unsigned long flags;
311
312 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -0500313 if (end - start + 1 > root->fs_info->delalloc_bytes) {
314 printk("warning: delalloc account %Lu %Lu\n",
315 end - start + 1, root->fs_info->delalloc_bytes);
316 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -0500317 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -0500318 } else {
319 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -0500320 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -0500321 }
Chris Masonbcbfce82008-04-22 13:26:47 -0400322 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500323 }
324 return 0;
325}
326
Chris Mason239b14b2008-03-24 15:02:07 -0400327int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
328 size_t size, struct bio *bio)
329{
330 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
331 struct btrfs_mapping_tree *map_tree;
Chris Mason239b14b2008-03-24 15:02:07 -0400332 u64 logical = bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -0400333 u64 length = 0;
334 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -0400335 int ret;
336
Chris Masonf2d8d742008-04-21 10:03:05 -0400337 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -0400338 map_tree = &root->fs_info->mapping_tree;
339 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -0400340 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -0400341 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -0400342
Chris Mason239b14b2008-03-24 15:02:07 -0400343 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -0400344 return 1;
345 }
346 return 0;
347}
348
Chris Mason44b8bd72008-04-16 11:14:51 -0400349int __btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400350 int mirror_num)
Chris Mason065631f2008-02-20 12:07:25 -0500351{
Chris Mason065631f2008-02-20 12:07:25 -0500352 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason065631f2008-02-20 12:07:25 -0500353 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -0400354
Chris Mason3edf7d32008-07-18 06:17:13 -0400355 ret = btrfs_csum_one_bio(root, inode, bio);
Chris Mason44b8bd72008-04-16 11:14:51 -0400356 BUG_ON(ret);
Chris Masone0156402008-04-16 11:15:20 -0400357
Chris Mason8b712842008-06-11 16:50:36 -0400358 return btrfs_map_bio(root, rw, bio, mirror_num, 1);
Chris Mason44b8bd72008-04-16 11:14:51 -0400359}
360
361int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
362 int mirror_num)
363{
364 struct btrfs_root *root = BTRFS_I(inode)->root;
365 int ret = 0;
366
Chris Masone6dcd2d2008-07-17 12:53:50 -0400367 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
368 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -0500369
Chris Masone6dcd2d2008-07-17 12:53:50 -0400370 if (!(rw & (1 << BIO_RW))) {
Chris Mason0b86a832008-03-24 15:01:56 -0400371 goto mapit;
372 }
Chris Mason065631f2008-02-20 12:07:25 -0500373
Chris Mason44b8bd72008-04-16 11:14:51 -0400374 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
375 inode, rw, bio, mirror_num,
376 __btrfs_submit_bio_hook);
Chris Mason0b86a832008-03-24 15:01:56 -0400377mapit:
Chris Mason8b712842008-06-11 16:50:36 -0400378 return btrfs_map_bio(root, rw, bio, mirror_num, 0);
Chris Mason065631f2008-02-20 12:07:25 -0500379}
Chris Mason6885f302008-02-20 16:11:05 -0500380
Chris Masonba1da2f2008-07-17 12:54:15 -0400381static noinline int add_pending_csums(struct btrfs_trans_handle *trans,
Chris Masone6dcd2d2008-07-17 12:53:50 -0400382 struct inode *inode, u64 file_offset,
383 struct list_head *list)
384{
385 struct list_head *cur;
386 struct btrfs_ordered_sum *sum;
387
388 btrfs_set_trans_block_group(trans, inode);
Chris Masonba1da2f2008-07-17 12:54:15 -0400389 list_for_each(cur, list) {
Chris Masone6dcd2d2008-07-17 12:53:50 -0400390 sum = list_entry(cur, struct btrfs_ordered_sum, list);
391 mutex_lock(&BTRFS_I(inode)->csum_mutex);
392 btrfs_csum_file_blocks(trans, BTRFS_I(inode)->root,
393 inode, sum);
394 mutex_unlock(&BTRFS_I(inode)->csum_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400395 }
396 return 0;
397}
398
Chris Mason247e7432008-07-17 12:53:51 -0400399struct btrfs_writepage_fixup {
400 struct page *page;
401 struct btrfs_work work;
402};
403
404/* see btrfs_writepage_start_hook for details on why this is required */
405void btrfs_writepage_fixup_worker(struct btrfs_work *work)
406{
407 struct btrfs_writepage_fixup *fixup;
408 struct btrfs_ordered_extent *ordered;
409 struct page *page;
410 struct inode *inode;
411 u64 page_start;
412 u64 page_end;
413
414 fixup = container_of(work, struct btrfs_writepage_fixup, work);
415 page = fixup->page;
416
417 lock_page(page);
418 if (!page->mapping || !PageDirty(page) || !PageChecked(page)) {
419 ClearPageChecked(page);
420 goto out_page;
421 }
422
423 inode = page->mapping->host;
424 page_start = page_offset(page);
425 page_end = page_offset(page) + PAGE_CACHE_SIZE - 1;
426
427 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
428 ordered = btrfs_lookup_ordered_extent(inode, page_start);
429 if (ordered)
430 goto out;
431
432 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start, page_end,
433 GFP_NOFS);
434 ClearPageChecked(page);
435out:
436 unlock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end, GFP_NOFS);
437out_page:
438 unlock_page(page);
439 page_cache_release(page);
440}
441
442/*
443 * There are a few paths in the higher layers of the kernel that directly
444 * set the page dirty bit without asking the filesystem if it is a
445 * good idea. This causes problems because we want to make sure COW
446 * properly happens and the data=ordered rules are followed.
447 *
448 * In our case any range that doesn't have the EXTENT_ORDERED bit set
449 * hasn't been properly setup for IO. We kick off an async process
450 * to fix it up. The async helper will wait for ordered extents, set
451 * the delalloc bit and make it safe to write the page.
452 */
453int btrfs_writepage_start_hook(struct page *page, u64 start, u64 end)
454{
455 struct inode *inode = page->mapping->host;
456 struct btrfs_writepage_fixup *fixup;
457 struct btrfs_root *root = BTRFS_I(inode)->root;
458 int ret;
459
460 ret = test_range_bit(&BTRFS_I(inode)->io_tree, start, end,
461 EXTENT_ORDERED, 0);
462 if (ret)
463 return 0;
464
465 if (PageChecked(page))
466 return -EAGAIN;
467
468 fixup = kzalloc(sizeof(*fixup), GFP_NOFS);
469 if (!fixup)
470 return -EAGAIN;
471printk("queueing worker to fixup page %lu %Lu\n", inode->i_ino, page_offset(page));
472 SetPageChecked(page);
473 page_cache_get(page);
474 fixup->work.func = btrfs_writepage_fixup_worker;
475 fixup->page = page;
476 btrfs_queue_worker(&root->fs_info->fixup_workers, &fixup->work);
477 return -EAGAIN;
478}
479
Chris Masone6dcd2d2008-07-17 12:53:50 -0400480int btrfs_writepage_end_io_hook(struct page *page, u64 start, u64 end,
481 struct extent_state *state, int uptodate)
482{
483 struct inode *inode = page->mapping->host;
484 struct btrfs_root *root = BTRFS_I(inode)->root;
485 struct btrfs_trans_handle *trans;
486 struct btrfs_ordered_extent *ordered_extent;
487 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
488 u64 alloc_hint = 0;
489 struct list_head list;
490 struct btrfs_key ins;
491 int ret;
492
493 ret = btrfs_dec_test_ordered_pending(inode, start, end - start + 1);
Chris Masonba1da2f2008-07-17 12:54:15 -0400494 if (!ret)
Chris Masone6dcd2d2008-07-17 12:53:50 -0400495 return 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400496
Chris Masonf9295742008-07-17 12:54:14 -0400497 trans = btrfs_join_transaction(root, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400498
499 ordered_extent = btrfs_lookup_ordered_extent(inode, start);
500 BUG_ON(!ordered_extent);
501
502 lock_extent(io_tree, ordered_extent->file_offset,
503 ordered_extent->file_offset + ordered_extent->len - 1,
504 GFP_NOFS);
505
506 INIT_LIST_HEAD(&list);
507
508 ins.objectid = ordered_extent->start;
509 ins.offset = ordered_extent->len;
510 ins.type = BTRFS_EXTENT_ITEM_KEY;
511 ret = btrfs_alloc_reserved_extent(trans, root, root->root_key.objectid,
512 trans->transid, inode->i_ino,
513 ordered_extent->file_offset, &ins);
514 BUG_ON(ret);
Chris Masonee6e6502008-07-17 12:54:40 -0400515
516 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400517 ret = btrfs_drop_extents(trans, root, inode,
518 ordered_extent->file_offset,
519 ordered_extent->file_offset +
520 ordered_extent->len,
521 ordered_extent->file_offset, &alloc_hint);
522 BUG_ON(ret);
523 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
524 ordered_extent->file_offset,
525 ordered_extent->start,
526 ordered_extent->len,
527 ordered_extent->len, 0);
528 BUG_ON(ret);
529 btrfs_drop_extent_cache(inode, ordered_extent->file_offset,
530 ordered_extent->file_offset +
531 ordered_extent->len - 1);
Chris Masonee6e6502008-07-17 12:54:40 -0400532 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
533
Chris Masone6dcd2d2008-07-17 12:53:50 -0400534 inode->i_blocks += ordered_extent->len >> 9;
535 unlock_extent(io_tree, ordered_extent->file_offset,
536 ordered_extent->file_offset + ordered_extent->len - 1,
537 GFP_NOFS);
538 add_pending_csums(trans, inode, ordered_extent->file_offset,
539 &ordered_extent->list);
540
Chris Masondbe674a2008-07-17 12:54:05 -0400541 btrfs_ordered_update_i_size(inode, ordered_extent);
Chris Masone6dcd2d2008-07-17 12:53:50 -0400542 btrfs_remove_ordered_extent(inode, ordered_extent);
543 /* once for us */
544 btrfs_put_ordered_extent(ordered_extent);
545 /* once for the tree */
546 btrfs_put_ordered_extent(ordered_extent);
547
548 btrfs_update_inode(trans, root, inode);
549 btrfs_end_transaction(trans, root);
550 return 0;
551}
552
Chris Mason07157aa2007-08-30 08:50:51 -0400553int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
554{
555 int ret = 0;
556 struct inode *inode = page->mapping->host;
557 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500558 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400559 struct btrfs_csum_item *item;
560 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400561 u32 csum;
Chris Mason699122f2008-04-16 12:59:22 -0400562
Yanb98b6762008-01-08 15:54:37 -0500563 if (btrfs_test_opt(root, NODATASUM) ||
564 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500565 return 0;
Chris Mason699122f2008-04-16 12:59:22 -0400566
Chris Mason07157aa2007-08-30 08:50:51 -0400567 path = btrfs_alloc_path();
568 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
569 if (IS_ERR(item)) {
Chris Masonba1da2f2008-07-17 12:54:15 -0400570 /*
571 * It is possible there is an ordered extent that has
572 * not yet finished for this range in the file. If so,
573 * that extent will have a csum cached, and it will insert
574 * the sum after all the blocks in the extent are fully
575 * on disk. So, look for an ordered extent and use the
576 * sum if found.
577 */
578 ret = btrfs_find_ordered_sum(inode, start, &csum);
579 if (ret == 0)
580 goto found;
581
Chris Mason07157aa2007-08-30 08:50:51 -0400582 ret = PTR_ERR(item);
583 /* a csum that isn't present is a preallocated region. */
584 if (ret == -ENOENT || ret == -EFBIG)
585 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400586 csum = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400587 printk("no csum found for inode %lu start %Lu\n", inode->i_ino,
588 start);
Chris Mason07157aa2007-08-30 08:50:51 -0400589 goto out;
590 }
Chris Masonff79f812007-10-15 16:22:25 -0400591 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
592 BTRFS_CRC32_SIZE);
Chris Masonba1da2f2008-07-17 12:54:15 -0400593found:
Chris Masond1310b22008-01-24 16:13:08 -0500594 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400595out:
596 if (path)
597 btrfs_free_path(path);
Chris Mason07157aa2007-08-30 08:50:51 -0400598 return ret;
599}
600
Chris Mason7e383262008-04-09 16:28:12 -0400601struct io_failure_record {
602 struct page *page;
603 u64 start;
604 u64 len;
605 u64 logical;
606 int last_mirror;
607};
608
Chris Mason1259ab72008-05-12 13:39:03 -0400609int btrfs_io_failed_hook(struct bio *failed_bio,
610 struct page *page, u64 start, u64 end,
611 struct extent_state *state)
Chris Mason7e383262008-04-09 16:28:12 -0400612{
613 struct io_failure_record *failrec = NULL;
614 u64 private;
615 struct extent_map *em;
616 struct inode *inode = page->mapping->host;
617 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -0400618 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -0400619 struct bio *bio;
620 int num_copies;
621 int ret;
Chris Mason1259ab72008-05-12 13:39:03 -0400622 int rw;
Chris Mason7e383262008-04-09 16:28:12 -0400623 u64 logical;
624
625 ret = get_state_private(failure_tree, start, &private);
626 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -0400627 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
628 if (!failrec)
629 return -ENOMEM;
630 failrec->start = start;
631 failrec->len = end - start + 1;
632 failrec->last_mirror = 0;
633
Chris Mason3b951512008-04-17 11:29:12 -0400634 spin_lock(&em_tree->lock);
635 em = lookup_extent_mapping(em_tree, start, failrec->len);
636 if (em->start > start || em->start + em->len < start) {
637 free_extent_map(em);
638 em = NULL;
639 }
640 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -0400641
642 if (!em || IS_ERR(em)) {
643 kfree(failrec);
644 return -EIO;
645 }
646 logical = start - em->start;
647 logical = em->block_start + logical;
648 failrec->logical = logical;
649 free_extent_map(em);
650 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
651 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -0400652 set_state_private(failure_tree, start,
653 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -0400654 } else {
Chris Mason587f7702008-04-11 12:16:46 -0400655 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -0400656 }
657 num_copies = btrfs_num_copies(
658 &BTRFS_I(inode)->root->fs_info->mapping_tree,
659 failrec->logical, failrec->len);
660 failrec->last_mirror++;
661 if (!state) {
662 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
663 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
664 failrec->start,
665 EXTENT_LOCKED);
666 if (state && state->start != failrec->start)
667 state = NULL;
668 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
669 }
670 if (!state || failrec->last_mirror > num_copies) {
671 set_state_private(failure_tree, failrec->start, 0);
672 clear_extent_bits(failure_tree, failrec->start,
673 failrec->start + failrec->len - 1,
674 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
675 kfree(failrec);
676 return -EIO;
677 }
678 bio = bio_alloc(GFP_NOFS, 1);
679 bio->bi_private = state;
680 bio->bi_end_io = failed_bio->bi_end_io;
681 bio->bi_sector = failrec->logical >> 9;
682 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -0400683 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -0400684 bio_add_page(bio, page, failrec->len, start - page_offset(page));
Chris Mason1259ab72008-05-12 13:39:03 -0400685 if (failed_bio->bi_rw & (1 << BIO_RW))
686 rw = WRITE;
687 else
688 rw = READ;
689
690 BTRFS_I(inode)->io_tree.ops->submit_bio_hook(inode, rw, bio,
691 failrec->last_mirror);
692 return 0;
693}
694
695int btrfs_clean_io_failures(struct inode *inode, u64 start)
696{
697 u64 private;
698 u64 private_failure;
699 struct io_failure_record *failure;
700 int ret;
701
702 private = 0;
703 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
704 (u64)-1, 1, EXTENT_DIRTY)) {
705 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
706 start, &private_failure);
707 if (ret == 0) {
708 failure = (struct io_failure_record *)(unsigned long)
709 private_failure;
710 set_state_private(&BTRFS_I(inode)->io_failure_tree,
711 failure->start, 0);
712 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
713 failure->start,
714 failure->start + failure->len - 1,
715 EXTENT_DIRTY | EXTENT_LOCKED,
716 GFP_NOFS);
717 kfree(failure);
718 }
719 }
Chris Mason7e383262008-04-09 16:28:12 -0400720 return 0;
721}
722
Chris Mason70dec802008-01-29 09:59:12 -0500723int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
724 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400725{
Chris Mason35ebb932007-10-30 16:56:53 -0400726 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400727 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500728 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400729 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500730 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400731 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400732 struct btrfs_root *root = BTRFS_I(inode)->root;
733 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400734 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500735
Yanb98b6762008-01-08 15:54:37 -0500736 if (btrfs_test_opt(root, NODATASUM) ||
737 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500738 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500739 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500740 private = state->private;
741 ret = 0;
742 } else {
743 ret = get_state_private(io_tree, start, &private);
744 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400745 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400746 kaddr = kmap_atomic(page, KM_IRQ0);
747 if (ret) {
748 goto zeroit;
749 }
Chris Masonff79f812007-10-15 16:22:25 -0400750 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
751 btrfs_csum_final(csum, (char *)&csum);
752 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400753 goto zeroit;
754 }
755 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400756 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -0400757
758 /* if the io failure tree for this inode is non-empty,
759 * check to see if we've recovered from a failed IO
760 */
Chris Mason1259ab72008-05-12 13:39:03 -0400761 btrfs_clean_io_failures(inode, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400762 return 0;
763
764zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500765 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
766 page->mapping->host->i_ino, (unsigned long long)start, csum,
767 private);
Chris Masondb945352007-10-15 16:15:53 -0400768 memset(kaddr + offset, 1, end - start + 1);
769 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400770 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400771 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -0400772 if (private == 0)
773 return 0;
Chris Mason7e383262008-04-09 16:28:12 -0400774 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -0400775}
Chris Masonb888db22007-08-27 16:49:44 -0400776
Chris Mason39279cc2007-06-12 06:35:45 -0400777void btrfs_read_locked_inode(struct inode *inode)
778{
779 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400780 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400781 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400782 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400783 struct btrfs_root *root = BTRFS_I(inode)->root;
784 struct btrfs_key location;
785 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400786 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400787 int ret;
788
789 path = btrfs_alloc_path();
790 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400791 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500792
Chris Mason39279cc2007-06-12 06:35:45 -0400793 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400794 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400795 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400796
Chris Mason5f39d392007-10-15 16:14:19 -0400797 leaf = path->nodes[0];
798 inode_item = btrfs_item_ptr(leaf, path->slots[0],
799 struct btrfs_inode_item);
800
801 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
802 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
803 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
804 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
Chris Masondbe674a2008-07-17 12:54:05 -0400805 btrfs_i_size_write(inode, btrfs_inode_size(leaf, inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -0400806
807 tspec = btrfs_inode_atime(inode_item);
808 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
809 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
810
811 tspec = btrfs_inode_mtime(inode_item);
812 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
813 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
814
815 tspec = btrfs_inode_ctime(inode_item);
816 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
817 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
818
819 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
820 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400821 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400822 rdev = btrfs_inode_rdev(leaf, inode_item);
823
824 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400825 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
826 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500827 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500828 if (!BTRFS_I(inode)->block_group) {
829 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -0400830 NULL, 0,
831 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -0500832 }
Chris Mason39279cc2007-06-12 06:35:45 -0400833 btrfs_free_path(path);
834 inode_item = NULL;
835
Chris Mason39279cc2007-06-12 06:35:45 -0400836 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400837 case S_IFREG:
838 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -0400839 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -0500840 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400841 inode->i_fop = &btrfs_file_operations;
842 inode->i_op = &btrfs_file_inode_operations;
843 break;
844 case S_IFDIR:
845 inode->i_fop = &btrfs_dir_file_operations;
846 if (root == root->fs_info->tree_root)
847 inode->i_op = &btrfs_dir_ro_inode_operations;
848 else
849 inode->i_op = &btrfs_dir_inode_operations;
850 break;
851 case S_IFLNK:
852 inode->i_op = &btrfs_symlink_inode_operations;
853 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -0400854 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -0400855 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400856 default:
857 init_special_inode(inode, inode->i_mode, rdev);
858 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400859 }
860 return;
861
862make_bad:
Chris Mason39279cc2007-06-12 06:35:45 -0400863 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -0400864 make_bad_inode(inode);
865}
866
Chris Mason5f39d392007-10-15 16:14:19 -0400867static void fill_inode_item(struct extent_buffer *leaf,
868 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400869 struct inode *inode)
870{
Chris Mason5f39d392007-10-15 16:14:19 -0400871 btrfs_set_inode_uid(leaf, item, inode->i_uid);
872 btrfs_set_inode_gid(leaf, item, inode->i_gid);
Chris Masondbe674a2008-07-17 12:54:05 -0400873 btrfs_set_inode_size(leaf, item, BTRFS_I(inode)->disk_i_size);
Chris Mason5f39d392007-10-15 16:14:19 -0400874 btrfs_set_inode_mode(leaf, item, inode->i_mode);
875 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
876
877 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
878 inode->i_atime.tv_sec);
879 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
880 inode->i_atime.tv_nsec);
881
882 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
883 inode->i_mtime.tv_sec);
884 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
885 inode->i_mtime.tv_nsec);
886
887 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
888 inode->i_ctime.tv_sec);
889 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
890 inode->i_ctime.tv_nsec);
891
892 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
893 btrfs_set_inode_generation(leaf, item, inode->i_generation);
894 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500895 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400896 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400897 BTRFS_I(inode)->block_group->key.objectid);
898}
899
Chris Masonba1da2f2008-07-17 12:54:15 -0400900int noinline btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400901 struct btrfs_root *root,
902 struct inode *inode)
903{
904 struct btrfs_inode_item *inode_item;
905 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400906 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400907 int ret;
908
909 path = btrfs_alloc_path();
910 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400911 ret = btrfs_lookup_inode(trans, root, path,
912 &BTRFS_I(inode)->location, 1);
913 if (ret) {
914 if (ret > 0)
915 ret = -ENOENT;
916 goto failed;
917 }
918
Chris Mason5f39d392007-10-15 16:14:19 -0400919 leaf = path->nodes[0];
920 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400921 struct btrfs_inode_item);
922
Chris Mason5f39d392007-10-15 16:14:19 -0400923 fill_inode_item(leaf, inode_item, inode);
924 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400925 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400926 ret = 0;
927failed:
Chris Mason39279cc2007-06-12 06:35:45 -0400928 btrfs_free_path(path);
929 return ret;
930}
931
932
933static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
934 struct btrfs_root *root,
935 struct inode *dir,
936 struct dentry *dentry)
937{
938 struct btrfs_path *path;
939 const char *name = dentry->d_name.name;
940 int name_len = dentry->d_name.len;
941 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400942 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400943 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400944 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400945
946 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400947 if (!path) {
948 ret = -ENOMEM;
949 goto err;
950 }
951
Chris Mason39279cc2007-06-12 06:35:45 -0400952 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
953 name, name_len, -1);
954 if (IS_ERR(di)) {
955 ret = PTR_ERR(di);
956 goto err;
957 }
958 if (!di) {
959 ret = -ENOENT;
960 goto err;
961 }
Chris Mason5f39d392007-10-15 16:14:19 -0400962 leaf = path->nodes[0];
963 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400964 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400965 if (ret)
966 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400967 btrfs_release_path(root, path);
968
969 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400970 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400971 if (IS_ERR(di)) {
972 ret = PTR_ERR(di);
973 goto err;
974 }
975 if (!di) {
976 ret = -ENOENT;
977 goto err;
978 }
979 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason925baed2008-06-25 16:01:30 -0400980 btrfs_release_path(root, path);
Chris Mason39279cc2007-06-12 06:35:45 -0400981
982 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -0500983 ret = btrfs_del_inode_ref(trans, root, name, name_len,
984 dentry->d_inode->i_ino,
985 dentry->d_parent->d_inode->i_ino);
986 if (ret) {
987 printk("failed to delete reference to %.*s, "
988 "inode %lu parent %lu\n", name_len, name,
989 dentry->d_inode->i_ino,
990 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -0500991 }
Chris Mason39279cc2007-06-12 06:35:45 -0400992err:
993 btrfs_free_path(path);
994 if (!ret) {
Chris Masondbe674a2008-07-17 12:54:05 -0400995 btrfs_i_size_write(dir, dir->i_size - name_len * 2);
Chris Mason79c44582007-06-25 10:09:33 -0400996 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400997 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -0500998#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
999 dentry->d_inode->i_nlink--;
1000#else
Chris Mason39279cc2007-06-12 06:35:45 -04001001 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001002#endif
Chris Mason54aa1f42007-06-22 14:16:25 -04001003 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001004 dir->i_sb->s_dirt = 1;
1005 }
1006 return ret;
1007}
1008
1009static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
1010{
1011 struct btrfs_root *root;
1012 struct btrfs_trans_handle *trans;
1013 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -05001014 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001015
1016 root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001017
1018 ret = btrfs_check_free_space(root, 1, 1);
1019 if (ret)
1020 goto fail;
1021
Chris Mason39279cc2007-06-12 06:35:45 -04001022 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001023
Chris Mason39279cc2007-06-12 06:35:45 -04001024 btrfs_set_trans_block_group(trans, dir);
1025 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001026 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04001027
Chris Mason89ce8a62008-06-25 16:01:31 -04001028 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001029fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001030 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001031 return ret;
1032}
1033
1034static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
1035{
1036 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001037 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001038 int ret;
1039 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04001040 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -05001041 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001042
Chris Mason925baed2008-06-25 16:01:30 -04001043 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
Yan134d4512007-10-25 15:49:25 -04001044 return -ENOTEMPTY;
Chris Mason925baed2008-06-25 16:01:30 -04001045 }
Yan134d4512007-10-25 15:49:25 -04001046
Chris Mason1832a6d2007-12-21 16:27:21 -05001047 ret = btrfs_check_free_space(root, 1, 1);
1048 if (ret)
1049 goto fail;
1050
Chris Mason39279cc2007-06-12 06:35:45 -04001051 trans = btrfs_start_transaction(root, 1);
1052 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -04001053
1054 /* now the directory is empty */
1055 err = btrfs_unlink_trans(trans, root, dir, dentry);
1056 if (!err) {
Chris Masondbe674a2008-07-17 12:54:05 -04001057 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001058 }
Chris Mason39544012007-12-12 14:38:19 -05001059
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001060 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04001061 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001062fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001063 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -05001064
Chris Mason39279cc2007-06-12 06:35:45 -04001065 if (ret && !err)
1066 err = ret;
1067 return err;
1068}
1069
Chris Mason39279cc2007-06-12 06:35:45 -04001070/*
Chris Mason39279cc2007-06-12 06:35:45 -04001071 * this can truncate away extent items, csum items and directory items.
1072 * It starts at a high offset and removes keys until it can't find
1073 * any higher than i_size.
1074 *
1075 * csum items that cross the new i_size are truncated to the new size
1076 * as well.
1077 */
1078static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
1079 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -05001080 struct inode *inode,
1081 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001082{
1083 int ret;
1084 struct btrfs_path *path;
1085 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001086 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001087 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -04001088 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001089 struct btrfs_file_extent_item *fi;
1090 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -04001091 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001092 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -05001093 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -05001094 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001095 int found_extent;
1096 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -05001097 int pending_del_nr = 0;
1098 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -04001099 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -04001100 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001101
Chris Mason3b951512008-04-17 11:29:12 -04001102 btrfs_drop_extent_cache(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04001103 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -04001104 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -04001105 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -04001106
Chris Mason39279cc2007-06-12 06:35:45 -04001107 /* FIXME, add redo link to tree so we don't leak on crash */
1108 key.objectid = inode->i_ino;
1109 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -04001110 key.type = (u8)-1;
1111
Chris Mason85e21ba2008-01-29 15:11:36 -05001112 btrfs_init_path(path);
1113search_again:
1114 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1115 if (ret < 0) {
1116 goto error;
1117 }
1118 if (ret > 0) {
1119 BUG_ON(path->slots[0] == 0);
1120 path->slots[0]--;
1121 }
1122
Chris Mason39279cc2007-06-12 06:35:45 -04001123 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001124 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -04001125 leaf = path->nodes[0];
1126 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1127 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -04001128
Chris Mason5f39d392007-10-15 16:14:19 -04001129 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -04001130 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001131
Chris Mason85e21ba2008-01-29 15:11:36 -05001132 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001133 break;
1134
Chris Mason5f39d392007-10-15 16:14:19 -04001135 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001136 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -04001137 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -04001138 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -04001139 extent_type = btrfs_file_extent_type(leaf, fi);
1140 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04001141 item_end +=
Chris Masondb945352007-10-15 16:15:53 -04001142 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -04001143 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1144 struct btrfs_item *item = btrfs_item_nr(leaf,
1145 path->slots[0]);
1146 item_end += btrfs_file_extent_inline_len(leaf,
1147 item);
Chris Mason39279cc2007-06-12 06:35:45 -04001148 }
Yan008630c2007-11-07 13:31:09 -05001149 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -04001150 }
1151 if (found_type == BTRFS_CSUM_ITEM_KEY) {
1152 ret = btrfs_csum_truncate(trans, root, path,
1153 inode->i_size);
1154 BUG_ON(ret);
1155 }
Yan008630c2007-11-07 13:31:09 -05001156 if (item_end < inode->i_size) {
Chris Masonb888db22007-08-27 16:49:44 -04001157 if (found_type == BTRFS_DIR_ITEM_KEY) {
1158 found_type = BTRFS_INODE_ITEM_KEY;
1159 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
1160 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -05001161 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
1162 found_type = BTRFS_XATTR_ITEM_KEY;
1163 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
1164 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -04001165 } else if (found_type) {
1166 found_type--;
1167 } else {
1168 break;
Chris Mason39279cc2007-06-12 06:35:45 -04001169 }
Yana61721d2007-09-17 11:08:38 -04001170 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -05001171 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04001172 }
Chris Mason5f39d392007-10-15 16:14:19 -04001173 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -04001174 del_item = 1;
1175 else
1176 del_item = 0;
1177 found_extent = 0;
1178
1179 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001180 if (found_type != BTRFS_EXTENT_DATA_KEY)
1181 goto delete;
1182
1183 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001184 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001185 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001186 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001187 u64 orig_num_bytes =
1188 btrfs_file_extent_num_bytes(leaf, fi);
1189 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001190 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05001191 extent_num_bytes = extent_num_bytes &
1192 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001193 btrfs_set_file_extent_num_bytes(leaf, fi,
1194 extent_num_bytes);
1195 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001196 extent_num_bytes);
1197 if (extent_start != 0)
1198 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001199 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001200 } else {
Chris Masondb945352007-10-15 16:15:53 -04001201 extent_num_bytes =
1202 btrfs_file_extent_disk_num_bytes(leaf,
1203 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001204 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001205 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001206 if (extent_start != 0) {
1207 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -05001208 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001209 }
Chris Masond8d5f3e2007-12-11 12:42:00 -05001210 root_gen = btrfs_header_generation(leaf);
1211 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001212 }
Chris Mason90692182008-02-08 13:49:28 -05001213 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1214 if (!del_item) {
1215 u32 newsize = inode->i_size - found_key.offset;
1216 dec_i_blocks(inode, item_end + 1 -
1217 found_key.offset - newsize);
1218 newsize =
1219 btrfs_file_extent_calc_inline_size(newsize);
1220 ret = btrfs_truncate_item(trans, root, path,
1221 newsize, 1);
1222 BUG_ON(ret);
1223 } else {
1224 dec_i_blocks(inode, item_end + 1 -
1225 found_key.offset);
1226 }
Chris Mason39279cc2007-06-12 06:35:45 -04001227 }
Chris Mason179e29e2007-11-01 11:28:41 -04001228delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001229 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001230 if (!pending_del_nr) {
1231 /* no pending yet, add ourselves */
1232 pending_del_slot = path->slots[0];
1233 pending_del_nr = 1;
1234 } else if (pending_del_nr &&
1235 path->slots[0] + 1 == pending_del_slot) {
1236 /* hop on the pending chunk */
1237 pending_del_nr++;
1238 pending_del_slot = path->slots[0];
1239 } else {
1240 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1241 }
Chris Mason39279cc2007-06-12 06:35:45 -04001242 } else {
1243 break;
1244 }
Chris Mason39279cc2007-06-12 06:35:45 -04001245 if (found_extent) {
1246 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001247 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -05001248 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001249 root_gen, inode->i_ino,
1250 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001251 BUG_ON(ret);
1252 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001253next:
1254 if (path->slots[0] == 0) {
1255 if (pending_del_nr)
1256 goto del_pending;
1257 btrfs_release_path(root, path);
1258 goto search_again;
1259 }
1260
1261 path->slots[0]--;
1262 if (pending_del_nr &&
1263 path->slots[0] + 1 != pending_del_slot) {
1264 struct btrfs_key debug;
1265del_pending:
1266 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1267 pending_del_slot);
1268 ret = btrfs_del_items(trans, root, path,
1269 pending_del_slot,
1270 pending_del_nr);
1271 BUG_ON(ret);
1272 pending_del_nr = 0;
1273 btrfs_release_path(root, path);
1274 goto search_again;
1275 }
Chris Mason39279cc2007-06-12 06:35:45 -04001276 }
1277 ret = 0;
1278error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001279 if (pending_del_nr) {
1280 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1281 pending_del_nr);
1282 }
Chris Mason39279cc2007-06-12 06:35:45 -04001283 btrfs_free_path(path);
1284 inode->i_sb->s_dirt = 1;
1285 return ret;
1286}
1287
Chris Masona52d9a82007-08-27 16:49:44 -04001288/*
1289 * taken from block_truncate_page, but does cow as it zeros out
1290 * any bytes left in the last page in the file.
1291 */
1292static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1293{
1294 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001295 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001296 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
1297 struct btrfs_ordered_extent *ordered;
1298 char *kaddr;
Chris Masondb945352007-10-15 16:15:53 -04001299 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001300 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1301 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1302 struct page *page;
1303 int ret = 0;
1304 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001305 u64 page_end;
Chris Masona52d9a82007-08-27 16:49:44 -04001306
1307 if ((offset & (blocksize - 1)) == 0)
1308 goto out;
1309
1310 ret = -ENOMEM;
Chris Mason211c17f2008-05-15 09:13:45 -04001311again:
Chris Masona52d9a82007-08-27 16:49:44 -04001312 page = grab_cache_page(mapping, index);
1313 if (!page)
1314 goto out;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001315
1316 page_start = page_offset(page);
1317 page_end = page_start + PAGE_CACHE_SIZE - 1;
1318
Chris Masona52d9a82007-08-27 16:49:44 -04001319 if (!PageUptodate(page)) {
1320 ret = btrfs_readpage(NULL, page);
1321 lock_page(page);
Chris Mason211c17f2008-05-15 09:13:45 -04001322 if (page->mapping != mapping) {
1323 unlock_page(page);
1324 page_cache_release(page);
1325 goto again;
1326 }
Chris Masona52d9a82007-08-27 16:49:44 -04001327 if (!PageUptodate(page)) {
1328 ret = -EIO;
1329 goto out;
1330 }
1331 }
Chris Mason211c17f2008-05-15 09:13:45 -04001332 wait_on_page_writeback(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001333
1334 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
1335 set_page_extent_mapped(page);
1336
1337 ordered = btrfs_lookup_ordered_extent(inode, page_start);
1338 if (ordered) {
1339 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
1340 unlock_page(page);
1341 page_cache_release(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04001342 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001343 btrfs_put_ordered_extent(ordered);
1344 goto again;
1345 }
1346
1347 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
1348 page_end, GFP_NOFS);
1349 ret = 0;
1350 if (offset != PAGE_CACHE_SIZE) {
1351 kaddr = kmap(page);
1352 memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
1353 flush_dcache_page(page);
1354 kunmap(page);
1355 }
Chris Mason247e7432008-07-17 12:53:51 -04001356 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04001357 set_page_dirty(page);
1358 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001359
Chris Mason39279cc2007-06-12 06:35:45 -04001360 unlock_page(page);
1361 page_cache_release(page);
1362out:
1363 return ret;
1364}
1365
1366static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1367{
1368 struct inode *inode = dentry->d_inode;
1369 int err;
1370
1371 err = inode_change_ok(inode, attr);
1372 if (err)
1373 return err;
1374
1375 if (S_ISREG(inode->i_mode) &&
1376 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1377 struct btrfs_trans_handle *trans;
1378 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001379 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001380
Chris Mason5f39d392007-10-15 16:14:19 -04001381 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001382 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001383 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001384 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001385 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001386
Chris Mason1b0f7c22008-01-30 14:33:02 -05001387 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001388 goto out;
1389
Chris Mason1832a6d2007-12-21 16:27:21 -05001390 err = btrfs_check_free_space(root, 1, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05001391 if (err)
1392 goto fail;
1393
Chris Mason39279cc2007-06-12 06:35:45 -04001394 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1395
Chris Mason5f564062008-01-22 16:47:59 -05001396 hole_size = block_end - hole_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04001397 btrfs_wait_ordered_range(inode, hole_start, hole_size);
1398 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001399
Chris Mason39279cc2007-06-12 06:35:45 -04001400 trans = btrfs_start_transaction(root, 1);
1401 btrfs_set_trans_block_group(trans, inode);
Chris Masonee6e6502008-07-17 12:54:40 -04001402 mutex_lock(&BTRFS_I(inode)->extent_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -04001403 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001404 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001405 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001406
Chris Mason179e29e2007-11-01 11:28:41 -04001407 if (alloc_hint != EXTENT_MAP_INLINE) {
1408 err = btrfs_insert_file_extent(trans, root,
1409 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001410 hole_start, 0, 0,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001411 hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001412 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001413 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001414 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001415 }
Chris Masonee6e6502008-07-17 12:54:40 -04001416 mutex_unlock(&BTRFS_I(inode)->extent_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001417 btrfs_end_transaction(trans, root);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001418 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001419 if (err)
1420 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001421 }
1422out:
1423 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001424fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001425 return err;
1426}
Chris Mason61295eb2008-01-14 16:24:38 -05001427
Chris Mason39279cc2007-06-12 06:35:45 -04001428void btrfs_delete_inode(struct inode *inode)
1429{
1430 struct btrfs_trans_handle *trans;
1431 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001432 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001433 int ret;
1434
Chris Masone6dcd2d2008-07-17 12:53:50 -04001435 btrfs_wait_ordered_range(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04001436 truncate_inode_pages(&inode->i_data, 0);
1437 if (is_bad_inode(inode)) {
1438 goto no_delete;
1439 }
Chris Mason5f39d392007-10-15 16:14:19 -04001440
Chris Masondbe674a2008-07-17 12:54:05 -04001441 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001442 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001443
Chris Mason39279cc2007-06-12 06:35:45 -04001444 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001445 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001446 if (ret)
1447 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001448
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001449 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001450 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001451
Chris Mason39279cc2007-06-12 06:35:45 -04001452 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001453 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001454 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001455
1456no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001457 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001458 btrfs_end_transaction(trans, root);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001459 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001460no_delete:
1461 clear_inode(inode);
1462}
1463
1464/*
1465 * this returns the key found in the dir entry in the location pointer.
1466 * If no dir entries were found, location->objectid is 0.
1467 */
1468static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1469 struct btrfs_key *location)
1470{
1471 const char *name = dentry->d_name.name;
1472 int namelen = dentry->d_name.len;
1473 struct btrfs_dir_item *di;
1474 struct btrfs_path *path;
1475 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001476 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001477
Chris Mason39544012007-12-12 14:38:19 -05001478 if (namelen == 1 && strcmp(name, ".") == 0) {
1479 location->objectid = dir->i_ino;
1480 location->type = BTRFS_INODE_ITEM_KEY;
1481 location->offset = 0;
1482 return 0;
1483 }
Chris Mason39279cc2007-06-12 06:35:45 -04001484 path = btrfs_alloc_path();
1485 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001486
Chris Mason7a720532007-12-13 09:06:59 -05001487 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001488 struct btrfs_key key;
1489 struct extent_buffer *leaf;
1490 u32 nritems;
1491 int slot;
1492
1493 key.objectid = dir->i_ino;
1494 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1495 key.offset = 0;
1496 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1497 BUG_ON(ret == 0);
1498 ret = 0;
1499
1500 leaf = path->nodes[0];
1501 slot = path->slots[0];
1502 nritems = btrfs_header_nritems(leaf);
1503 if (slot >= nritems)
1504 goto out_err;
1505
1506 btrfs_item_key_to_cpu(leaf, &key, slot);
1507 if (key.objectid != dir->i_ino ||
1508 key.type != BTRFS_INODE_REF_KEY) {
1509 goto out_err;
1510 }
1511 location->objectid = key.offset;
1512 location->type = BTRFS_INODE_ITEM_KEY;
1513 location->offset = 0;
1514 goto out;
1515 }
1516
Chris Mason39279cc2007-06-12 06:35:45 -04001517 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1518 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001519 if (IS_ERR(di))
1520 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001521 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001522 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001523 }
Chris Mason5f39d392007-10-15 16:14:19 -04001524 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001525out:
Chris Mason39279cc2007-06-12 06:35:45 -04001526 btrfs_free_path(path);
1527 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001528out_err:
1529 location->objectid = 0;
1530 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001531}
1532
1533/*
1534 * when we hit a tree root in a directory, the btrfs part of the inode
1535 * needs to be changed to reflect the root directory of the tree root. This
1536 * is kind of like crossing a mount point.
1537 */
1538static int fixup_tree_root_location(struct btrfs_root *root,
1539 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001540 struct btrfs_root **sub_root,
1541 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001542{
1543 struct btrfs_path *path;
1544 struct btrfs_root_item *ri;
1545
1546 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1547 return 0;
1548 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1549 return 0;
1550
1551 path = btrfs_alloc_path();
1552 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -04001553
Josef Bacik58176a92007-08-29 15:47:34 -04001554 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1555 dentry->d_name.name,
1556 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001557 if (IS_ERR(*sub_root))
1558 return PTR_ERR(*sub_root);
1559
1560 ri = &(*sub_root)->root_item;
1561 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001562 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1563 location->offset = 0;
1564
1565 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04001566 return 0;
1567}
1568
1569static int btrfs_init_locked_inode(struct inode *inode, void *p)
1570{
1571 struct btrfs_iget_args *args = p;
1572 inode->i_ino = args->ino;
1573 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001574 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04001575 BTRFS_I(inode)->disk_i_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001576 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1577 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001578 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001579 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1580 inode->i_mapping, GFP_NOFS);
Chris Masonba1da2f2008-07-17 12:54:15 -04001581 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04001582 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04001583 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001584 return 0;
1585}
1586
1587static int btrfs_find_actor(struct inode *inode, void *opaque)
1588{
1589 struct btrfs_iget_args *args = opaque;
1590 return (args->ino == inode->i_ino &&
1591 args->root == BTRFS_I(inode)->root);
1592}
1593
Chris Masondc17ff82008-01-08 15:46:30 -05001594struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1595 u64 root_objectid)
1596{
1597 struct btrfs_iget_args args;
1598 args.ino = objectid;
1599 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1600
1601 if (!args.root)
1602 return NULL;
1603
1604 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1605}
1606
Chris Mason39279cc2007-06-12 06:35:45 -04001607struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1608 struct btrfs_root *root)
1609{
1610 struct inode *inode;
1611 struct btrfs_iget_args args;
1612 args.ino = objectid;
1613 args.root = root;
1614
1615 inode = iget5_locked(s, objectid, btrfs_find_actor,
1616 btrfs_init_locked_inode,
1617 (void *)&args);
1618 return inode;
1619}
1620
1621static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1622 struct nameidata *nd)
1623{
1624 struct inode * inode;
1625 struct btrfs_inode *bi = BTRFS_I(dir);
1626 struct btrfs_root *root = bi->root;
1627 struct btrfs_root *sub_root = root;
1628 struct btrfs_key location;
1629 int ret;
1630
1631 if (dentry->d_name.len > BTRFS_NAME_LEN)
1632 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001633
Chris Mason39279cc2007-06-12 06:35:45 -04001634 ret = btrfs_inode_by_name(dir, dentry, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001635
Chris Mason39279cc2007-06-12 06:35:45 -04001636 if (ret < 0)
1637 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001638
Chris Mason39279cc2007-06-12 06:35:45 -04001639 inode = NULL;
1640 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001641 ret = fixup_tree_root_location(root, &location, &sub_root,
1642 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001643 if (ret < 0)
1644 return ERR_PTR(ret);
1645 if (ret > 0)
1646 return ERR_PTR(-ENOENT);
1647 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1648 sub_root);
1649 if (!inode)
1650 return ERR_PTR(-EACCES);
1651 if (inode->i_state & I_NEW) {
1652 /* the inode and parent dir are two different roots */
1653 if (sub_root != root) {
1654 igrab(inode);
1655 sub_root->inode = inode;
1656 }
1657 BTRFS_I(inode)->root = sub_root;
1658 memcpy(&BTRFS_I(inode)->location, &location,
1659 sizeof(location));
1660 btrfs_read_locked_inode(inode);
1661 unlock_new_inode(inode);
1662 }
1663 }
1664 return d_splice_alias(inode, dentry);
1665}
1666
Chris Mason39279cc2007-06-12 06:35:45 -04001667static unsigned char btrfs_filetype_table[] = {
1668 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1669};
1670
1671static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1672{
Chris Mason6da6aba2007-12-18 16:15:09 -05001673 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001674 struct btrfs_root *root = BTRFS_I(inode)->root;
1675 struct btrfs_item *item;
1676 struct btrfs_dir_item *di;
1677 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001678 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001679 struct btrfs_path *path;
1680 int ret;
1681 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001682 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001683 int slot;
1684 int advance;
1685 unsigned char d_type;
1686 int over = 0;
1687 u32 di_cur;
1688 u32 di_total;
1689 u32 di_len;
1690 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001691 char tmp_name[32];
1692 char *name_ptr;
1693 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001694
1695 /* FIXME, use a real flag for deciding about the key type */
1696 if (root->fs_info->tree_root == root)
1697 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001698
Chris Mason39544012007-12-12 14:38:19 -05001699 /* special case for "." */
1700 if (filp->f_pos == 0) {
1701 over = filldir(dirent, ".", 1,
1702 1, inode->i_ino,
1703 DT_DIR);
1704 if (over)
1705 return 0;
1706 filp->f_pos = 1;
1707 }
1708
Chris Mason39279cc2007-06-12 06:35:45 -04001709 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001710 path = btrfs_alloc_path();
1711 path->reada = 2;
1712
1713 /* special case for .., just use the back ref */
1714 if (filp->f_pos == 1) {
1715 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1716 key.offset = 0;
1717 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1718 BUG_ON(ret == 0);
1719 leaf = path->nodes[0];
1720 slot = path->slots[0];
1721 nritems = btrfs_header_nritems(leaf);
1722 if (slot >= nritems) {
1723 btrfs_release_path(root, path);
1724 goto read_dir_items;
1725 }
1726 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1727 btrfs_release_path(root, path);
1728 if (found_key.objectid != key.objectid ||
1729 found_key.type != BTRFS_INODE_REF_KEY)
1730 goto read_dir_items;
1731 over = filldir(dirent, "..", 2,
1732 2, found_key.offset, DT_DIR);
1733 if (over)
1734 goto nopos;
1735 filp->f_pos = 2;
1736 }
1737
1738read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001739 btrfs_set_key_type(&key, key_type);
1740 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001741
Chris Mason39279cc2007-06-12 06:35:45 -04001742 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1743 if (ret < 0)
1744 goto err;
1745 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001746 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001747 leaf = path->nodes[0];
1748 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001749 slot = path->slots[0];
1750 if (advance || slot >= nritems) {
1751 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001752 ret = btrfs_next_leaf(root, path);
1753 if (ret)
1754 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001755 leaf = path->nodes[0];
1756 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001757 slot = path->slots[0];
1758 } else {
1759 slot++;
1760 path->slots[0]++;
1761 }
1762 }
1763 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001764 item = btrfs_item_nr(leaf, slot);
1765 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1766
1767 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001768 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001769 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001770 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001771 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001772 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001773
1774 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001775 advance = 1;
1776 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1777 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001778 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001779 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001780 struct btrfs_key location;
1781
1782 name_len = btrfs_dir_name_len(leaf, di);
1783 if (name_len < 32) {
1784 name_ptr = tmp_name;
1785 } else {
1786 name_ptr = kmalloc(name_len, GFP_NOFS);
1787 BUG_ON(!name_ptr);
1788 }
1789 read_extent_buffer(leaf, name_ptr,
1790 (unsigned long)(di + 1), name_len);
1791
1792 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1793 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001794 over = filldir(dirent, name_ptr, name_len,
1795 found_key.offset,
1796 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001797 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001798
1799 if (name_ptr != tmp_name)
1800 kfree(name_ptr);
1801
Chris Mason39279cc2007-06-12 06:35:45 -04001802 if (over)
1803 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001804 di_len = btrfs_dir_name_len(leaf, di) +
1805 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001806 di_cur += di_len;
1807 di = (struct btrfs_dir_item *)((char *)di + di_len);
1808 }
1809 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001810 if (key_type == BTRFS_DIR_INDEX_KEY)
1811 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1812 else
1813 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001814nopos:
1815 ret = 0;
1816err:
Chris Mason39279cc2007-06-12 06:35:45 -04001817 btrfs_free_path(path);
Chris Mason39279cc2007-06-12 06:35:45 -04001818 return ret;
1819}
1820
1821int btrfs_write_inode(struct inode *inode, int wait)
1822{
1823 struct btrfs_root *root = BTRFS_I(inode)->root;
1824 struct btrfs_trans_handle *trans;
1825 int ret = 0;
1826
1827 if (wait) {
Chris Masonf9295742008-07-17 12:54:14 -04001828 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04001829 btrfs_set_trans_block_group(trans, inode);
1830 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04001831 }
1832 return ret;
1833}
1834
1835/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001836 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001837 * inode changes. But, it is most likely to find the inode in cache.
1838 * FIXME, needs more benchmarking...there are no reasons other than performance
1839 * to keep or drop this code.
1840 */
1841void btrfs_dirty_inode(struct inode *inode)
1842{
1843 struct btrfs_root *root = BTRFS_I(inode)->root;
1844 struct btrfs_trans_handle *trans;
1845
Chris Masonf9295742008-07-17 12:54:14 -04001846 trans = btrfs_join_transaction(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04001847 btrfs_set_trans_block_group(trans, inode);
1848 btrfs_update_inode(trans, root, inode);
1849 btrfs_end_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04001850}
1851
1852static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1853 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001854 const char *name, int name_len,
1855 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001856 u64 objectid,
1857 struct btrfs_block_group_cache *group,
1858 int mode)
1859{
1860 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001861 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04001862 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04001863 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001864 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001865 struct btrfs_inode_ref *ref;
1866 struct btrfs_key key[2];
1867 u32 sizes[2];
1868 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001869 int ret;
1870 int owner;
1871
Chris Mason5f39d392007-10-15 16:14:19 -04001872 path = btrfs_alloc_path();
1873 BUG_ON(!path);
1874
Chris Mason39279cc2007-06-12 06:35:45 -04001875 inode = new_inode(root->fs_info->sb);
1876 if (!inode)
1877 return ERR_PTR(-ENOMEM);
1878
Chris Masond1310b22008-01-24 16:13:08 -05001879 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1880 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001881 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001882 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1883 inode->i_mapping, GFP_NOFS);
Chris Masonba1da2f2008-07-17 12:54:15 -04001884 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason1b1e2132008-06-25 16:01:31 -04001885 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04001886 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05001887 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04001888 BTRFS_I(inode)->disk_i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001889 BTRFS_I(inode)->root = root;
Chris Masonb888db22007-08-27 16:49:44 -04001890
Chris Mason39279cc2007-06-12 06:35:45 -04001891 if (mode & S_IFDIR)
1892 owner = 0;
1893 else
1894 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04001895 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001896 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04001897 if (!new_inode_group) {
1898 printk("find_block group failed\n");
1899 new_inode_group = group;
1900 }
1901 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05001902 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001903
1904 key[0].objectid = objectid;
1905 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1906 key[0].offset = 0;
1907
1908 key[1].objectid = objectid;
1909 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1910 key[1].offset = ref_objectid;
1911
1912 sizes[0] = sizeof(struct btrfs_inode_item);
1913 sizes[1] = name_len + sizeof(*ref);
1914
1915 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1916 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001917 goto fail;
1918
Chris Mason9c583092008-01-29 15:15:18 -05001919 if (objectid > root->highest_inode)
1920 root->highest_inode = objectid;
1921
Chris Mason39279cc2007-06-12 06:35:45 -04001922 inode->i_uid = current->fsuid;
1923 inode->i_gid = current->fsgid;
1924 inode->i_mode = mode;
1925 inode->i_ino = objectid;
1926 inode->i_blocks = 0;
1927 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001928 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1929 struct btrfs_inode_item);
1930 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001931
1932 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1933 struct btrfs_inode_ref);
1934 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1935 ptr = (unsigned long)(ref + 1);
1936 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1937
Chris Mason5f39d392007-10-15 16:14:19 -04001938 btrfs_mark_buffer_dirty(path->nodes[0]);
1939 btrfs_free_path(path);
1940
Chris Mason39279cc2007-06-12 06:35:45 -04001941 location = &BTRFS_I(inode)->location;
1942 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001943 location->offset = 0;
1944 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1945
Chris Mason39279cc2007-06-12 06:35:45 -04001946 insert_inode_hash(inode);
1947 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001948fail:
1949 btrfs_free_path(path);
1950 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001951}
1952
1953static inline u8 btrfs_inode_type(struct inode *inode)
1954{
1955 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1956}
1957
1958static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001959 struct dentry *dentry, struct inode *inode,
1960 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001961{
1962 int ret;
1963 struct btrfs_key key;
1964 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001965 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001966
Chris Mason39279cc2007-06-12 06:35:45 -04001967 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001968 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1969 key.offset = 0;
1970
1971 ret = btrfs_insert_dir_item(trans, root,
1972 dentry->d_name.name, dentry->d_name.len,
1973 dentry->d_parent->d_inode->i_ino,
1974 &key, btrfs_inode_type(inode));
1975 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05001976 if (add_backref) {
1977 ret = btrfs_insert_inode_ref(trans, root,
1978 dentry->d_name.name,
1979 dentry->d_name.len,
1980 inode->i_ino,
1981 dentry->d_parent->d_inode->i_ino);
1982 }
Chris Mason79c44582007-06-25 10:09:33 -04001983 parent_inode = dentry->d_parent->d_inode;
Chris Masondbe674a2008-07-17 12:54:05 -04001984 btrfs_i_size_write(parent_inode, parent_inode->i_size +
1985 dentry->d_name.len * 2);
Chris Mason79c44582007-06-25 10:09:33 -04001986 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001987 ret = btrfs_update_inode(trans, root,
1988 dentry->d_parent->d_inode);
1989 }
1990 return ret;
1991}
1992
1993static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001994 struct dentry *dentry, struct inode *inode,
1995 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001996{
Chris Mason9c583092008-01-29 15:15:18 -05001997 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04001998 if (!err) {
1999 d_instantiate(dentry, inode);
2000 return 0;
2001 }
2002 if (err > 0)
2003 err = -EEXIST;
2004 return err;
2005}
2006
Josef Bacik618e21d2007-07-11 10:18:17 -04002007static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
2008 int mode, dev_t rdev)
2009{
2010 struct btrfs_trans_handle *trans;
2011 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002012 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04002013 int err;
2014 int drop_inode = 0;
2015 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05002016 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04002017
2018 if (!new_valid_dev(rdev))
2019 return -EINVAL;
2020
Chris Mason1832a6d2007-12-21 16:27:21 -05002021 err = btrfs_check_free_space(root, 1, 0);
2022 if (err)
2023 goto fail;
2024
Josef Bacik618e21d2007-07-11 10:18:17 -04002025 trans = btrfs_start_transaction(root, 1);
2026 btrfs_set_trans_block_group(trans, dir);
2027
2028 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2029 if (err) {
2030 err = -ENOSPC;
2031 goto out_unlock;
2032 }
2033
Chris Mason9c583092008-01-29 15:15:18 -05002034 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2035 dentry->d_name.len,
2036 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04002037 BTRFS_I(dir)->block_group, mode);
2038 err = PTR_ERR(inode);
2039 if (IS_ERR(inode))
2040 goto out_unlock;
2041
2042 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002043 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04002044 if (err)
2045 drop_inode = 1;
2046 else {
2047 inode->i_op = &btrfs_special_inode_operations;
2048 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04002049 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04002050 }
2051 dir->i_sb->s_dirt = 1;
2052 btrfs_update_inode_block_group(trans, inode);
2053 btrfs_update_inode_block_group(trans, dir);
2054out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002055 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002056 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002057fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04002058 if (drop_inode) {
2059 inode_dec_link_count(inode);
2060 iput(inode);
2061 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002062 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04002063 return err;
2064}
2065
Chris Mason39279cc2007-06-12 06:35:45 -04002066static int btrfs_create(struct inode *dir, struct dentry *dentry,
2067 int mode, struct nameidata *nd)
2068{
2069 struct btrfs_trans_handle *trans;
2070 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05002071 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002072 int err;
2073 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05002074 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002075 u64 objectid;
2076
Chris Mason1832a6d2007-12-21 16:27:21 -05002077 err = btrfs_check_free_space(root, 1, 0);
2078 if (err)
2079 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002080 trans = btrfs_start_transaction(root, 1);
2081 btrfs_set_trans_block_group(trans, dir);
2082
2083 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2084 if (err) {
2085 err = -ENOSPC;
2086 goto out_unlock;
2087 }
2088
Chris Mason9c583092008-01-29 15:15:18 -05002089 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2090 dentry->d_name.len,
2091 dentry->d_parent->d_inode->i_ino,
2092 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04002093 err = PTR_ERR(inode);
2094 if (IS_ERR(inode))
2095 goto out_unlock;
2096
2097 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002098 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002099 if (err)
2100 drop_inode = 1;
2101 else {
2102 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04002103 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04002104 inode->i_fop = &btrfs_file_operations;
2105 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05002106 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2107 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04002108 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04002109 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
2110 inode->i_mapping, GFP_NOFS);
Chris Mason1b1e2132008-06-25 16:01:31 -04002111 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04002112 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05002113 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04002114 BTRFS_I(inode)->disk_i_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002115 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonba1da2f2008-07-17 12:54:15 -04002116 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04002117 }
2118 dir->i_sb->s_dirt = 1;
2119 btrfs_update_inode_block_group(trans, inode);
2120 btrfs_update_inode_block_group(trans, dir);
2121out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002122 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002123 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002124fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002125 if (drop_inode) {
2126 inode_dec_link_count(inode);
2127 iput(inode);
2128 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002129 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002130 return err;
2131}
2132
2133static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
2134 struct dentry *dentry)
2135{
2136 struct btrfs_trans_handle *trans;
2137 struct btrfs_root *root = BTRFS_I(dir)->root;
2138 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002139 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002140 int err;
2141 int drop_inode = 0;
2142
2143 if (inode->i_nlink == 0)
2144 return -ENOENT;
2145
Chris Mason6da6aba2007-12-18 16:15:09 -05002146#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2147 inode->i_nlink++;
2148#else
Chris Mason39279cc2007-06-12 06:35:45 -04002149 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05002150#endif
Chris Mason1832a6d2007-12-21 16:27:21 -05002151 err = btrfs_check_free_space(root, 1, 0);
2152 if (err)
2153 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002154 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002155
Chris Mason39279cc2007-06-12 06:35:45 -04002156 btrfs_set_trans_block_group(trans, dir);
2157 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05002158 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002159
Chris Mason39279cc2007-06-12 06:35:45 -04002160 if (err)
2161 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002162
Chris Mason39279cc2007-06-12 06:35:45 -04002163 dir->i_sb->s_dirt = 1;
2164 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002165 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002166
Chris Mason54aa1f42007-06-22 14:16:25 -04002167 if (err)
2168 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002169
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002170 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002171 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002172fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002173 if (drop_inode) {
2174 inode_dec_link_count(inode);
2175 iput(inode);
2176 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002177 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002178 return err;
2179}
2180
Chris Mason39279cc2007-06-12 06:35:45 -04002181static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2182{
Chris Masonb9d86662008-05-02 16:13:49 -04002183 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002184 struct btrfs_trans_handle *trans;
2185 struct btrfs_root *root = BTRFS_I(dir)->root;
2186 int err = 0;
2187 int drop_on_err = 0;
Chris Masonb9d86662008-05-02 16:13:49 -04002188 u64 objectid = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002189 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002190
Chris Mason1832a6d2007-12-21 16:27:21 -05002191 err = btrfs_check_free_space(root, 1, 0);
2192 if (err)
2193 goto out_unlock;
2194
Chris Mason39279cc2007-06-12 06:35:45 -04002195 trans = btrfs_start_transaction(root, 1);
2196 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002197
Chris Mason39279cc2007-06-12 06:35:45 -04002198 if (IS_ERR(trans)) {
2199 err = PTR_ERR(trans);
2200 goto out_unlock;
2201 }
2202
2203 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2204 if (err) {
2205 err = -ENOSPC;
2206 goto out_unlock;
2207 }
2208
Chris Mason9c583092008-01-29 15:15:18 -05002209 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2210 dentry->d_name.len,
2211 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002212 BTRFS_I(dir)->block_group, S_IFDIR | mode);
2213 if (IS_ERR(inode)) {
2214 err = PTR_ERR(inode);
2215 goto out_fail;
2216 }
Chris Mason5f39d392007-10-15 16:14:19 -04002217
Chris Mason39279cc2007-06-12 06:35:45 -04002218 drop_on_err = 1;
2219 inode->i_op = &btrfs_dir_inode_operations;
2220 inode->i_fop = &btrfs_dir_file_operations;
2221 btrfs_set_trans_block_group(trans, inode);
2222
Chris Masondbe674a2008-07-17 12:54:05 -04002223 btrfs_i_size_write(inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002224 err = btrfs_update_inode(trans, root, inode);
2225 if (err)
2226 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002227
Chris Mason9c583092008-01-29 15:15:18 -05002228 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002229 if (err)
2230 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002231
Chris Mason39279cc2007-06-12 06:35:45 -04002232 d_instantiate(dentry, inode);
2233 drop_on_err = 0;
2234 dir->i_sb->s_dirt = 1;
2235 btrfs_update_inode_block_group(trans, inode);
2236 btrfs_update_inode_block_group(trans, dir);
2237
2238out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002239 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04002240 btrfs_end_transaction_throttle(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002241
Chris Mason39279cc2007-06-12 06:35:45 -04002242out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002243 if (drop_on_err)
2244 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002245 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002246 return err;
2247}
2248
Chris Mason3b951512008-04-17 11:29:12 -04002249static int merge_extent_mapping(struct extent_map_tree *em_tree,
2250 struct extent_map *existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002251 struct extent_map *em,
2252 u64 map_start, u64 map_len)
Chris Mason3b951512008-04-17 11:29:12 -04002253{
2254 u64 start_diff;
Chris Mason3b951512008-04-17 11:29:12 -04002255
Chris Masone6dcd2d2008-07-17 12:53:50 -04002256 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
2257 start_diff = map_start - em->start;
2258 em->start = map_start;
2259 em->len = map_len;
2260 if (em->block_start < EXTENT_MAP_LAST_BYTE)
2261 em->block_start += start_diff;
2262 return add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002263}
2264
Chris Masona52d9a82007-08-27 16:49:44 -04002265struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002266 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002267 int create)
2268{
2269 int ret;
2270 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002271 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002272 u64 extent_start = 0;
2273 u64 extent_end = 0;
2274 u64 objectid = inode->i_ino;
2275 u32 found_type;
Chris Masona52d9a82007-08-27 16:49:44 -04002276 struct btrfs_path *path;
2277 struct btrfs_root *root = BTRFS_I(inode)->root;
2278 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002279 struct extent_buffer *leaf;
2280 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002281 struct extent_map *em = NULL;
2282 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002283 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002284 struct btrfs_trans_handle *trans = NULL;
2285
2286 path = btrfs_alloc_path();
2287 BUG_ON(!path);
Chris Masona52d9a82007-08-27 16:49:44 -04002288
2289again:
Chris Masond1310b22008-01-24 16:13:08 -05002290 spin_lock(&em_tree->lock);
2291 em = lookup_extent_mapping(em_tree, start, len);
Chris Masona061fc82008-05-07 11:43:44 -04002292 if (em)
2293 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002294 spin_unlock(&em_tree->lock);
2295
Chris Masona52d9a82007-08-27 16:49:44 -04002296 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04002297 if (em->start > start || em->start + em->len <= start)
2298 free_extent_map(em);
2299 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05002300 free_extent_map(em);
2301 else
2302 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002303 }
Chris Masond1310b22008-01-24 16:13:08 -05002304 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002305 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002306 err = -ENOMEM;
2307 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002308 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002309 em->bdev = root->fs_info->fs_devices->latest_bdev;
Chris Masond1310b22008-01-24 16:13:08 -05002310 em->start = EXTENT_MAP_HOLE;
2311 em->len = (u64)-1;
Chris Mason179e29e2007-11-01 11:28:41 -04002312 ret = btrfs_lookup_file_extent(trans, root, path,
2313 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002314 if (ret < 0) {
2315 err = ret;
2316 goto out;
2317 }
2318
2319 if (ret != 0) {
2320 if (path->slots[0] == 0)
2321 goto not_found;
2322 path->slots[0]--;
2323 }
2324
Chris Mason5f39d392007-10-15 16:14:19 -04002325 leaf = path->nodes[0];
2326 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002327 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002328 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002329 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2330 found_type = btrfs_key_type(&found_key);
2331 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002332 found_type != BTRFS_EXTENT_DATA_KEY) {
2333 goto not_found;
2334 }
2335
Chris Mason5f39d392007-10-15 16:14:19 -04002336 found_type = btrfs_file_extent_type(leaf, item);
2337 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002338 if (found_type == BTRFS_FILE_EXTENT_REG) {
2339 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002340 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002341 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04002342 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002343 em->start = start;
2344 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002345 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002346 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002347 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002348 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002349 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002350 }
2351 goto not_found_em;
2352 }
Chris Masondb945352007-10-15 16:15:53 -04002353 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2354 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002355 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002356 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002357 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002358 goto insert;
2359 }
Chris Masondb945352007-10-15 16:15:53 -04002360 bytenr += btrfs_file_extent_offset(leaf, item);
2361 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002362 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002363 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002364 goto insert;
2365 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002366 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002367 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002368 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002369 size_t size;
2370 size_t extent_offset;
2371 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002372
Chris Mason5f39d392007-10-15 16:14:19 -04002373 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2374 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002375 extent_end = (extent_start + size + root->sectorsize - 1) &
2376 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002377 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002378 em->start = start;
2379 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002380 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002381 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002382 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002383 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002384 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002385 }
2386 goto not_found_em;
2387 }
2388 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002389
2390 if (!page) {
2391 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002392 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002393 goto out;
2394 }
2395
Chris Mason70dec802008-01-29 09:59:12 -05002396 page_start = page_offset(page) + pg_offset;
2397 extent_offset = page_start - extent_start;
2398 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002399 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002400 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002401 em->len = (copy_size + root->sectorsize - 1) &
2402 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002403 map = kmap(page);
2404 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002405 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002406 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002407 copy_size);
2408 flush_dcache_page(page);
2409 } else if (create && PageUptodate(page)) {
2410 if (!trans) {
2411 kunmap(page);
2412 free_extent_map(em);
2413 em = NULL;
2414 btrfs_release_path(root, path);
Chris Masonf9295742008-07-17 12:54:14 -04002415 trans = btrfs_join_transaction(root, 1);
Chris Mason179e29e2007-11-01 11:28:41 -04002416 goto again;
2417 }
Chris Mason70dec802008-01-29 09:59:12 -05002418 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002419 copy_size);
2420 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002421 }
Chris Masona52d9a82007-08-27 16:49:44 -04002422 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002423 set_extent_uptodate(io_tree, em->start,
2424 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002425 goto insert;
2426 } else {
2427 printk("unkknown found_type %d\n", found_type);
2428 WARN_ON(1);
2429 }
2430not_found:
2431 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002432 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002433not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002434 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002435insert:
2436 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002437 if (em->start > start || extent_map_end(em) <= start) {
2438 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002439 err = -EIO;
2440 goto out;
2441 }
Chris Masond1310b22008-01-24 16:13:08 -05002442
2443 err = 0;
2444 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002445 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002446 /* it is possible that someone inserted the extent into the tree
2447 * while we had the lock dropped. It is also possible that
2448 * an overlapping map exists in the tree
2449 */
Chris Masona52d9a82007-08-27 16:49:44 -04002450 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002451 struct extent_map *existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002452
2453 ret = 0;
2454
Chris Mason3b951512008-04-17 11:29:12 -04002455 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002456 if (existing && (existing->start > start ||
2457 existing->start + existing->len <= start)) {
2458 free_extent_map(existing);
2459 existing = NULL;
2460 }
Chris Mason3b951512008-04-17 11:29:12 -04002461 if (!existing) {
2462 existing = lookup_extent_mapping(em_tree, em->start,
2463 em->len);
2464 if (existing) {
2465 err = merge_extent_mapping(em_tree, existing,
Chris Masone6dcd2d2008-07-17 12:53:50 -04002466 em, start,
2467 root->sectorsize);
Chris Mason3b951512008-04-17 11:29:12 -04002468 free_extent_map(existing);
2469 if (err) {
2470 free_extent_map(em);
2471 em = NULL;
2472 }
2473 } else {
2474 err = -EIO;
2475 printk("failing to insert %Lu %Lu\n",
2476 start, len);
2477 free_extent_map(em);
2478 em = NULL;
2479 }
2480 } else {
2481 free_extent_map(em);
2482 em = existing;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002483 err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -04002484 }
Chris Masona52d9a82007-08-27 16:49:44 -04002485 }
Chris Masond1310b22008-01-24 16:13:08 -05002486 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002487out:
2488 btrfs_free_path(path);
2489 if (trans) {
2490 ret = btrfs_end_transaction(trans, root);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002491 if (!err) {
Chris Masona52d9a82007-08-27 16:49:44 -04002492 err = ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002493 }
Chris Masona52d9a82007-08-27 16:49:44 -04002494 }
Chris Masona52d9a82007-08-27 16:49:44 -04002495 if (err) {
2496 free_extent_map(em);
2497 WARN_ON(1);
2498 return ERR_PTR(err);
2499 }
2500 return em;
2501}
2502
Chris Masone1c4b742008-04-22 13:26:46 -04002503#if 0 /* waiting for O_DIRECT reads */
Chris Mason16432982008-04-10 10:23:21 -04002504static int btrfs_get_block(struct inode *inode, sector_t iblock,
2505 struct buffer_head *bh_result, int create)
2506{
2507 struct extent_map *em;
2508 u64 start = (u64)iblock << inode->i_blkbits;
2509 struct btrfs_multi_bio *multi = NULL;
2510 struct btrfs_root *root = BTRFS_I(inode)->root;
2511 u64 len;
2512 u64 logical;
2513 u64 map_length;
2514 int ret = 0;
2515
2516 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2517
2518 if (!em || IS_ERR(em))
2519 goto out;
2520
Chris Masone1c4b742008-04-22 13:26:46 -04002521 if (em->start > start || em->start + em->len <= start) {
Chris Mason16432982008-04-10 10:23:21 -04002522 goto out;
Chris Masone1c4b742008-04-22 13:26:46 -04002523 }
Chris Mason16432982008-04-10 10:23:21 -04002524
2525 if (em->block_start == EXTENT_MAP_INLINE) {
2526 ret = -EINVAL;
2527 goto out;
2528 }
2529
Chris Mason16432982008-04-10 10:23:21 -04002530 len = em->start + em->len - start;
2531 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2532
Chris Masone1c4b742008-04-22 13:26:46 -04002533 if (em->block_start == EXTENT_MAP_HOLE ||
2534 em->block_start == EXTENT_MAP_DELALLOC) {
2535 bh_result->b_size = len;
2536 goto out;
2537 }
2538
Chris Mason16432982008-04-10 10:23:21 -04002539 logical = start - em->start;
2540 logical = em->block_start + logical;
2541
2542 map_length = len;
2543 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2544 logical, &map_length, &multi, 0);
2545 BUG_ON(ret);
2546 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2547 bh_result->b_size = min(map_length, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002548
Chris Mason16432982008-04-10 10:23:21 -04002549 bh_result->b_bdev = multi->stripes[0].dev->bdev;
2550 set_buffer_mapped(bh_result);
2551 kfree(multi);
2552out:
2553 free_extent_map(em);
2554 return ret;
2555}
Chris Masone1c4b742008-04-22 13:26:46 -04002556#endif
Chris Mason16432982008-04-10 10:23:21 -04002557
2558static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
2559 const struct iovec *iov, loff_t offset,
2560 unsigned long nr_segs)
2561{
Chris Masone1c4b742008-04-22 13:26:46 -04002562 return -EINVAL;
2563#if 0
Chris Mason16432982008-04-10 10:23:21 -04002564 struct file *file = iocb->ki_filp;
2565 struct inode *inode = file->f_mapping->host;
2566
2567 if (rw == WRITE)
2568 return -EINVAL;
2569
2570 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2571 offset, nr_segs, btrfs_get_block, NULL);
Chris Masone1c4b742008-04-22 13:26:46 -04002572#endif
Chris Mason16432982008-04-10 10:23:21 -04002573}
2574
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002575static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002576{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002577 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002578}
2579
Chris Mason9ebefb182007-06-15 13:50:00 -04002580int btrfs_readpage(struct file *file, struct page *page)
2581{
Chris Masond1310b22008-01-24 16:13:08 -05002582 struct extent_io_tree *tree;
2583 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002584 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002585}
Chris Mason1832a6d2007-12-21 16:27:21 -05002586
Chris Mason39279cc2007-06-12 06:35:45 -04002587static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2588{
Chris Masond1310b22008-01-24 16:13:08 -05002589 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04002590
2591
2592 if (current->flags & PF_MEMALLOC) {
2593 redirty_page_for_writepage(wbc, page);
2594 unlock_page(page);
2595 return 0;
2596 }
Chris Masond1310b22008-01-24 16:13:08 -05002597 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002598 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2599}
Chris Mason39279cc2007-06-12 06:35:45 -04002600
Chris Masonb293f022007-11-01 19:45:34 -04002601static int btrfs_writepages(struct address_space *mapping,
2602 struct writeback_control *wbc)
2603{
Chris Masond1310b22008-01-24 16:13:08 -05002604 struct extent_io_tree *tree;
2605 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04002606 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2607}
2608
Chris Mason3ab2fb52007-11-08 10:59:22 -05002609static int
2610btrfs_readpages(struct file *file, struct address_space *mapping,
2611 struct list_head *pages, unsigned nr_pages)
2612{
Chris Masond1310b22008-01-24 16:13:08 -05002613 struct extent_io_tree *tree;
2614 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002615 return extent_readpages(tree, mapping, pages, nr_pages,
2616 btrfs_get_extent);
2617}
Chris Masone6dcd2d2008-07-17 12:53:50 -04002618static int __btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002619{
Chris Masond1310b22008-01-24 16:13:08 -05002620 struct extent_io_tree *tree;
2621 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002622 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002623
Chris Masond1310b22008-01-24 16:13:08 -05002624 tree = &BTRFS_I(page->mapping->host)->io_tree;
2625 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002626 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002627 if (ret == 1) {
Chris Mason4ef64ea2008-04-21 08:52:50 -04002628 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04002629 ClearPagePrivate(page);
2630 set_page_private(page, 0);
2631 page_cache_release(page);
2632 }
2633 return ret;
2634}
Chris Mason39279cc2007-06-12 06:35:45 -04002635
Chris Masone6dcd2d2008-07-17 12:53:50 -04002636static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
2637{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002638 return __btrfs_releasepage(page, gfp_flags);
2639}
2640
Chris Masona52d9a82007-08-27 16:49:44 -04002641static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2642{
Chris Masond1310b22008-01-24 16:13:08 -05002643 struct extent_io_tree *tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002644 struct btrfs_ordered_extent *ordered;
2645 u64 page_start = page_offset(page);
2646 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04002647
Chris Masone6dcd2d2008-07-17 12:53:50 -04002648 wait_on_page_writeback(page);
Chris Masond1310b22008-01-24 16:13:08 -05002649 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002650 if (offset) {
2651 btrfs_releasepage(page, GFP_NOFS);
2652 return;
2653 }
2654
2655 lock_extent(tree, page_start, page_end, GFP_NOFS);
2656 ordered = btrfs_lookup_ordered_extent(page->mapping->host,
2657 page_offset(page));
2658 if (ordered) {
Chris Masoneb84ae02008-07-17 13:53:27 -04002659 /*
2660 * IO on this page will never be started, so we need
2661 * to account for any ordered extents now
2662 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002663 clear_extent_bit(tree, page_start, page_end,
2664 EXTENT_DIRTY | EXTENT_DELALLOC |
2665 EXTENT_LOCKED, 1, 0, GFP_NOFS);
2666 btrfs_writepage_end_io_hook(page, page_start,
2667 page_end, NULL, 1);
2668 btrfs_put_ordered_extent(ordered);
2669 lock_extent(tree, page_start, page_end, GFP_NOFS);
2670 }
2671 clear_extent_bit(tree, page_start, page_end,
2672 EXTENT_LOCKED | EXTENT_DIRTY | EXTENT_DELALLOC |
2673 EXTENT_ORDERED,
2674 1, 1, GFP_NOFS);
2675 __btrfs_releasepage(page, GFP_NOFS);
2676
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002677 if (PagePrivate(page)) {
Chris Masone6dcd2d2008-07-17 12:53:50 -04002678 invalidate_extent_lru(tree, page_offset(page),
2679 PAGE_CACHE_SIZE);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002680 ClearPagePrivate(page);
2681 set_page_private(page, 0);
2682 page_cache_release(page);
2683 }
Chris Mason39279cc2007-06-12 06:35:45 -04002684}
2685
Chris Mason9ebefb182007-06-15 13:50:00 -04002686/*
2687 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2688 * called from a page fault handler when a page is first dirtied. Hence we must
2689 * be careful to check for EOF conditions here. We set the page up correctly
2690 * for a written page which means we get ENOSPC checking when writing into
2691 * holes and correct delalloc and unwritten extent mapping on filesystems that
2692 * support these features.
2693 *
2694 * We are not allowed to take the i_mutex here so we have to play games to
2695 * protect against truncate races as the page could now be beyond EOF. Because
2696 * vmtruncate() writes the inode size before removing pages, once we have the
2697 * page lock we can determine safely if the page is beyond EOF. If it is not
2698 * beyond EOF, then the page is guaranteed safe against truncation until we
2699 * unlock the page.
2700 */
2701int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2702{
Chris Mason6da6aba2007-12-18 16:15:09 -05002703 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002704 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002705 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
2706 struct btrfs_ordered_extent *ordered;
2707 char *kaddr;
2708 unsigned long zero_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002709 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002710 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002711 u64 page_start;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002712 u64 page_end;
Chris Mason9ebefb182007-06-15 13:50:00 -04002713
Chris Mason1832a6d2007-12-21 16:27:21 -05002714 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason1832a6d2007-12-21 16:27:21 -05002715 if (ret)
2716 goto out;
2717
2718 ret = -EINVAL;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002719again:
Chris Mason9ebefb182007-06-15 13:50:00 -04002720 lock_page(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002721 size = i_size_read(inode);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002722 page_start = page_offset(page);
2723 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04002724
Chris Mason9ebefb182007-06-15 13:50:00 -04002725 if ((page->mapping != inode->i_mapping) ||
Chris Masone6dcd2d2008-07-17 12:53:50 -04002726 (page_start >= size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002727 /* page got truncated out from underneath us */
2728 goto out_unlock;
2729 }
Chris Masone6dcd2d2008-07-17 12:53:50 -04002730 wait_on_page_writeback(page);
2731
2732 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
2733 set_page_extent_mapped(page);
2734
Chris Masoneb84ae02008-07-17 13:53:27 -04002735 /*
2736 * we can't set the delalloc bits if there are pending ordered
2737 * extents. Drop our locks and wait for them to finish
2738 */
Chris Masone6dcd2d2008-07-17 12:53:50 -04002739 ordered = btrfs_lookup_ordered_extent(inode, page_start);
2740 if (ordered) {
2741 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
2742 unlock_page(page);
Chris Masoneb84ae02008-07-17 13:53:27 -04002743 btrfs_start_ordered_extent(inode, ordered, 1);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002744 btrfs_put_ordered_extent(ordered);
2745 goto again;
2746 }
2747
2748 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
2749 page_end, GFP_NOFS);
2750 ret = 0;
Chris Mason9ebefb182007-06-15 13:50:00 -04002751
2752 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002753 if (page_start + PAGE_CACHE_SIZE > size)
Chris Masone6dcd2d2008-07-17 12:53:50 -04002754 zero_start = size & ~PAGE_CACHE_MASK;
Chris Mason9ebefb182007-06-15 13:50:00 -04002755 else
Chris Masone6dcd2d2008-07-17 12:53:50 -04002756 zero_start = PAGE_CACHE_SIZE;
Chris Mason9ebefb182007-06-15 13:50:00 -04002757
Chris Masone6dcd2d2008-07-17 12:53:50 -04002758 if (zero_start != PAGE_CACHE_SIZE) {
2759 kaddr = kmap(page);
2760 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
2761 flush_dcache_page(page);
2762 kunmap(page);
2763 }
Chris Mason247e7432008-07-17 12:53:51 -04002764 ClearPageChecked(page);
Chris Masone6dcd2d2008-07-17 12:53:50 -04002765 set_page_dirty(page);
2766 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason9ebefb182007-06-15 13:50:00 -04002767
2768out_unlock:
2769 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002770out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002771 return ret;
2772}
2773
Chris Mason39279cc2007-06-12 06:35:45 -04002774static void btrfs_truncate(struct inode *inode)
2775{
2776 struct btrfs_root *root = BTRFS_I(inode)->root;
2777 int ret;
2778 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002779 unsigned long nr;
Chris Masondbe674a2008-07-17 12:54:05 -04002780 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002781
2782 if (!S_ISREG(inode->i_mode))
2783 return;
2784 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2785 return;
2786
2787 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2788
Chris Mason39279cc2007-06-12 06:35:45 -04002789 trans = btrfs_start_transaction(root, 1);
2790 btrfs_set_trans_block_group(trans, inode);
Chris Masondbe674a2008-07-17 12:54:05 -04002791 btrfs_wait_ordered_range(inode, inode->i_size & (~mask), (u64)-1);
2792 btrfs_i_size_write(inode, inode->i_size);
Chris Mason39279cc2007-06-12 06:35:45 -04002793
2794 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002795 ret = btrfs_truncate_in_trans(trans, root, inode,
2796 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002797 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002798 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002799
Chris Mason89ce8a62008-06-25 16:01:31 -04002800 ret = btrfs_end_transaction_throttle(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -04002801 BUG_ON(ret);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002802 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002803}
2804
Sven Wegener3b963622008-06-09 21:57:42 -04002805/*
2806 * Invalidate a single dcache entry at the root of the filesystem.
2807 * Needed after creation of snapshot or subvolume.
2808 */
2809void btrfs_invalidate_dcache_root(struct btrfs_root *root, char *name,
2810 int namelen)
2811{
2812 struct dentry *alias, *entry;
2813 struct qstr qstr;
2814
2815 alias = d_find_alias(root->fs_info->sb->s_root->d_inode);
2816 if (alias) {
2817 qstr.name = name;
2818 qstr.len = namelen;
2819 /* change me if btrfs ever gets a d_hash operation */
2820 qstr.hash = full_name_hash(qstr.name, qstr.len);
2821 entry = d_lookup(alias, &qstr);
2822 dput(alias);
2823 if (entry) {
2824 d_invalidate(entry);
2825 dput(entry);
2826 }
2827 }
2828}
2829
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002830int btrfs_create_subvol_root(struct btrfs_root *new_root,
2831 struct btrfs_trans_handle *trans, u64 new_dirid,
2832 struct btrfs_block_group_cache *block_group)
Chris Mason39279cc2007-06-12 06:35:45 -04002833{
Chris Mason39279cc2007-06-12 06:35:45 -04002834 struct inode *inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002835 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002836
Chris Mason9c583092008-01-29 15:15:18 -05002837 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002838 new_dirid, block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002839 if (IS_ERR(inode))
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002840 return PTR_ERR(inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002841 inode->i_op = &btrfs_dir_inode_operations;
2842 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002843 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002844
Chris Mason39544012007-12-12 14:38:19 -05002845 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2846 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002847 inode->i_nlink = 1;
Chris Masondbe674a2008-07-17 12:54:05 -04002848 btrfs_i_size_write(inode, 0);
Sven Wegener3b963622008-06-09 21:57:42 -04002849
Christoph Hellwigf46b5a62008-06-11 21:53:53 -04002850 return btrfs_update_inode(trans, new_root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002851}
2852
Chris Masonedbd8d42007-12-21 16:27:24 -05002853unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002854 struct file_ra_state *ra, struct file *file,
2855 pgoff_t offset, pgoff_t last_index)
2856{
Chris Mason8e7bf942008-04-28 09:02:36 -04002857 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04002858
2859#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
Chris Mason86479a02007-09-10 19:58:16 -04002860 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2861 return offset;
2862#else
Chris Mason86479a02007-09-10 19:58:16 -04002863 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2864 return offset + req_size;
2865#endif
2866}
2867
Chris Mason39279cc2007-06-12 06:35:45 -04002868struct inode *btrfs_alloc_inode(struct super_block *sb)
2869{
2870 struct btrfs_inode *ei;
2871
2872 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2873 if (!ei)
2874 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002875 ei->last_trans = 0;
Chris Masone6dcd2d2008-07-17 12:53:50 -04002876 btrfs_ordered_inode_tree_init(&ei->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04002877 return &ei->vfs_inode;
2878}
2879
2880void btrfs_destroy_inode(struct inode *inode)
2881{
Chris Masone6dcd2d2008-07-17 12:53:50 -04002882 struct btrfs_ordered_extent *ordered;
Chris Mason39279cc2007-06-12 06:35:45 -04002883 WARN_ON(!list_empty(&inode->i_dentry));
2884 WARN_ON(inode->i_data.nrpages);
2885
Chris Masone6dcd2d2008-07-17 12:53:50 -04002886 while(1) {
2887 ordered = btrfs_lookup_first_ordered_extent(inode, (u64)-1);
2888 if (!ordered)
2889 break;
2890 else {
2891 printk("found ordered extent %Lu %Lu\n",
2892 ordered->file_offset, ordered->len);
2893 btrfs_remove_ordered_extent(inode, ordered);
2894 btrfs_put_ordered_extent(ordered);
2895 btrfs_put_ordered_extent(ordered);
2896 }
2897 }
Chris Mason8c416c92008-01-14 15:10:26 -05002898 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04002899 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2900}
2901
Chris Mason44ec0b72007-10-29 10:55:05 -04002902#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2903static void init_once(struct kmem_cache * cachep, void *foo)
2904#else
Chris Mason39279cc2007-06-12 06:35:45 -04002905static void init_once(void * foo, struct kmem_cache * cachep,
2906 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04002907#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002908{
2909 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2910
2911 inode_init_once(&ei->vfs_inode);
2912}
2913
2914void btrfs_destroy_cachep(void)
2915{
2916 if (btrfs_inode_cachep)
2917 kmem_cache_destroy(btrfs_inode_cachep);
2918 if (btrfs_trans_handle_cachep)
2919 kmem_cache_destroy(btrfs_trans_handle_cachep);
2920 if (btrfs_transaction_cachep)
2921 kmem_cache_destroy(btrfs_transaction_cachep);
2922 if (btrfs_bit_radix_cachep)
2923 kmem_cache_destroy(btrfs_bit_radix_cachep);
2924 if (btrfs_path_cachep)
2925 kmem_cache_destroy(btrfs_path_cachep);
2926}
2927
Chris Mason86479a02007-09-10 19:58:16 -04002928struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04002929 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04002930#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2931 void (*ctor)(struct kmem_cache *, void *)
2932#else
Chris Mason92fee662007-07-25 12:31:35 -04002933 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04002934 unsigned long)
2935#endif
2936 )
Chris Mason92fee662007-07-25 12:31:35 -04002937{
2938 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2939 SLAB_MEM_SPREAD | extra_flags), ctor
2940#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2941 ,NULL
2942#endif
2943 );
2944}
2945
Chris Mason39279cc2007-06-12 06:35:45 -04002946int btrfs_init_cachep(void)
2947{
Chris Mason86479a02007-09-10 19:58:16 -04002948 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04002949 sizeof(struct btrfs_inode),
2950 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04002951 if (!btrfs_inode_cachep)
2952 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002953 btrfs_trans_handle_cachep =
2954 btrfs_cache_create("btrfs_trans_handle_cache",
2955 sizeof(struct btrfs_trans_handle),
2956 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002957 if (!btrfs_trans_handle_cachep)
2958 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002959 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04002960 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04002961 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002962 if (!btrfs_transaction_cachep)
2963 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002964 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04002965 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04002966 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002967 if (!btrfs_path_cachep)
2968 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002969 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04002970 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002971 if (!btrfs_bit_radix_cachep)
2972 goto fail;
2973 return 0;
2974fail:
2975 btrfs_destroy_cachep();
2976 return -ENOMEM;
2977}
2978
2979static int btrfs_getattr(struct vfsmount *mnt,
2980 struct dentry *dentry, struct kstat *stat)
2981{
2982 struct inode *inode = dentry->d_inode;
2983 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05002984 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05002985 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04002986 return 0;
2987}
2988
2989static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
2990 struct inode * new_dir,struct dentry *new_dentry)
2991{
2992 struct btrfs_trans_handle *trans;
2993 struct btrfs_root *root = BTRFS_I(old_dir)->root;
2994 struct inode *new_inode = new_dentry->d_inode;
2995 struct inode *old_inode = old_dentry->d_inode;
2996 struct timespec ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04002997 int ret;
2998
2999 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3000 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3001 return -ENOTEMPTY;
3002 }
Chris Mason5f39d392007-10-15 16:14:19 -04003003
Chris Mason1832a6d2007-12-21 16:27:21 -05003004 ret = btrfs_check_free_space(root, 1, 0);
3005 if (ret)
3006 goto out_unlock;
3007
Chris Mason39279cc2007-06-12 06:35:45 -04003008 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003009
Chris Mason39279cc2007-06-12 06:35:45 -04003010 btrfs_set_trans_block_group(trans, new_dir);
Chris Mason39279cc2007-06-12 06:35:45 -04003011
3012 old_dentry->d_inode->i_nlink++;
3013 old_dir->i_ctime = old_dir->i_mtime = ctime;
3014 new_dir->i_ctime = new_dir->i_mtime = ctime;
3015 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003016
Chris Mason39279cc2007-06-12 06:35:45 -04003017 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
3018 if (ret)
3019 goto out_fail;
3020
3021 if (new_inode) {
3022 new_inode->i_ctime = CURRENT_TIME;
3023 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
3024 if (ret)
3025 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003026 }
Chris Mason9c583092008-01-29 15:15:18 -05003027 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003028 if (ret)
3029 goto out_fail;
3030
3031out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003032 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003033out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003034 return ret;
3035}
3036
3037static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3038 const char *symname)
3039{
3040 struct btrfs_trans_handle *trans;
3041 struct btrfs_root *root = BTRFS_I(dir)->root;
3042 struct btrfs_path *path;
3043 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003044 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003045 int err;
3046 int drop_inode = 0;
3047 u64 objectid;
3048 int name_len;
3049 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003050 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003051 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003052 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003053 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003054
3055 name_len = strlen(symname) + 1;
3056 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3057 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003058
Chris Mason1832a6d2007-12-21 16:27:21 -05003059 err = btrfs_check_free_space(root, 1, 0);
3060 if (err)
3061 goto out_fail;
3062
Chris Mason39279cc2007-06-12 06:35:45 -04003063 trans = btrfs_start_transaction(root, 1);
3064 btrfs_set_trans_block_group(trans, dir);
3065
3066 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3067 if (err) {
3068 err = -ENOSPC;
3069 goto out_unlock;
3070 }
3071
Chris Mason9c583092008-01-29 15:15:18 -05003072 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
3073 dentry->d_name.len,
3074 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003075 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
3076 err = PTR_ERR(inode);
3077 if (IS_ERR(inode))
3078 goto out_unlock;
3079
3080 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003081 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003082 if (err)
3083 drop_inode = 1;
3084 else {
3085 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003086 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003087 inode->i_fop = &btrfs_file_operations;
3088 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003089 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3090 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04003091 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003092 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3093 inode->i_mapping, GFP_NOFS);
Chris Mason1b1e2132008-06-25 16:01:31 -04003094 mutex_init(&BTRFS_I(inode)->csum_mutex);
Chris Masonee6e6502008-07-17 12:54:40 -04003095 mutex_init(&BTRFS_I(inode)->extent_mutex);
Chris Mason90692182008-02-08 13:49:28 -05003096 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masondbe674a2008-07-17 12:54:05 -04003097 BTRFS_I(inode)->disk_i_size = 0;
Chris Masond1310b22008-01-24 16:13:08 -05003098 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Masonba1da2f2008-07-17 12:54:15 -04003099 btrfs_ordered_inode_tree_init(&BTRFS_I(inode)->ordered_tree);
Chris Mason39279cc2007-06-12 06:35:45 -04003100 }
3101 dir->i_sb->s_dirt = 1;
3102 btrfs_update_inode_block_group(trans, inode);
3103 btrfs_update_inode_block_group(trans, dir);
3104 if (drop_inode)
3105 goto out_unlock;
3106
3107 path = btrfs_alloc_path();
3108 BUG_ON(!path);
3109 key.objectid = inode->i_ino;
3110 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003111 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3112 datasize = btrfs_file_extent_calc_inline_size(name_len);
3113 err = btrfs_insert_empty_item(trans, root, path, &key,
3114 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003115 if (err) {
3116 drop_inode = 1;
3117 goto out_unlock;
3118 }
Chris Mason5f39d392007-10-15 16:14:19 -04003119 leaf = path->nodes[0];
3120 ei = btrfs_item_ptr(leaf, path->slots[0],
3121 struct btrfs_file_extent_item);
3122 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3123 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003124 BTRFS_FILE_EXTENT_INLINE);
3125 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003126 write_extent_buffer(leaf, symname, ptr, name_len);
3127 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003128 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003129
Chris Mason39279cc2007-06-12 06:35:45 -04003130 inode->i_op = &btrfs_symlink_inode_operations;
3131 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003132 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masondbe674a2008-07-17 12:54:05 -04003133 btrfs_i_size_write(inode, name_len - 1);
Chris Mason54aa1f42007-06-22 14:16:25 -04003134 err = btrfs_update_inode(trans, root, inode);
3135 if (err)
3136 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003137
3138out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003139 nr = trans->blocks_used;
Chris Mason89ce8a62008-06-25 16:01:31 -04003140 btrfs_end_transaction_throttle(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003141out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003142 if (drop_inode) {
3143 inode_dec_link_count(inode);
3144 iput(inode);
3145 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003146 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04003147 return err;
3148}
Chris Mason16432982008-04-10 10:23:21 -04003149
Chris Masone6dcd2d2008-07-17 12:53:50 -04003150static int btrfs_set_page_dirty(struct page *page)
3151{
Chris Masone6dcd2d2008-07-17 12:53:50 -04003152 return __set_page_dirty_nobuffers(page);
3153}
3154
Yanfdebe2b2008-01-14 13:26:08 -05003155static int btrfs_permission(struct inode *inode, int mask,
3156 struct nameidata *nd)
3157{
3158 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3159 return -EACCES;
3160 return generic_permission(inode, mask, NULL);
3161}
Chris Mason39279cc2007-06-12 06:35:45 -04003162
3163static struct inode_operations btrfs_dir_inode_operations = {
3164 .lookup = btrfs_lookup,
3165 .create = btrfs_create,
3166 .unlink = btrfs_unlink,
3167 .link = btrfs_link,
3168 .mkdir = btrfs_mkdir,
3169 .rmdir = btrfs_rmdir,
3170 .rename = btrfs_rename,
3171 .symlink = btrfs_symlink,
3172 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003173 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003174 .setxattr = generic_setxattr,
3175 .getxattr = generic_getxattr,
3176 .listxattr = btrfs_listxattr,
3177 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003178 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003179};
Chris Mason39279cc2007-06-12 06:35:45 -04003180static struct inode_operations btrfs_dir_ro_inode_operations = {
3181 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003182 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003183};
Chris Mason39279cc2007-06-12 06:35:45 -04003184static struct file_operations btrfs_dir_file_operations = {
3185 .llseek = generic_file_llseek,
3186 .read = generic_read_dir,
3187 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003188 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003189#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003190 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003191#endif
Sage Weil6bf13c02008-06-10 10:07:39 -04003192 .release = btrfs_release_file,
Chris Mason39279cc2007-06-12 06:35:45 -04003193};
3194
Chris Masond1310b22008-01-24 16:13:08 -05003195static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003196 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003197 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003198 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003199 .readpage_io_hook = btrfs_readpage_io_hook,
3200 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003201 .writepage_end_io_hook = btrfs_writepage_end_io_hook,
Chris Mason247e7432008-07-17 12:53:51 -04003202 .writepage_start_hook = btrfs_writepage_start_hook,
Chris Mason1259ab72008-05-12 13:39:03 -04003203 .readpage_io_failed_hook = btrfs_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003204 .set_bit_hook = btrfs_set_bit_hook,
3205 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003206};
3207
Chris Mason39279cc2007-06-12 06:35:45 -04003208static struct address_space_operations btrfs_aops = {
3209 .readpage = btrfs_readpage,
3210 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04003211 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003212 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003213 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003214 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003215 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003216 .invalidatepage = btrfs_invalidatepage,
3217 .releasepage = btrfs_releasepage,
Chris Masone6dcd2d2008-07-17 12:53:50 -04003218 .set_page_dirty = btrfs_set_page_dirty,
Chris Mason39279cc2007-06-12 06:35:45 -04003219};
3220
3221static struct address_space_operations btrfs_symlink_aops = {
3222 .readpage = btrfs_readpage,
3223 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003224 .invalidatepage = btrfs_invalidatepage,
3225 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003226};
3227
3228static struct inode_operations btrfs_file_inode_operations = {
3229 .truncate = btrfs_truncate,
3230 .getattr = btrfs_getattr,
3231 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003232 .setxattr = generic_setxattr,
3233 .getxattr = generic_getxattr,
3234 .listxattr = btrfs_listxattr,
3235 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003236 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003237};
Josef Bacik618e21d2007-07-11 10:18:17 -04003238static struct inode_operations btrfs_special_inode_operations = {
3239 .getattr = btrfs_getattr,
3240 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003241 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003242};
Chris Mason39279cc2007-06-12 06:35:45 -04003243static struct inode_operations btrfs_symlink_inode_operations = {
3244 .readlink = generic_readlink,
3245 .follow_link = page_follow_link_light,
3246 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003247 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003248};