blob: 5140d680184657fe9dfe55dcfaafd15ca8b0ea0b [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 Mason065631f2008-02-20 12:07:25 -050019#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040020#include <linux/buffer_head.h>
21#include <linux/fs.h>
22#include <linux/pagemap.h>
23#include <linux/highmem.h>
24#include <linux/time.h>
25#include <linux/init.h>
26#include <linux/string.h>
27#include <linux/smp_lock.h>
28#include <linux/backing-dev.h>
29#include <linux/mpage.h>
30#include <linux/swap.h>
31#include <linux/writeback.h>
32#include <linux/statfs.h>
33#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040034#include <linux/bit_spinlock.h>
Chris Mason92fee662007-07-25 12:31:35 -040035#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050036#include <linux/xattr.h>
Chris Mason39279cc2007-06-12 06:35:45 -040037#include "ctree.h"
38#include "disk-io.h"
39#include "transaction.h"
40#include "btrfs_inode.h"
41#include "ioctl.h"
42#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040043#include "volumes.h"
Chris Mason39279cc2007-06-12 06:35:45 -040044
45struct btrfs_iget_args {
46 u64 ino;
47 struct btrfs_root *root;
48};
49
50static struct inode_operations btrfs_dir_inode_operations;
51static struct inode_operations btrfs_symlink_inode_operations;
52static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040053static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040054static struct inode_operations btrfs_file_inode_operations;
55static struct address_space_operations btrfs_aops;
56static struct address_space_operations btrfs_symlink_aops;
57static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050058static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040059
60static struct kmem_cache *btrfs_inode_cachep;
61struct kmem_cache *btrfs_trans_handle_cachep;
62struct kmem_cache *btrfs_transaction_cachep;
63struct kmem_cache *btrfs_bit_radix_cachep;
64struct kmem_cache *btrfs_path_cachep;
65
66#define S_SHIFT 12
67static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
68 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
69 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
70 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
71 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
72 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
73 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
74 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
75};
76
Chris Mason1832a6d2007-12-21 16:27:21 -050077int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
78 int for_del)
79{
80 u64 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
81 u64 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
82 u64 thresh;
83 int ret = 0;
84
85 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -050086 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -050087 else
Chris Masonf9ef6602008-01-03 09:22:38 -050088 thresh = total * 85;
89
90 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -050091
92 spin_lock(&root->fs_info->delalloc_lock);
93 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
94 ret = -ENOSPC;
95 spin_unlock(&root->fs_info->delalloc_lock);
96 return ret;
97}
98
Chris Masonbe20aa92007-12-17 20:14:01 -050099static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db22007-08-27 16:49:44 -0400100{
101 struct btrfs_root *root = BTRFS_I(inode)->root;
102 struct btrfs_trans_handle *trans;
Chris Masonb888db22007-08-27 16:49:44 -0400103 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400104 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500105 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400106 u64 blocksize = root->sectorsize;
Chris Masond1310b22008-01-24 16:13:08 -0500107 u64 orig_start = start;
108 u64 orig_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500109 struct btrfs_key ins;
110 int ret;
Chris Masonb888db22007-08-27 16:49:44 -0400111
Chris Masonb888db22007-08-27 16:49:44 -0400112 trans = btrfs_start_transaction(root, 1);
Chris Masonb888db22007-08-27 16:49:44 -0400113 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500114 btrfs_set_trans_block_group(trans, inode);
115
Chris Masondb945352007-10-15 16:15:53 -0400116 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500117 num_bytes = max(blocksize, num_bytes);
Chris Masonb888db22007-08-27 16:49:44 -0400118 ret = btrfs_drop_extents(trans, root, inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400119 start, start + num_bytes, start, &alloc_hint);
Chris Masond1310b22008-01-24 16:13:08 -0500120 orig_num_bytes = num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400121
Chris Mason179e29e2007-11-01 11:28:41 -0400122 if (alloc_hint == EXTENT_MAP_INLINE)
123 goto out;
124
Chris Masonc59f8952007-12-17 20:14:04 -0500125 while(num_bytes > 0) {
126 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
127 ret = btrfs_alloc_extent(trans, root, cur_alloc_size,
128 root->root_key.objectid,
129 trans->transid,
130 inode->i_ino, start, 0,
131 alloc_hint, (u64)-1, &ins, 1);
132 if (ret) {
133 WARN_ON(1);
134 goto out;
135 }
136 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
137 start, ins.objectid, ins.offset,
138 ins.offset);
Chris Mason90692182008-02-08 13:49:28 -0500139 inode->i_blocks += ins.offset >> 9;
Chris Mason5f564062008-01-22 16:47:59 -0500140 btrfs_check_file(root, inode);
Chris Masonc59f8952007-12-17 20:14:04 -0500141 num_bytes -= cur_alloc_size;
142 alloc_hint = ins.objectid + ins.offset;
143 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400144 }
Chris Masond1310b22008-01-24 16:13:08 -0500145 btrfs_drop_extent_cache(inode, orig_start,
146 orig_start + orig_num_bytes - 1);
Chris Masondc17ff82008-01-08 15:46:30 -0500147 btrfs_add_ordered_inode(inode);
Chris Mason90692182008-02-08 13:49:28 -0500148 btrfs_update_inode(trans, root, inode);
Chris Masonb888db22007-08-27 16:49:44 -0400149out:
150 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500151 return ret;
152}
153
154static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
155{
156 u64 extent_start;
157 u64 extent_end;
158 u64 bytenr;
159 u64 cow_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500160 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500161 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500162 struct btrfs_root *root = BTRFS_I(inode)->root;
163 struct extent_buffer *leaf;
164 int found_type;
165 struct btrfs_path *path;
166 struct btrfs_file_extent_item *item;
167 int ret;
168 int err;
169 struct btrfs_key found_key;
170
Chris Masonc31f8832008-01-08 15:46:31 -0500171 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500172 path = btrfs_alloc_path();
173 BUG_ON(!path);
174again:
175 ret = btrfs_lookup_file_extent(NULL, root, path,
176 inode->i_ino, start, 0);
177 if (ret < 0) {
178 btrfs_free_path(path);
179 return ret;
180 }
181
182 cow_end = end;
183 if (ret != 0) {
184 if (path->slots[0] == 0)
185 goto not_found;
186 path->slots[0]--;
187 }
188
189 leaf = path->nodes[0];
190 item = btrfs_item_ptr(leaf, path->slots[0],
191 struct btrfs_file_extent_item);
192
193 /* are we inside the extent that was found? */
194 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
195 found_type = btrfs_key_type(&found_key);
196 if (found_key.objectid != inode->i_ino ||
197 found_type != BTRFS_EXTENT_DATA_KEY) {
198 goto not_found;
199 }
200
201 found_type = btrfs_file_extent_type(leaf, item);
202 extent_start = found_key.offset;
203 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Masonc31f8832008-01-08 15:46:31 -0500204 u64 extent_num_bytes;
205
206 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
207 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500208 err = 0;
209
Chris Mason1832a6d2007-12-21 16:27:21 -0500210 if (loops && start != extent_start)
211 goto not_found;
212
Chris Masonbe20aa92007-12-17 20:14:01 -0500213 if (start < extent_start || start >= extent_end)
214 goto not_found;
215
216 cow_end = min(end, extent_end - 1);
217 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
218 if (bytenr == 0)
219 goto not_found;
220
Chris Masonc31f8832008-01-08 15:46:31 -0500221 /*
222 * we may be called by the resizer, make sure we're inside
223 * the limits of the FS
224 */
225 if (bytenr + extent_num_bytes > total_fs_bytes)
226 goto not_found;
227
Chris Masonbe20aa92007-12-17 20:14:01 -0500228 if (btrfs_count_snapshots_in_path(root, path, bytenr) != 1) {
229 goto not_found;
230 }
231
232 start = extent_end;
Chris Masonbd098352008-01-03 13:23:19 -0500233 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500234 goto not_found;
235 }
236loop:
237 if (start > end) {
238 btrfs_free_path(path);
239 return 0;
240 }
241 btrfs_release_path(root, path);
Chris Mason1832a6d2007-12-21 16:27:21 -0500242 loops++;
Chris Masonbe20aa92007-12-17 20:14:01 -0500243 goto again;
244
245not_found:
246 cow_file_range(inode, start, cow_end);
247 start = cow_end + 1;
248 goto loop;
249}
250
251static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
252{
253 struct btrfs_root *root = BTRFS_I(inode)->root;
254 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -0500255 mutex_lock(&root->fs_info->fs_mutex);
Yanb98b6762008-01-08 15:54:37 -0500256 if (btrfs_test_opt(root, NODATACOW) ||
257 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500258 ret = run_delalloc_nocow(inode, start, end);
259 else
260 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500261
Chris Masonb888db22007-08-27 16:49:44 -0400262 mutex_unlock(&root->fs_info->fs_mutex);
263 return ret;
264}
265
Chris Mason291d6732008-01-29 15:55:23 -0500266int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500267 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500268{
Chris Masonb0c68f82008-01-31 11:05:37 -0500269 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500270 struct btrfs_root *root = BTRFS_I(inode)->root;
271 spin_lock(&root->fs_info->delalloc_lock);
Chris Mason90692182008-02-08 13:49:28 -0500272 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -0500273 root->fs_info->delalloc_bytes += end - start + 1;
274 spin_unlock(&root->fs_info->delalloc_lock);
275 }
276 return 0;
277}
278
279int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500280 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500281{
Chris Masonb0c68f82008-01-31 11:05:37 -0500282 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500283 struct btrfs_root *root = BTRFS_I(inode)->root;
284 spin_lock(&root->fs_info->delalloc_lock);
Chris Masonb0c68f82008-01-31 11:05:37 -0500285 if (end - start + 1 > root->fs_info->delalloc_bytes) {
286 printk("warning: delalloc account %Lu %Lu\n",
287 end - start + 1, root->fs_info->delalloc_bytes);
288 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -0500289 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -0500290 } else {
291 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -0500292 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -0500293 }
Chris Mason291d6732008-01-29 15:55:23 -0500294 spin_unlock(&root->fs_info->delalloc_lock);
295 }
296 return 0;
297}
298
Chris Mason239b14b2008-03-24 15:02:07 -0400299int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
300 size_t size, struct bio *bio)
301{
302 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
303 struct btrfs_mapping_tree *map_tree;
304 struct btrfs_device *dev;
305 u64 logical = bio->bi_sector << 9;
306 u64 physical;
307 u64 length = 0;
308 u64 map_length;
309 struct bio_vec *bvec;
310 int i;
311 int ret;
312
313 bio_for_each_segment(bvec, bio, i) {
314 length += bvec->bv_len;
315 }
316 map_tree = &root->fs_info->mapping_tree;
317 map_length = length;
318 ret = btrfs_map_block(map_tree, logical, &physical, &map_length, &dev);
319 if (map_length < length + size) {
320 printk("merge bio hook logical %Lu bio len %Lu physical %Lu "
321 "len %Lu\n", logical, length, physical, map_length);
322 return 1;
323 }
324 return 0;
325}
326
Chris Mason0b86a832008-03-24 15:01:56 -0400327int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio)
Chris Mason065631f2008-02-20 12:07:25 -0500328{
Chris Mason065631f2008-02-20 12:07:25 -0500329 struct btrfs_root *root = BTRFS_I(inode)->root;
330 struct btrfs_trans_handle *trans;
331 int ret = 0;
332
Chris Mason0b86a832008-03-24 15:01:56 -0400333 if (rw != WRITE) {
334 goto mapit;
335 }
Chris Mason065631f2008-02-20 12:07:25 -0500336
337 if (btrfs_test_opt(root, NODATASUM) ||
Chris Mason0b86a832008-03-24 15:01:56 -0400338 btrfs_test_flag(inode, NODATASUM)) {
339 goto mapit;
340 }
Chris Mason065631f2008-02-20 12:07:25 -0500341
342 mutex_lock(&root->fs_info->fs_mutex);
343 trans = btrfs_start_transaction(root, 1);
344 btrfs_set_trans_block_group(trans, inode);
345 btrfs_csum_file_blocks(trans, root, inode, bio);
346 ret = btrfs_end_transaction(trans, root);
347 BUG_ON(ret);
348 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -0400349mapit:
350 return btrfs_map_bio(root, rw, bio);
Chris Mason065631f2008-02-20 12:07:25 -0500351}
Chris Mason6885f302008-02-20 16:11:05 -0500352
Chris Mason07157aa2007-08-30 08:50:51 -0400353int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
354{
355 int ret = 0;
356 struct inode *inode = page->mapping->host;
357 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500358 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400359 struct btrfs_csum_item *item;
360 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400361 u32 csum;
Yanb98b6762008-01-08 15:54:37 -0500362 if (btrfs_test_opt(root, NODATASUM) ||
363 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500364 return 0;
Chris Mason07157aa2007-08-30 08:50:51 -0400365 mutex_lock(&root->fs_info->fs_mutex);
366 path = btrfs_alloc_path();
367 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
368 if (IS_ERR(item)) {
369 ret = PTR_ERR(item);
370 /* a csum that isn't present is a preallocated region. */
371 if (ret == -ENOENT || ret == -EFBIG)
372 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400373 csum = 0;
Chris Masonaadfeb62008-01-29 09:10:27 -0500374 printk("no csum found for inode %lu start %Lu\n", inode->i_ino, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400375 goto out;
376 }
Chris Masonff79f812007-10-15 16:22:25 -0400377 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
378 BTRFS_CRC32_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -0500379 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400380out:
381 if (path)
382 btrfs_free_path(path);
383 mutex_unlock(&root->fs_info->fs_mutex);
384 return ret;
385}
386
Chris Mason70dec802008-01-29 09:59:12 -0500387int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
388 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400389{
Chris Mason35ebb932007-10-30 16:56:53 -0400390 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400391 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500392 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400393 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500394 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400395 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400396 struct btrfs_root *root = BTRFS_I(inode)->root;
397 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400398 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500399
Yanb98b6762008-01-08 15:54:37 -0500400 if (btrfs_test_opt(root, NODATASUM) ||
401 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500402 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500403 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500404 private = state->private;
405 ret = 0;
406 } else {
407 ret = get_state_private(io_tree, start, &private);
408 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400409 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400410 kaddr = kmap_atomic(page, KM_IRQ0);
411 if (ret) {
412 goto zeroit;
413 }
Chris Masonff79f812007-10-15 16:22:25 -0400414 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
415 btrfs_csum_final(csum, (char *)&csum);
416 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400417 goto zeroit;
418 }
419 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400420 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400421 return 0;
422
423zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500424 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
425 page->mapping->host->i_ino, (unsigned long long)start, csum,
426 private);
Chris Masondb945352007-10-15 16:15:53 -0400427 memset(kaddr + offset, 1, end - start + 1);
428 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400429 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400430 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400431 return 0;
432}
Chris Masonb888db22007-08-27 16:49:44 -0400433
Chris Mason39279cc2007-06-12 06:35:45 -0400434void btrfs_read_locked_inode(struct inode *inode)
435{
436 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400437 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400438 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400439 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400440 struct btrfs_root *root = BTRFS_I(inode)->root;
441 struct btrfs_key location;
442 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400443 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400444 int ret;
445
446 path = btrfs_alloc_path();
447 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400448 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400449 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500450
Chris Mason39279cc2007-06-12 06:35:45 -0400451 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400452 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400453 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400454
Chris Mason5f39d392007-10-15 16:14:19 -0400455 leaf = path->nodes[0];
456 inode_item = btrfs_item_ptr(leaf, path->slots[0],
457 struct btrfs_inode_item);
458
459 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
460 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
461 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
462 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
463 inode->i_size = btrfs_inode_size(leaf, inode_item);
464
465 tspec = btrfs_inode_atime(inode_item);
466 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
467 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
468
469 tspec = btrfs_inode_mtime(inode_item);
470 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
471 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
472
473 tspec = btrfs_inode_ctime(inode_item);
474 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
475 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
476
477 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
478 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400479 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400480 rdev = btrfs_inode_rdev(leaf, inode_item);
481
482 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400483 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
484 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500485 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500486 if (!BTRFS_I(inode)->block_group) {
487 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -0400488 NULL, 0,
489 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -0500490 }
Chris Mason39279cc2007-06-12 06:35:45 -0400491 btrfs_free_path(path);
492 inode_item = NULL;
493
494 mutex_unlock(&root->fs_info->fs_mutex);
495
496 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400497 case S_IFREG:
498 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -0500499 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400500 inode->i_fop = &btrfs_file_operations;
501 inode->i_op = &btrfs_file_inode_operations;
502 break;
503 case S_IFDIR:
504 inode->i_fop = &btrfs_dir_file_operations;
505 if (root == root->fs_info->tree_root)
506 inode->i_op = &btrfs_dir_ro_inode_operations;
507 else
508 inode->i_op = &btrfs_dir_inode_operations;
509 break;
510 case S_IFLNK:
511 inode->i_op = &btrfs_symlink_inode_operations;
512 inode->i_mapping->a_ops = &btrfs_symlink_aops;
513 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400514 default:
515 init_special_inode(inode, inode->i_mode, rdev);
516 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400517 }
518 return;
519
520make_bad:
521 btrfs_release_path(root, path);
522 btrfs_free_path(path);
523 mutex_unlock(&root->fs_info->fs_mutex);
524 make_bad_inode(inode);
525}
526
Chris Mason5f39d392007-10-15 16:14:19 -0400527static void fill_inode_item(struct extent_buffer *leaf,
528 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400529 struct inode *inode)
530{
Chris Mason5f39d392007-10-15 16:14:19 -0400531 btrfs_set_inode_uid(leaf, item, inode->i_uid);
532 btrfs_set_inode_gid(leaf, item, inode->i_gid);
533 btrfs_set_inode_size(leaf, item, inode->i_size);
534 btrfs_set_inode_mode(leaf, item, inode->i_mode);
535 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
536
537 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
538 inode->i_atime.tv_sec);
539 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
540 inode->i_atime.tv_nsec);
541
542 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
543 inode->i_mtime.tv_sec);
544 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
545 inode->i_mtime.tv_nsec);
546
547 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
548 inode->i_ctime.tv_sec);
549 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
550 inode->i_ctime.tv_nsec);
551
552 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
553 btrfs_set_inode_generation(leaf, item, inode->i_generation);
554 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500555 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400556 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400557 BTRFS_I(inode)->block_group->key.objectid);
558}
559
Chris Masona52d9a82007-08-27 16:49:44 -0400560int btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400561 struct btrfs_root *root,
562 struct inode *inode)
563{
564 struct btrfs_inode_item *inode_item;
565 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400566 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400567 int ret;
568
569 path = btrfs_alloc_path();
570 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400571 ret = btrfs_lookup_inode(trans, root, path,
572 &BTRFS_I(inode)->location, 1);
573 if (ret) {
574 if (ret > 0)
575 ret = -ENOENT;
576 goto failed;
577 }
578
Chris Mason5f39d392007-10-15 16:14:19 -0400579 leaf = path->nodes[0];
580 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400581 struct btrfs_inode_item);
582
Chris Mason5f39d392007-10-15 16:14:19 -0400583 fill_inode_item(leaf, inode_item, inode);
584 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400585 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400586 ret = 0;
587failed:
588 btrfs_release_path(root, path);
589 btrfs_free_path(path);
590 return ret;
591}
592
593
594static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
595 struct btrfs_root *root,
596 struct inode *dir,
597 struct dentry *dentry)
598{
599 struct btrfs_path *path;
600 const char *name = dentry->d_name.name;
601 int name_len = dentry->d_name.len;
602 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400603 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400604 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400605 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400606
607 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400608 if (!path) {
609 ret = -ENOMEM;
610 goto err;
611 }
612
Chris Mason39279cc2007-06-12 06:35:45 -0400613 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
614 name, name_len, -1);
615 if (IS_ERR(di)) {
616 ret = PTR_ERR(di);
617 goto err;
618 }
619 if (!di) {
620 ret = -ENOENT;
621 goto err;
622 }
Chris Mason5f39d392007-10-15 16:14:19 -0400623 leaf = path->nodes[0];
624 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400625 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400626 if (ret)
627 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400628 btrfs_release_path(root, path);
629
630 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400631 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400632 if (IS_ERR(di)) {
633 ret = PTR_ERR(di);
634 goto err;
635 }
636 if (!di) {
637 ret = -ENOENT;
638 goto err;
639 }
640 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason39279cc2007-06-12 06:35:45 -0400641
642 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -0500643 ret = btrfs_del_inode_ref(trans, root, name, name_len,
644 dentry->d_inode->i_ino,
645 dentry->d_parent->d_inode->i_ino);
646 if (ret) {
647 printk("failed to delete reference to %.*s, "
648 "inode %lu parent %lu\n", name_len, name,
649 dentry->d_inode->i_ino,
650 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -0500651 }
Chris Mason39279cc2007-06-12 06:35:45 -0400652err:
653 btrfs_free_path(path);
654 if (!ret) {
655 dir->i_size -= name_len * 2;
Chris Mason79c44582007-06-25 10:09:33 -0400656 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400657 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -0500658#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
659 dentry->d_inode->i_nlink--;
660#else
Chris Mason39279cc2007-06-12 06:35:45 -0400661 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -0500662#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400663 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400664 dir->i_sb->s_dirt = 1;
665 }
666 return ret;
667}
668
669static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
670{
671 struct btrfs_root *root;
672 struct btrfs_trans_handle *trans;
Chris Mason2da98f02008-01-16 11:44:43 -0500673 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400674 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -0500675 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400676
677 root = BTRFS_I(dir)->root;
678 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500679
680 ret = btrfs_check_free_space(root, 1, 1);
681 if (ret)
682 goto fail;
683
Chris Mason39279cc2007-06-12 06:35:45 -0400684 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400685
Chris Mason39279cc2007-06-12 06:35:45 -0400686 btrfs_set_trans_block_group(trans, dir);
687 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400688 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400689
Chris Mason2da98f02008-01-16 11:44:43 -0500690 if (inode->i_nlink == 0) {
691 int found;
692 /* if the inode isn't linked anywhere,
693 * we don't need to worry about
694 * data=ordered
695 */
696 found = btrfs_del_ordered_inode(inode);
697 if (found == 1) {
698 atomic_dec(&inode->i_count);
699 }
700 }
701
Chris Mason39279cc2007-06-12 06:35:45 -0400702 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500703fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400704 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400705 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500706 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400707 return ret;
708}
709
710static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
711{
712 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -0500713 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400714 int ret;
715 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -0400716 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -0500717 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400718
Yan134d4512007-10-25 15:49:25 -0400719 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
720 return -ENOTEMPTY;
721
Chris Mason39279cc2007-06-12 06:35:45 -0400722 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500723 ret = btrfs_check_free_space(root, 1, 1);
724 if (ret)
725 goto fail;
726
Chris Mason39279cc2007-06-12 06:35:45 -0400727 trans = btrfs_start_transaction(root, 1);
728 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -0400729
730 /* now the directory is empty */
731 err = btrfs_unlink_trans(trans, root, dir, dentry);
732 if (!err) {
733 inode->i_size = 0;
734 }
Chris Mason39544012007-12-12 14:38:19 -0500735
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400736 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400737 ret = btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500738fail:
Yan134d4512007-10-25 15:49:25 -0400739 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400740 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500741 btrfs_throttle(root);
Chris Mason39544012007-12-12 14:38:19 -0500742
Chris Mason39279cc2007-06-12 06:35:45 -0400743 if (ret && !err)
744 err = ret;
745 return err;
746}
747
Chris Mason39279cc2007-06-12 06:35:45 -0400748/*
Chris Mason39279cc2007-06-12 06:35:45 -0400749 * this can truncate away extent items, csum items and directory items.
750 * It starts at a high offset and removes keys until it can't find
751 * any higher than i_size.
752 *
753 * csum items that cross the new i_size are truncated to the new size
754 * as well.
755 */
756static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
757 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -0500758 struct inode *inode,
759 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400760{
761 int ret;
762 struct btrfs_path *path;
763 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400764 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400765 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400766 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400767 struct btrfs_file_extent_item *fi;
768 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400769 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400770 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500771 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500772 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400773 int found_extent;
774 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -0500775 int pending_del_nr = 0;
776 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -0400777 int extent_type = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400778
Chris Masona52d9a82007-08-27 16:49:44 -0400779 btrfs_drop_extent_cache(inode, inode->i_size, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400780 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400781 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400782 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400783
Chris Mason39279cc2007-06-12 06:35:45 -0400784 /* FIXME, add redo link to tree so we don't leak on crash */
785 key.objectid = inode->i_ino;
786 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400787 key.type = (u8)-1;
788
Chris Mason85e21ba2008-01-29 15:11:36 -0500789 btrfs_init_path(path);
790search_again:
791 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
792 if (ret < 0) {
793 goto error;
794 }
795 if (ret > 0) {
796 BUG_ON(path->slots[0] == 0);
797 path->slots[0]--;
798 }
799
Chris Mason39279cc2007-06-12 06:35:45 -0400800 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -0400801 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400802 leaf = path->nodes[0];
803 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
804 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400805
Chris Mason5f39d392007-10-15 16:14:19 -0400806 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400807 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400808
Chris Mason85e21ba2008-01-29 15:11:36 -0500809 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400810 break;
811
Chris Mason5f39d392007-10-15 16:14:19 -0400812 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400813 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400814 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400815 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400816 extent_type = btrfs_file_extent_type(leaf, fi);
817 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400818 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400819 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400820 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
821 struct btrfs_item *item = btrfs_item_nr(leaf,
822 path->slots[0]);
823 item_end += btrfs_file_extent_inline_len(leaf,
824 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400825 }
Yan008630c2007-11-07 13:31:09 -0500826 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400827 }
828 if (found_type == BTRFS_CSUM_ITEM_KEY) {
829 ret = btrfs_csum_truncate(trans, root, path,
830 inode->i_size);
831 BUG_ON(ret);
832 }
Yan008630c2007-11-07 13:31:09 -0500833 if (item_end < inode->i_size) {
Chris Masonb888db22007-08-27 16:49:44 -0400834 if (found_type == BTRFS_DIR_ITEM_KEY) {
835 found_type = BTRFS_INODE_ITEM_KEY;
836 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
837 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -0500838 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
839 found_type = BTRFS_XATTR_ITEM_KEY;
840 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
841 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -0400842 } else if (found_type) {
843 found_type--;
844 } else {
845 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400846 }
Yana61721d2007-09-17 11:08:38 -0400847 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -0500848 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -0400849 }
Chris Mason5f39d392007-10-15 16:14:19 -0400850 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -0400851 del_item = 1;
852 else
853 del_item = 0;
854 found_extent = 0;
855
856 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -0400857 if (found_type != BTRFS_EXTENT_DATA_KEY)
858 goto delete;
859
860 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -0400861 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -0400862 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400863 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -0400864 u64 orig_num_bytes =
865 btrfs_file_extent_num_bytes(leaf, fi);
866 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -0400867 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -0500868 extent_num_bytes = extent_num_bytes &
869 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400870 btrfs_set_file_extent_num_bytes(leaf, fi,
871 extent_num_bytes);
872 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -0500873 extent_num_bytes);
874 if (extent_start != 0)
875 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -0400876 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400877 } else {
Chris Masondb945352007-10-15 16:15:53 -0400878 extent_num_bytes =
879 btrfs_file_extent_disk_num_bytes(leaf,
880 fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400881 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -0500882 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400883 if (extent_start != 0) {
884 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -0500885 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -0400886 }
Chris Masond8d5f3e2007-12-11 12:42:00 -0500887 root_gen = btrfs_header_generation(leaf);
888 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400889 }
Chris Mason90692182008-02-08 13:49:28 -0500890 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
891 if (!del_item) {
892 u32 newsize = inode->i_size - found_key.offset;
893 dec_i_blocks(inode, item_end + 1 -
894 found_key.offset - newsize);
895 newsize =
896 btrfs_file_extent_calc_inline_size(newsize);
897 ret = btrfs_truncate_item(trans, root, path,
898 newsize, 1);
899 BUG_ON(ret);
900 } else {
901 dec_i_blocks(inode, item_end + 1 -
902 found_key.offset);
903 }
Chris Mason39279cc2007-06-12 06:35:45 -0400904 }
Chris Mason179e29e2007-11-01 11:28:41 -0400905delete:
Chris Mason39279cc2007-06-12 06:35:45 -0400906 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -0500907 if (!pending_del_nr) {
908 /* no pending yet, add ourselves */
909 pending_del_slot = path->slots[0];
910 pending_del_nr = 1;
911 } else if (pending_del_nr &&
912 path->slots[0] + 1 == pending_del_slot) {
913 /* hop on the pending chunk */
914 pending_del_nr++;
915 pending_del_slot = path->slots[0];
916 } else {
917 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
918 }
Chris Mason39279cc2007-06-12 06:35:45 -0400919 } else {
920 break;
921 }
Chris Mason39279cc2007-06-12 06:35:45 -0400922 if (found_extent) {
923 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -0500924 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -0500925 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -0500926 root_gen, inode->i_ino,
927 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400928 BUG_ON(ret);
929 }
Chris Mason85e21ba2008-01-29 15:11:36 -0500930next:
931 if (path->slots[0] == 0) {
932 if (pending_del_nr)
933 goto del_pending;
934 btrfs_release_path(root, path);
935 goto search_again;
936 }
937
938 path->slots[0]--;
939 if (pending_del_nr &&
940 path->slots[0] + 1 != pending_del_slot) {
941 struct btrfs_key debug;
942del_pending:
943 btrfs_item_key_to_cpu(path->nodes[0], &debug,
944 pending_del_slot);
945 ret = btrfs_del_items(trans, root, path,
946 pending_del_slot,
947 pending_del_nr);
948 BUG_ON(ret);
949 pending_del_nr = 0;
950 btrfs_release_path(root, path);
951 goto search_again;
952 }
Chris Mason39279cc2007-06-12 06:35:45 -0400953 }
954 ret = 0;
955error:
Chris Mason85e21ba2008-01-29 15:11:36 -0500956 if (pending_del_nr) {
957 ret = btrfs_del_items(trans, root, path, pending_del_slot,
958 pending_del_nr);
959 }
Chris Mason39279cc2007-06-12 06:35:45 -0400960 btrfs_release_path(root, path);
961 btrfs_free_path(path);
962 inode->i_sb->s_dirt = 1;
963 return ret;
964}
965
Chris Masonb888db22007-08-27 16:49:44 -0400966static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -0400967 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -0400968{
Chris Mason39279cc2007-06-12 06:35:45 -0400969 char *kaddr;
Chris Masond1310b22008-01-24 16:13:08 -0500970 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400971 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db22007-08-27 16:49:44 -0400972 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -0500973 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400974
Chris Mason190662b2007-12-18 16:25:45 -0500975 WARN_ON(!PageLocked(page));
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400976 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400977
Chris Masond1310b22008-01-24 16:13:08 -0500978 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500979 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
Chris Masonb888db22007-08-27 16:49:44 -0400980 page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -0500981
Chris Masona52d9a82007-08-27 16:49:44 -0400982 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db22007-08-27 16:49:44 -0400983 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400984 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
985 flush_dcache_page(page);
Chris Masonb888db22007-08-27 16:49:44 -0400986 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400987 }
Chris Masonb888db22007-08-27 16:49:44 -0400988 set_page_dirty(page);
Chris Masond1310b22008-01-24 16:13:08 -0500989 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400990
Chris Masona52d9a82007-08-27 16:49:44 -0400991 return ret;
992}
993
994/*
995 * taken from block_truncate_page, but does cow as it zeros out
996 * any bytes left in the last page in the file.
997 */
998static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
999{
1000 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001001 struct btrfs_root *root = BTRFS_I(inode)->root;
1002 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001003 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1004 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1005 struct page *page;
1006 int ret = 0;
1007 u64 page_start;
1008
1009 if ((offset & (blocksize - 1)) == 0)
1010 goto out;
1011
1012 ret = -ENOMEM;
1013 page = grab_cache_page(mapping, index);
1014 if (!page)
1015 goto out;
1016 if (!PageUptodate(page)) {
1017 ret = btrfs_readpage(NULL, page);
1018 lock_page(page);
1019 if (!PageUptodate(page)) {
1020 ret = -EIO;
1021 goto out;
1022 }
1023 }
Chris Mason35ebb932007-10-30 16:56:53 -04001024 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04001025
Chris Masonb888db22007-08-27 16:49:44 -04001026 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -04001027
Chris Mason39279cc2007-06-12 06:35:45 -04001028 unlock_page(page);
1029 page_cache_release(page);
1030out:
1031 return ret;
1032}
1033
1034static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1035{
1036 struct inode *inode = dentry->d_inode;
1037 int err;
1038
1039 err = inode_change_ok(inode, attr);
1040 if (err)
1041 return err;
1042
1043 if (S_ISREG(inode->i_mode) &&
1044 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1045 struct btrfs_trans_handle *trans;
1046 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001047 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001048
Chris Mason5f39d392007-10-15 16:14:19 -04001049 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001050 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001051 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001052 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001053 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001054
Chris Mason1b0f7c22008-01-30 14:33:02 -05001055 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001056 goto out;
1057
Chris Mason1832a6d2007-12-21 16:27:21 -05001058 mutex_lock(&root->fs_info->fs_mutex);
1059 err = btrfs_check_free_space(root, 1, 0);
1060 mutex_unlock(&root->fs_info->fs_mutex);
1061 if (err)
1062 goto fail;
1063
Chris Mason39279cc2007-06-12 06:35:45 -04001064 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1065
Chris Mason1b0f7c22008-01-30 14:33:02 -05001066 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason5f564062008-01-22 16:47:59 -05001067 hole_size = block_end - hole_start;
Chris Mason39279cc2007-06-12 06:35:45 -04001068
1069 mutex_lock(&root->fs_info->fs_mutex);
1070 trans = btrfs_start_transaction(root, 1);
1071 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -04001072 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001073 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001074 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001075
Chris Mason179e29e2007-11-01 11:28:41 -04001076 if (alloc_hint != EXTENT_MAP_INLINE) {
1077 err = btrfs_insert_file_extent(trans, root,
1078 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001079 hole_start, 0, 0,
1080 hole_size);
Chris Masond1310b22008-01-24 16:13:08 -05001081 btrfs_drop_extent_cache(inode, hole_start,
1082 hole_size - 1);
Chris Mason5f564062008-01-22 16:47:59 -05001083 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001084 }
Chris Mason39279cc2007-06-12 06:35:45 -04001085 btrfs_end_transaction(trans, root);
1086 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001087 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001088 if (err)
1089 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001090 }
1091out:
1092 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001093fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001094 return err;
1095}
Chris Mason61295eb2008-01-14 16:24:38 -05001096
Chris Mason2da98f02008-01-16 11:44:43 -05001097void btrfs_put_inode(struct inode *inode)
Chris Mason61295eb2008-01-14 16:24:38 -05001098{
Chris Mason2da98f02008-01-16 11:44:43 -05001099 int ret;
1100
1101 if (!BTRFS_I(inode)->ordered_trans) {
Chris Mason61295eb2008-01-14 16:24:38 -05001102 return;
1103 }
Chris Mason2da98f02008-01-16 11:44:43 -05001104
1105 if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_DIRTY) ||
1106 mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1107 return;
1108
1109 ret = btrfs_del_ordered_inode(inode);
1110 if (ret == 1) {
1111 atomic_dec(&inode->i_count);
1112 }
Chris Mason61295eb2008-01-14 16:24:38 -05001113}
1114
Chris Mason39279cc2007-06-12 06:35:45 -04001115void btrfs_delete_inode(struct inode *inode)
1116{
1117 struct btrfs_trans_handle *trans;
1118 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001119 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001120 int ret;
1121
1122 truncate_inode_pages(&inode->i_data, 0);
1123 if (is_bad_inode(inode)) {
1124 goto no_delete;
1125 }
Chris Mason5f39d392007-10-15 16:14:19 -04001126
Chris Mason39279cc2007-06-12 06:35:45 -04001127 inode->i_size = 0;
1128 mutex_lock(&root->fs_info->fs_mutex);
1129 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001130
Chris Mason39279cc2007-06-12 06:35:45 -04001131 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001132 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001133 if (ret)
1134 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001135
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001136 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001137 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001138
Chris Mason39279cc2007-06-12 06:35:45 -04001139 btrfs_end_transaction(trans, root);
1140 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001141 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001142 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001143 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001144
1145no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001146 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001147 btrfs_end_transaction(trans, root);
1148 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001149 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001150 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001151no_delete:
1152 clear_inode(inode);
1153}
1154
1155/*
1156 * this returns the key found in the dir entry in the location pointer.
1157 * If no dir entries were found, location->objectid is 0.
1158 */
1159static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1160 struct btrfs_key *location)
1161{
1162 const char *name = dentry->d_name.name;
1163 int namelen = dentry->d_name.len;
1164 struct btrfs_dir_item *di;
1165 struct btrfs_path *path;
1166 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001167 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001168
Chris Mason39544012007-12-12 14:38:19 -05001169 if (namelen == 1 && strcmp(name, ".") == 0) {
1170 location->objectid = dir->i_ino;
1171 location->type = BTRFS_INODE_ITEM_KEY;
1172 location->offset = 0;
1173 return 0;
1174 }
Chris Mason39279cc2007-06-12 06:35:45 -04001175 path = btrfs_alloc_path();
1176 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001177
Chris Mason7a720532007-12-13 09:06:59 -05001178 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001179 struct btrfs_key key;
1180 struct extent_buffer *leaf;
1181 u32 nritems;
1182 int slot;
1183
1184 key.objectid = dir->i_ino;
1185 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1186 key.offset = 0;
1187 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1188 BUG_ON(ret == 0);
1189 ret = 0;
1190
1191 leaf = path->nodes[0];
1192 slot = path->slots[0];
1193 nritems = btrfs_header_nritems(leaf);
1194 if (slot >= nritems)
1195 goto out_err;
1196
1197 btrfs_item_key_to_cpu(leaf, &key, slot);
1198 if (key.objectid != dir->i_ino ||
1199 key.type != BTRFS_INODE_REF_KEY) {
1200 goto out_err;
1201 }
1202 location->objectid = key.offset;
1203 location->type = BTRFS_INODE_ITEM_KEY;
1204 location->offset = 0;
1205 goto out;
1206 }
1207
Chris Mason39279cc2007-06-12 06:35:45 -04001208 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1209 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001210 if (IS_ERR(di))
1211 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001212 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001213 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001214 }
Chris Mason5f39d392007-10-15 16:14:19 -04001215 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001216out:
Chris Mason39279cc2007-06-12 06:35:45 -04001217 btrfs_free_path(path);
1218 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001219out_err:
1220 location->objectid = 0;
1221 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001222}
1223
1224/*
1225 * when we hit a tree root in a directory, the btrfs part of the inode
1226 * needs to be changed to reflect the root directory of the tree root. This
1227 * is kind of like crossing a mount point.
1228 */
1229static int fixup_tree_root_location(struct btrfs_root *root,
1230 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001231 struct btrfs_root **sub_root,
1232 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001233{
1234 struct btrfs_path *path;
1235 struct btrfs_root_item *ri;
1236
1237 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1238 return 0;
1239 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1240 return 0;
1241
1242 path = btrfs_alloc_path();
1243 BUG_ON(!path);
1244 mutex_lock(&root->fs_info->fs_mutex);
1245
Josef Bacik58176a92007-08-29 15:47:34 -04001246 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1247 dentry->d_name.name,
1248 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001249 if (IS_ERR(*sub_root))
1250 return PTR_ERR(*sub_root);
1251
1252 ri = &(*sub_root)->root_item;
1253 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001254 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1255 location->offset = 0;
1256
1257 btrfs_free_path(path);
1258 mutex_unlock(&root->fs_info->fs_mutex);
1259 return 0;
1260}
1261
1262static int btrfs_init_locked_inode(struct inode *inode, void *p)
1263{
1264 struct btrfs_iget_args *args = p;
1265 inode->i_ino = args->ino;
1266 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001267 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001268 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1269 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001270 inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001271 return 0;
1272}
1273
1274static int btrfs_find_actor(struct inode *inode, void *opaque)
1275{
1276 struct btrfs_iget_args *args = opaque;
1277 return (args->ino == inode->i_ino &&
1278 args->root == BTRFS_I(inode)->root);
1279}
1280
Chris Masondc17ff82008-01-08 15:46:30 -05001281struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1282 u64 root_objectid)
1283{
1284 struct btrfs_iget_args args;
1285 args.ino = objectid;
1286 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1287
1288 if (!args.root)
1289 return NULL;
1290
1291 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1292}
1293
Chris Mason39279cc2007-06-12 06:35:45 -04001294struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1295 struct btrfs_root *root)
1296{
1297 struct inode *inode;
1298 struct btrfs_iget_args args;
1299 args.ino = objectid;
1300 args.root = root;
1301
1302 inode = iget5_locked(s, objectid, btrfs_find_actor,
1303 btrfs_init_locked_inode,
1304 (void *)&args);
1305 return inode;
1306}
1307
1308static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1309 struct nameidata *nd)
1310{
1311 struct inode * inode;
1312 struct btrfs_inode *bi = BTRFS_I(dir);
1313 struct btrfs_root *root = bi->root;
1314 struct btrfs_root *sub_root = root;
1315 struct btrfs_key location;
1316 int ret;
1317
1318 if (dentry->d_name.len > BTRFS_NAME_LEN)
1319 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001320
Chris Mason39279cc2007-06-12 06:35:45 -04001321 mutex_lock(&root->fs_info->fs_mutex);
1322 ret = btrfs_inode_by_name(dir, dentry, &location);
1323 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001324
Chris Mason39279cc2007-06-12 06:35:45 -04001325 if (ret < 0)
1326 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001327
Chris Mason39279cc2007-06-12 06:35:45 -04001328 inode = NULL;
1329 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001330 ret = fixup_tree_root_location(root, &location, &sub_root,
1331 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001332 if (ret < 0)
1333 return ERR_PTR(ret);
1334 if (ret > 0)
1335 return ERR_PTR(-ENOENT);
1336 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1337 sub_root);
1338 if (!inode)
1339 return ERR_PTR(-EACCES);
1340 if (inode->i_state & I_NEW) {
1341 /* the inode and parent dir are two different roots */
1342 if (sub_root != root) {
1343 igrab(inode);
1344 sub_root->inode = inode;
1345 }
1346 BTRFS_I(inode)->root = sub_root;
1347 memcpy(&BTRFS_I(inode)->location, &location,
1348 sizeof(location));
1349 btrfs_read_locked_inode(inode);
1350 unlock_new_inode(inode);
1351 }
1352 }
1353 return d_splice_alias(inode, dentry);
1354}
1355
Chris Mason39279cc2007-06-12 06:35:45 -04001356static unsigned char btrfs_filetype_table[] = {
1357 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1358};
1359
1360static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1361{
Chris Mason6da6aba2007-12-18 16:15:09 -05001362 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001363 struct btrfs_root *root = BTRFS_I(inode)->root;
1364 struct btrfs_item *item;
1365 struct btrfs_dir_item *di;
1366 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001367 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001368 struct btrfs_path *path;
1369 int ret;
1370 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001371 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001372 int slot;
1373 int advance;
1374 unsigned char d_type;
1375 int over = 0;
1376 u32 di_cur;
1377 u32 di_total;
1378 u32 di_len;
1379 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001380 char tmp_name[32];
1381 char *name_ptr;
1382 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001383
1384 /* FIXME, use a real flag for deciding about the key type */
1385 if (root->fs_info->tree_root == root)
1386 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001387
Chris Mason39544012007-12-12 14:38:19 -05001388 /* special case for "." */
1389 if (filp->f_pos == 0) {
1390 over = filldir(dirent, ".", 1,
1391 1, inode->i_ino,
1392 DT_DIR);
1393 if (over)
1394 return 0;
1395 filp->f_pos = 1;
1396 }
1397
Chris Mason39279cc2007-06-12 06:35:45 -04001398 mutex_lock(&root->fs_info->fs_mutex);
1399 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001400 path = btrfs_alloc_path();
1401 path->reada = 2;
1402
1403 /* special case for .., just use the back ref */
1404 if (filp->f_pos == 1) {
1405 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1406 key.offset = 0;
1407 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1408 BUG_ON(ret == 0);
1409 leaf = path->nodes[0];
1410 slot = path->slots[0];
1411 nritems = btrfs_header_nritems(leaf);
1412 if (slot >= nritems) {
1413 btrfs_release_path(root, path);
1414 goto read_dir_items;
1415 }
1416 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1417 btrfs_release_path(root, path);
1418 if (found_key.objectid != key.objectid ||
1419 found_key.type != BTRFS_INODE_REF_KEY)
1420 goto read_dir_items;
1421 over = filldir(dirent, "..", 2,
1422 2, found_key.offset, DT_DIR);
1423 if (over)
1424 goto nopos;
1425 filp->f_pos = 2;
1426 }
1427
1428read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001429 btrfs_set_key_type(&key, key_type);
1430 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001431
Chris Mason39279cc2007-06-12 06:35:45 -04001432 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1433 if (ret < 0)
1434 goto err;
1435 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001436 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001437 leaf = path->nodes[0];
1438 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001439 slot = path->slots[0];
1440 if (advance || slot >= nritems) {
1441 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001442 ret = btrfs_next_leaf(root, path);
1443 if (ret)
1444 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001445 leaf = path->nodes[0];
1446 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001447 slot = path->slots[0];
1448 } else {
1449 slot++;
1450 path->slots[0]++;
1451 }
1452 }
1453 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001454 item = btrfs_item_nr(leaf, slot);
1455 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1456
1457 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001458 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001459 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001460 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001461 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001462 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001463
1464 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001465 advance = 1;
1466 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1467 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001468 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001469 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001470 struct btrfs_key location;
1471
1472 name_len = btrfs_dir_name_len(leaf, di);
1473 if (name_len < 32) {
1474 name_ptr = tmp_name;
1475 } else {
1476 name_ptr = kmalloc(name_len, GFP_NOFS);
1477 BUG_ON(!name_ptr);
1478 }
1479 read_extent_buffer(leaf, name_ptr,
1480 (unsigned long)(di + 1), name_len);
1481
1482 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1483 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001484 over = filldir(dirent, name_ptr, name_len,
1485 found_key.offset,
1486 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001487 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001488
1489 if (name_ptr != tmp_name)
1490 kfree(name_ptr);
1491
Chris Mason39279cc2007-06-12 06:35:45 -04001492 if (over)
1493 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001494 di_len = btrfs_dir_name_len(leaf, di) +
1495 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001496 di_cur += di_len;
1497 di = (struct btrfs_dir_item *)((char *)di + di_len);
1498 }
1499 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001500 if (key_type == BTRFS_DIR_INDEX_KEY)
1501 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1502 else
1503 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001504nopos:
1505 ret = 0;
1506err:
1507 btrfs_release_path(root, path);
1508 btrfs_free_path(path);
1509 mutex_unlock(&root->fs_info->fs_mutex);
1510 return ret;
1511}
1512
1513int btrfs_write_inode(struct inode *inode, int wait)
1514{
1515 struct btrfs_root *root = BTRFS_I(inode)->root;
1516 struct btrfs_trans_handle *trans;
1517 int ret = 0;
1518
1519 if (wait) {
1520 mutex_lock(&root->fs_info->fs_mutex);
1521 trans = btrfs_start_transaction(root, 1);
1522 btrfs_set_trans_block_group(trans, inode);
1523 ret = btrfs_commit_transaction(trans, root);
1524 mutex_unlock(&root->fs_info->fs_mutex);
1525 }
1526 return ret;
1527}
1528
1529/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001530 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001531 * inode changes. But, it is most likely to find the inode in cache.
1532 * FIXME, needs more benchmarking...there are no reasons other than performance
1533 * to keep or drop this code.
1534 */
1535void btrfs_dirty_inode(struct inode *inode)
1536{
1537 struct btrfs_root *root = BTRFS_I(inode)->root;
1538 struct btrfs_trans_handle *trans;
1539
1540 mutex_lock(&root->fs_info->fs_mutex);
1541 trans = btrfs_start_transaction(root, 1);
1542 btrfs_set_trans_block_group(trans, inode);
1543 btrfs_update_inode(trans, root, inode);
1544 btrfs_end_transaction(trans, root);
1545 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001546}
1547
1548static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1549 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001550 const char *name, int name_len,
1551 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001552 u64 objectid,
1553 struct btrfs_block_group_cache *group,
1554 int mode)
1555{
1556 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001557 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04001558 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04001559 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001560 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001561 struct btrfs_inode_ref *ref;
1562 struct btrfs_key key[2];
1563 u32 sizes[2];
1564 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001565 int ret;
1566 int owner;
1567
Chris Mason5f39d392007-10-15 16:14:19 -04001568 path = btrfs_alloc_path();
1569 BUG_ON(!path);
1570
Chris Mason39279cc2007-06-12 06:35:45 -04001571 inode = new_inode(root->fs_info->sb);
1572 if (!inode)
1573 return ERR_PTR(-ENOMEM);
1574
Chris Masond1310b22008-01-24 16:13:08 -05001575 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1576 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001577 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001578 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001579 BTRFS_I(inode)->root = root;
Chris Masonb888db22007-08-27 16:49:44 -04001580
Chris Mason39279cc2007-06-12 06:35:45 -04001581 if (mode & S_IFDIR)
1582 owner = 0;
1583 else
1584 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04001585 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001586 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04001587 if (!new_inode_group) {
1588 printk("find_block group failed\n");
1589 new_inode_group = group;
1590 }
1591 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05001592 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001593
1594 key[0].objectid = objectid;
1595 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1596 key[0].offset = 0;
1597
1598 key[1].objectid = objectid;
1599 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1600 key[1].offset = ref_objectid;
1601
1602 sizes[0] = sizeof(struct btrfs_inode_item);
1603 sizes[1] = name_len + sizeof(*ref);
1604
1605 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1606 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001607 goto fail;
1608
Chris Mason9c583092008-01-29 15:15:18 -05001609 if (objectid > root->highest_inode)
1610 root->highest_inode = objectid;
1611
Chris Mason39279cc2007-06-12 06:35:45 -04001612 inode->i_uid = current->fsuid;
1613 inode->i_gid = current->fsgid;
1614 inode->i_mode = mode;
1615 inode->i_ino = objectid;
1616 inode->i_blocks = 0;
1617 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001618 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1619 struct btrfs_inode_item);
1620 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001621
1622 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1623 struct btrfs_inode_ref);
1624 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1625 ptr = (unsigned long)(ref + 1);
1626 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1627
Chris Mason5f39d392007-10-15 16:14:19 -04001628 btrfs_mark_buffer_dirty(path->nodes[0]);
1629 btrfs_free_path(path);
1630
Chris Mason39279cc2007-06-12 06:35:45 -04001631 location = &BTRFS_I(inode)->location;
1632 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001633 location->offset = 0;
1634 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1635
Chris Mason39279cc2007-06-12 06:35:45 -04001636 insert_inode_hash(inode);
1637 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001638fail:
1639 btrfs_free_path(path);
1640 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001641}
1642
1643static inline u8 btrfs_inode_type(struct inode *inode)
1644{
1645 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1646}
1647
1648static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001649 struct dentry *dentry, struct inode *inode,
1650 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001651{
1652 int ret;
1653 struct btrfs_key key;
1654 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001655 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001656
Chris Mason39279cc2007-06-12 06:35:45 -04001657 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001658 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1659 key.offset = 0;
1660
1661 ret = btrfs_insert_dir_item(trans, root,
1662 dentry->d_name.name, dentry->d_name.len,
1663 dentry->d_parent->d_inode->i_ino,
1664 &key, btrfs_inode_type(inode));
1665 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05001666 if (add_backref) {
1667 ret = btrfs_insert_inode_ref(trans, root,
1668 dentry->d_name.name,
1669 dentry->d_name.len,
1670 inode->i_ino,
1671 dentry->d_parent->d_inode->i_ino);
1672 }
Chris Mason79c44582007-06-25 10:09:33 -04001673 parent_inode = dentry->d_parent->d_inode;
1674 parent_inode->i_size += dentry->d_name.len * 2;
1675 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001676 ret = btrfs_update_inode(trans, root,
1677 dentry->d_parent->d_inode);
1678 }
1679 return ret;
1680}
1681
1682static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001683 struct dentry *dentry, struct inode *inode,
1684 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001685{
Chris Mason9c583092008-01-29 15:15:18 -05001686 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04001687 if (!err) {
1688 d_instantiate(dentry, inode);
1689 return 0;
1690 }
1691 if (err > 0)
1692 err = -EEXIST;
1693 return err;
1694}
1695
Josef Bacik618e21d2007-07-11 10:18:17 -04001696static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1697 int mode, dev_t rdev)
1698{
1699 struct btrfs_trans_handle *trans;
1700 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001701 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04001702 int err;
1703 int drop_inode = 0;
1704 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05001705 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04001706
1707 if (!new_valid_dev(rdev))
1708 return -EINVAL;
1709
1710 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001711 err = btrfs_check_free_space(root, 1, 0);
1712 if (err)
1713 goto fail;
1714
Josef Bacik618e21d2007-07-11 10:18:17 -04001715 trans = btrfs_start_transaction(root, 1);
1716 btrfs_set_trans_block_group(trans, dir);
1717
1718 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1719 if (err) {
1720 err = -ENOSPC;
1721 goto out_unlock;
1722 }
1723
Chris Mason9c583092008-01-29 15:15:18 -05001724 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1725 dentry->d_name.len,
1726 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04001727 BTRFS_I(dir)->block_group, mode);
1728 err = PTR_ERR(inode);
1729 if (IS_ERR(inode))
1730 goto out_unlock;
1731
1732 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001733 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04001734 if (err)
1735 drop_inode = 1;
1736 else {
1737 inode->i_op = &btrfs_special_inode_operations;
1738 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001739 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001740 }
1741 dir->i_sb->s_dirt = 1;
1742 btrfs_update_inode_block_group(trans, inode);
1743 btrfs_update_inode_block_group(trans, dir);
1744out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001745 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001746 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001747fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04001748 mutex_unlock(&root->fs_info->fs_mutex);
1749
1750 if (drop_inode) {
1751 inode_dec_link_count(inode);
1752 iput(inode);
1753 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001754 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001755 btrfs_throttle(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04001756 return err;
1757}
1758
Chris Mason39279cc2007-06-12 06:35:45 -04001759static int btrfs_create(struct inode *dir, struct dentry *dentry,
1760 int mode, struct nameidata *nd)
1761{
1762 struct btrfs_trans_handle *trans;
1763 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001764 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001765 int err;
1766 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05001767 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001768 u64 objectid;
1769
1770 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001771 err = btrfs_check_free_space(root, 1, 0);
1772 if (err)
1773 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001774 trans = btrfs_start_transaction(root, 1);
1775 btrfs_set_trans_block_group(trans, dir);
1776
1777 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1778 if (err) {
1779 err = -ENOSPC;
1780 goto out_unlock;
1781 }
1782
Chris Mason9c583092008-01-29 15:15:18 -05001783 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1784 dentry->d_name.len,
1785 dentry->d_parent->d_inode->i_ino,
1786 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04001787 err = PTR_ERR(inode);
1788 if (IS_ERR(inode))
1789 goto out_unlock;
1790
1791 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001792 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001793 if (err)
1794 drop_inode = 1;
1795 else {
1796 inode->i_mapping->a_ops = &btrfs_aops;
1797 inode->i_fop = &btrfs_file_operations;
1798 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05001799 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1800 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04001801 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001802 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001803 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001804 }
1805 dir->i_sb->s_dirt = 1;
1806 btrfs_update_inode_block_group(trans, inode);
1807 btrfs_update_inode_block_group(trans, dir);
1808out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001809 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001810 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001811fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001812 mutex_unlock(&root->fs_info->fs_mutex);
1813
1814 if (drop_inode) {
1815 inode_dec_link_count(inode);
1816 iput(inode);
1817 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001818 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001819 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001820 return err;
1821}
1822
1823static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1824 struct dentry *dentry)
1825{
1826 struct btrfs_trans_handle *trans;
1827 struct btrfs_root *root = BTRFS_I(dir)->root;
1828 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001829 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001830 int err;
1831 int drop_inode = 0;
1832
1833 if (inode->i_nlink == 0)
1834 return -ENOENT;
1835
Chris Mason6da6aba2007-12-18 16:15:09 -05001836#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1837 inode->i_nlink++;
1838#else
Chris Mason39279cc2007-06-12 06:35:45 -04001839 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001840#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001841 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001842 err = btrfs_check_free_space(root, 1, 0);
1843 if (err)
1844 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001845 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001846
Chris Mason39279cc2007-06-12 06:35:45 -04001847 btrfs_set_trans_block_group(trans, dir);
1848 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05001849 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001850
Chris Mason39279cc2007-06-12 06:35:45 -04001851 if (err)
1852 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001853
Chris Mason39279cc2007-06-12 06:35:45 -04001854 dir->i_sb->s_dirt = 1;
1855 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04001856 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001857
Chris Mason54aa1f42007-06-22 14:16:25 -04001858 if (err)
1859 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001860
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001861 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001862 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001863fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001864 mutex_unlock(&root->fs_info->fs_mutex);
1865
1866 if (drop_inode) {
1867 inode_dec_link_count(inode);
1868 iput(inode);
1869 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001870 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001871 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001872 return err;
1873}
1874
Chris Mason39279cc2007-06-12 06:35:45 -04001875static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1876{
1877 struct inode *inode;
1878 struct btrfs_trans_handle *trans;
1879 struct btrfs_root *root = BTRFS_I(dir)->root;
1880 int err = 0;
1881 int drop_on_err = 0;
1882 u64 objectid;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001883 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001884
1885 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001886 err = btrfs_check_free_space(root, 1, 0);
1887 if (err)
1888 goto out_unlock;
1889
Chris Mason39279cc2007-06-12 06:35:45 -04001890 trans = btrfs_start_transaction(root, 1);
1891 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04001892
Chris Mason39279cc2007-06-12 06:35:45 -04001893 if (IS_ERR(trans)) {
1894 err = PTR_ERR(trans);
1895 goto out_unlock;
1896 }
1897
1898 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1899 if (err) {
1900 err = -ENOSPC;
1901 goto out_unlock;
1902 }
1903
Chris Mason9c583092008-01-29 15:15:18 -05001904 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1905 dentry->d_name.len,
1906 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001907 BTRFS_I(dir)->block_group, S_IFDIR | mode);
1908 if (IS_ERR(inode)) {
1909 err = PTR_ERR(inode);
1910 goto out_fail;
1911 }
Chris Mason5f39d392007-10-15 16:14:19 -04001912
Chris Mason39279cc2007-06-12 06:35:45 -04001913 drop_on_err = 1;
1914 inode->i_op = &btrfs_dir_inode_operations;
1915 inode->i_fop = &btrfs_dir_file_operations;
1916 btrfs_set_trans_block_group(trans, inode);
1917
Chris Mason39544012007-12-12 14:38:19 -05001918 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001919 err = btrfs_update_inode(trans, root, inode);
1920 if (err)
1921 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001922
Chris Mason9c583092008-01-29 15:15:18 -05001923 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001924 if (err)
1925 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001926
Chris Mason39279cc2007-06-12 06:35:45 -04001927 d_instantiate(dentry, inode);
1928 drop_on_err = 0;
1929 dir->i_sb->s_dirt = 1;
1930 btrfs_update_inode_block_group(trans, inode);
1931 btrfs_update_inode_block_group(trans, dir);
1932
1933out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001934 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001935 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04001936
Chris Mason39279cc2007-06-12 06:35:45 -04001937out_unlock:
1938 mutex_unlock(&root->fs_info->fs_mutex);
1939 if (drop_on_err)
1940 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001941 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001942 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001943 return err;
1944}
1945
Chris Masona52d9a82007-08-27 16:49:44 -04001946struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05001947 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04001948 int create)
1949{
1950 int ret;
1951 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04001952 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04001953 u64 extent_start = 0;
1954 u64 extent_end = 0;
1955 u64 objectid = inode->i_ino;
1956 u32 found_type;
Chris Masona52d9a82007-08-27 16:49:44 -04001957 struct btrfs_path *path;
1958 struct btrfs_root *root = BTRFS_I(inode)->root;
1959 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04001960 struct extent_buffer *leaf;
1961 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04001962 struct extent_map *em = NULL;
1963 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05001964 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04001965 struct btrfs_trans_handle *trans = NULL;
1966
1967 path = btrfs_alloc_path();
1968 BUG_ON(!path);
1969 mutex_lock(&root->fs_info->fs_mutex);
1970
1971again:
Chris Masond1310b22008-01-24 16:13:08 -05001972 spin_lock(&em_tree->lock);
1973 em = lookup_extent_mapping(em_tree, start, len);
1974 spin_unlock(&em_tree->lock);
1975
Chris Masona52d9a82007-08-27 16:49:44 -04001976 if (em) {
Chris Mason56b453c2008-01-03 09:08:27 -05001977 if (em->start > start) {
Chris Masond1310b22008-01-24 16:13:08 -05001978 printk("get_extent lookup [%Lu %Lu] em [%Lu %Lu]\n",
1979 start, len, em->start, em->len);
Chris Mason56b453c2008-01-03 09:08:27 -05001980 WARN_ON(1);
1981 }
Chris Mason70dec802008-01-29 09:59:12 -05001982 if (em->block_start == EXTENT_MAP_INLINE && page)
1983 free_extent_map(em);
1984 else
1985 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04001986 }
Chris Masond1310b22008-01-24 16:13:08 -05001987 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001988 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05001989 err = -ENOMEM;
1990 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04001991 }
Chris Masond1310b22008-01-24 16:13:08 -05001992
1993 em->start = EXTENT_MAP_HOLE;
1994 em->len = (u64)-1;
Chris Masona52d9a82007-08-27 16:49:44 -04001995 em->bdev = inode->i_sb->s_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04001996 ret = btrfs_lookup_file_extent(trans, root, path,
1997 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04001998 if (ret < 0) {
1999 err = ret;
2000 goto out;
2001 }
2002
2003 if (ret != 0) {
2004 if (path->slots[0] == 0)
2005 goto not_found;
2006 path->slots[0]--;
2007 }
2008
Chris Mason5f39d392007-10-15 16:14:19 -04002009 leaf = path->nodes[0];
2010 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002011 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002012 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002013 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2014 found_type = btrfs_key_type(&found_key);
2015 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002016 found_type != BTRFS_EXTENT_DATA_KEY) {
2017 goto not_found;
2018 }
2019
Chris Mason5f39d392007-10-15 16:14:19 -04002020 found_type = btrfs_file_extent_type(leaf, item);
2021 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002022 if (found_type == BTRFS_FILE_EXTENT_REG) {
2023 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002024 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002025 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04002026 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002027 em->start = start;
2028 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002029 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002030 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002031 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002032 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002033 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002034 }
2035 goto not_found_em;
2036 }
Chris Masondb945352007-10-15 16:15:53 -04002037 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2038 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002039 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002040 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002041 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002042 goto insert;
2043 }
Chris Masondb945352007-10-15 16:15:53 -04002044 bytenr += btrfs_file_extent_offset(leaf, item);
2045 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002046 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002047 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002048 goto insert;
2049 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002050 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002051 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002052 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002053 size_t size;
2054 size_t extent_offset;
2055 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002056
Chris Mason5f39d392007-10-15 16:14:19 -04002057 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2058 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002059 extent_end = (extent_start + size + root->sectorsize - 1) &
2060 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002061 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002062 em->start = start;
2063 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002064 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002065 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002066 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002067 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002068 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002069 }
2070 goto not_found_em;
2071 }
2072 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002073
2074 if (!page) {
2075 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002076 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002077 goto out;
2078 }
2079
Chris Mason70dec802008-01-29 09:59:12 -05002080 page_start = page_offset(page) + pg_offset;
2081 extent_offset = page_start - extent_start;
2082 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002083 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002084 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002085 em->len = (copy_size + root->sectorsize - 1) &
2086 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002087 map = kmap(page);
2088 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002089 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002090 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002091 copy_size);
2092 flush_dcache_page(page);
2093 } else if (create && PageUptodate(page)) {
2094 if (!trans) {
2095 kunmap(page);
2096 free_extent_map(em);
2097 em = NULL;
2098 btrfs_release_path(root, path);
2099 trans = btrfs_start_transaction(root, 1);
2100 goto again;
2101 }
Chris Mason70dec802008-01-29 09:59:12 -05002102 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002103 copy_size);
2104 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002105 }
Chris Masona52d9a82007-08-27 16:49:44 -04002106 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002107 set_extent_uptodate(io_tree, em->start,
2108 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002109 goto insert;
2110 } else {
2111 printk("unkknown found_type %d\n", found_type);
2112 WARN_ON(1);
2113 }
2114not_found:
2115 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002116 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002117not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002118 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002119insert:
2120 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002121 if (em->start > start || extent_map_end(em) <= start) {
2122 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002123 err = -EIO;
2124 goto out;
2125 }
Chris Masond1310b22008-01-24 16:13:08 -05002126
2127 err = 0;
2128 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002129 ret = add_extent_mapping(em_tree, em);
2130 if (ret == -EEXIST) {
2131 free_extent_map(em);
Chris Masond1310b22008-01-24 16:13:08 -05002132 em = lookup_extent_mapping(em_tree, start, len);
2133 if (!em) {
Chris Masona52d9a82007-08-27 16:49:44 -04002134 err = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05002135 printk("failing to insert %Lu %Lu\n", start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002136 }
Chris Masona52d9a82007-08-27 16:49:44 -04002137 }
Chris Masond1310b22008-01-24 16:13:08 -05002138 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002139out:
2140 btrfs_free_path(path);
2141 if (trans) {
2142 ret = btrfs_end_transaction(trans, root);
2143 if (!err)
2144 err = ret;
2145 }
2146 mutex_unlock(&root->fs_info->fs_mutex);
2147 if (err) {
2148 free_extent_map(em);
2149 WARN_ON(1);
2150 return ERR_PTR(err);
2151 }
2152 return em;
2153}
2154
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002155static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002156{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002157 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002158}
2159
Chris Mason9ebefb182007-06-15 13:50:00 -04002160int btrfs_readpage(struct file *file, struct page *page)
2161{
Chris Masond1310b22008-01-24 16:13:08 -05002162 struct extent_io_tree *tree;
2163 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002164 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002165}
Chris Mason1832a6d2007-12-21 16:27:21 -05002166
Chris Mason39279cc2007-06-12 06:35:45 -04002167static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2168{
Chris Masond1310b22008-01-24 16:13:08 -05002169 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04002170
2171
2172 if (current->flags & PF_MEMALLOC) {
2173 redirty_page_for_writepage(wbc, page);
2174 unlock_page(page);
2175 return 0;
2176 }
Chris Masond1310b22008-01-24 16:13:08 -05002177 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002178 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2179}
Chris Mason39279cc2007-06-12 06:35:45 -04002180
Chris Masonb293f022007-11-01 19:45:34 -04002181static int btrfs_writepages(struct address_space *mapping,
2182 struct writeback_control *wbc)
2183{
Chris Masond1310b22008-01-24 16:13:08 -05002184 struct extent_io_tree *tree;
2185 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04002186 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2187}
2188
Chris Mason3ab2fb52007-11-08 10:59:22 -05002189static int
2190btrfs_readpages(struct file *file, struct address_space *mapping,
2191 struct list_head *pages, unsigned nr_pages)
2192{
Chris Masond1310b22008-01-24 16:13:08 -05002193 struct extent_io_tree *tree;
2194 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002195 return extent_readpages(tree, mapping, pages, nr_pages,
2196 btrfs_get_extent);
2197}
2198
Chris Mason70dec802008-01-29 09:59:12 -05002199static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002200{
Chris Masond1310b22008-01-24 16:13:08 -05002201 struct extent_io_tree *tree;
2202 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002203 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002204
Chris Masond1310b22008-01-24 16:13:08 -05002205 tree = &BTRFS_I(page->mapping->host)->io_tree;
2206 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002207 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002208 if (ret == 1) {
2209 ClearPagePrivate(page);
2210 set_page_private(page, 0);
2211 page_cache_release(page);
2212 }
2213 return ret;
2214}
Chris Mason39279cc2007-06-12 06:35:45 -04002215
Chris Masona52d9a82007-08-27 16:49:44 -04002216static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2217{
Chris Masond1310b22008-01-24 16:13:08 -05002218 struct extent_io_tree *tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002219
Chris Masond1310b22008-01-24 16:13:08 -05002220 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002221 extent_invalidatepage(tree, page, offset);
2222 btrfs_releasepage(page, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002223}
2224
Chris Mason9ebefb182007-06-15 13:50:00 -04002225/*
2226 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2227 * called from a page fault handler when a page is first dirtied. Hence we must
2228 * be careful to check for EOF conditions here. We set the page up correctly
2229 * for a written page which means we get ENOSPC checking when writing into
2230 * holes and correct delalloc and unwritten extent mapping on filesystems that
2231 * support these features.
2232 *
2233 * We are not allowed to take the i_mutex here so we have to play games to
2234 * protect against truncate races as the page could now be beyond EOF. Because
2235 * vmtruncate() writes the inode size before removing pages, once we have the
2236 * page lock we can determine safely if the page is beyond EOF. If it is not
2237 * beyond EOF, then the page is guaranteed safe against truncation until we
2238 * unlock the page.
2239 */
2240int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2241{
Chris Mason6da6aba2007-12-18 16:15:09 -05002242 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002243 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9ebefb182007-06-15 13:50:00 -04002244 unsigned long end;
2245 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002246 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002247 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002248
Chris Mason1832a6d2007-12-21 16:27:21 -05002249 mutex_lock(&root->fs_info->fs_mutex);
2250 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason8f662a72008-01-02 10:01:11 -05002251 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002252 if (ret)
2253 goto out;
2254
2255 ret = -EINVAL;
2256
Chris Mason9ebefb182007-06-15 13:50:00 -04002257 lock_page(page);
2258 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002259 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04002260 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04002261
Chris Mason9ebefb182007-06-15 13:50:00 -04002262 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04002263 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002264 /* page got truncated out from underneath us */
2265 goto out_unlock;
2266 }
2267
2268 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002269 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04002270 end = size & ~PAGE_CACHE_MASK;
2271 else
2272 end = PAGE_CACHE_SIZE;
2273
Chris Masonb888db22007-08-27 16:49:44 -04002274 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04002275
2276out_unlock:
2277 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002278out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002279 return ret;
2280}
2281
Chris Mason39279cc2007-06-12 06:35:45 -04002282static void btrfs_truncate(struct inode *inode)
2283{
2284 struct btrfs_root *root = BTRFS_I(inode)->root;
2285 int ret;
2286 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002287 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002288
2289 if (!S_ISREG(inode->i_mode))
2290 return;
2291 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2292 return;
2293
2294 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2295
2296 mutex_lock(&root->fs_info->fs_mutex);
2297 trans = btrfs_start_transaction(root, 1);
2298 btrfs_set_trans_block_group(trans, inode);
2299
2300 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002301 ret = btrfs_truncate_in_trans(trans, root, inode,
2302 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002303 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002304 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002305
Chris Mason39279cc2007-06-12 06:35:45 -04002306 ret = btrfs_end_transaction(trans, root);
2307 BUG_ON(ret);
2308 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002309 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002310 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002311}
2312
Chris Mason4313b392008-01-03 09:08:48 -05002313static int noinline create_subvol(struct btrfs_root *root, char *name,
2314 int namelen)
Chris Mason39279cc2007-06-12 06:35:45 -04002315{
2316 struct btrfs_trans_handle *trans;
2317 struct btrfs_key key;
2318 struct btrfs_root_item root_item;
2319 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002320 struct extent_buffer *leaf;
Chris Masondc17ff82008-01-08 15:46:30 -05002321 struct btrfs_root *new_root = root;
Chris Mason39279cc2007-06-12 06:35:45 -04002322 struct inode *inode;
2323 struct inode *dir;
2324 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002325 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002326 u64 objectid;
2327 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002328 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002329
2330 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002331 ret = btrfs_check_free_space(root, 1, 0);
2332 if (ret)
2333 goto fail_commit;
2334
Chris Mason39279cc2007-06-12 06:35:45 -04002335 trans = btrfs_start_transaction(root, 1);
2336 BUG_ON(!trans);
2337
Chris Mason7bb86312007-12-11 09:25:06 -05002338 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2339 0, &objectid);
2340 if (ret)
2341 goto fail;
2342
2343 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2344 objectid, trans->transid, 0, 0,
2345 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002346 if (IS_ERR(leaf))
2347 return PTR_ERR(leaf);
2348
2349 btrfs_set_header_nritems(leaf, 0);
2350 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04002351 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002352 btrfs_set_header_generation(leaf, trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002353 btrfs_set_header_owner(leaf, objectid);
2354
Chris Mason5f39d392007-10-15 16:14:19 -04002355 write_extent_buffer(leaf, root->fs_info->fsid,
2356 (unsigned long)btrfs_header_fsid(leaf),
2357 BTRFS_FSID_SIZE);
2358 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002359
2360 inode_item = &root_item.inode;
2361 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002362 inode_item->generation = cpu_to_le64(1);
2363 inode_item->size = cpu_to_le64(3);
2364 inode_item->nlink = cpu_to_le32(1);
2365 inode_item->nblocks = cpu_to_le64(1);
2366 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04002367
Chris Masondb945352007-10-15 16:15:53 -04002368 btrfs_set_root_bytenr(&root_item, leaf->start);
2369 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002370 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002371 btrfs_set_root_used(&root_item, 0);
2372
Chris Mason5eda7b52007-06-22 14:16:25 -04002373 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2374 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002375
2376 free_extent_buffer(leaf);
2377 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002378
Chris Mason39279cc2007-06-12 06:35:45 -04002379 btrfs_set_root_dirid(&root_item, new_dirid);
2380
2381 key.objectid = objectid;
2382 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002383 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2384 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2385 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002386 if (ret)
2387 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002388
2389 /*
2390 * insert the directory item
2391 */
2392 key.offset = (u64)-1;
2393 dir = root->fs_info->sb->s_root->d_inode;
2394 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2395 name, namelen, dir->i_ino, &key,
2396 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04002397 if (ret)
2398 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002399
Chris Mason39544012007-12-12 14:38:19 -05002400 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2401 name, namelen, objectid,
2402 root->fs_info->sb->s_root->d_inode->i_ino);
2403 if (ret)
2404 goto fail;
2405
Chris Mason39279cc2007-06-12 06:35:45 -04002406 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002407 if (ret)
2408 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04002409
Josef Bacik58176a92007-08-29 15:47:34 -04002410 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04002411 BUG_ON(!new_root);
2412
2413 trans = btrfs_start_transaction(new_root, 1);
2414 BUG_ON(!trans);
2415
Chris Mason9c583092008-01-29 15:15:18 -05002416 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
2417 new_dirid,
Chris Mason39279cc2007-06-12 06:35:45 -04002418 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002419 if (IS_ERR(inode))
2420 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002421 inode->i_op = &btrfs_dir_inode_operations;
2422 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002423 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002424
Chris Mason39544012007-12-12 14:38:19 -05002425 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2426 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002427 inode->i_nlink = 1;
Chris Mason39544012007-12-12 14:38:19 -05002428 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002429 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002430 if (ret)
2431 goto fail;
2432fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002433 nr = trans->blocks_used;
Chris Masondc17ff82008-01-08 15:46:30 -05002434 err = btrfs_commit_transaction(trans, new_root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002435 if (err && !ret)
2436 ret = err;
2437fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04002438 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002439 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002440 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002441 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002442}
2443
2444static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2445{
Chris Mason3063d292008-01-08 15:46:30 -05002446 struct btrfs_pending_snapshot *pending_snapshot;
Chris Mason39279cc2007-06-12 06:35:45 -04002447 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04002448 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002449 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05002450 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002451
2452 if (!root->ref_cows)
2453 return -EINVAL;
2454
2455 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002456 ret = btrfs_check_free_space(root, 1, 0);
2457 if (ret)
2458 goto fail_unlock;
2459
Chris Mason3063d292008-01-08 15:46:30 -05002460 pending_snapshot = kmalloc(sizeof(*pending_snapshot), GFP_NOFS);
2461 if (!pending_snapshot) {
2462 ret = -ENOMEM;
2463 goto fail_unlock;
2464 }
Yanfb4bc1e2008-01-17 11:59:51 -05002465 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
Chris Mason3063d292008-01-08 15:46:30 -05002466 if (!pending_snapshot->name) {
2467 ret = -ENOMEM;
2468 kfree(pending_snapshot);
2469 goto fail_unlock;
2470 }
Yanfb4bc1e2008-01-17 11:59:51 -05002471 memcpy(pending_snapshot->name, name, namelen);
2472 pending_snapshot->name[namelen] = '\0';
Chris Mason39279cc2007-06-12 06:35:45 -04002473 trans = btrfs_start_transaction(root, 1);
2474 BUG_ON(!trans);
Chris Mason3063d292008-01-08 15:46:30 -05002475 pending_snapshot->root = root;
2476 list_add(&pending_snapshot->list,
2477 &trans->transaction->pending_snapshots);
Chris Mason39279cc2007-06-12 06:35:45 -04002478 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002479 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002480
Chris Mason1832a6d2007-12-21 16:27:21 -05002481fail_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002482 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002483 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002484 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002485 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002486}
2487
Chris Masonedbd8d42007-12-21 16:27:24 -05002488unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002489 struct file_ra_state *ra, struct file *file,
2490 pgoff_t offset, pgoff_t last_index)
2491{
2492 pgoff_t req_size;
2493
2494#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2495 req_size = last_index - offset + 1;
2496 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2497 return offset;
2498#else
2499 req_size = min(last_index - offset + 1, (pgoff_t)128);
2500 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2501 return offset + req_size;
2502#endif
2503}
2504
2505int btrfs_defrag_file(struct file *file) {
Chris Mason6da6aba2007-12-18 16:15:09 -05002506 struct inode *inode = fdentry(file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002507 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002508 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason86479a02007-09-10 19:58:16 -04002509 struct page *page;
2510 unsigned long last_index;
2511 unsigned long ra_index = 0;
2512 u64 page_start;
2513 u64 page_end;
2514 unsigned long i;
Chris Mason1832a6d2007-12-21 16:27:21 -05002515 int ret;
2516
2517 mutex_lock(&root->fs_info->fs_mutex);
2518 ret = btrfs_check_free_space(root, inode->i_size, 0);
2519 mutex_unlock(&root->fs_info->fs_mutex);
2520 if (ret)
2521 return -ENOSPC;
Chris Mason86479a02007-09-10 19:58:16 -04002522
2523 mutex_lock(&inode->i_mutex);
2524 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2525 for (i = 0; i <= last_index; i++) {
2526 if (i == ra_index) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002527 ra_index = btrfs_force_ra(inode->i_mapping,
2528 &file->f_ra,
2529 file, ra_index, last_index);
Chris Mason86479a02007-09-10 19:58:16 -04002530 }
2531 page = grab_cache_page(inode->i_mapping, i);
2532 if (!page)
2533 goto out_unlock;
2534 if (!PageUptodate(page)) {
2535 btrfs_readpage(NULL, page);
2536 lock_page(page);
2537 if (!PageUptodate(page)) {
2538 unlock_page(page);
2539 page_cache_release(page);
2540 goto out_unlock;
2541 }
2542 }
Chris Mason35ebb932007-10-30 16:56:53 -04002543 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002544 page_end = page_start + PAGE_CACHE_SIZE - 1;
2545
Chris Masond1310b22008-01-24 16:13:08 -05002546 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002547 set_extent_delalloc(io_tree, page_start,
Chris Mason86479a02007-09-10 19:58:16 -04002548 page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002549
Chris Masond1310b22008-01-24 16:13:08 -05002550 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason86479a02007-09-10 19:58:16 -04002551 set_page_dirty(page);
2552 unlock_page(page);
2553 page_cache_release(page);
2554 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2555 }
2556
2557out_unlock:
2558 mutex_unlock(&inode->i_mutex);
2559 return 0;
2560}
2561
Chris Masonedbd8d42007-12-21 16:27:24 -05002562static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2563{
2564 u64 new_size;
2565 u64 old_size;
2566 struct btrfs_ioctl_vol_args *vol_args;
2567 struct btrfs_trans_handle *trans;
2568 char *sizestr;
2569 int ret = 0;
2570 int namelen;
2571 int mod = 0;
2572
2573 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2574
2575 if (!vol_args)
2576 return -ENOMEM;
2577
2578 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2579 ret = -EFAULT;
2580 goto out;
2581 }
2582 namelen = strlen(vol_args->name);
2583 if (namelen > BTRFS_VOL_NAME_MAX) {
2584 ret = -EINVAL;
2585 goto out;
2586 }
2587
2588 sizestr = vol_args->name;
2589 if (!strcmp(sizestr, "max"))
2590 new_size = root->fs_info->sb->s_bdev->bd_inode->i_size;
2591 else {
2592 if (sizestr[0] == '-') {
2593 mod = -1;
2594 sizestr++;
2595 } else if (sizestr[0] == '+') {
2596 mod = 1;
2597 sizestr++;
2598 }
2599 new_size = btrfs_parse_size(sizestr);
2600 if (new_size == 0) {
2601 ret = -EINVAL;
2602 goto out;
2603 }
2604 }
2605
2606 mutex_lock(&root->fs_info->fs_mutex);
2607 old_size = btrfs_super_total_bytes(&root->fs_info->super_copy);
2608
2609 if (mod < 0) {
2610 if (new_size > old_size) {
2611 ret = -EINVAL;
2612 goto out_unlock;
2613 }
2614 new_size = old_size - new_size;
2615 } else if (mod > 0) {
2616 new_size = old_size + new_size;
2617 }
2618
2619 if (new_size < 256 * 1024 * 1024) {
2620 ret = -EINVAL;
2621 goto out_unlock;
2622 }
2623 if (new_size > root->fs_info->sb->s_bdev->bd_inode->i_size) {
2624 ret = -EFBIG;
2625 goto out_unlock;
2626 }
Chris Masonf9ef6602008-01-03 09:22:38 -05002627
2628 do_div(new_size, root->sectorsize);
2629 new_size *= root->sectorsize;
Chris Masonedbd8d42007-12-21 16:27:24 -05002630
2631printk("new size is %Lu\n", new_size);
2632 if (new_size > old_size) {
2633 trans = btrfs_start_transaction(root, 1);
2634 ret = btrfs_grow_extent_tree(trans, root, new_size);
2635 btrfs_commit_transaction(trans, root);
2636 } else {
2637 ret = btrfs_shrink_extent_tree(root, new_size);
2638 }
2639
2640out_unlock:
2641 mutex_unlock(&root->fs_info->fs_mutex);
2642out:
2643 kfree(vol_args);
2644 return ret;
2645}
2646
Chris Mason4313b392008-01-03 09:08:48 -05002647static int noinline btrfs_ioctl_snap_create(struct btrfs_root *root,
2648 void __user *arg)
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002649{
Chris Mason4aec2b52007-12-18 16:25:45 -05002650 struct btrfs_ioctl_vol_args *vol_args;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002651 struct btrfs_dir_item *di;
2652 struct btrfs_path *path;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002653 u64 root_dirid;
Chris Mason4aec2b52007-12-18 16:25:45 -05002654 int namelen;
2655 int ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002656
Chris Mason4aec2b52007-12-18 16:25:45 -05002657 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04002658
Chris Mason4aec2b52007-12-18 16:25:45 -05002659 if (!vol_args)
2660 return -ENOMEM;
2661
2662 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2663 ret = -EFAULT;
2664 goto out;
2665 }
2666
2667 namelen = strlen(vol_args->name);
2668 if (namelen > BTRFS_VOL_NAME_MAX) {
2669 ret = -EINVAL;
2670 goto out;
2671 }
2672 if (strchr(vol_args->name, '/')) {
2673 ret = -EINVAL;
2674 goto out;
2675 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002676
2677 path = btrfs_alloc_path();
Chris Mason4aec2b52007-12-18 16:25:45 -05002678 if (!path) {
2679 ret = -ENOMEM;
2680 goto out;
2681 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002682
2683 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
2684 mutex_lock(&root->fs_info->fs_mutex);
2685 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
2686 path, root_dirid,
Chris Mason4aec2b52007-12-18 16:25:45 -05002687 vol_args->name, namelen, 0);
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002688 mutex_unlock(&root->fs_info->fs_mutex);
2689 btrfs_free_path(path);
Chris Mason4aec2b52007-12-18 16:25:45 -05002690
2691 if (di && !IS_ERR(di)) {
2692 ret = -EEXIST;
2693 goto out;
2694 }
2695
2696 if (IS_ERR(di)) {
2697 ret = PTR_ERR(di);
2698 goto out;
2699 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002700
2701 if (root == root->fs_info->tree_root)
Chris Mason4aec2b52007-12-18 16:25:45 -05002702 ret = create_subvol(root, vol_args->name, namelen);
2703 else
2704 ret = create_snapshot(root, vol_args->name, namelen);
2705out:
2706 kfree(vol_args);
2707 return ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002708}
2709
2710static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04002711{
Chris Mason6da6aba2007-12-18 16:15:09 -05002712 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002713 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002714
2715 switch (inode->i_mode & S_IFMT) {
2716 case S_IFDIR:
2717 mutex_lock(&root->fs_info->fs_mutex);
2718 btrfs_defrag_root(root, 0);
2719 btrfs_defrag_root(root->fs_info->extent_root, 0);
2720 mutex_unlock(&root->fs_info->fs_mutex);
2721 break;
2722 case S_IFREG:
2723 btrfs_defrag_file(file);
2724 break;
2725 }
2726
2727 return 0;
2728}
2729
2730long btrfs_ioctl(struct file *file, unsigned int
2731 cmd, unsigned long arg)
2732{
Chris Mason6da6aba2007-12-18 16:15:09 -05002733 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002734
2735 switch (cmd) {
2736 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002737 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04002738 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002739 return btrfs_ioctl_defrag(file);
Chris Masonedbd8d42007-12-21 16:27:24 -05002740 case BTRFS_IOC_RESIZE:
2741 return btrfs_ioctl_resize(root, (void __user *)arg);
Chris Mason39279cc2007-06-12 06:35:45 -04002742 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002743
2744 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04002745}
2746
Chris Mason39279cc2007-06-12 06:35:45 -04002747/*
2748 * Called inside transaction, so use GFP_NOFS
2749 */
2750struct inode *btrfs_alloc_inode(struct super_block *sb)
2751{
2752 struct btrfs_inode *ei;
2753
2754 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2755 if (!ei)
2756 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002757 ei->last_trans = 0;
Chris Masondc17ff82008-01-08 15:46:30 -05002758 ei->ordered_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002759 return &ei->vfs_inode;
2760}
2761
2762void btrfs_destroy_inode(struct inode *inode)
2763{
2764 WARN_ON(!list_empty(&inode->i_dentry));
2765 WARN_ON(inode->i_data.nrpages);
2766
Chris Mason8c416c92008-01-14 15:10:26 -05002767 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04002768 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2769}
2770
Chris Mason44ec0b72007-10-29 10:55:05 -04002771#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2772static void init_once(struct kmem_cache * cachep, void *foo)
2773#else
Chris Mason39279cc2007-06-12 06:35:45 -04002774static void init_once(void * foo, struct kmem_cache * cachep,
2775 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04002776#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002777{
2778 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2779
2780 inode_init_once(&ei->vfs_inode);
2781}
2782
2783void btrfs_destroy_cachep(void)
2784{
2785 if (btrfs_inode_cachep)
2786 kmem_cache_destroy(btrfs_inode_cachep);
2787 if (btrfs_trans_handle_cachep)
2788 kmem_cache_destroy(btrfs_trans_handle_cachep);
2789 if (btrfs_transaction_cachep)
2790 kmem_cache_destroy(btrfs_transaction_cachep);
2791 if (btrfs_bit_radix_cachep)
2792 kmem_cache_destroy(btrfs_bit_radix_cachep);
2793 if (btrfs_path_cachep)
2794 kmem_cache_destroy(btrfs_path_cachep);
2795}
2796
Chris Mason86479a02007-09-10 19:58:16 -04002797struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04002798 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04002799#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2800 void (*ctor)(struct kmem_cache *, void *)
2801#else
Chris Mason92fee662007-07-25 12:31:35 -04002802 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04002803 unsigned long)
2804#endif
2805 )
Chris Mason92fee662007-07-25 12:31:35 -04002806{
2807 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2808 SLAB_MEM_SPREAD | extra_flags), ctor
2809#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2810 ,NULL
2811#endif
2812 );
2813}
2814
Chris Mason39279cc2007-06-12 06:35:45 -04002815int btrfs_init_cachep(void)
2816{
Chris Mason86479a02007-09-10 19:58:16 -04002817 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04002818 sizeof(struct btrfs_inode),
2819 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04002820 if (!btrfs_inode_cachep)
2821 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002822 btrfs_trans_handle_cachep =
2823 btrfs_cache_create("btrfs_trans_handle_cache",
2824 sizeof(struct btrfs_trans_handle),
2825 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002826 if (!btrfs_trans_handle_cachep)
2827 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002828 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04002829 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04002830 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002831 if (!btrfs_transaction_cachep)
2832 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002833 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04002834 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04002835 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002836 if (!btrfs_path_cachep)
2837 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002838 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04002839 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002840 if (!btrfs_bit_radix_cachep)
2841 goto fail;
2842 return 0;
2843fail:
2844 btrfs_destroy_cachep();
2845 return -ENOMEM;
2846}
2847
2848static int btrfs_getattr(struct vfsmount *mnt,
2849 struct dentry *dentry, struct kstat *stat)
2850{
2851 struct inode *inode = dentry->d_inode;
2852 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05002853 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05002854 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04002855 return 0;
2856}
2857
2858static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
2859 struct inode * new_dir,struct dentry *new_dentry)
2860{
2861 struct btrfs_trans_handle *trans;
2862 struct btrfs_root *root = BTRFS_I(old_dir)->root;
2863 struct inode *new_inode = new_dentry->d_inode;
2864 struct inode *old_inode = old_dentry->d_inode;
2865 struct timespec ctime = CURRENT_TIME;
2866 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002867 int ret;
2868
2869 if (S_ISDIR(old_inode->i_mode) && new_inode &&
2870 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
2871 return -ENOTEMPTY;
2872 }
Chris Mason5f39d392007-10-15 16:14:19 -04002873
Chris Mason39279cc2007-06-12 06:35:45 -04002874 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002875 ret = btrfs_check_free_space(root, 1, 0);
2876 if (ret)
2877 goto out_unlock;
2878
Chris Mason39279cc2007-06-12 06:35:45 -04002879 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002880
Chris Mason39279cc2007-06-12 06:35:45 -04002881 btrfs_set_trans_block_group(trans, new_dir);
2882 path = btrfs_alloc_path();
2883 if (!path) {
2884 ret = -ENOMEM;
2885 goto out_fail;
2886 }
2887
2888 old_dentry->d_inode->i_nlink++;
2889 old_dir->i_ctime = old_dir->i_mtime = ctime;
2890 new_dir->i_ctime = new_dir->i_mtime = ctime;
2891 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04002892
Chris Mason39279cc2007-06-12 06:35:45 -04002893 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
2894 if (ret)
2895 goto out_fail;
2896
2897 if (new_inode) {
2898 new_inode->i_ctime = CURRENT_TIME;
2899 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
2900 if (ret)
2901 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002902 }
Chris Mason9c583092008-01-29 15:15:18 -05002903 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002904 if (ret)
2905 goto out_fail;
2906
2907out_fail:
2908 btrfs_free_path(path);
2909 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002910out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002911 mutex_unlock(&root->fs_info->fs_mutex);
2912 return ret;
2913}
2914
2915static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
2916 const char *symname)
2917{
2918 struct btrfs_trans_handle *trans;
2919 struct btrfs_root *root = BTRFS_I(dir)->root;
2920 struct btrfs_path *path;
2921 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05002922 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002923 int err;
2924 int drop_inode = 0;
2925 u64 objectid;
2926 int name_len;
2927 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04002928 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04002929 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04002930 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05002931 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002932
2933 name_len = strlen(symname) + 1;
2934 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
2935 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05002936
Chris Mason39279cc2007-06-12 06:35:45 -04002937 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002938 err = btrfs_check_free_space(root, 1, 0);
2939 if (err)
2940 goto out_fail;
2941
Chris Mason39279cc2007-06-12 06:35:45 -04002942 trans = btrfs_start_transaction(root, 1);
2943 btrfs_set_trans_block_group(trans, dir);
2944
2945 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2946 if (err) {
2947 err = -ENOSPC;
2948 goto out_unlock;
2949 }
2950
Chris Mason9c583092008-01-29 15:15:18 -05002951 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2952 dentry->d_name.len,
2953 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002954 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
2955 err = PTR_ERR(inode);
2956 if (IS_ERR(inode))
2957 goto out_unlock;
2958
2959 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002960 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002961 if (err)
2962 drop_inode = 1;
2963 else {
2964 inode->i_mapping->a_ops = &btrfs_aops;
2965 inode->i_fop = &btrfs_file_operations;
2966 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05002967 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2968 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04002969 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05002970 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002971 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002972 }
2973 dir->i_sb->s_dirt = 1;
2974 btrfs_update_inode_block_group(trans, inode);
2975 btrfs_update_inode_block_group(trans, dir);
2976 if (drop_inode)
2977 goto out_unlock;
2978
2979 path = btrfs_alloc_path();
2980 BUG_ON(!path);
2981 key.objectid = inode->i_ino;
2982 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002983 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
2984 datasize = btrfs_file_extent_calc_inline_size(name_len);
2985 err = btrfs_insert_empty_item(trans, root, path, &key,
2986 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04002987 if (err) {
2988 drop_inode = 1;
2989 goto out_unlock;
2990 }
Chris Mason5f39d392007-10-15 16:14:19 -04002991 leaf = path->nodes[0];
2992 ei = btrfs_item_ptr(leaf, path->slots[0],
2993 struct btrfs_file_extent_item);
2994 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
2995 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04002996 BTRFS_FILE_EXTENT_INLINE);
2997 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04002998 write_extent_buffer(leaf, symname, ptr, name_len);
2999 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003000 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003001
Chris Mason39279cc2007-06-12 06:35:45 -04003002 inode->i_op = &btrfs_symlink_inode_operations;
3003 inode->i_mapping->a_ops = &btrfs_symlink_aops;
3004 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04003005 err = btrfs_update_inode(trans, root, inode);
3006 if (err)
3007 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003008
3009out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003010 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04003011 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003012out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003013 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04003014 if (drop_inode) {
3015 inode_dec_link_count(inode);
3016 iput(inode);
3017 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003018 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05003019 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003020 return err;
3021}
Yanfdebe2b2008-01-14 13:26:08 -05003022static int btrfs_permission(struct inode *inode, int mask,
3023 struct nameidata *nd)
3024{
3025 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3026 return -EACCES;
3027 return generic_permission(inode, mask, NULL);
3028}
Chris Mason39279cc2007-06-12 06:35:45 -04003029
3030static struct inode_operations btrfs_dir_inode_operations = {
3031 .lookup = btrfs_lookup,
3032 .create = btrfs_create,
3033 .unlink = btrfs_unlink,
3034 .link = btrfs_link,
3035 .mkdir = btrfs_mkdir,
3036 .rmdir = btrfs_rmdir,
3037 .rename = btrfs_rename,
3038 .symlink = btrfs_symlink,
3039 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003040 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003041 .setxattr = generic_setxattr,
3042 .getxattr = generic_getxattr,
3043 .listxattr = btrfs_listxattr,
3044 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003045 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003046};
Chris Mason39279cc2007-06-12 06:35:45 -04003047static struct inode_operations btrfs_dir_ro_inode_operations = {
3048 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003049 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003050};
Chris Mason39279cc2007-06-12 06:35:45 -04003051static struct file_operations btrfs_dir_file_operations = {
3052 .llseek = generic_file_llseek,
3053 .read = generic_read_dir,
3054 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003055 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003056#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003057 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003058#endif
3059};
3060
Chris Masond1310b22008-01-24 16:13:08 -05003061static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003062 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003063 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003064 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003065 .readpage_io_hook = btrfs_readpage_io_hook,
3066 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003067 .set_bit_hook = btrfs_set_bit_hook,
3068 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003069};
3070
Chris Mason39279cc2007-06-12 06:35:45 -04003071static struct address_space_operations btrfs_aops = {
3072 .readpage = btrfs_readpage,
3073 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04003074 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003075 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003076 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003077 .bmap = btrfs_bmap,
Chris Masona52d9a82007-08-27 16:49:44 -04003078 .invalidatepage = btrfs_invalidatepage,
3079 .releasepage = btrfs_releasepage,
3080 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04003081};
3082
3083static struct address_space_operations btrfs_symlink_aops = {
3084 .readpage = btrfs_readpage,
3085 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003086 .invalidatepage = btrfs_invalidatepage,
3087 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003088};
3089
3090static struct inode_operations btrfs_file_inode_operations = {
3091 .truncate = btrfs_truncate,
3092 .getattr = btrfs_getattr,
3093 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003094 .setxattr = generic_setxattr,
3095 .getxattr = generic_getxattr,
3096 .listxattr = btrfs_listxattr,
3097 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003098 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003099};
Josef Bacik618e21d2007-07-11 10:18:17 -04003100static struct inode_operations btrfs_special_inode_operations = {
3101 .getattr = btrfs_getattr,
3102 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003103 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003104};
Chris Mason39279cc2007-06-12 06:35:45 -04003105static struct inode_operations btrfs_symlink_inode_operations = {
3106 .readlink = generic_readlink,
3107 .follow_link = page_follow_link_light,
3108 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003109 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003110};