blob: 17063cd2cb73db467466ccbf27b0561b5366a14a [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 Masonb888db2b2007-08-27 16:49:44 -0400100{
101 struct btrfs_root *root = BTRFS_I(inode)->root;
102 struct btrfs_trans_handle *trans;
Chris Masonb888db2b2007-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 Masonb888db2b2007-08-27 16:49:44 -0400111
Chris Masonb888db2b2007-08-27 16:49:44 -0400112 trans = btrfs_start_transaction(root, 1);
Chris Masonb888db2b2007-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 Masonb888db2b2007-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 Masonb888db2b2007-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 Masonb888db2b2007-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 Masonb888db2b2007-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 Mason0b86a832008-03-24 15:01:56 -0400299int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio)
Chris Mason065631f2008-02-20 12:07:25 -0500300{
Chris Mason065631f2008-02-20 12:07:25 -0500301 struct btrfs_root *root = BTRFS_I(inode)->root;
302 struct btrfs_trans_handle *trans;
303 int ret = 0;
304
Chris Mason0b86a832008-03-24 15:01:56 -0400305 if (rw != WRITE) {
306 goto mapit;
307 }
Chris Mason065631f2008-02-20 12:07:25 -0500308
309 if (btrfs_test_opt(root, NODATASUM) ||
Chris Mason0b86a832008-03-24 15:01:56 -0400310 btrfs_test_flag(inode, NODATASUM)) {
311 goto mapit;
312 }
Chris Mason065631f2008-02-20 12:07:25 -0500313
314 mutex_lock(&root->fs_info->fs_mutex);
315 trans = btrfs_start_transaction(root, 1);
316 btrfs_set_trans_block_group(trans, inode);
317 btrfs_csum_file_blocks(trans, root, inode, bio);
318 ret = btrfs_end_transaction(trans, root);
319 BUG_ON(ret);
320 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason0b86a832008-03-24 15:01:56 -0400321mapit:
322 return btrfs_map_bio(root, rw, bio);
Chris Mason065631f2008-02-20 12:07:25 -0500323}
Chris Mason6885f302008-02-20 16:11:05 -0500324
Chris Mason07157aa2007-08-30 08:50:51 -0400325int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
326{
327 int ret = 0;
328 struct inode *inode = page->mapping->host;
329 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500330 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400331 struct btrfs_csum_item *item;
332 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400333 u32 csum;
Yanb98b6762008-01-08 15:54:37 -0500334 if (btrfs_test_opt(root, NODATASUM) ||
335 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500336 return 0;
Chris Mason07157aa2007-08-30 08:50:51 -0400337 mutex_lock(&root->fs_info->fs_mutex);
338 path = btrfs_alloc_path();
339 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
340 if (IS_ERR(item)) {
341 ret = PTR_ERR(item);
342 /* a csum that isn't present is a preallocated region. */
343 if (ret == -ENOENT || ret == -EFBIG)
344 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400345 csum = 0;
Chris Masonaadfeb62008-01-29 09:10:27 -0500346 printk("no csum found for inode %lu start %Lu\n", inode->i_ino, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400347 goto out;
348 }
Chris Masonff79f812007-10-15 16:22:25 -0400349 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
350 BTRFS_CRC32_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -0500351 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400352out:
353 if (path)
354 btrfs_free_path(path);
355 mutex_unlock(&root->fs_info->fs_mutex);
356 return ret;
357}
358
Chris Mason70dec802008-01-29 09:59:12 -0500359int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
360 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400361{
Chris Mason35ebb932007-10-30 16:56:53 -0400362 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400363 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500364 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400365 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500366 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400367 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400368 struct btrfs_root *root = BTRFS_I(inode)->root;
369 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400370 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500371
Yanb98b6762008-01-08 15:54:37 -0500372 if (btrfs_test_opt(root, NODATASUM) ||
373 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500374 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500375 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500376 private = state->private;
377 ret = 0;
378 } else {
379 ret = get_state_private(io_tree, start, &private);
380 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400381 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400382 kaddr = kmap_atomic(page, KM_IRQ0);
383 if (ret) {
384 goto zeroit;
385 }
Chris Masonff79f812007-10-15 16:22:25 -0400386 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
387 btrfs_csum_final(csum, (char *)&csum);
388 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400389 goto zeroit;
390 }
391 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400392 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400393 return 0;
394
395zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500396 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
397 page->mapping->host->i_ino, (unsigned long long)start, csum,
398 private);
Chris Masondb945352007-10-15 16:15:53 -0400399 memset(kaddr + offset, 1, end - start + 1);
400 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400401 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400402 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400403 return 0;
404}
Chris Masonb888db2b2007-08-27 16:49:44 -0400405
Chris Mason39279cc2007-06-12 06:35:45 -0400406void btrfs_read_locked_inode(struct inode *inode)
407{
408 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400409 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400410 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400411 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400412 struct btrfs_root *root = BTRFS_I(inode)->root;
413 struct btrfs_key location;
414 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400415 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400416 int ret;
417
418 path = btrfs_alloc_path();
419 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400420 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400421 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500422
Chris Mason39279cc2007-06-12 06:35:45 -0400423 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400424 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400425 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400426
Chris Mason5f39d392007-10-15 16:14:19 -0400427 leaf = path->nodes[0];
428 inode_item = btrfs_item_ptr(leaf, path->slots[0],
429 struct btrfs_inode_item);
430
431 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
432 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
433 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
434 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
435 inode->i_size = btrfs_inode_size(leaf, inode_item);
436
437 tspec = btrfs_inode_atime(inode_item);
438 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
439 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
440
441 tspec = btrfs_inode_mtime(inode_item);
442 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
443 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
444
445 tspec = btrfs_inode_ctime(inode_item);
446 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
447 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
448
449 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
450 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400451 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400452 rdev = btrfs_inode_rdev(leaf, inode_item);
453
454 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400455 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
456 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500457 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500458 if (!BTRFS_I(inode)->block_group) {
459 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -0400460 NULL, 0,
461 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -0500462 }
Chris Mason39279cc2007-06-12 06:35:45 -0400463 btrfs_free_path(path);
464 inode_item = NULL;
465
466 mutex_unlock(&root->fs_info->fs_mutex);
467
468 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400469 case S_IFREG:
470 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -0500471 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400472 inode->i_fop = &btrfs_file_operations;
473 inode->i_op = &btrfs_file_inode_operations;
474 break;
475 case S_IFDIR:
476 inode->i_fop = &btrfs_dir_file_operations;
477 if (root == root->fs_info->tree_root)
478 inode->i_op = &btrfs_dir_ro_inode_operations;
479 else
480 inode->i_op = &btrfs_dir_inode_operations;
481 break;
482 case S_IFLNK:
483 inode->i_op = &btrfs_symlink_inode_operations;
484 inode->i_mapping->a_ops = &btrfs_symlink_aops;
485 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400486 default:
487 init_special_inode(inode, inode->i_mode, rdev);
488 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400489 }
490 return;
491
492make_bad:
493 btrfs_release_path(root, path);
494 btrfs_free_path(path);
495 mutex_unlock(&root->fs_info->fs_mutex);
496 make_bad_inode(inode);
497}
498
Chris Mason5f39d392007-10-15 16:14:19 -0400499static void fill_inode_item(struct extent_buffer *leaf,
500 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400501 struct inode *inode)
502{
Chris Mason5f39d392007-10-15 16:14:19 -0400503 btrfs_set_inode_uid(leaf, item, inode->i_uid);
504 btrfs_set_inode_gid(leaf, item, inode->i_gid);
505 btrfs_set_inode_size(leaf, item, inode->i_size);
506 btrfs_set_inode_mode(leaf, item, inode->i_mode);
507 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
508
509 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
510 inode->i_atime.tv_sec);
511 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
512 inode->i_atime.tv_nsec);
513
514 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
515 inode->i_mtime.tv_sec);
516 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
517 inode->i_mtime.tv_nsec);
518
519 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
520 inode->i_ctime.tv_sec);
521 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
522 inode->i_ctime.tv_nsec);
523
524 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
525 btrfs_set_inode_generation(leaf, item, inode->i_generation);
526 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500527 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400528 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400529 BTRFS_I(inode)->block_group->key.objectid);
530}
531
Chris Masona52d9a82007-08-27 16:49:44 -0400532int btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400533 struct btrfs_root *root,
534 struct inode *inode)
535{
536 struct btrfs_inode_item *inode_item;
537 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400538 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400539 int ret;
540
541 path = btrfs_alloc_path();
542 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400543 ret = btrfs_lookup_inode(trans, root, path,
544 &BTRFS_I(inode)->location, 1);
545 if (ret) {
546 if (ret > 0)
547 ret = -ENOENT;
548 goto failed;
549 }
550
Chris Mason5f39d392007-10-15 16:14:19 -0400551 leaf = path->nodes[0];
552 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400553 struct btrfs_inode_item);
554
Chris Mason5f39d392007-10-15 16:14:19 -0400555 fill_inode_item(leaf, inode_item, inode);
556 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400557 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400558 ret = 0;
559failed:
560 btrfs_release_path(root, path);
561 btrfs_free_path(path);
562 return ret;
563}
564
565
566static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
567 struct btrfs_root *root,
568 struct inode *dir,
569 struct dentry *dentry)
570{
571 struct btrfs_path *path;
572 const char *name = dentry->d_name.name;
573 int name_len = dentry->d_name.len;
574 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400575 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400576 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400577 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400578
579 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400580 if (!path) {
581 ret = -ENOMEM;
582 goto err;
583 }
584
Chris Mason39279cc2007-06-12 06:35:45 -0400585 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
586 name, name_len, -1);
587 if (IS_ERR(di)) {
588 ret = PTR_ERR(di);
589 goto err;
590 }
591 if (!di) {
592 ret = -ENOENT;
593 goto err;
594 }
Chris Mason5f39d392007-10-15 16:14:19 -0400595 leaf = path->nodes[0];
596 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400597 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400598 if (ret)
599 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400600 btrfs_release_path(root, path);
601
602 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400603 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400604 if (IS_ERR(di)) {
605 ret = PTR_ERR(di);
606 goto err;
607 }
608 if (!di) {
609 ret = -ENOENT;
610 goto err;
611 }
612 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason39279cc2007-06-12 06:35:45 -0400613
614 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -0500615 ret = btrfs_del_inode_ref(trans, root, name, name_len,
616 dentry->d_inode->i_ino,
617 dentry->d_parent->d_inode->i_ino);
618 if (ret) {
619 printk("failed to delete reference to %.*s, "
620 "inode %lu parent %lu\n", name_len, name,
621 dentry->d_inode->i_ino,
622 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -0500623 }
Chris Mason39279cc2007-06-12 06:35:45 -0400624err:
625 btrfs_free_path(path);
626 if (!ret) {
627 dir->i_size -= name_len * 2;
Chris Mason79c44582007-06-25 10:09:33 -0400628 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400629 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -0500630#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
631 dentry->d_inode->i_nlink--;
632#else
Chris Mason39279cc2007-06-12 06:35:45 -0400633 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -0500634#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400635 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400636 dir->i_sb->s_dirt = 1;
637 }
638 return ret;
639}
640
641static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
642{
643 struct btrfs_root *root;
644 struct btrfs_trans_handle *trans;
Chris Mason2da98f02008-01-16 11:44:43 -0500645 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400646 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -0500647 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400648
649 root = BTRFS_I(dir)->root;
650 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500651
652 ret = btrfs_check_free_space(root, 1, 1);
653 if (ret)
654 goto fail;
655
Chris Mason39279cc2007-06-12 06:35:45 -0400656 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400657
Chris Mason39279cc2007-06-12 06:35:45 -0400658 btrfs_set_trans_block_group(trans, dir);
659 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400660 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400661
Chris Mason2da98f02008-01-16 11:44:43 -0500662 if (inode->i_nlink == 0) {
663 int found;
664 /* if the inode isn't linked anywhere,
665 * we don't need to worry about
666 * data=ordered
667 */
668 found = btrfs_del_ordered_inode(inode);
669 if (found == 1) {
670 atomic_dec(&inode->i_count);
671 }
672 }
673
Chris Mason39279cc2007-06-12 06:35:45 -0400674 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500675fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400676 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400677 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500678 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400679 return ret;
680}
681
682static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
683{
684 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -0500685 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400686 int ret;
687 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -0400688 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -0500689 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400690
Yan134d4512007-10-25 15:49:25 -0400691 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
692 return -ENOTEMPTY;
693
Chris Mason39279cc2007-06-12 06:35:45 -0400694 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500695 ret = btrfs_check_free_space(root, 1, 1);
696 if (ret)
697 goto fail;
698
Chris Mason39279cc2007-06-12 06:35:45 -0400699 trans = btrfs_start_transaction(root, 1);
700 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -0400701
702 /* now the directory is empty */
703 err = btrfs_unlink_trans(trans, root, dir, dentry);
704 if (!err) {
705 inode->i_size = 0;
706 }
Chris Mason39544012007-12-12 14:38:19 -0500707
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400708 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400709 ret = btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500710fail:
Yan134d4512007-10-25 15:49:25 -0400711 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400712 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500713 btrfs_throttle(root);
Chris Mason39544012007-12-12 14:38:19 -0500714
Chris Mason39279cc2007-06-12 06:35:45 -0400715 if (ret && !err)
716 err = ret;
717 return err;
718}
719
Chris Mason39279cc2007-06-12 06:35:45 -0400720/*
Chris Mason39279cc2007-06-12 06:35:45 -0400721 * this can truncate away extent items, csum items and directory items.
722 * It starts at a high offset and removes keys until it can't find
723 * any higher than i_size.
724 *
725 * csum items that cross the new i_size are truncated to the new size
726 * as well.
727 */
728static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
729 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -0500730 struct inode *inode,
731 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400732{
733 int ret;
734 struct btrfs_path *path;
735 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400736 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400737 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400738 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400739 struct btrfs_file_extent_item *fi;
740 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400741 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400742 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500743 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500744 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400745 int found_extent;
746 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -0500747 int pending_del_nr = 0;
748 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -0400749 int extent_type = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400750
Chris Masona52d9a82007-08-27 16:49:44 -0400751 btrfs_drop_extent_cache(inode, inode->i_size, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400752 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400753 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400754 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400755
Chris Mason39279cc2007-06-12 06:35:45 -0400756 /* FIXME, add redo link to tree so we don't leak on crash */
757 key.objectid = inode->i_ino;
758 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400759 key.type = (u8)-1;
760
Chris Mason85e21ba2008-01-29 15:11:36 -0500761 btrfs_init_path(path);
762search_again:
763 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
764 if (ret < 0) {
765 goto error;
766 }
767 if (ret > 0) {
768 BUG_ON(path->slots[0] == 0);
769 path->slots[0]--;
770 }
771
Chris Mason39279cc2007-06-12 06:35:45 -0400772 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -0400773 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400774 leaf = path->nodes[0];
775 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
776 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400777
Chris Mason5f39d392007-10-15 16:14:19 -0400778 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400779 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400780
Chris Mason85e21ba2008-01-29 15:11:36 -0500781 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400782 break;
783
Chris Mason5f39d392007-10-15 16:14:19 -0400784 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400785 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400786 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400787 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400788 extent_type = btrfs_file_extent_type(leaf, fi);
789 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400790 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400791 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400792 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
793 struct btrfs_item *item = btrfs_item_nr(leaf,
794 path->slots[0]);
795 item_end += btrfs_file_extent_inline_len(leaf,
796 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400797 }
Yan008630c2007-11-07 13:31:09 -0500798 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400799 }
800 if (found_type == BTRFS_CSUM_ITEM_KEY) {
801 ret = btrfs_csum_truncate(trans, root, path,
802 inode->i_size);
803 BUG_ON(ret);
804 }
Yan008630c2007-11-07 13:31:09 -0500805 if (item_end < inode->i_size) {
Chris Masonb888db2b2007-08-27 16:49:44 -0400806 if (found_type == BTRFS_DIR_ITEM_KEY) {
807 found_type = BTRFS_INODE_ITEM_KEY;
808 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
809 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -0500810 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
811 found_type = BTRFS_XATTR_ITEM_KEY;
812 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
813 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db2b2007-08-27 16:49:44 -0400814 } else if (found_type) {
815 found_type--;
816 } else {
817 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400818 }
Yana61721d2007-09-17 11:08:38 -0400819 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -0500820 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -0400821 }
Chris Mason5f39d392007-10-15 16:14:19 -0400822 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -0400823 del_item = 1;
824 else
825 del_item = 0;
826 found_extent = 0;
827
828 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -0400829 if (found_type != BTRFS_EXTENT_DATA_KEY)
830 goto delete;
831
832 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -0400833 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -0400834 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400835 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -0400836 u64 orig_num_bytes =
837 btrfs_file_extent_num_bytes(leaf, fi);
838 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -0400839 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -0500840 extent_num_bytes = extent_num_bytes &
841 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400842 btrfs_set_file_extent_num_bytes(leaf, fi,
843 extent_num_bytes);
844 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -0500845 extent_num_bytes);
846 if (extent_start != 0)
847 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -0400848 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400849 } else {
Chris Masondb945352007-10-15 16:15:53 -0400850 extent_num_bytes =
851 btrfs_file_extent_disk_num_bytes(leaf,
852 fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400853 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -0500854 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400855 if (extent_start != 0) {
856 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -0500857 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -0400858 }
Chris Masond8d5f3e2007-12-11 12:42:00 -0500859 root_gen = btrfs_header_generation(leaf);
860 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400861 }
Chris Mason90692182008-02-08 13:49:28 -0500862 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
863 if (!del_item) {
864 u32 newsize = inode->i_size - found_key.offset;
865 dec_i_blocks(inode, item_end + 1 -
866 found_key.offset - newsize);
867 newsize =
868 btrfs_file_extent_calc_inline_size(newsize);
869 ret = btrfs_truncate_item(trans, root, path,
870 newsize, 1);
871 BUG_ON(ret);
872 } else {
873 dec_i_blocks(inode, item_end + 1 -
874 found_key.offset);
875 }
Chris Mason39279cc2007-06-12 06:35:45 -0400876 }
Chris Mason179e29e2007-11-01 11:28:41 -0400877delete:
Chris Mason39279cc2007-06-12 06:35:45 -0400878 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -0500879 if (!pending_del_nr) {
880 /* no pending yet, add ourselves */
881 pending_del_slot = path->slots[0];
882 pending_del_nr = 1;
883 } else if (pending_del_nr &&
884 path->slots[0] + 1 == pending_del_slot) {
885 /* hop on the pending chunk */
886 pending_del_nr++;
887 pending_del_slot = path->slots[0];
888 } else {
889 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
890 }
Chris Mason39279cc2007-06-12 06:35:45 -0400891 } else {
892 break;
893 }
Chris Mason39279cc2007-06-12 06:35:45 -0400894 if (found_extent) {
895 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -0500896 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -0500897 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -0500898 root_gen, inode->i_ino,
899 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400900 BUG_ON(ret);
901 }
Chris Mason85e21ba2008-01-29 15:11:36 -0500902next:
903 if (path->slots[0] == 0) {
904 if (pending_del_nr)
905 goto del_pending;
906 btrfs_release_path(root, path);
907 goto search_again;
908 }
909
910 path->slots[0]--;
911 if (pending_del_nr &&
912 path->slots[0] + 1 != pending_del_slot) {
913 struct btrfs_key debug;
914del_pending:
915 btrfs_item_key_to_cpu(path->nodes[0], &debug,
916 pending_del_slot);
917 ret = btrfs_del_items(trans, root, path,
918 pending_del_slot,
919 pending_del_nr);
920 BUG_ON(ret);
921 pending_del_nr = 0;
922 btrfs_release_path(root, path);
923 goto search_again;
924 }
Chris Mason39279cc2007-06-12 06:35:45 -0400925 }
926 ret = 0;
927error:
Chris Mason85e21ba2008-01-29 15:11:36 -0500928 if (pending_del_nr) {
929 ret = btrfs_del_items(trans, root, path, pending_del_slot,
930 pending_del_nr);
931 }
Chris Mason39279cc2007-06-12 06:35:45 -0400932 btrfs_release_path(root, path);
933 btrfs_free_path(path);
934 inode->i_sb->s_dirt = 1;
935 return ret;
936}
937
Chris Masonb888db2b2007-08-27 16:49:44 -0400938static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -0400939 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -0400940{
Chris Mason39279cc2007-06-12 06:35:45 -0400941 char *kaddr;
Chris Masond1310b22008-01-24 16:13:08 -0500942 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400943 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db2b2007-08-27 16:49:44 -0400944 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -0500945 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400946
Chris Mason190662b2007-12-18 16:25:45 -0500947 WARN_ON(!PageLocked(page));
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400948 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400949
Chris Masond1310b22008-01-24 16:13:08 -0500950 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500951 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
Chris Masonb888db2b2007-08-27 16:49:44 -0400952 page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -0500953
Chris Masona52d9a82007-08-27 16:49:44 -0400954 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db2b2007-08-27 16:49:44 -0400955 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400956 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
957 flush_dcache_page(page);
Chris Masonb888db2b2007-08-27 16:49:44 -0400958 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400959 }
Chris Masonb888db2b2007-08-27 16:49:44 -0400960 set_page_dirty(page);
Chris Masond1310b22008-01-24 16:13:08 -0500961 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400962
Chris Masona52d9a82007-08-27 16:49:44 -0400963 return ret;
964}
965
966/*
967 * taken from block_truncate_page, but does cow as it zeros out
968 * any bytes left in the last page in the file.
969 */
970static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
971{
972 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -0400973 struct btrfs_root *root = BTRFS_I(inode)->root;
974 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -0400975 pgoff_t index = from >> PAGE_CACHE_SHIFT;
976 unsigned offset = from & (PAGE_CACHE_SIZE-1);
977 struct page *page;
978 int ret = 0;
979 u64 page_start;
980
981 if ((offset & (blocksize - 1)) == 0)
982 goto out;
983
984 ret = -ENOMEM;
985 page = grab_cache_page(mapping, index);
986 if (!page)
987 goto out;
988 if (!PageUptodate(page)) {
989 ret = btrfs_readpage(NULL, page);
990 lock_page(page);
991 if (!PageUptodate(page)) {
992 ret = -EIO;
993 goto out;
994 }
995 }
Chris Mason35ebb932007-10-30 16:56:53 -0400996 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -0400997
Chris Masonb888db2b2007-08-27 16:49:44 -0400998 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400999
Chris Mason39279cc2007-06-12 06:35:45 -04001000 unlock_page(page);
1001 page_cache_release(page);
1002out:
1003 return ret;
1004}
1005
1006static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1007{
1008 struct inode *inode = dentry->d_inode;
1009 int err;
1010
1011 err = inode_change_ok(inode, attr);
1012 if (err)
1013 return err;
1014
1015 if (S_ISREG(inode->i_mode) &&
1016 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1017 struct btrfs_trans_handle *trans;
1018 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001019 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001020
Chris Mason5f39d392007-10-15 16:14:19 -04001021 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001022 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001023 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001024 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001025 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001026
Chris Mason1b0f7c22008-01-30 14:33:02 -05001027 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001028 goto out;
1029
Chris Mason1832a6d2007-12-21 16:27:21 -05001030 mutex_lock(&root->fs_info->fs_mutex);
1031 err = btrfs_check_free_space(root, 1, 0);
1032 mutex_unlock(&root->fs_info->fs_mutex);
1033 if (err)
1034 goto fail;
1035
Chris Mason39279cc2007-06-12 06:35:45 -04001036 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1037
Chris Mason1b0f7c22008-01-30 14:33:02 -05001038 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason5f564062008-01-22 16:47:59 -05001039 hole_size = block_end - hole_start;
Chris Mason39279cc2007-06-12 06:35:45 -04001040
1041 mutex_lock(&root->fs_info->fs_mutex);
1042 trans = btrfs_start_transaction(root, 1);
1043 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -04001044 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001045 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001046 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001047
Chris Mason179e29e2007-11-01 11:28:41 -04001048 if (alloc_hint != EXTENT_MAP_INLINE) {
1049 err = btrfs_insert_file_extent(trans, root,
1050 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001051 hole_start, 0, 0,
1052 hole_size);
Chris Masond1310b22008-01-24 16:13:08 -05001053 btrfs_drop_extent_cache(inode, hole_start,
1054 hole_size - 1);
Chris Mason5f564062008-01-22 16:47:59 -05001055 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001056 }
Chris Mason39279cc2007-06-12 06:35:45 -04001057 btrfs_end_transaction(trans, root);
1058 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001059 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001060 if (err)
1061 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001062 }
1063out:
1064 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001065fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001066 return err;
1067}
Chris Mason61295eb2008-01-14 16:24:38 -05001068
Chris Mason2da98f02008-01-16 11:44:43 -05001069void btrfs_put_inode(struct inode *inode)
Chris Mason61295eb2008-01-14 16:24:38 -05001070{
Chris Mason2da98f02008-01-16 11:44:43 -05001071 int ret;
1072
1073 if (!BTRFS_I(inode)->ordered_trans) {
Chris Mason61295eb2008-01-14 16:24:38 -05001074 return;
1075 }
Chris Mason2da98f02008-01-16 11:44:43 -05001076
1077 if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_DIRTY) ||
1078 mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1079 return;
1080
1081 ret = btrfs_del_ordered_inode(inode);
1082 if (ret == 1) {
1083 atomic_dec(&inode->i_count);
1084 }
Chris Mason61295eb2008-01-14 16:24:38 -05001085}
1086
Chris Mason39279cc2007-06-12 06:35:45 -04001087void btrfs_delete_inode(struct inode *inode)
1088{
1089 struct btrfs_trans_handle *trans;
1090 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001091 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001092 int ret;
1093
1094 truncate_inode_pages(&inode->i_data, 0);
1095 if (is_bad_inode(inode)) {
1096 goto no_delete;
1097 }
Chris Mason5f39d392007-10-15 16:14:19 -04001098
Chris Mason39279cc2007-06-12 06:35:45 -04001099 inode->i_size = 0;
1100 mutex_lock(&root->fs_info->fs_mutex);
1101 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001102
Chris Mason39279cc2007-06-12 06:35:45 -04001103 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001104 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001105 if (ret)
1106 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001107
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001108 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001109 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001110
Chris Mason39279cc2007-06-12 06:35:45 -04001111 btrfs_end_transaction(trans, root);
1112 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001113 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001114 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001115 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001116
1117no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001118 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001119 btrfs_end_transaction(trans, root);
1120 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001121 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001122 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001123no_delete:
1124 clear_inode(inode);
1125}
1126
1127/*
1128 * this returns the key found in the dir entry in the location pointer.
1129 * If no dir entries were found, location->objectid is 0.
1130 */
1131static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1132 struct btrfs_key *location)
1133{
1134 const char *name = dentry->d_name.name;
1135 int namelen = dentry->d_name.len;
1136 struct btrfs_dir_item *di;
1137 struct btrfs_path *path;
1138 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001139 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001140
Chris Mason39544012007-12-12 14:38:19 -05001141 if (namelen == 1 && strcmp(name, ".") == 0) {
1142 location->objectid = dir->i_ino;
1143 location->type = BTRFS_INODE_ITEM_KEY;
1144 location->offset = 0;
1145 return 0;
1146 }
Chris Mason39279cc2007-06-12 06:35:45 -04001147 path = btrfs_alloc_path();
1148 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001149
Chris Mason7a720532007-12-13 09:06:59 -05001150 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001151 struct btrfs_key key;
1152 struct extent_buffer *leaf;
1153 u32 nritems;
1154 int slot;
1155
1156 key.objectid = dir->i_ino;
1157 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1158 key.offset = 0;
1159 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1160 BUG_ON(ret == 0);
1161 ret = 0;
1162
1163 leaf = path->nodes[0];
1164 slot = path->slots[0];
1165 nritems = btrfs_header_nritems(leaf);
1166 if (slot >= nritems)
1167 goto out_err;
1168
1169 btrfs_item_key_to_cpu(leaf, &key, slot);
1170 if (key.objectid != dir->i_ino ||
1171 key.type != BTRFS_INODE_REF_KEY) {
1172 goto out_err;
1173 }
1174 location->objectid = key.offset;
1175 location->type = BTRFS_INODE_ITEM_KEY;
1176 location->offset = 0;
1177 goto out;
1178 }
1179
Chris Mason39279cc2007-06-12 06:35:45 -04001180 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1181 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001182 if (IS_ERR(di))
1183 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001184 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001185 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001186 }
Chris Mason5f39d392007-10-15 16:14:19 -04001187 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001188out:
Chris Mason39279cc2007-06-12 06:35:45 -04001189 btrfs_free_path(path);
1190 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001191out_err:
1192 location->objectid = 0;
1193 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001194}
1195
1196/*
1197 * when we hit a tree root in a directory, the btrfs part of the inode
1198 * needs to be changed to reflect the root directory of the tree root. This
1199 * is kind of like crossing a mount point.
1200 */
1201static int fixup_tree_root_location(struct btrfs_root *root,
1202 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001203 struct btrfs_root **sub_root,
1204 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001205{
1206 struct btrfs_path *path;
1207 struct btrfs_root_item *ri;
1208
1209 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1210 return 0;
1211 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1212 return 0;
1213
1214 path = btrfs_alloc_path();
1215 BUG_ON(!path);
1216 mutex_lock(&root->fs_info->fs_mutex);
1217
Josef Bacik58176a92007-08-29 15:47:34 -04001218 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1219 dentry->d_name.name,
1220 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001221 if (IS_ERR(*sub_root))
1222 return PTR_ERR(*sub_root);
1223
1224 ri = &(*sub_root)->root_item;
1225 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001226 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1227 location->offset = 0;
1228
1229 btrfs_free_path(path);
1230 mutex_unlock(&root->fs_info->fs_mutex);
1231 return 0;
1232}
1233
1234static int btrfs_init_locked_inode(struct inode *inode, void *p)
1235{
1236 struct btrfs_iget_args *args = p;
1237 inode->i_ino = args->ino;
1238 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001239 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001240 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1241 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db2b2007-08-27 16:49:44 -04001242 inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001243 return 0;
1244}
1245
1246static int btrfs_find_actor(struct inode *inode, void *opaque)
1247{
1248 struct btrfs_iget_args *args = opaque;
1249 return (args->ino == inode->i_ino &&
1250 args->root == BTRFS_I(inode)->root);
1251}
1252
Chris Masondc17ff82008-01-08 15:46:30 -05001253struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1254 u64 root_objectid)
1255{
1256 struct btrfs_iget_args args;
1257 args.ino = objectid;
1258 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1259
1260 if (!args.root)
1261 return NULL;
1262
1263 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1264}
1265
Chris Mason39279cc2007-06-12 06:35:45 -04001266struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1267 struct btrfs_root *root)
1268{
1269 struct inode *inode;
1270 struct btrfs_iget_args args;
1271 args.ino = objectid;
1272 args.root = root;
1273
1274 inode = iget5_locked(s, objectid, btrfs_find_actor,
1275 btrfs_init_locked_inode,
1276 (void *)&args);
1277 return inode;
1278}
1279
1280static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1281 struct nameidata *nd)
1282{
1283 struct inode * inode;
1284 struct btrfs_inode *bi = BTRFS_I(dir);
1285 struct btrfs_root *root = bi->root;
1286 struct btrfs_root *sub_root = root;
1287 struct btrfs_key location;
1288 int ret;
1289
1290 if (dentry->d_name.len > BTRFS_NAME_LEN)
1291 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001292
Chris Mason39279cc2007-06-12 06:35:45 -04001293 mutex_lock(&root->fs_info->fs_mutex);
1294 ret = btrfs_inode_by_name(dir, dentry, &location);
1295 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001296
Chris Mason39279cc2007-06-12 06:35:45 -04001297 if (ret < 0)
1298 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001299
Chris Mason39279cc2007-06-12 06:35:45 -04001300 inode = NULL;
1301 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001302 ret = fixup_tree_root_location(root, &location, &sub_root,
1303 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001304 if (ret < 0)
1305 return ERR_PTR(ret);
1306 if (ret > 0)
1307 return ERR_PTR(-ENOENT);
1308 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1309 sub_root);
1310 if (!inode)
1311 return ERR_PTR(-EACCES);
1312 if (inode->i_state & I_NEW) {
1313 /* the inode and parent dir are two different roots */
1314 if (sub_root != root) {
1315 igrab(inode);
1316 sub_root->inode = inode;
1317 }
1318 BTRFS_I(inode)->root = sub_root;
1319 memcpy(&BTRFS_I(inode)->location, &location,
1320 sizeof(location));
1321 btrfs_read_locked_inode(inode);
1322 unlock_new_inode(inode);
1323 }
1324 }
1325 return d_splice_alias(inode, dentry);
1326}
1327
Chris Mason39279cc2007-06-12 06:35:45 -04001328static unsigned char btrfs_filetype_table[] = {
1329 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1330};
1331
1332static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1333{
Chris Mason6da6aba2007-12-18 16:15:09 -05001334 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001335 struct btrfs_root *root = BTRFS_I(inode)->root;
1336 struct btrfs_item *item;
1337 struct btrfs_dir_item *di;
1338 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001339 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001340 struct btrfs_path *path;
1341 int ret;
1342 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001343 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001344 int slot;
1345 int advance;
1346 unsigned char d_type;
1347 int over = 0;
1348 u32 di_cur;
1349 u32 di_total;
1350 u32 di_len;
1351 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001352 char tmp_name[32];
1353 char *name_ptr;
1354 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001355
1356 /* FIXME, use a real flag for deciding about the key type */
1357 if (root->fs_info->tree_root == root)
1358 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001359
Chris Mason39544012007-12-12 14:38:19 -05001360 /* special case for "." */
1361 if (filp->f_pos == 0) {
1362 over = filldir(dirent, ".", 1,
1363 1, inode->i_ino,
1364 DT_DIR);
1365 if (over)
1366 return 0;
1367 filp->f_pos = 1;
1368 }
1369
Chris Mason39279cc2007-06-12 06:35:45 -04001370 mutex_lock(&root->fs_info->fs_mutex);
1371 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001372 path = btrfs_alloc_path();
1373 path->reada = 2;
1374
1375 /* special case for .., just use the back ref */
1376 if (filp->f_pos == 1) {
1377 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1378 key.offset = 0;
1379 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1380 BUG_ON(ret == 0);
1381 leaf = path->nodes[0];
1382 slot = path->slots[0];
1383 nritems = btrfs_header_nritems(leaf);
1384 if (slot >= nritems) {
1385 btrfs_release_path(root, path);
1386 goto read_dir_items;
1387 }
1388 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1389 btrfs_release_path(root, path);
1390 if (found_key.objectid != key.objectid ||
1391 found_key.type != BTRFS_INODE_REF_KEY)
1392 goto read_dir_items;
1393 over = filldir(dirent, "..", 2,
1394 2, found_key.offset, DT_DIR);
1395 if (over)
1396 goto nopos;
1397 filp->f_pos = 2;
1398 }
1399
1400read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001401 btrfs_set_key_type(&key, key_type);
1402 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001403
Chris Mason39279cc2007-06-12 06:35:45 -04001404 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1405 if (ret < 0)
1406 goto err;
1407 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001408 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001409 leaf = path->nodes[0];
1410 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001411 slot = path->slots[0];
1412 if (advance || slot >= nritems) {
1413 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001414 ret = btrfs_next_leaf(root, path);
1415 if (ret)
1416 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001417 leaf = path->nodes[0];
1418 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001419 slot = path->slots[0];
1420 } else {
1421 slot++;
1422 path->slots[0]++;
1423 }
1424 }
1425 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001426 item = btrfs_item_nr(leaf, slot);
1427 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1428
1429 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001430 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001431 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001432 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001433 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001434 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001435
1436 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001437 advance = 1;
1438 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1439 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001440 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001441 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001442 struct btrfs_key location;
1443
1444 name_len = btrfs_dir_name_len(leaf, di);
1445 if (name_len < 32) {
1446 name_ptr = tmp_name;
1447 } else {
1448 name_ptr = kmalloc(name_len, GFP_NOFS);
1449 BUG_ON(!name_ptr);
1450 }
1451 read_extent_buffer(leaf, name_ptr,
1452 (unsigned long)(di + 1), name_len);
1453
1454 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1455 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001456 over = filldir(dirent, name_ptr, name_len,
1457 found_key.offset,
1458 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001459 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001460
1461 if (name_ptr != tmp_name)
1462 kfree(name_ptr);
1463
Chris Mason39279cc2007-06-12 06:35:45 -04001464 if (over)
1465 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001466 di_len = btrfs_dir_name_len(leaf, di) +
1467 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001468 di_cur += di_len;
1469 di = (struct btrfs_dir_item *)((char *)di + di_len);
1470 }
1471 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001472 if (key_type == BTRFS_DIR_INDEX_KEY)
1473 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1474 else
1475 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001476nopos:
1477 ret = 0;
1478err:
1479 btrfs_release_path(root, path);
1480 btrfs_free_path(path);
1481 mutex_unlock(&root->fs_info->fs_mutex);
1482 return ret;
1483}
1484
1485int btrfs_write_inode(struct inode *inode, int wait)
1486{
1487 struct btrfs_root *root = BTRFS_I(inode)->root;
1488 struct btrfs_trans_handle *trans;
1489 int ret = 0;
1490
1491 if (wait) {
1492 mutex_lock(&root->fs_info->fs_mutex);
1493 trans = btrfs_start_transaction(root, 1);
1494 btrfs_set_trans_block_group(trans, inode);
1495 ret = btrfs_commit_transaction(trans, root);
1496 mutex_unlock(&root->fs_info->fs_mutex);
1497 }
1498 return ret;
1499}
1500
1501/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001502 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001503 * inode changes. But, it is most likely to find the inode in cache.
1504 * FIXME, needs more benchmarking...there are no reasons other than performance
1505 * to keep or drop this code.
1506 */
1507void btrfs_dirty_inode(struct inode *inode)
1508{
1509 struct btrfs_root *root = BTRFS_I(inode)->root;
1510 struct btrfs_trans_handle *trans;
1511
1512 mutex_lock(&root->fs_info->fs_mutex);
1513 trans = btrfs_start_transaction(root, 1);
1514 btrfs_set_trans_block_group(trans, inode);
1515 btrfs_update_inode(trans, root, inode);
1516 btrfs_end_transaction(trans, root);
1517 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001518}
1519
1520static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1521 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001522 const char *name, int name_len,
1523 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001524 u64 objectid,
1525 struct btrfs_block_group_cache *group,
1526 int mode)
1527{
1528 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001529 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04001530 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001531 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001532 struct btrfs_inode_ref *ref;
1533 struct btrfs_key key[2];
1534 u32 sizes[2];
1535 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001536 int ret;
1537 int owner;
1538
Chris Mason5f39d392007-10-15 16:14:19 -04001539 path = btrfs_alloc_path();
1540 BUG_ON(!path);
1541
Chris Mason39279cc2007-06-12 06:35:45 -04001542 inode = new_inode(root->fs_info->sb);
1543 if (!inode)
1544 return ERR_PTR(-ENOMEM);
1545
Chris Masond1310b22008-01-24 16:13:08 -05001546 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1547 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db2b2007-08-27 16:49:44 -04001548 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001549 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001550 BTRFS_I(inode)->root = root;
Chris Masonb888db2b2007-08-27 16:49:44 -04001551
Chris Mason39279cc2007-06-12 06:35:45 -04001552 if (mode & S_IFDIR)
1553 owner = 0;
1554 else
1555 owner = 1;
Chris Mason0b86a832008-03-24 15:01:56 -04001556 group = btrfs_find_block_group(root, group, 0,
1557 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason39279cc2007-06-12 06:35:45 -04001558 BTRFS_I(inode)->block_group = group;
Yanb98b6762008-01-08 15:54:37 -05001559 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001560
1561 key[0].objectid = objectid;
1562 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1563 key[0].offset = 0;
1564
1565 key[1].objectid = objectid;
1566 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1567 key[1].offset = ref_objectid;
1568
1569 sizes[0] = sizeof(struct btrfs_inode_item);
1570 sizes[1] = name_len + sizeof(*ref);
1571
1572 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1573 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001574 goto fail;
1575
Chris Mason9c583092008-01-29 15:15:18 -05001576 if (objectid > root->highest_inode)
1577 root->highest_inode = objectid;
1578
Chris Mason39279cc2007-06-12 06:35:45 -04001579 inode->i_uid = current->fsuid;
1580 inode->i_gid = current->fsgid;
1581 inode->i_mode = mode;
1582 inode->i_ino = objectid;
1583 inode->i_blocks = 0;
1584 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001585 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1586 struct btrfs_inode_item);
1587 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001588
1589 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1590 struct btrfs_inode_ref);
1591 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1592 ptr = (unsigned long)(ref + 1);
1593 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1594
Chris Mason5f39d392007-10-15 16:14:19 -04001595 btrfs_mark_buffer_dirty(path->nodes[0]);
1596 btrfs_free_path(path);
1597
Chris Mason39279cc2007-06-12 06:35:45 -04001598 location = &BTRFS_I(inode)->location;
1599 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001600 location->offset = 0;
1601 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1602
Chris Mason39279cc2007-06-12 06:35:45 -04001603 insert_inode_hash(inode);
1604 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001605fail:
1606 btrfs_free_path(path);
1607 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001608}
1609
1610static inline u8 btrfs_inode_type(struct inode *inode)
1611{
1612 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1613}
1614
1615static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001616 struct dentry *dentry, struct inode *inode,
1617 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001618{
1619 int ret;
1620 struct btrfs_key key;
1621 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001622 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001623
Chris Mason39279cc2007-06-12 06:35:45 -04001624 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001625 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1626 key.offset = 0;
1627
1628 ret = btrfs_insert_dir_item(trans, root,
1629 dentry->d_name.name, dentry->d_name.len,
1630 dentry->d_parent->d_inode->i_ino,
1631 &key, btrfs_inode_type(inode));
1632 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05001633 if (add_backref) {
1634 ret = btrfs_insert_inode_ref(trans, root,
1635 dentry->d_name.name,
1636 dentry->d_name.len,
1637 inode->i_ino,
1638 dentry->d_parent->d_inode->i_ino);
1639 }
Chris Mason79c44582007-06-25 10:09:33 -04001640 parent_inode = dentry->d_parent->d_inode;
1641 parent_inode->i_size += dentry->d_name.len * 2;
1642 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001643 ret = btrfs_update_inode(trans, root,
1644 dentry->d_parent->d_inode);
1645 }
1646 return ret;
1647}
1648
1649static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001650 struct dentry *dentry, struct inode *inode,
1651 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001652{
Chris Mason9c583092008-01-29 15:15:18 -05001653 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04001654 if (!err) {
1655 d_instantiate(dentry, inode);
1656 return 0;
1657 }
1658 if (err > 0)
1659 err = -EEXIST;
1660 return err;
1661}
1662
Josef Bacik618e21d2007-07-11 10:18:17 -04001663static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1664 int mode, dev_t rdev)
1665{
1666 struct btrfs_trans_handle *trans;
1667 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001668 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04001669 int err;
1670 int drop_inode = 0;
1671 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05001672 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04001673
1674 if (!new_valid_dev(rdev))
1675 return -EINVAL;
1676
1677 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001678 err = btrfs_check_free_space(root, 1, 0);
1679 if (err)
1680 goto fail;
1681
Josef Bacik618e21d2007-07-11 10:18:17 -04001682 trans = btrfs_start_transaction(root, 1);
1683 btrfs_set_trans_block_group(trans, dir);
1684
1685 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1686 if (err) {
1687 err = -ENOSPC;
1688 goto out_unlock;
1689 }
1690
Chris Mason9c583092008-01-29 15:15:18 -05001691 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1692 dentry->d_name.len,
1693 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04001694 BTRFS_I(dir)->block_group, mode);
1695 err = PTR_ERR(inode);
1696 if (IS_ERR(inode))
1697 goto out_unlock;
1698
1699 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001700 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04001701 if (err)
1702 drop_inode = 1;
1703 else {
1704 inode->i_op = &btrfs_special_inode_operations;
1705 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001706 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001707 }
1708 dir->i_sb->s_dirt = 1;
1709 btrfs_update_inode_block_group(trans, inode);
1710 btrfs_update_inode_block_group(trans, dir);
1711out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001712 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001713 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001714fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04001715 mutex_unlock(&root->fs_info->fs_mutex);
1716
1717 if (drop_inode) {
1718 inode_dec_link_count(inode);
1719 iput(inode);
1720 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001721 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001722 btrfs_throttle(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04001723 return err;
1724}
1725
Chris Mason39279cc2007-06-12 06:35:45 -04001726static int btrfs_create(struct inode *dir, struct dentry *dentry,
1727 int mode, struct nameidata *nd)
1728{
1729 struct btrfs_trans_handle *trans;
1730 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001731 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001732 int err;
1733 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05001734 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001735 u64 objectid;
1736
1737 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001738 err = btrfs_check_free_space(root, 1, 0);
1739 if (err)
1740 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001741 trans = btrfs_start_transaction(root, 1);
1742 btrfs_set_trans_block_group(trans, dir);
1743
1744 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1745 if (err) {
1746 err = -ENOSPC;
1747 goto out_unlock;
1748 }
1749
Chris Mason9c583092008-01-29 15:15:18 -05001750 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1751 dentry->d_name.len,
1752 dentry->d_parent->d_inode->i_ino,
1753 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04001754 err = PTR_ERR(inode);
1755 if (IS_ERR(inode))
1756 goto out_unlock;
1757
1758 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001759 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001760 if (err)
1761 drop_inode = 1;
1762 else {
1763 inode->i_mapping->a_ops = &btrfs_aops;
1764 inode->i_fop = &btrfs_file_operations;
1765 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05001766 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1767 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04001768 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001769 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001770 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001771 }
1772 dir->i_sb->s_dirt = 1;
1773 btrfs_update_inode_block_group(trans, inode);
1774 btrfs_update_inode_block_group(trans, dir);
1775out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001776 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001777 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001778fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001779 mutex_unlock(&root->fs_info->fs_mutex);
1780
1781 if (drop_inode) {
1782 inode_dec_link_count(inode);
1783 iput(inode);
1784 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001785 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001786 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001787 return err;
1788}
1789
1790static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1791 struct dentry *dentry)
1792{
1793 struct btrfs_trans_handle *trans;
1794 struct btrfs_root *root = BTRFS_I(dir)->root;
1795 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001796 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001797 int err;
1798 int drop_inode = 0;
1799
1800 if (inode->i_nlink == 0)
1801 return -ENOENT;
1802
Chris Mason6da6aba2007-12-18 16:15:09 -05001803#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1804 inode->i_nlink++;
1805#else
Chris Mason39279cc2007-06-12 06:35:45 -04001806 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001807#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001808 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001809 err = btrfs_check_free_space(root, 1, 0);
1810 if (err)
1811 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001812 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001813
Chris Mason39279cc2007-06-12 06:35:45 -04001814 btrfs_set_trans_block_group(trans, dir);
1815 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05001816 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001817
Chris Mason39279cc2007-06-12 06:35:45 -04001818 if (err)
1819 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001820
Chris Mason39279cc2007-06-12 06:35:45 -04001821 dir->i_sb->s_dirt = 1;
1822 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04001823 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001824
Chris Mason54aa1f42007-06-22 14:16:25 -04001825 if (err)
1826 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001827
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001828 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001829 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001830fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001831 mutex_unlock(&root->fs_info->fs_mutex);
1832
1833 if (drop_inode) {
1834 inode_dec_link_count(inode);
1835 iput(inode);
1836 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001837 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001838 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001839 return err;
1840}
1841
Chris Mason39279cc2007-06-12 06:35:45 -04001842static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1843{
1844 struct inode *inode;
1845 struct btrfs_trans_handle *trans;
1846 struct btrfs_root *root = BTRFS_I(dir)->root;
1847 int err = 0;
1848 int drop_on_err = 0;
1849 u64 objectid;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001850 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001851
1852 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001853 err = btrfs_check_free_space(root, 1, 0);
1854 if (err)
1855 goto out_unlock;
1856
Chris Mason39279cc2007-06-12 06:35:45 -04001857 trans = btrfs_start_transaction(root, 1);
1858 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04001859
Chris Mason39279cc2007-06-12 06:35:45 -04001860 if (IS_ERR(trans)) {
1861 err = PTR_ERR(trans);
1862 goto out_unlock;
1863 }
1864
1865 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1866 if (err) {
1867 err = -ENOSPC;
1868 goto out_unlock;
1869 }
1870
Chris Mason9c583092008-01-29 15:15:18 -05001871 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1872 dentry->d_name.len,
1873 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001874 BTRFS_I(dir)->block_group, S_IFDIR | mode);
1875 if (IS_ERR(inode)) {
1876 err = PTR_ERR(inode);
1877 goto out_fail;
1878 }
Chris Mason5f39d392007-10-15 16:14:19 -04001879
Chris Mason39279cc2007-06-12 06:35:45 -04001880 drop_on_err = 1;
1881 inode->i_op = &btrfs_dir_inode_operations;
1882 inode->i_fop = &btrfs_dir_file_operations;
1883 btrfs_set_trans_block_group(trans, inode);
1884
Chris Mason39544012007-12-12 14:38:19 -05001885 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001886 err = btrfs_update_inode(trans, root, inode);
1887 if (err)
1888 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001889
Chris Mason9c583092008-01-29 15:15:18 -05001890 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001891 if (err)
1892 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001893
Chris Mason39279cc2007-06-12 06:35:45 -04001894 d_instantiate(dentry, inode);
1895 drop_on_err = 0;
1896 dir->i_sb->s_dirt = 1;
1897 btrfs_update_inode_block_group(trans, inode);
1898 btrfs_update_inode_block_group(trans, dir);
1899
1900out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001901 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001902 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04001903
Chris Mason39279cc2007-06-12 06:35:45 -04001904out_unlock:
1905 mutex_unlock(&root->fs_info->fs_mutex);
1906 if (drop_on_err)
1907 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001908 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001909 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001910 return err;
1911}
1912
Chris Masona52d9a82007-08-27 16:49:44 -04001913struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05001914 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04001915 int create)
1916{
1917 int ret;
1918 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04001919 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04001920 u64 extent_start = 0;
1921 u64 extent_end = 0;
1922 u64 objectid = inode->i_ino;
1923 u32 found_type;
Chris Masona52d9a82007-08-27 16:49:44 -04001924 struct btrfs_path *path;
1925 struct btrfs_root *root = BTRFS_I(inode)->root;
1926 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04001927 struct extent_buffer *leaf;
1928 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04001929 struct extent_map *em = NULL;
1930 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05001931 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04001932 struct btrfs_trans_handle *trans = NULL;
1933
1934 path = btrfs_alloc_path();
1935 BUG_ON(!path);
1936 mutex_lock(&root->fs_info->fs_mutex);
1937
1938again:
Chris Masond1310b22008-01-24 16:13:08 -05001939 spin_lock(&em_tree->lock);
1940 em = lookup_extent_mapping(em_tree, start, len);
1941 spin_unlock(&em_tree->lock);
1942
Chris Masona52d9a82007-08-27 16:49:44 -04001943 if (em) {
Chris Mason56b453c2008-01-03 09:08:27 -05001944 if (em->start > start) {
Chris Masond1310b22008-01-24 16:13:08 -05001945 printk("get_extent lookup [%Lu %Lu] em [%Lu %Lu]\n",
1946 start, len, em->start, em->len);
Chris Mason56b453c2008-01-03 09:08:27 -05001947 WARN_ON(1);
1948 }
Chris Mason70dec802008-01-29 09:59:12 -05001949 if (em->block_start == EXTENT_MAP_INLINE && page)
1950 free_extent_map(em);
1951 else
1952 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04001953 }
Chris Masond1310b22008-01-24 16:13:08 -05001954 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001955 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05001956 err = -ENOMEM;
1957 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04001958 }
Chris Masond1310b22008-01-24 16:13:08 -05001959
1960 em->start = EXTENT_MAP_HOLE;
1961 em->len = (u64)-1;
Chris Masona52d9a82007-08-27 16:49:44 -04001962 em->bdev = inode->i_sb->s_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04001963 ret = btrfs_lookup_file_extent(trans, root, path,
1964 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04001965 if (ret < 0) {
1966 err = ret;
1967 goto out;
1968 }
1969
1970 if (ret != 0) {
1971 if (path->slots[0] == 0)
1972 goto not_found;
1973 path->slots[0]--;
1974 }
1975
Chris Mason5f39d392007-10-15 16:14:19 -04001976 leaf = path->nodes[0];
1977 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04001978 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04001979 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04001980 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1981 found_type = btrfs_key_type(&found_key);
1982 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04001983 found_type != BTRFS_EXTENT_DATA_KEY) {
1984 goto not_found;
1985 }
1986
Chris Mason5f39d392007-10-15 16:14:19 -04001987 found_type = btrfs_file_extent_type(leaf, item);
1988 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04001989 if (found_type == BTRFS_FILE_EXTENT_REG) {
1990 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04001991 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04001992 err = 0;
Chris Masonb888db2b2007-08-27 16:49:44 -04001993 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04001994 em->start = start;
1995 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001996 if (start + len <= extent_start)
Chris Masonb888db2b2007-08-27 16:49:44 -04001997 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05001998 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04001999 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002000 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002001 }
2002 goto not_found_em;
2003 }
Chris Masondb945352007-10-15 16:15:53 -04002004 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2005 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002006 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002007 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002008 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002009 goto insert;
2010 }
Chris Masondb945352007-10-15 16:15:53 -04002011 bytenr += btrfs_file_extent_offset(leaf, item);
2012 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002013 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002014 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002015 goto insert;
2016 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002017 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002018 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002019 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002020 size_t size;
2021 size_t extent_offset;
2022 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002023
Chris Mason5f39d392007-10-15 16:14:19 -04002024 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2025 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002026 extent_end = (extent_start + size + root->sectorsize - 1) &
2027 ~((u64)root->sectorsize - 1);
Chris Masonb888db2b2007-08-27 16:49:44 -04002028 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002029 em->start = start;
2030 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002031 if (start + len <= extent_start)
Chris Masonb888db2b2007-08-27 16:49:44 -04002032 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002033 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002034 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002035 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002036 }
2037 goto not_found_em;
2038 }
2039 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002040
2041 if (!page) {
2042 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002043 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002044 goto out;
2045 }
2046
Chris Mason70dec802008-01-29 09:59:12 -05002047 page_start = page_offset(page) + pg_offset;
2048 extent_offset = page_start - extent_start;
2049 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002050 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002051 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002052 em->len = (copy_size + root->sectorsize - 1) &
2053 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002054 map = kmap(page);
2055 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002056 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002057 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002058 copy_size);
2059 flush_dcache_page(page);
2060 } else if (create && PageUptodate(page)) {
2061 if (!trans) {
2062 kunmap(page);
2063 free_extent_map(em);
2064 em = NULL;
2065 btrfs_release_path(root, path);
2066 trans = btrfs_start_transaction(root, 1);
2067 goto again;
2068 }
Chris Mason70dec802008-01-29 09:59:12 -05002069 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002070 copy_size);
2071 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002072 }
Chris Masona52d9a82007-08-27 16:49:44 -04002073 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002074 set_extent_uptodate(io_tree, em->start,
2075 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002076 goto insert;
2077 } else {
2078 printk("unkknown found_type %d\n", found_type);
2079 WARN_ON(1);
2080 }
2081not_found:
2082 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002083 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002084not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002085 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002086insert:
2087 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002088 if (em->start > start || extent_map_end(em) <= start) {
2089 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002090 err = -EIO;
2091 goto out;
2092 }
Chris Masond1310b22008-01-24 16:13:08 -05002093
2094 err = 0;
2095 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002096 ret = add_extent_mapping(em_tree, em);
2097 if (ret == -EEXIST) {
2098 free_extent_map(em);
Chris Masond1310b22008-01-24 16:13:08 -05002099 em = lookup_extent_mapping(em_tree, start, len);
2100 if (!em) {
Chris Masona52d9a82007-08-27 16:49:44 -04002101 err = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05002102 printk("failing to insert %Lu %Lu\n", start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002103 }
Chris Masona52d9a82007-08-27 16:49:44 -04002104 }
Chris Masond1310b22008-01-24 16:13:08 -05002105 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002106out:
2107 btrfs_free_path(path);
2108 if (trans) {
2109 ret = btrfs_end_transaction(trans, root);
2110 if (!err)
2111 err = ret;
2112 }
2113 mutex_unlock(&root->fs_info->fs_mutex);
2114 if (err) {
2115 free_extent_map(em);
2116 WARN_ON(1);
2117 return ERR_PTR(err);
2118 }
2119 return em;
2120}
2121
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002122static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002123{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002124 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002125}
2126
Chris Mason9ebefb182007-06-15 13:50:00 -04002127int btrfs_readpage(struct file *file, struct page *page)
2128{
Chris Masond1310b22008-01-24 16:13:08 -05002129 struct extent_io_tree *tree;
2130 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002131 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002132}
Chris Mason1832a6d2007-12-21 16:27:21 -05002133
Chris Mason39279cc2007-06-12 06:35:45 -04002134static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2135{
Chris Masond1310b22008-01-24 16:13:08 -05002136 struct extent_io_tree *tree;
Chris Masonb888db2b2007-08-27 16:49:44 -04002137
2138
2139 if (current->flags & PF_MEMALLOC) {
2140 redirty_page_for_writepage(wbc, page);
2141 unlock_page(page);
2142 return 0;
2143 }
Chris Masond1310b22008-01-24 16:13:08 -05002144 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002145 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2146}
Chris Mason39279cc2007-06-12 06:35:45 -04002147
Chris Masonb293f02e2007-11-01 19:45:34 -04002148static int btrfs_writepages(struct address_space *mapping,
2149 struct writeback_control *wbc)
2150{
Chris Masond1310b22008-01-24 16:13:08 -05002151 struct extent_io_tree *tree;
2152 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04002153 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2154}
2155
Chris Mason3ab2fb52007-11-08 10:59:22 -05002156static int
2157btrfs_readpages(struct file *file, struct address_space *mapping,
2158 struct list_head *pages, unsigned nr_pages)
2159{
Chris Masond1310b22008-01-24 16:13:08 -05002160 struct extent_io_tree *tree;
2161 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002162 return extent_readpages(tree, mapping, pages, nr_pages,
2163 btrfs_get_extent);
2164}
2165
Chris Mason70dec802008-01-29 09:59:12 -05002166static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002167{
Chris Masond1310b22008-01-24 16:13:08 -05002168 struct extent_io_tree *tree;
2169 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002170 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002171
Chris Masond1310b22008-01-24 16:13:08 -05002172 tree = &BTRFS_I(page->mapping->host)->io_tree;
2173 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002174 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002175 if (ret == 1) {
2176 ClearPagePrivate(page);
2177 set_page_private(page, 0);
2178 page_cache_release(page);
2179 }
2180 return ret;
2181}
Chris Mason39279cc2007-06-12 06:35:45 -04002182
Chris Masona52d9a82007-08-27 16:49:44 -04002183static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2184{
Chris Masond1310b22008-01-24 16:13:08 -05002185 struct extent_io_tree *tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002186
Chris Masond1310b22008-01-24 16:13:08 -05002187 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002188 extent_invalidatepage(tree, page, offset);
2189 btrfs_releasepage(page, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002190}
2191
Chris Mason9ebefb182007-06-15 13:50:00 -04002192/*
2193 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2194 * called from a page fault handler when a page is first dirtied. Hence we must
2195 * be careful to check for EOF conditions here. We set the page up correctly
2196 * for a written page which means we get ENOSPC checking when writing into
2197 * holes and correct delalloc and unwritten extent mapping on filesystems that
2198 * support these features.
2199 *
2200 * We are not allowed to take the i_mutex here so we have to play games to
2201 * protect against truncate races as the page could now be beyond EOF. Because
2202 * vmtruncate() writes the inode size before removing pages, once we have the
2203 * page lock we can determine safely if the page is beyond EOF. If it is not
2204 * beyond EOF, then the page is guaranteed safe against truncation until we
2205 * unlock the page.
2206 */
2207int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2208{
Chris Mason6da6aba2007-12-18 16:15:09 -05002209 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002210 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9ebefb182007-06-15 13:50:00 -04002211 unsigned long end;
2212 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002213 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002214 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002215
Chris Mason1832a6d2007-12-21 16:27:21 -05002216 mutex_lock(&root->fs_info->fs_mutex);
2217 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason8f662a72008-01-02 10:01:11 -05002218 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002219 if (ret)
2220 goto out;
2221
2222 ret = -EINVAL;
2223
Chris Mason9ebefb182007-06-15 13:50:00 -04002224 lock_page(page);
2225 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002226 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04002227 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04002228
Chris Mason9ebefb182007-06-15 13:50:00 -04002229 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04002230 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002231 /* page got truncated out from underneath us */
2232 goto out_unlock;
2233 }
2234
2235 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002236 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04002237 end = size & ~PAGE_CACHE_MASK;
2238 else
2239 end = PAGE_CACHE_SIZE;
2240
Chris Masonb888db2b2007-08-27 16:49:44 -04002241 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04002242
2243out_unlock:
2244 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002245out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002246 return ret;
2247}
2248
Chris Mason39279cc2007-06-12 06:35:45 -04002249static void btrfs_truncate(struct inode *inode)
2250{
2251 struct btrfs_root *root = BTRFS_I(inode)->root;
2252 int ret;
2253 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002254 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002255
2256 if (!S_ISREG(inode->i_mode))
2257 return;
2258 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2259 return;
2260
2261 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2262
2263 mutex_lock(&root->fs_info->fs_mutex);
2264 trans = btrfs_start_transaction(root, 1);
2265 btrfs_set_trans_block_group(trans, inode);
2266
2267 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002268 ret = btrfs_truncate_in_trans(trans, root, inode,
2269 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002270 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002271 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002272
Chris Mason39279cc2007-06-12 06:35:45 -04002273 ret = btrfs_end_transaction(trans, root);
2274 BUG_ON(ret);
2275 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002276 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002277 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002278}
2279
Chris Mason4313b392008-01-03 09:08:48 -05002280static int noinline create_subvol(struct btrfs_root *root, char *name,
2281 int namelen)
Chris Mason39279cc2007-06-12 06:35:45 -04002282{
2283 struct btrfs_trans_handle *trans;
2284 struct btrfs_key key;
2285 struct btrfs_root_item root_item;
2286 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002287 struct extent_buffer *leaf;
Chris Masondc17ff82008-01-08 15:46:30 -05002288 struct btrfs_root *new_root = root;
Chris Mason39279cc2007-06-12 06:35:45 -04002289 struct inode *inode;
2290 struct inode *dir;
2291 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002292 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002293 u64 objectid;
2294 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002295 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002296
2297 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002298 ret = btrfs_check_free_space(root, 1, 0);
2299 if (ret)
2300 goto fail_commit;
2301
Chris Mason39279cc2007-06-12 06:35:45 -04002302 trans = btrfs_start_transaction(root, 1);
2303 BUG_ON(!trans);
2304
Chris Mason7bb86312007-12-11 09:25:06 -05002305 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2306 0, &objectid);
2307 if (ret)
2308 goto fail;
2309
2310 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2311 objectid, trans->transid, 0, 0,
2312 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002313 if (IS_ERR(leaf))
2314 return PTR_ERR(leaf);
2315
2316 btrfs_set_header_nritems(leaf, 0);
2317 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04002318 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002319 btrfs_set_header_generation(leaf, trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002320 btrfs_set_header_owner(leaf, objectid);
2321
Chris Mason5f39d392007-10-15 16:14:19 -04002322 write_extent_buffer(leaf, root->fs_info->fsid,
2323 (unsigned long)btrfs_header_fsid(leaf),
2324 BTRFS_FSID_SIZE);
2325 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002326
2327 inode_item = &root_item.inode;
2328 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002329 inode_item->generation = cpu_to_le64(1);
2330 inode_item->size = cpu_to_le64(3);
2331 inode_item->nlink = cpu_to_le32(1);
2332 inode_item->nblocks = cpu_to_le64(1);
2333 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04002334
Chris Masondb945352007-10-15 16:15:53 -04002335 btrfs_set_root_bytenr(&root_item, leaf->start);
2336 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002337 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002338 btrfs_set_root_used(&root_item, 0);
2339
Chris Mason5eda7b52007-06-22 14:16:25 -04002340 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2341 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002342
2343 free_extent_buffer(leaf);
2344 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002345
Chris Mason39279cc2007-06-12 06:35:45 -04002346 btrfs_set_root_dirid(&root_item, new_dirid);
2347
2348 key.objectid = objectid;
2349 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002350 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2351 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2352 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002353 if (ret)
2354 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002355
2356 /*
2357 * insert the directory item
2358 */
2359 key.offset = (u64)-1;
2360 dir = root->fs_info->sb->s_root->d_inode;
2361 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2362 name, namelen, dir->i_ino, &key,
2363 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04002364 if (ret)
2365 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002366
Chris Mason39544012007-12-12 14:38:19 -05002367 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2368 name, namelen, objectid,
2369 root->fs_info->sb->s_root->d_inode->i_ino);
2370 if (ret)
2371 goto fail;
2372
Chris Mason39279cc2007-06-12 06:35:45 -04002373 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002374 if (ret)
2375 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04002376
Josef Bacik58176a92007-08-29 15:47:34 -04002377 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04002378 BUG_ON(!new_root);
2379
2380 trans = btrfs_start_transaction(new_root, 1);
2381 BUG_ON(!trans);
2382
Chris Mason9c583092008-01-29 15:15:18 -05002383 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
2384 new_dirid,
Chris Mason39279cc2007-06-12 06:35:45 -04002385 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002386 if (IS_ERR(inode))
2387 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002388 inode->i_op = &btrfs_dir_inode_operations;
2389 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002390 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002391
Chris Mason39544012007-12-12 14:38:19 -05002392 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2393 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002394 inode->i_nlink = 1;
Chris Mason39544012007-12-12 14:38:19 -05002395 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002396 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002397 if (ret)
2398 goto fail;
2399fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002400 nr = trans->blocks_used;
Chris Masondc17ff82008-01-08 15:46:30 -05002401 err = btrfs_commit_transaction(trans, new_root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002402 if (err && !ret)
2403 ret = err;
2404fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04002405 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002406 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002407 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002408 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002409}
2410
2411static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2412{
Chris Mason3063d292008-01-08 15:46:30 -05002413 struct btrfs_pending_snapshot *pending_snapshot;
Chris Mason39279cc2007-06-12 06:35:45 -04002414 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04002415 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002416 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05002417 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002418
2419 if (!root->ref_cows)
2420 return -EINVAL;
2421
2422 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002423 ret = btrfs_check_free_space(root, 1, 0);
2424 if (ret)
2425 goto fail_unlock;
2426
Chris Mason3063d292008-01-08 15:46:30 -05002427 pending_snapshot = kmalloc(sizeof(*pending_snapshot), GFP_NOFS);
2428 if (!pending_snapshot) {
2429 ret = -ENOMEM;
2430 goto fail_unlock;
2431 }
Yanfb4bc1e2008-01-17 11:59:51 -05002432 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
Chris Mason3063d292008-01-08 15:46:30 -05002433 if (!pending_snapshot->name) {
2434 ret = -ENOMEM;
2435 kfree(pending_snapshot);
2436 goto fail_unlock;
2437 }
Yanfb4bc1e2008-01-17 11:59:51 -05002438 memcpy(pending_snapshot->name, name, namelen);
2439 pending_snapshot->name[namelen] = '\0';
Chris Mason39279cc2007-06-12 06:35:45 -04002440 trans = btrfs_start_transaction(root, 1);
2441 BUG_ON(!trans);
Chris Mason3063d292008-01-08 15:46:30 -05002442 pending_snapshot->root = root;
2443 list_add(&pending_snapshot->list,
2444 &trans->transaction->pending_snapshots);
Chris Mason39279cc2007-06-12 06:35:45 -04002445 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002446 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002447
Chris Mason1832a6d2007-12-21 16:27:21 -05002448fail_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002449 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002450 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002451 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002452 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002453}
2454
Chris Masonedbd8d42007-12-21 16:27:24 -05002455unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002456 struct file_ra_state *ra, struct file *file,
2457 pgoff_t offset, pgoff_t last_index)
2458{
2459 pgoff_t req_size;
2460
2461#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2462 req_size = last_index - offset + 1;
2463 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2464 return offset;
2465#else
2466 req_size = min(last_index - offset + 1, (pgoff_t)128);
2467 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2468 return offset + req_size;
2469#endif
2470}
2471
2472int btrfs_defrag_file(struct file *file) {
Chris Mason6da6aba2007-12-18 16:15:09 -05002473 struct inode *inode = fdentry(file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002474 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002475 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason86479a02007-09-10 19:58:16 -04002476 struct page *page;
2477 unsigned long last_index;
2478 unsigned long ra_index = 0;
2479 u64 page_start;
2480 u64 page_end;
2481 unsigned long i;
Chris Mason1832a6d2007-12-21 16:27:21 -05002482 int ret;
2483
2484 mutex_lock(&root->fs_info->fs_mutex);
2485 ret = btrfs_check_free_space(root, inode->i_size, 0);
2486 mutex_unlock(&root->fs_info->fs_mutex);
2487 if (ret)
2488 return -ENOSPC;
Chris Mason86479a02007-09-10 19:58:16 -04002489
2490 mutex_lock(&inode->i_mutex);
2491 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2492 for (i = 0; i <= last_index; i++) {
2493 if (i == ra_index) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002494 ra_index = btrfs_force_ra(inode->i_mapping,
2495 &file->f_ra,
2496 file, ra_index, last_index);
Chris Mason86479a02007-09-10 19:58:16 -04002497 }
2498 page = grab_cache_page(inode->i_mapping, i);
2499 if (!page)
2500 goto out_unlock;
2501 if (!PageUptodate(page)) {
2502 btrfs_readpage(NULL, page);
2503 lock_page(page);
2504 if (!PageUptodate(page)) {
2505 unlock_page(page);
2506 page_cache_release(page);
2507 goto out_unlock;
2508 }
2509 }
Chris Mason35ebb932007-10-30 16:56:53 -04002510 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002511 page_end = page_start + PAGE_CACHE_SIZE - 1;
2512
Chris Masond1310b22008-01-24 16:13:08 -05002513 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002514 set_extent_delalloc(io_tree, page_start,
Chris Mason86479a02007-09-10 19:58:16 -04002515 page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002516
Chris Masond1310b22008-01-24 16:13:08 -05002517 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason86479a02007-09-10 19:58:16 -04002518 set_page_dirty(page);
2519 unlock_page(page);
2520 page_cache_release(page);
2521 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2522 }
2523
2524out_unlock:
2525 mutex_unlock(&inode->i_mutex);
2526 return 0;
2527}
2528
Chris Masonedbd8d42007-12-21 16:27:24 -05002529static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2530{
2531 u64 new_size;
2532 u64 old_size;
2533 struct btrfs_ioctl_vol_args *vol_args;
2534 struct btrfs_trans_handle *trans;
2535 char *sizestr;
2536 int ret = 0;
2537 int namelen;
2538 int mod = 0;
2539
2540 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2541
2542 if (!vol_args)
2543 return -ENOMEM;
2544
2545 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2546 ret = -EFAULT;
2547 goto out;
2548 }
2549 namelen = strlen(vol_args->name);
2550 if (namelen > BTRFS_VOL_NAME_MAX) {
2551 ret = -EINVAL;
2552 goto out;
2553 }
2554
2555 sizestr = vol_args->name;
2556 if (!strcmp(sizestr, "max"))
2557 new_size = root->fs_info->sb->s_bdev->bd_inode->i_size;
2558 else {
2559 if (sizestr[0] == '-') {
2560 mod = -1;
2561 sizestr++;
2562 } else if (sizestr[0] == '+') {
2563 mod = 1;
2564 sizestr++;
2565 }
2566 new_size = btrfs_parse_size(sizestr);
2567 if (new_size == 0) {
2568 ret = -EINVAL;
2569 goto out;
2570 }
2571 }
2572
2573 mutex_lock(&root->fs_info->fs_mutex);
2574 old_size = btrfs_super_total_bytes(&root->fs_info->super_copy);
2575
2576 if (mod < 0) {
2577 if (new_size > old_size) {
2578 ret = -EINVAL;
2579 goto out_unlock;
2580 }
2581 new_size = old_size - new_size;
2582 } else if (mod > 0) {
2583 new_size = old_size + new_size;
2584 }
2585
2586 if (new_size < 256 * 1024 * 1024) {
2587 ret = -EINVAL;
2588 goto out_unlock;
2589 }
2590 if (new_size > root->fs_info->sb->s_bdev->bd_inode->i_size) {
2591 ret = -EFBIG;
2592 goto out_unlock;
2593 }
Chris Masonf9ef6602008-01-03 09:22:38 -05002594
2595 do_div(new_size, root->sectorsize);
2596 new_size *= root->sectorsize;
Chris Masonedbd8d42007-12-21 16:27:24 -05002597
2598printk("new size is %Lu\n", new_size);
2599 if (new_size > old_size) {
2600 trans = btrfs_start_transaction(root, 1);
2601 ret = btrfs_grow_extent_tree(trans, root, new_size);
2602 btrfs_commit_transaction(trans, root);
2603 } else {
2604 ret = btrfs_shrink_extent_tree(root, new_size);
2605 }
2606
2607out_unlock:
2608 mutex_unlock(&root->fs_info->fs_mutex);
2609out:
2610 kfree(vol_args);
2611 return ret;
2612}
2613
Chris Mason4313b392008-01-03 09:08:48 -05002614static int noinline btrfs_ioctl_snap_create(struct btrfs_root *root,
2615 void __user *arg)
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002616{
Chris Mason4aec2b52007-12-18 16:25:45 -05002617 struct btrfs_ioctl_vol_args *vol_args;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002618 struct btrfs_dir_item *di;
2619 struct btrfs_path *path;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002620 u64 root_dirid;
Chris Mason4aec2b52007-12-18 16:25:45 -05002621 int namelen;
2622 int ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002623
Chris Mason4aec2b52007-12-18 16:25:45 -05002624 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04002625
Chris Mason4aec2b52007-12-18 16:25:45 -05002626 if (!vol_args)
2627 return -ENOMEM;
2628
2629 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2630 ret = -EFAULT;
2631 goto out;
2632 }
2633
2634 namelen = strlen(vol_args->name);
2635 if (namelen > BTRFS_VOL_NAME_MAX) {
2636 ret = -EINVAL;
2637 goto out;
2638 }
2639 if (strchr(vol_args->name, '/')) {
2640 ret = -EINVAL;
2641 goto out;
2642 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002643
2644 path = btrfs_alloc_path();
Chris Mason4aec2b52007-12-18 16:25:45 -05002645 if (!path) {
2646 ret = -ENOMEM;
2647 goto out;
2648 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002649
2650 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
2651 mutex_lock(&root->fs_info->fs_mutex);
2652 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
2653 path, root_dirid,
Chris Mason4aec2b52007-12-18 16:25:45 -05002654 vol_args->name, namelen, 0);
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002655 mutex_unlock(&root->fs_info->fs_mutex);
2656 btrfs_free_path(path);
Chris Mason4aec2b52007-12-18 16:25:45 -05002657
2658 if (di && !IS_ERR(di)) {
2659 ret = -EEXIST;
2660 goto out;
2661 }
2662
2663 if (IS_ERR(di)) {
2664 ret = PTR_ERR(di);
2665 goto out;
2666 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002667
2668 if (root == root->fs_info->tree_root)
Chris Mason4aec2b52007-12-18 16:25:45 -05002669 ret = create_subvol(root, vol_args->name, namelen);
2670 else
2671 ret = create_snapshot(root, vol_args->name, namelen);
2672out:
2673 kfree(vol_args);
2674 return ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002675}
2676
2677static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04002678{
Chris Mason6da6aba2007-12-18 16:15:09 -05002679 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002680 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002681
2682 switch (inode->i_mode & S_IFMT) {
2683 case S_IFDIR:
2684 mutex_lock(&root->fs_info->fs_mutex);
2685 btrfs_defrag_root(root, 0);
2686 btrfs_defrag_root(root->fs_info->extent_root, 0);
2687 mutex_unlock(&root->fs_info->fs_mutex);
2688 break;
2689 case S_IFREG:
2690 btrfs_defrag_file(file);
2691 break;
2692 }
2693
2694 return 0;
2695}
2696
2697long btrfs_ioctl(struct file *file, unsigned int
2698 cmd, unsigned long arg)
2699{
Chris Mason6da6aba2007-12-18 16:15:09 -05002700 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002701
2702 switch (cmd) {
2703 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002704 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04002705 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002706 return btrfs_ioctl_defrag(file);
Chris Masonedbd8d42007-12-21 16:27:24 -05002707 case BTRFS_IOC_RESIZE:
2708 return btrfs_ioctl_resize(root, (void __user *)arg);
Chris Mason39279cc2007-06-12 06:35:45 -04002709 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002710
2711 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04002712}
2713
Chris Mason39279cc2007-06-12 06:35:45 -04002714/*
2715 * Called inside transaction, so use GFP_NOFS
2716 */
2717struct inode *btrfs_alloc_inode(struct super_block *sb)
2718{
2719 struct btrfs_inode *ei;
2720
2721 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2722 if (!ei)
2723 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002724 ei->last_trans = 0;
Chris Masondc17ff82008-01-08 15:46:30 -05002725 ei->ordered_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002726 return &ei->vfs_inode;
2727}
2728
2729void btrfs_destroy_inode(struct inode *inode)
2730{
2731 WARN_ON(!list_empty(&inode->i_dentry));
2732 WARN_ON(inode->i_data.nrpages);
2733
Chris Mason8c416c92008-01-14 15:10:26 -05002734 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04002735 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2736}
2737
Chris Mason44ec0b72007-10-29 10:55:05 -04002738#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2739static void init_once(struct kmem_cache * cachep, void *foo)
2740#else
Chris Mason39279cc2007-06-12 06:35:45 -04002741static void init_once(void * foo, struct kmem_cache * cachep,
2742 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04002743#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002744{
2745 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2746
2747 inode_init_once(&ei->vfs_inode);
2748}
2749
2750void btrfs_destroy_cachep(void)
2751{
2752 if (btrfs_inode_cachep)
2753 kmem_cache_destroy(btrfs_inode_cachep);
2754 if (btrfs_trans_handle_cachep)
2755 kmem_cache_destroy(btrfs_trans_handle_cachep);
2756 if (btrfs_transaction_cachep)
2757 kmem_cache_destroy(btrfs_transaction_cachep);
2758 if (btrfs_bit_radix_cachep)
2759 kmem_cache_destroy(btrfs_bit_radix_cachep);
2760 if (btrfs_path_cachep)
2761 kmem_cache_destroy(btrfs_path_cachep);
2762}
2763
Chris Mason86479a02007-09-10 19:58:16 -04002764struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04002765 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04002766#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2767 void (*ctor)(struct kmem_cache *, void *)
2768#else
Chris Mason92fee662007-07-25 12:31:35 -04002769 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04002770 unsigned long)
2771#endif
2772 )
Chris Mason92fee662007-07-25 12:31:35 -04002773{
2774 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2775 SLAB_MEM_SPREAD | extra_flags), ctor
2776#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2777 ,NULL
2778#endif
2779 );
2780}
2781
Chris Mason39279cc2007-06-12 06:35:45 -04002782int btrfs_init_cachep(void)
2783{
Chris Mason86479a02007-09-10 19:58:16 -04002784 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04002785 sizeof(struct btrfs_inode),
2786 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04002787 if (!btrfs_inode_cachep)
2788 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002789 btrfs_trans_handle_cachep =
2790 btrfs_cache_create("btrfs_trans_handle_cache",
2791 sizeof(struct btrfs_trans_handle),
2792 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002793 if (!btrfs_trans_handle_cachep)
2794 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002795 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04002796 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04002797 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002798 if (!btrfs_transaction_cachep)
2799 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002800 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04002801 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04002802 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002803 if (!btrfs_path_cachep)
2804 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002805 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04002806 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002807 if (!btrfs_bit_radix_cachep)
2808 goto fail;
2809 return 0;
2810fail:
2811 btrfs_destroy_cachep();
2812 return -ENOMEM;
2813}
2814
2815static int btrfs_getattr(struct vfsmount *mnt,
2816 struct dentry *dentry, struct kstat *stat)
2817{
2818 struct inode *inode = dentry->d_inode;
2819 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05002820 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05002821 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04002822 return 0;
2823}
2824
2825static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
2826 struct inode * new_dir,struct dentry *new_dentry)
2827{
2828 struct btrfs_trans_handle *trans;
2829 struct btrfs_root *root = BTRFS_I(old_dir)->root;
2830 struct inode *new_inode = new_dentry->d_inode;
2831 struct inode *old_inode = old_dentry->d_inode;
2832 struct timespec ctime = CURRENT_TIME;
2833 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002834 int ret;
2835
2836 if (S_ISDIR(old_inode->i_mode) && new_inode &&
2837 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
2838 return -ENOTEMPTY;
2839 }
Chris Mason5f39d392007-10-15 16:14:19 -04002840
Chris Mason39279cc2007-06-12 06:35:45 -04002841 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002842 ret = btrfs_check_free_space(root, 1, 0);
2843 if (ret)
2844 goto out_unlock;
2845
Chris Mason39279cc2007-06-12 06:35:45 -04002846 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002847
Chris Mason39279cc2007-06-12 06:35:45 -04002848 btrfs_set_trans_block_group(trans, new_dir);
2849 path = btrfs_alloc_path();
2850 if (!path) {
2851 ret = -ENOMEM;
2852 goto out_fail;
2853 }
2854
2855 old_dentry->d_inode->i_nlink++;
2856 old_dir->i_ctime = old_dir->i_mtime = ctime;
2857 new_dir->i_ctime = new_dir->i_mtime = ctime;
2858 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04002859
Chris Mason39279cc2007-06-12 06:35:45 -04002860 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
2861 if (ret)
2862 goto out_fail;
2863
2864 if (new_inode) {
2865 new_inode->i_ctime = CURRENT_TIME;
2866 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
2867 if (ret)
2868 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002869 }
Chris Mason9c583092008-01-29 15:15:18 -05002870 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002871 if (ret)
2872 goto out_fail;
2873
2874out_fail:
2875 btrfs_free_path(path);
2876 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002877out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002878 mutex_unlock(&root->fs_info->fs_mutex);
2879 return ret;
2880}
2881
2882static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
2883 const char *symname)
2884{
2885 struct btrfs_trans_handle *trans;
2886 struct btrfs_root *root = BTRFS_I(dir)->root;
2887 struct btrfs_path *path;
2888 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05002889 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002890 int err;
2891 int drop_inode = 0;
2892 u64 objectid;
2893 int name_len;
2894 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04002895 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04002896 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04002897 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05002898 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002899
2900 name_len = strlen(symname) + 1;
2901 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
2902 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05002903
Chris Mason39279cc2007-06-12 06:35:45 -04002904 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002905 err = btrfs_check_free_space(root, 1, 0);
2906 if (err)
2907 goto out_fail;
2908
Chris Mason39279cc2007-06-12 06:35:45 -04002909 trans = btrfs_start_transaction(root, 1);
2910 btrfs_set_trans_block_group(trans, dir);
2911
2912 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2913 if (err) {
2914 err = -ENOSPC;
2915 goto out_unlock;
2916 }
2917
Chris Mason9c583092008-01-29 15:15:18 -05002918 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2919 dentry->d_name.len,
2920 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002921 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
2922 err = PTR_ERR(inode);
2923 if (IS_ERR(inode))
2924 goto out_unlock;
2925
2926 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002927 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002928 if (err)
2929 drop_inode = 1;
2930 else {
2931 inode->i_mapping->a_ops = &btrfs_aops;
2932 inode->i_fop = &btrfs_file_operations;
2933 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05002934 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2935 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04002936 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05002937 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05002938 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002939 }
2940 dir->i_sb->s_dirt = 1;
2941 btrfs_update_inode_block_group(trans, inode);
2942 btrfs_update_inode_block_group(trans, dir);
2943 if (drop_inode)
2944 goto out_unlock;
2945
2946 path = btrfs_alloc_path();
2947 BUG_ON(!path);
2948 key.objectid = inode->i_ino;
2949 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002950 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
2951 datasize = btrfs_file_extent_calc_inline_size(name_len);
2952 err = btrfs_insert_empty_item(trans, root, path, &key,
2953 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04002954 if (err) {
2955 drop_inode = 1;
2956 goto out_unlock;
2957 }
Chris Mason5f39d392007-10-15 16:14:19 -04002958 leaf = path->nodes[0];
2959 ei = btrfs_item_ptr(leaf, path->slots[0],
2960 struct btrfs_file_extent_item);
2961 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
2962 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04002963 BTRFS_FILE_EXTENT_INLINE);
2964 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04002965 write_extent_buffer(leaf, symname, ptr, name_len);
2966 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002967 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04002968
Chris Mason39279cc2007-06-12 06:35:45 -04002969 inode->i_op = &btrfs_symlink_inode_operations;
2970 inode->i_mapping->a_ops = &btrfs_symlink_aops;
2971 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04002972 err = btrfs_update_inode(trans, root, inode);
2973 if (err)
2974 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002975
2976out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002977 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002978 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002979out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002980 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04002981 if (drop_inode) {
2982 inode_dec_link_count(inode);
2983 iput(inode);
2984 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002985 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002986 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002987 return err;
2988}
Yanfdebe2b2008-01-14 13:26:08 -05002989static int btrfs_permission(struct inode *inode, int mask,
2990 struct nameidata *nd)
2991{
2992 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
2993 return -EACCES;
2994 return generic_permission(inode, mask, NULL);
2995}
Chris Mason39279cc2007-06-12 06:35:45 -04002996
2997static struct inode_operations btrfs_dir_inode_operations = {
2998 .lookup = btrfs_lookup,
2999 .create = btrfs_create,
3000 .unlink = btrfs_unlink,
3001 .link = btrfs_link,
3002 .mkdir = btrfs_mkdir,
3003 .rmdir = btrfs_rmdir,
3004 .rename = btrfs_rename,
3005 .symlink = btrfs_symlink,
3006 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003007 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003008 .setxattr = generic_setxattr,
3009 .getxattr = generic_getxattr,
3010 .listxattr = btrfs_listxattr,
3011 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003012 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003013};
Chris Mason39279cc2007-06-12 06:35:45 -04003014static struct inode_operations btrfs_dir_ro_inode_operations = {
3015 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003016 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003017};
Chris Mason39279cc2007-06-12 06:35:45 -04003018static struct file_operations btrfs_dir_file_operations = {
3019 .llseek = generic_file_llseek,
3020 .read = generic_read_dir,
3021 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003022 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003023#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003024 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003025#endif
3026};
3027
Chris Masond1310b22008-01-24 16:13:08 -05003028static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003029 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003030 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003031 .readpage_io_hook = btrfs_readpage_io_hook,
3032 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003033 .set_bit_hook = btrfs_set_bit_hook,
3034 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003035};
3036
Chris Mason39279cc2007-06-12 06:35:45 -04003037static struct address_space_operations btrfs_aops = {
3038 .readpage = btrfs_readpage,
3039 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04003040 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003041 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003042 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003043 .bmap = btrfs_bmap,
Chris Masona52d9a82007-08-27 16:49:44 -04003044 .invalidatepage = btrfs_invalidatepage,
3045 .releasepage = btrfs_releasepage,
3046 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04003047};
3048
3049static struct address_space_operations btrfs_symlink_aops = {
3050 .readpage = btrfs_readpage,
3051 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003052 .invalidatepage = btrfs_invalidatepage,
3053 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003054};
3055
3056static struct inode_operations btrfs_file_inode_operations = {
3057 .truncate = btrfs_truncate,
3058 .getattr = btrfs_getattr,
3059 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003060 .setxattr = generic_setxattr,
3061 .getxattr = generic_getxattr,
3062 .listxattr = btrfs_listxattr,
3063 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003064 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003065};
Josef Bacik618e21d2007-07-11 10:18:17 -04003066static struct inode_operations btrfs_special_inode_operations = {
3067 .getattr = btrfs_getattr,
3068 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003069 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003070};
Chris Mason39279cc2007-06-12 06:35:45 -04003071static struct inode_operations btrfs_symlink_inode_operations = {
3072 .readlink = generic_readlink,
3073 .follow_link = page_follow_link_light,
3074 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003075 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003076};