blob: 5a38443a24ee281bf7b65dd0925f1d1887333b65 [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 Mason39279cc2007-06-12 06:35:45 -040019#include <linux/buffer_head.h>
20#include <linux/fs.h>
21#include <linux/pagemap.h>
22#include <linux/highmem.h>
23#include <linux/time.h>
24#include <linux/init.h>
25#include <linux/string.h>
26#include <linux/smp_lock.h>
27#include <linux/backing-dev.h>
28#include <linux/mpage.h>
29#include <linux/swap.h>
30#include <linux/writeback.h>
31#include <linux/statfs.h>
32#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040033#include <linux/bit_spinlock.h>
Chris Mason92fee662007-07-25 12:31:35 -040034#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050035#include <linux/xattr.h>
Chris Mason39279cc2007-06-12 06:35:45 -040036#include "ctree.h"
37#include "disk-io.h"
38#include "transaction.h"
39#include "btrfs_inode.h"
40#include "ioctl.h"
41#include "print-tree.h"
42
43struct btrfs_iget_args {
44 u64 ino;
45 struct btrfs_root *root;
46};
47
48static struct inode_operations btrfs_dir_inode_operations;
49static struct inode_operations btrfs_symlink_inode_operations;
50static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040051static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040052static struct inode_operations btrfs_file_inode_operations;
53static struct address_space_operations btrfs_aops;
54static struct address_space_operations btrfs_symlink_aops;
55static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050056static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040057
58static struct kmem_cache *btrfs_inode_cachep;
59struct kmem_cache *btrfs_trans_handle_cachep;
60struct kmem_cache *btrfs_transaction_cachep;
61struct kmem_cache *btrfs_bit_radix_cachep;
62struct kmem_cache *btrfs_path_cachep;
63
64#define S_SHIFT 12
65static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
66 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
67 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
68 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
69 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
70 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
71 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
72 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
73};
74
Chris Mason1832a6d2007-12-21 16:27:21 -050075int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
76 int for_del)
77{
78 u64 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
79 u64 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
80 u64 thresh;
81 int ret = 0;
82
83 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -050084 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -050085 else
Chris Masonf9ef6602008-01-03 09:22:38 -050086 thresh = total * 85;
87
88 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -050089
90 spin_lock(&root->fs_info->delalloc_lock);
91 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
92 ret = -ENOSPC;
93 spin_unlock(&root->fs_info->delalloc_lock);
94 return ret;
95}
96
Chris Masonbe20aa92007-12-17 20:14:01 -050097static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db22007-08-27 16:49:44 -040098{
99 struct btrfs_root *root = BTRFS_I(inode)->root;
100 struct btrfs_trans_handle *trans;
Chris Masonb888db22007-08-27 16:49:44 -0400101 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400102 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500103 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400104 u64 blocksize = root->sectorsize;
Chris Masond1310b22008-01-24 16:13:08 -0500105 u64 orig_start = start;
106 u64 orig_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500107 struct btrfs_key ins;
108 int ret;
Chris Masonb888db22007-08-27 16:49:44 -0400109
Chris Masonb888db22007-08-27 16:49:44 -0400110 trans = btrfs_start_transaction(root, 1);
Chris Masonb888db22007-08-27 16:49:44 -0400111 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500112 btrfs_set_trans_block_group(trans, inode);
113
Chris Masondb945352007-10-15 16:15:53 -0400114 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500115 num_bytes = max(blocksize, num_bytes);
Chris Masonb888db22007-08-27 16:49:44 -0400116 ret = btrfs_drop_extents(trans, root, inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400117 start, start + num_bytes, start, &alloc_hint);
Chris Masond1310b22008-01-24 16:13:08 -0500118 orig_num_bytes = num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400119
Chris Mason179e29e2007-11-01 11:28:41 -0400120 if (alloc_hint == EXTENT_MAP_INLINE)
121 goto out;
122
Chris Masonc59f8952007-12-17 20:14:04 -0500123 while(num_bytes > 0) {
124 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
125 ret = btrfs_alloc_extent(trans, root, cur_alloc_size,
126 root->root_key.objectid,
127 trans->transid,
128 inode->i_ino, start, 0,
129 alloc_hint, (u64)-1, &ins, 1);
130 if (ret) {
131 WARN_ON(1);
132 goto out;
133 }
134 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
135 start, ins.objectid, ins.offset,
136 ins.offset);
Chris Mason5f564062008-01-22 16:47:59 -0500137 btrfs_check_file(root, inode);
Chris Masonc59f8952007-12-17 20:14:04 -0500138 num_bytes -= cur_alloc_size;
139 alloc_hint = ins.objectid + ins.offset;
140 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400141 }
Chris Masond1310b22008-01-24 16:13:08 -0500142 btrfs_drop_extent_cache(inode, orig_start,
143 orig_start + orig_num_bytes - 1);
Chris Masondc17ff82008-01-08 15:46:30 -0500144 btrfs_add_ordered_inode(inode);
Chris Masonb888db22007-08-27 16:49:44 -0400145out:
146 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500147 return ret;
148}
149
150static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
151{
152 u64 extent_start;
153 u64 extent_end;
154 u64 bytenr;
155 u64 cow_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500156 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500157 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500158 struct btrfs_root *root = BTRFS_I(inode)->root;
159 struct extent_buffer *leaf;
160 int found_type;
161 struct btrfs_path *path;
162 struct btrfs_file_extent_item *item;
163 int ret;
164 int err;
165 struct btrfs_key found_key;
166
Chris Masonc31f8832008-01-08 15:46:31 -0500167 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500168 path = btrfs_alloc_path();
169 BUG_ON(!path);
170again:
171 ret = btrfs_lookup_file_extent(NULL, root, path,
172 inode->i_ino, start, 0);
173 if (ret < 0) {
174 btrfs_free_path(path);
175 return ret;
176 }
177
178 cow_end = end;
179 if (ret != 0) {
180 if (path->slots[0] == 0)
181 goto not_found;
182 path->slots[0]--;
183 }
184
185 leaf = path->nodes[0];
186 item = btrfs_item_ptr(leaf, path->slots[0],
187 struct btrfs_file_extent_item);
188
189 /* are we inside the extent that was found? */
190 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
191 found_type = btrfs_key_type(&found_key);
192 if (found_key.objectid != inode->i_ino ||
193 found_type != BTRFS_EXTENT_DATA_KEY) {
194 goto not_found;
195 }
196
197 found_type = btrfs_file_extent_type(leaf, item);
198 extent_start = found_key.offset;
199 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Masonc31f8832008-01-08 15:46:31 -0500200 u64 extent_num_bytes;
201
202 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
203 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500204 err = 0;
205
Chris Mason1832a6d2007-12-21 16:27:21 -0500206 if (loops && start != extent_start)
207 goto not_found;
208
Chris Masonbe20aa92007-12-17 20:14:01 -0500209 if (start < extent_start || start >= extent_end)
210 goto not_found;
211
212 cow_end = min(end, extent_end - 1);
213 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
214 if (bytenr == 0)
215 goto not_found;
216
Chris Masonc31f8832008-01-08 15:46:31 -0500217 /*
218 * we may be called by the resizer, make sure we're inside
219 * the limits of the FS
220 */
221 if (bytenr + extent_num_bytes > total_fs_bytes)
222 goto not_found;
223
Chris Masonbe20aa92007-12-17 20:14:01 -0500224 if (btrfs_count_snapshots_in_path(root, path, bytenr) != 1) {
225 goto not_found;
226 }
227
228 start = extent_end;
Chris Masonbd098352008-01-03 13:23:19 -0500229 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500230 goto not_found;
231 }
232loop:
233 if (start > end) {
234 btrfs_free_path(path);
235 return 0;
236 }
237 btrfs_release_path(root, path);
Chris Mason1832a6d2007-12-21 16:27:21 -0500238 loops++;
Chris Masonbe20aa92007-12-17 20:14:01 -0500239 goto again;
240
241not_found:
242 cow_file_range(inode, start, cow_end);
243 start = cow_end + 1;
244 goto loop;
245}
246
247static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
248{
249 struct btrfs_root *root = BTRFS_I(inode)->root;
250 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -0500251 mutex_lock(&root->fs_info->fs_mutex);
Yanb98b6762008-01-08 15:54:37 -0500252 if (btrfs_test_opt(root, NODATACOW) ||
253 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500254 ret = run_delalloc_nocow(inode, start, end);
255 else
256 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500257
Chris Masonb888db22007-08-27 16:49:44 -0400258 mutex_unlock(&root->fs_info->fs_mutex);
259 return ret;
260}
261
Chris Mason291d6732008-01-29 15:55:23 -0500262int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
263 unsigned long bits)
264{
265 if ((bits & EXTENT_DELALLOC)) {
266 struct btrfs_root *root = BTRFS_I(inode)->root;
267 spin_lock(&root->fs_info->delalloc_lock);
268 root->fs_info->delalloc_bytes += end - start + 1;
269 spin_unlock(&root->fs_info->delalloc_lock);
270 }
271 return 0;
272}
273
274int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
275 unsigned long bits)
276{
277 if ((bits & EXTENT_DELALLOC)) {
278 struct btrfs_root *root = BTRFS_I(inode)->root;
279 spin_lock(&root->fs_info->delalloc_lock);
280 root->fs_info->delalloc_bytes -= end - start + 1;
281 spin_unlock(&root->fs_info->delalloc_lock);
282 }
283 return 0;
284}
285
Chris Mason07157aa2007-08-30 08:50:51 -0400286int btrfs_writepage_io_hook(struct page *page, u64 start, u64 end)
287{
288 struct inode *inode = page->mapping->host;
289 struct btrfs_root *root = BTRFS_I(inode)->root;
290 struct btrfs_trans_handle *trans;
291 char *kaddr;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500292 int ret = 0;
Chris Mason35ebb932007-10-30 16:56:53 -0400293 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason07157aa2007-08-30 08:50:51 -0400294 size_t offset = start - page_start;
Yanb98b6762008-01-08 15:54:37 -0500295 if (btrfs_test_opt(root, NODATASUM) ||
296 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500297 return 0;
Chris Mason07157aa2007-08-30 08:50:51 -0400298 mutex_lock(&root->fs_info->fs_mutex);
299 trans = btrfs_start_transaction(root, 1);
300 btrfs_set_trans_block_group(trans, inode);
301 kaddr = kmap(page);
Chris Masonf578d4b2007-10-25 15:42:56 -0400302 btrfs_csum_file_block(trans, root, inode, inode->i_ino,
Chris Mason07157aa2007-08-30 08:50:51 -0400303 start, kaddr + offset, end - start + 1);
304 kunmap(page);
305 ret = btrfs_end_transaction(trans, root);
306 BUG_ON(ret);
307 mutex_unlock(&root->fs_info->fs_mutex);
308 return ret;
309}
310
311int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
312{
313 int ret = 0;
314 struct inode *inode = page->mapping->host;
315 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500316 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400317 struct btrfs_csum_item *item;
318 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400319 u32 csum;
Yanb98b6762008-01-08 15:54:37 -0500320 if (btrfs_test_opt(root, NODATASUM) ||
321 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500322 return 0;
Chris Mason07157aa2007-08-30 08:50:51 -0400323 mutex_lock(&root->fs_info->fs_mutex);
324 path = btrfs_alloc_path();
325 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
326 if (IS_ERR(item)) {
327 ret = PTR_ERR(item);
328 /* a csum that isn't present is a preallocated region. */
329 if (ret == -ENOENT || ret == -EFBIG)
330 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400331 csum = 0;
Chris Masonaadfeb62008-01-29 09:10:27 -0500332 printk("no csum found for inode %lu start %Lu\n", inode->i_ino, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400333 goto out;
334 }
Chris Masonff79f812007-10-15 16:22:25 -0400335 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
336 BTRFS_CRC32_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -0500337 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400338out:
339 if (path)
340 btrfs_free_path(path);
341 mutex_unlock(&root->fs_info->fs_mutex);
342 return ret;
343}
344
Chris Mason70dec802008-01-29 09:59:12 -0500345int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
346 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400347{
Chris Mason35ebb932007-10-30 16:56:53 -0400348 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400349 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500350 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400351 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500352 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400353 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400354 struct btrfs_root *root = BTRFS_I(inode)->root;
355 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400356 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500357
Yanb98b6762008-01-08 15:54:37 -0500358 if (btrfs_test_opt(root, NODATASUM) ||
359 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500360 return 0;
Chris Masond1310b22008-01-24 16:13:08 -0500361
Chris Mason70dec802008-01-29 09:59:12 -0500362 if (state->start == start) {
363 private = state->private;
364 ret = 0;
365 } else {
366 ret = get_state_private(io_tree, start, &private);
367 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400368 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400369 kaddr = kmap_atomic(page, KM_IRQ0);
370 if (ret) {
371 goto zeroit;
372 }
Chris Masonff79f812007-10-15 16:22:25 -0400373 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
374 btrfs_csum_final(csum, (char *)&csum);
375 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400376 goto zeroit;
377 }
378 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400379 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400380 return 0;
381
382zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500383 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
384 page->mapping->host->i_ino, (unsigned long long)start, csum,
385 private);
Chris Masondb945352007-10-15 16:15:53 -0400386 memset(kaddr + offset, 1, end - start + 1);
387 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400388 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400389 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400390 return 0;
391}
Chris Masonb888db22007-08-27 16:49:44 -0400392
Chris Mason39279cc2007-06-12 06:35:45 -0400393void btrfs_read_locked_inode(struct inode *inode)
394{
395 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400396 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400397 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -0400398 struct btrfs_inode_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400399 struct btrfs_root *root = BTRFS_I(inode)->root;
400 struct btrfs_key location;
401 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400402 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400403 int ret;
404
405 path = btrfs_alloc_path();
406 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400407 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400408 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500409
Chris Mason39279cc2007-06-12 06:35:45 -0400410 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400411 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400412 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400413
Chris Mason5f39d392007-10-15 16:14:19 -0400414 leaf = path->nodes[0];
415 inode_item = btrfs_item_ptr(leaf, path->slots[0],
416 struct btrfs_inode_item);
417
418 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
419 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
420 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
421 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
422 inode->i_size = btrfs_inode_size(leaf, inode_item);
423
424 tspec = btrfs_inode_atime(inode_item);
425 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
426 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
427
428 tspec = btrfs_inode_mtime(inode_item);
429 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
430 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
431
432 tspec = btrfs_inode_ctime(inode_item);
433 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
434 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
435
436 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
437 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400438 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400439 rdev = btrfs_inode_rdev(leaf, inode_item);
440
441 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400442 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
443 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500444 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500445 if (!BTRFS_I(inode)->block_group) {
446 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
447 NULL, 0, 0, 0);
448 }
Chris Mason39279cc2007-06-12 06:35:45 -0400449 btrfs_free_path(path);
450 inode_item = NULL;
451
452 mutex_unlock(&root->fs_info->fs_mutex);
453
454 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400455 case S_IFREG:
456 inode->i_mapping->a_ops = &btrfs_aops;
Chris Masond1310b22008-01-24 16:13:08 -0500457 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400458 inode->i_fop = &btrfs_file_operations;
459 inode->i_op = &btrfs_file_inode_operations;
460 break;
461 case S_IFDIR:
462 inode->i_fop = &btrfs_dir_file_operations;
463 if (root == root->fs_info->tree_root)
464 inode->i_op = &btrfs_dir_ro_inode_operations;
465 else
466 inode->i_op = &btrfs_dir_inode_operations;
467 break;
468 case S_IFLNK:
469 inode->i_op = &btrfs_symlink_inode_operations;
470 inode->i_mapping->a_ops = &btrfs_symlink_aops;
471 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400472 default:
473 init_special_inode(inode, inode->i_mode, rdev);
474 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400475 }
476 return;
477
478make_bad:
479 btrfs_release_path(root, path);
480 btrfs_free_path(path);
481 mutex_unlock(&root->fs_info->fs_mutex);
482 make_bad_inode(inode);
483}
484
Chris Mason5f39d392007-10-15 16:14:19 -0400485static void fill_inode_item(struct extent_buffer *leaf,
486 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400487 struct inode *inode)
488{
Chris Mason5f39d392007-10-15 16:14:19 -0400489 btrfs_set_inode_uid(leaf, item, inode->i_uid);
490 btrfs_set_inode_gid(leaf, item, inode->i_gid);
491 btrfs_set_inode_size(leaf, item, inode->i_size);
492 btrfs_set_inode_mode(leaf, item, inode->i_mode);
493 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
494
495 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
496 inode->i_atime.tv_sec);
497 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
498 inode->i_atime.tv_nsec);
499
500 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
501 inode->i_mtime.tv_sec);
502 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
503 inode->i_mtime.tv_nsec);
504
505 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
506 inode->i_ctime.tv_sec);
507 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
508 inode->i_ctime.tv_nsec);
509
510 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
511 btrfs_set_inode_generation(leaf, item, inode->i_generation);
512 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500513 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400514 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400515 BTRFS_I(inode)->block_group->key.objectid);
516}
517
Chris Masona52d9a82007-08-27 16:49:44 -0400518int btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400519 struct btrfs_root *root,
520 struct inode *inode)
521{
522 struct btrfs_inode_item *inode_item;
523 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400524 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400525 int ret;
526
527 path = btrfs_alloc_path();
528 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400529 ret = btrfs_lookup_inode(trans, root, path,
530 &BTRFS_I(inode)->location, 1);
531 if (ret) {
532 if (ret > 0)
533 ret = -ENOENT;
534 goto failed;
535 }
536
Chris Mason5f39d392007-10-15 16:14:19 -0400537 leaf = path->nodes[0];
538 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400539 struct btrfs_inode_item);
540
Chris Mason5f39d392007-10-15 16:14:19 -0400541 fill_inode_item(leaf, inode_item, inode);
542 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400543 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400544 ret = 0;
545failed:
546 btrfs_release_path(root, path);
547 btrfs_free_path(path);
548 return ret;
549}
550
551
552static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
553 struct btrfs_root *root,
554 struct inode *dir,
555 struct dentry *dentry)
556{
557 struct btrfs_path *path;
558 const char *name = dentry->d_name.name;
559 int name_len = dentry->d_name.len;
560 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400561 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400562 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400563 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400564
565 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400566 if (!path) {
567 ret = -ENOMEM;
568 goto err;
569 }
570
Chris Mason39279cc2007-06-12 06:35:45 -0400571 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
572 name, name_len, -1);
573 if (IS_ERR(di)) {
574 ret = PTR_ERR(di);
575 goto err;
576 }
577 if (!di) {
578 ret = -ENOENT;
579 goto err;
580 }
Chris Mason5f39d392007-10-15 16:14:19 -0400581 leaf = path->nodes[0];
582 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400583 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400584 if (ret)
585 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400586 btrfs_release_path(root, path);
587
588 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400589 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400590 if (IS_ERR(di)) {
591 ret = PTR_ERR(di);
592 goto err;
593 }
594 if (!di) {
595 ret = -ENOENT;
596 goto err;
597 }
598 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason39279cc2007-06-12 06:35:45 -0400599
600 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -0500601 ret = btrfs_del_inode_ref(trans, root, name, name_len,
602 dentry->d_inode->i_ino,
603 dentry->d_parent->d_inode->i_ino);
604 if (ret) {
605 printk("failed to delete reference to %.*s, "
606 "inode %lu parent %lu\n", name_len, name,
607 dentry->d_inode->i_ino,
608 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -0500609 }
Chris Mason39279cc2007-06-12 06:35:45 -0400610err:
611 btrfs_free_path(path);
612 if (!ret) {
613 dir->i_size -= name_len * 2;
Chris Mason79c44582007-06-25 10:09:33 -0400614 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400615 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -0500616#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
617 dentry->d_inode->i_nlink--;
618#else
Chris Mason39279cc2007-06-12 06:35:45 -0400619 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -0500620#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400621 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400622 dir->i_sb->s_dirt = 1;
623 }
624 return ret;
625}
626
627static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
628{
629 struct btrfs_root *root;
630 struct btrfs_trans_handle *trans;
Chris Mason2da98f02008-01-16 11:44:43 -0500631 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400632 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -0500633 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400634
635 root = BTRFS_I(dir)->root;
636 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500637
638 ret = btrfs_check_free_space(root, 1, 1);
639 if (ret)
640 goto fail;
641
Chris Mason39279cc2007-06-12 06:35:45 -0400642 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400643
Chris Mason39279cc2007-06-12 06:35:45 -0400644 btrfs_set_trans_block_group(trans, dir);
645 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400646 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400647
Chris Mason2da98f02008-01-16 11:44:43 -0500648 if (inode->i_nlink == 0) {
649 int found;
650 /* if the inode isn't linked anywhere,
651 * we don't need to worry about
652 * data=ordered
653 */
654 found = btrfs_del_ordered_inode(inode);
655 if (found == 1) {
656 atomic_dec(&inode->i_count);
657 }
658 }
659
Chris Mason39279cc2007-06-12 06:35:45 -0400660 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500661fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400662 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400663 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500664 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400665 return ret;
666}
667
668static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
669{
670 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -0500671 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400672 int ret;
673 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -0400674 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -0500675 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400676
Yan134d4512007-10-25 15:49:25 -0400677 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
678 return -ENOTEMPTY;
679
Chris Mason39279cc2007-06-12 06:35:45 -0400680 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500681 ret = btrfs_check_free_space(root, 1, 1);
682 if (ret)
683 goto fail;
684
Chris Mason39279cc2007-06-12 06:35:45 -0400685 trans = btrfs_start_transaction(root, 1);
686 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -0400687
688 /* now the directory is empty */
689 err = btrfs_unlink_trans(trans, root, dir, dentry);
690 if (!err) {
691 inode->i_size = 0;
692 }
Chris Mason39544012007-12-12 14:38:19 -0500693
Chris Masond3c2fdc2007-09-17 10:58:06 -0400694 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400695 ret = btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500696fail:
Yan134d4512007-10-25 15:49:25 -0400697 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -0400698 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500699 btrfs_throttle(root);
Chris Mason39544012007-12-12 14:38:19 -0500700
Chris Mason39279cc2007-06-12 06:35:45 -0400701 if (ret && !err)
702 err = ret;
703 return err;
704}
705
Chris Mason39279cc2007-06-12 06:35:45 -0400706/*
Chris Mason39279cc2007-06-12 06:35:45 -0400707 * this can truncate away extent items, csum items and directory items.
708 * It starts at a high offset and removes keys until it can't find
709 * any higher than i_size.
710 *
711 * csum items that cross the new i_size are truncated to the new size
712 * as well.
713 */
714static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
715 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -0500716 struct inode *inode,
717 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400718{
719 int ret;
720 struct btrfs_path *path;
721 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400722 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400723 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400724 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400725 struct btrfs_file_extent_item *fi;
726 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400727 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400728 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500729 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500730 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400731 int found_extent;
732 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -0500733 int pending_del_nr = 0;
734 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -0400735 int extent_type = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400736
Chris Masona52d9a82007-08-27 16:49:44 -0400737 btrfs_drop_extent_cache(inode, inode->i_size, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400738 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400739 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400740 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400741
Chris Mason39279cc2007-06-12 06:35:45 -0400742 /* FIXME, add redo link to tree so we don't leak on crash */
743 key.objectid = inode->i_ino;
744 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400745 key.type = (u8)-1;
746
Chris Mason85e21ba2008-01-29 15:11:36 -0500747 btrfs_init_path(path);
748search_again:
749 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
750 if (ret < 0) {
751 goto error;
752 }
753 if (ret > 0) {
754 BUG_ON(path->slots[0] == 0);
755 path->slots[0]--;
756 }
757
Chris Mason39279cc2007-06-12 06:35:45 -0400758 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -0400759 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400760 leaf = path->nodes[0];
761 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
762 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400763
Chris Mason5f39d392007-10-15 16:14:19 -0400764 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400765 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400766
Chris Mason85e21ba2008-01-29 15:11:36 -0500767 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400768 break;
769
Chris Mason5f39d392007-10-15 16:14:19 -0400770 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400771 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400772 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400773 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400774 extent_type = btrfs_file_extent_type(leaf, fi);
775 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400776 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400777 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400778 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
779 struct btrfs_item *item = btrfs_item_nr(leaf,
780 path->slots[0]);
781 item_end += btrfs_file_extent_inline_len(leaf,
782 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400783 }
Yan008630c2007-11-07 13:31:09 -0500784 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400785 }
786 if (found_type == BTRFS_CSUM_ITEM_KEY) {
787 ret = btrfs_csum_truncate(trans, root, path,
788 inode->i_size);
789 BUG_ON(ret);
790 }
Yan008630c2007-11-07 13:31:09 -0500791 if (item_end < inode->i_size) {
Chris Masonb888db22007-08-27 16:49:44 -0400792 if (found_type == BTRFS_DIR_ITEM_KEY) {
793 found_type = BTRFS_INODE_ITEM_KEY;
794 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
795 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -0500796 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
797 found_type = BTRFS_XATTR_ITEM_KEY;
798 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
799 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db22007-08-27 16:49:44 -0400800 } else if (found_type) {
801 found_type--;
802 } else {
803 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400804 }
Yana61721d2007-09-17 11:08:38 -0400805 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -0500806 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -0400807 }
Chris Mason5f39d392007-10-15 16:14:19 -0400808 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -0400809 del_item = 1;
810 else
811 del_item = 0;
812 found_extent = 0;
813
814 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -0400815 if (found_type != BTRFS_EXTENT_DATA_KEY)
816 goto delete;
817
818 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -0400819 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -0400820 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400821 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -0400822 u64 orig_num_bytes =
823 btrfs_file_extent_num_bytes(leaf, fi);
824 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -0400825 found_key.offset + root->sectorsize - 1;
Chris Masondb945352007-10-15 16:15:53 -0400826 btrfs_set_file_extent_num_bytes(leaf, fi,
827 extent_num_bytes);
828 num_dec = (orig_num_bytes -
829 extent_num_bytes) >> 9;
Yanbab9fb02007-09-17 11:13:11 -0400830 if (extent_start != 0) {
831 inode->i_blocks -= num_dec;
832 }
Chris Mason5f39d392007-10-15 16:14:19 -0400833 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400834 } else {
Chris Masondb945352007-10-15 16:15:53 -0400835 extent_num_bytes =
836 btrfs_file_extent_disk_num_bytes(leaf,
837 fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400838 /* FIXME blocksize != 4096 */
Chris Masondb945352007-10-15 16:15:53 -0400839 num_dec = btrfs_file_extent_num_bytes(leaf,
840 fi) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400841 if (extent_start != 0) {
842 found_extent = 1;
843 inode->i_blocks -= num_dec;
844 }
Chris Masond8d5f3e2007-12-11 12:42:00 -0500845 root_gen = btrfs_header_generation(leaf);
846 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400847 }
Chris Mason179e29e2007-11-01 11:28:41 -0400848 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE &&
849 !del_item) {
850 u32 newsize = inode->i_size - found_key.offset;
851 newsize = btrfs_file_extent_calc_inline_size(newsize);
852 ret = btrfs_truncate_item(trans, root, path,
853 newsize, 1);
854 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -0400855 }
Chris Mason179e29e2007-11-01 11:28:41 -0400856delete:
Chris Mason39279cc2007-06-12 06:35:45 -0400857 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -0500858 if (!pending_del_nr) {
859 /* no pending yet, add ourselves */
860 pending_del_slot = path->slots[0];
861 pending_del_nr = 1;
862 } else if (pending_del_nr &&
863 path->slots[0] + 1 == pending_del_slot) {
864 /* hop on the pending chunk */
865 pending_del_nr++;
866 pending_del_slot = path->slots[0];
867 } else {
868 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
869 }
Chris Mason39279cc2007-06-12 06:35:45 -0400870 } else {
871 break;
872 }
Chris Mason39279cc2007-06-12 06:35:45 -0400873 if (found_extent) {
874 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -0500875 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -0500876 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -0500877 root_gen, inode->i_ino,
878 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400879 BUG_ON(ret);
880 }
Chris Mason85e21ba2008-01-29 15:11:36 -0500881next:
882 if (path->slots[0] == 0) {
883 if (pending_del_nr)
884 goto del_pending;
885 btrfs_release_path(root, path);
886 goto search_again;
887 }
888
889 path->slots[0]--;
890 if (pending_del_nr &&
891 path->slots[0] + 1 != pending_del_slot) {
892 struct btrfs_key debug;
893del_pending:
894 btrfs_item_key_to_cpu(path->nodes[0], &debug,
895 pending_del_slot);
896 ret = btrfs_del_items(trans, root, path,
897 pending_del_slot,
898 pending_del_nr);
899 BUG_ON(ret);
900 pending_del_nr = 0;
901 btrfs_release_path(root, path);
902 goto search_again;
903 }
Chris Mason39279cc2007-06-12 06:35:45 -0400904 }
905 ret = 0;
906error:
Chris Mason85e21ba2008-01-29 15:11:36 -0500907 if (pending_del_nr) {
908 ret = btrfs_del_items(trans, root, path, pending_del_slot,
909 pending_del_nr);
910 }
Chris Mason39279cc2007-06-12 06:35:45 -0400911 btrfs_release_path(root, path);
912 btrfs_free_path(path);
913 inode->i_sb->s_dirt = 1;
914 return ret;
915}
916
Chris Masonb888db22007-08-27 16:49:44 -0400917static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -0400918 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -0400919{
Chris Mason39279cc2007-06-12 06:35:45 -0400920 char *kaddr;
Chris Masond1310b22008-01-24 16:13:08 -0500921 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400922 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db22007-08-27 16:49:44 -0400923 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -0500924 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400925
Chris Mason190662b2007-12-18 16:25:45 -0500926 WARN_ON(!PageLocked(page));
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400927 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400928
Chris Masond1310b22008-01-24 16:13:08 -0500929 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -0500930 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
Chris Masonb888db22007-08-27 16:49:44 -0400931 page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -0500932
Chris Masona52d9a82007-08-27 16:49:44 -0400933 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db22007-08-27 16:49:44 -0400934 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400935 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
936 flush_dcache_page(page);
Chris Masonb888db22007-08-27 16:49:44 -0400937 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400938 }
Chris Masonb888db22007-08-27 16:49:44 -0400939 set_page_dirty(page);
Chris Masond1310b22008-01-24 16:13:08 -0500940 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400941
Chris Masona52d9a82007-08-27 16:49:44 -0400942 return ret;
943}
944
945/*
946 * taken from block_truncate_page, but does cow as it zeros out
947 * any bytes left in the last page in the file.
948 */
949static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
950{
951 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -0400952 struct btrfs_root *root = BTRFS_I(inode)->root;
953 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -0400954 pgoff_t index = from >> PAGE_CACHE_SHIFT;
955 unsigned offset = from & (PAGE_CACHE_SIZE-1);
956 struct page *page;
957 int ret = 0;
958 u64 page_start;
959
960 if ((offset & (blocksize - 1)) == 0)
961 goto out;
962
963 ret = -ENOMEM;
964 page = grab_cache_page(mapping, index);
965 if (!page)
966 goto out;
967 if (!PageUptodate(page)) {
968 ret = btrfs_readpage(NULL, page);
969 lock_page(page);
970 if (!PageUptodate(page)) {
971 ret = -EIO;
972 goto out;
973 }
974 }
Chris Mason35ebb932007-10-30 16:56:53 -0400975 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -0400976
Chris Masonb888db22007-08-27 16:49:44 -0400977 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400978
Chris Mason39279cc2007-06-12 06:35:45 -0400979 unlock_page(page);
980 page_cache_release(page);
981out:
982 return ret;
983}
984
985static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
986{
987 struct inode *inode = dentry->d_inode;
988 int err;
989
990 err = inode_change_ok(inode, attr);
991 if (err)
992 return err;
993
994 if (S_ISREG(inode->i_mode) &&
995 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
996 struct btrfs_trans_handle *trans;
997 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500998 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -0400999
Chris Mason5f39d392007-10-15 16:14:19 -04001000 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001001 u64 pos = (inode->i_size + mask) & ~mask;
Chris Mason2bf5a722007-08-30 11:54:02 -04001002 u64 block_end = attr->ia_size | mask;
Chris Mason5f564062008-01-22 16:47:59 -05001003 u64 hole_start;
Chris Mason39279cc2007-06-12 06:35:45 -04001004 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001005 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001006
1007 if (attr->ia_size <= pos)
1008 goto out;
1009
Chris Mason5f564062008-01-22 16:47:59 -05001010 if (pos != inode->i_size)
1011 hole_start = pos + root->sectorsize;
1012 else
1013 hole_start = pos;
1014
Chris Mason1832a6d2007-12-21 16:27:21 -05001015 mutex_lock(&root->fs_info->fs_mutex);
1016 err = btrfs_check_free_space(root, 1, 0);
1017 mutex_unlock(&root->fs_info->fs_mutex);
1018 if (err)
1019 goto fail;
1020
Chris Mason39279cc2007-06-12 06:35:45 -04001021 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1022
Chris Masond1310b22008-01-24 16:13:08 -05001023 lock_extent(io_tree, pos, block_end, GFP_NOFS);
Chris Mason5f564062008-01-22 16:47:59 -05001024 hole_size = block_end - hole_start;
Chris Mason39279cc2007-06-12 06:35:45 -04001025
1026 mutex_lock(&root->fs_info->fs_mutex);
1027 trans = btrfs_start_transaction(root, 1);
1028 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -04001029 err = btrfs_drop_extents(trans, root, inode,
Chris Mason5f564062008-01-22 16:47:59 -05001030 pos, block_end, pos,
Chris Mason3326d1b2007-10-15 16:18:25 -04001031 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001032
Chris Mason179e29e2007-11-01 11:28:41 -04001033 if (alloc_hint != EXTENT_MAP_INLINE) {
1034 err = btrfs_insert_file_extent(trans, root,
1035 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001036 hole_start, 0, 0,
1037 hole_size);
Chris Masond1310b22008-01-24 16:13:08 -05001038 btrfs_drop_extent_cache(inode, hole_start,
1039 hole_size - 1);
Chris Mason5f564062008-01-22 16:47:59 -05001040 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001041 }
Chris Mason39279cc2007-06-12 06:35:45 -04001042 btrfs_end_transaction(trans, root);
1043 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond1310b22008-01-24 16:13:08 -05001044 unlock_extent(io_tree, pos, block_end, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001045 if (err)
1046 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001047 }
1048out:
1049 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001050fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001051 return err;
1052}
Chris Mason61295eb2008-01-14 16:24:38 -05001053
Chris Mason2da98f02008-01-16 11:44:43 -05001054void btrfs_put_inode(struct inode *inode)
Chris Mason61295eb2008-01-14 16:24:38 -05001055{
Chris Mason2da98f02008-01-16 11:44:43 -05001056 int ret;
1057
1058 if (!BTRFS_I(inode)->ordered_trans) {
Chris Mason61295eb2008-01-14 16:24:38 -05001059 return;
1060 }
Chris Mason2da98f02008-01-16 11:44:43 -05001061
1062 if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_DIRTY) ||
1063 mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1064 return;
1065
1066 ret = btrfs_del_ordered_inode(inode);
1067 if (ret == 1) {
1068 atomic_dec(&inode->i_count);
1069 }
Chris Mason61295eb2008-01-14 16:24:38 -05001070}
1071
Chris Mason39279cc2007-06-12 06:35:45 -04001072void btrfs_delete_inode(struct inode *inode)
1073{
1074 struct btrfs_trans_handle *trans;
1075 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdc2007-09-17 10:58:06 -04001076 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001077 int ret;
1078
1079 truncate_inode_pages(&inode->i_data, 0);
1080 if (is_bad_inode(inode)) {
1081 goto no_delete;
1082 }
Chris Mason5f39d392007-10-15 16:14:19 -04001083
Chris Mason39279cc2007-06-12 06:35:45 -04001084 inode->i_size = 0;
1085 mutex_lock(&root->fs_info->fs_mutex);
1086 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001087
Chris Mason39279cc2007-06-12 06:35:45 -04001088 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001089 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001090 if (ret)
1091 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001092
Chris Masond3c2fdc2007-09-17 10:58:06 -04001093 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001094 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001095
Chris Mason39279cc2007-06-12 06:35:45 -04001096 btrfs_end_transaction(trans, root);
1097 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04001098 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001099 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001100 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001101
1102no_delete_lock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04001103 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001104 btrfs_end_transaction(trans, root);
1105 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04001106 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001107 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001108no_delete:
1109 clear_inode(inode);
1110}
1111
1112/*
1113 * this returns the key found in the dir entry in the location pointer.
1114 * If no dir entries were found, location->objectid is 0.
1115 */
1116static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1117 struct btrfs_key *location)
1118{
1119 const char *name = dentry->d_name.name;
1120 int namelen = dentry->d_name.len;
1121 struct btrfs_dir_item *di;
1122 struct btrfs_path *path;
1123 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001124 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001125
Chris Mason39544012007-12-12 14:38:19 -05001126 if (namelen == 1 && strcmp(name, ".") == 0) {
1127 location->objectid = dir->i_ino;
1128 location->type = BTRFS_INODE_ITEM_KEY;
1129 location->offset = 0;
1130 return 0;
1131 }
Chris Mason39279cc2007-06-12 06:35:45 -04001132 path = btrfs_alloc_path();
1133 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001134
Chris Mason7a720532007-12-13 09:06:59 -05001135 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001136 struct btrfs_key key;
1137 struct extent_buffer *leaf;
1138 u32 nritems;
1139 int slot;
1140
1141 key.objectid = dir->i_ino;
1142 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1143 key.offset = 0;
1144 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1145 BUG_ON(ret == 0);
1146 ret = 0;
1147
1148 leaf = path->nodes[0];
1149 slot = path->slots[0];
1150 nritems = btrfs_header_nritems(leaf);
1151 if (slot >= nritems)
1152 goto out_err;
1153
1154 btrfs_item_key_to_cpu(leaf, &key, slot);
1155 if (key.objectid != dir->i_ino ||
1156 key.type != BTRFS_INODE_REF_KEY) {
1157 goto out_err;
1158 }
1159 location->objectid = key.offset;
1160 location->type = BTRFS_INODE_ITEM_KEY;
1161 location->offset = 0;
1162 goto out;
1163 }
1164
Chris Mason39279cc2007-06-12 06:35:45 -04001165 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1166 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001167 if (IS_ERR(di))
1168 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001169 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001170 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001171 }
Chris Mason5f39d392007-10-15 16:14:19 -04001172 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001173out:
Chris Mason39279cc2007-06-12 06:35:45 -04001174 btrfs_free_path(path);
1175 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001176out_err:
1177 location->objectid = 0;
1178 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001179}
1180
1181/*
1182 * when we hit a tree root in a directory, the btrfs part of the inode
1183 * needs to be changed to reflect the root directory of the tree root. This
1184 * is kind of like crossing a mount point.
1185 */
1186static int fixup_tree_root_location(struct btrfs_root *root,
1187 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001188 struct btrfs_root **sub_root,
1189 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001190{
1191 struct btrfs_path *path;
1192 struct btrfs_root_item *ri;
1193
1194 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1195 return 0;
1196 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1197 return 0;
1198
1199 path = btrfs_alloc_path();
1200 BUG_ON(!path);
1201 mutex_lock(&root->fs_info->fs_mutex);
1202
Josef Bacik58176a92007-08-29 15:47:34 -04001203 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1204 dentry->d_name.name,
1205 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001206 if (IS_ERR(*sub_root))
1207 return PTR_ERR(*sub_root);
1208
1209 ri = &(*sub_root)->root_item;
1210 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001211 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1212 location->offset = 0;
1213
1214 btrfs_free_path(path);
1215 mutex_unlock(&root->fs_info->fs_mutex);
1216 return 0;
1217}
1218
1219static int btrfs_init_locked_inode(struct inode *inode, void *p)
1220{
1221 struct btrfs_iget_args *args = p;
1222 inode->i_ino = args->ino;
1223 BTRFS_I(inode)->root = args->root;
Chris Masond1310b22008-01-24 16:13:08 -05001224 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1225 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001226 inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001227 return 0;
1228}
1229
1230static int btrfs_find_actor(struct inode *inode, void *opaque)
1231{
1232 struct btrfs_iget_args *args = opaque;
1233 return (args->ino == inode->i_ino &&
1234 args->root == BTRFS_I(inode)->root);
1235}
1236
Chris Masondc17ff82008-01-08 15:46:30 -05001237struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1238 u64 root_objectid)
1239{
1240 struct btrfs_iget_args args;
1241 args.ino = objectid;
1242 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1243
1244 if (!args.root)
1245 return NULL;
1246
1247 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1248}
1249
Chris Mason39279cc2007-06-12 06:35:45 -04001250struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1251 struct btrfs_root *root)
1252{
1253 struct inode *inode;
1254 struct btrfs_iget_args args;
1255 args.ino = objectid;
1256 args.root = root;
1257
1258 inode = iget5_locked(s, objectid, btrfs_find_actor,
1259 btrfs_init_locked_inode,
1260 (void *)&args);
1261 return inode;
1262}
1263
1264static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1265 struct nameidata *nd)
1266{
1267 struct inode * inode;
1268 struct btrfs_inode *bi = BTRFS_I(dir);
1269 struct btrfs_root *root = bi->root;
1270 struct btrfs_root *sub_root = root;
1271 struct btrfs_key location;
1272 int ret;
1273
1274 if (dentry->d_name.len > BTRFS_NAME_LEN)
1275 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001276
Chris Mason39279cc2007-06-12 06:35:45 -04001277 mutex_lock(&root->fs_info->fs_mutex);
1278 ret = btrfs_inode_by_name(dir, dentry, &location);
1279 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001280
Chris Mason39279cc2007-06-12 06:35:45 -04001281 if (ret < 0)
1282 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001283
Chris Mason39279cc2007-06-12 06:35:45 -04001284 inode = NULL;
1285 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001286 ret = fixup_tree_root_location(root, &location, &sub_root,
1287 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001288 if (ret < 0)
1289 return ERR_PTR(ret);
1290 if (ret > 0)
1291 return ERR_PTR(-ENOENT);
1292 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1293 sub_root);
1294 if (!inode)
1295 return ERR_PTR(-EACCES);
1296 if (inode->i_state & I_NEW) {
1297 /* the inode and parent dir are two different roots */
1298 if (sub_root != root) {
1299 igrab(inode);
1300 sub_root->inode = inode;
1301 }
1302 BTRFS_I(inode)->root = sub_root;
1303 memcpy(&BTRFS_I(inode)->location, &location,
1304 sizeof(location));
1305 btrfs_read_locked_inode(inode);
1306 unlock_new_inode(inode);
1307 }
1308 }
1309 return d_splice_alias(inode, dentry);
1310}
1311
Chris Mason39279cc2007-06-12 06:35:45 -04001312static unsigned char btrfs_filetype_table[] = {
1313 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1314};
1315
1316static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1317{
Chris Mason6da6aba2007-12-18 16:15:09 -05001318 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001319 struct btrfs_root *root = BTRFS_I(inode)->root;
1320 struct btrfs_item *item;
1321 struct btrfs_dir_item *di;
1322 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001323 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001324 struct btrfs_path *path;
1325 int ret;
1326 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001327 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001328 int slot;
1329 int advance;
1330 unsigned char d_type;
1331 int over = 0;
1332 u32 di_cur;
1333 u32 di_total;
1334 u32 di_len;
1335 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001336 char tmp_name[32];
1337 char *name_ptr;
1338 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001339
1340 /* FIXME, use a real flag for deciding about the key type */
1341 if (root->fs_info->tree_root == root)
1342 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001343
Chris Mason39544012007-12-12 14:38:19 -05001344 /* special case for "." */
1345 if (filp->f_pos == 0) {
1346 over = filldir(dirent, ".", 1,
1347 1, inode->i_ino,
1348 DT_DIR);
1349 if (over)
1350 return 0;
1351 filp->f_pos = 1;
1352 }
1353
Chris Mason39279cc2007-06-12 06:35:45 -04001354 mutex_lock(&root->fs_info->fs_mutex);
1355 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001356 path = btrfs_alloc_path();
1357 path->reada = 2;
1358
1359 /* special case for .., just use the back ref */
1360 if (filp->f_pos == 1) {
1361 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1362 key.offset = 0;
1363 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1364 BUG_ON(ret == 0);
1365 leaf = path->nodes[0];
1366 slot = path->slots[0];
1367 nritems = btrfs_header_nritems(leaf);
1368 if (slot >= nritems) {
1369 btrfs_release_path(root, path);
1370 goto read_dir_items;
1371 }
1372 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1373 btrfs_release_path(root, path);
1374 if (found_key.objectid != key.objectid ||
1375 found_key.type != BTRFS_INODE_REF_KEY)
1376 goto read_dir_items;
1377 over = filldir(dirent, "..", 2,
1378 2, found_key.offset, DT_DIR);
1379 if (over)
1380 goto nopos;
1381 filp->f_pos = 2;
1382 }
1383
1384read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001385 btrfs_set_key_type(&key, key_type);
1386 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001387
Chris Mason39279cc2007-06-12 06:35:45 -04001388 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1389 if (ret < 0)
1390 goto err;
1391 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001392 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001393 leaf = path->nodes[0];
1394 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001395 slot = path->slots[0];
1396 if (advance || slot >= nritems) {
1397 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001398 ret = btrfs_next_leaf(root, path);
1399 if (ret)
1400 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001401 leaf = path->nodes[0];
1402 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001403 slot = path->slots[0];
1404 } else {
1405 slot++;
1406 path->slots[0]++;
1407 }
1408 }
1409 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001410 item = btrfs_item_nr(leaf, slot);
1411 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1412
1413 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001414 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001415 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001416 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001417 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001418 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001419
1420 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001421 advance = 1;
1422 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1423 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001424 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001425 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001426 struct btrfs_key location;
1427
1428 name_len = btrfs_dir_name_len(leaf, di);
1429 if (name_len < 32) {
1430 name_ptr = tmp_name;
1431 } else {
1432 name_ptr = kmalloc(name_len, GFP_NOFS);
1433 BUG_ON(!name_ptr);
1434 }
1435 read_extent_buffer(leaf, name_ptr,
1436 (unsigned long)(di + 1), name_len);
1437
1438 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1439 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001440 over = filldir(dirent, name_ptr, name_len,
1441 found_key.offset,
1442 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001443 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001444
1445 if (name_ptr != tmp_name)
1446 kfree(name_ptr);
1447
Chris Mason39279cc2007-06-12 06:35:45 -04001448 if (over)
1449 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001450 di_len = btrfs_dir_name_len(leaf, di) +
1451 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001452 di_cur += di_len;
1453 di = (struct btrfs_dir_item *)((char *)di + di_len);
1454 }
1455 }
Chris Masonc2a8b6e2008-01-29 09:10:26 -05001456 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
Chris Mason39279cc2007-06-12 06:35:45 -04001457nopos:
1458 ret = 0;
1459err:
1460 btrfs_release_path(root, path);
1461 btrfs_free_path(path);
1462 mutex_unlock(&root->fs_info->fs_mutex);
1463 return ret;
1464}
1465
1466int btrfs_write_inode(struct inode *inode, int wait)
1467{
1468 struct btrfs_root *root = BTRFS_I(inode)->root;
1469 struct btrfs_trans_handle *trans;
1470 int ret = 0;
1471
1472 if (wait) {
1473 mutex_lock(&root->fs_info->fs_mutex);
1474 trans = btrfs_start_transaction(root, 1);
1475 btrfs_set_trans_block_group(trans, inode);
1476 ret = btrfs_commit_transaction(trans, root);
1477 mutex_unlock(&root->fs_info->fs_mutex);
1478 }
1479 return ret;
1480}
1481
1482/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001483 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001484 * inode changes. But, it is most likely to find the inode in cache.
1485 * FIXME, needs more benchmarking...there are no reasons other than performance
1486 * to keep or drop this code.
1487 */
1488void btrfs_dirty_inode(struct inode *inode)
1489{
1490 struct btrfs_root *root = BTRFS_I(inode)->root;
1491 struct btrfs_trans_handle *trans;
1492
1493 mutex_lock(&root->fs_info->fs_mutex);
1494 trans = btrfs_start_transaction(root, 1);
1495 btrfs_set_trans_block_group(trans, inode);
1496 btrfs_update_inode(trans, root, inode);
1497 btrfs_end_transaction(trans, root);
1498 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001499}
1500
1501static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1502 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001503 const char *name, int name_len,
1504 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001505 u64 objectid,
1506 struct btrfs_block_group_cache *group,
1507 int mode)
1508{
1509 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001510 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04001511 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001512 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001513 struct btrfs_inode_ref *ref;
1514 struct btrfs_key key[2];
1515 u32 sizes[2];
1516 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001517 int ret;
1518 int owner;
1519
Chris Mason5f39d392007-10-15 16:14:19 -04001520 path = btrfs_alloc_path();
1521 BUG_ON(!path);
1522
Chris Mason39279cc2007-06-12 06:35:45 -04001523 inode = new_inode(root->fs_info->sb);
1524 if (!inode)
1525 return ERR_PTR(-ENOMEM);
1526
Chris Masond1310b22008-01-24 16:13:08 -05001527 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1528 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db22007-08-27 16:49:44 -04001529 inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001530 BTRFS_I(inode)->root = root;
Chris Masonb888db22007-08-27 16:49:44 -04001531
Chris Mason39279cc2007-06-12 06:35:45 -04001532 if (mode & S_IFDIR)
1533 owner = 0;
1534 else
1535 owner = 1;
1536 group = btrfs_find_block_group(root, group, 0, 0, owner);
1537 BTRFS_I(inode)->block_group = group;
Yanb98b6762008-01-08 15:54:37 -05001538 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001539
1540 key[0].objectid = objectid;
1541 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1542 key[0].offset = 0;
1543
1544 key[1].objectid = objectid;
1545 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1546 key[1].offset = ref_objectid;
1547
1548 sizes[0] = sizeof(struct btrfs_inode_item);
1549 sizes[1] = name_len + sizeof(*ref);
1550
1551 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1552 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001553 goto fail;
1554
Chris Mason9c583092008-01-29 15:15:18 -05001555 if (objectid > root->highest_inode)
1556 root->highest_inode = objectid;
1557
Chris Mason39279cc2007-06-12 06:35:45 -04001558 inode->i_uid = current->fsuid;
1559 inode->i_gid = current->fsgid;
1560 inode->i_mode = mode;
1561 inode->i_ino = objectid;
1562 inode->i_blocks = 0;
1563 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001564 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1565 struct btrfs_inode_item);
1566 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001567
1568 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1569 struct btrfs_inode_ref);
1570 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1571 ptr = (unsigned long)(ref + 1);
1572 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1573
Chris Mason5f39d392007-10-15 16:14:19 -04001574 btrfs_mark_buffer_dirty(path->nodes[0]);
1575 btrfs_free_path(path);
1576
Chris Mason39279cc2007-06-12 06:35:45 -04001577 location = &BTRFS_I(inode)->location;
1578 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001579 location->offset = 0;
1580 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1581
Chris Mason39279cc2007-06-12 06:35:45 -04001582 insert_inode_hash(inode);
1583 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001584fail:
1585 btrfs_free_path(path);
1586 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001587}
1588
1589static inline u8 btrfs_inode_type(struct inode *inode)
1590{
1591 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1592}
1593
1594static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001595 struct dentry *dentry, struct inode *inode,
1596 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001597{
1598 int ret;
1599 struct btrfs_key key;
1600 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001601 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001602
Chris Mason39279cc2007-06-12 06:35:45 -04001603 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001604 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1605 key.offset = 0;
1606
1607 ret = btrfs_insert_dir_item(trans, root,
1608 dentry->d_name.name, dentry->d_name.len,
1609 dentry->d_parent->d_inode->i_ino,
1610 &key, btrfs_inode_type(inode));
1611 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05001612 if (add_backref) {
1613 ret = btrfs_insert_inode_ref(trans, root,
1614 dentry->d_name.name,
1615 dentry->d_name.len,
1616 inode->i_ino,
1617 dentry->d_parent->d_inode->i_ino);
1618 }
Chris Mason79c44582007-06-25 10:09:33 -04001619 parent_inode = dentry->d_parent->d_inode;
1620 parent_inode->i_size += dentry->d_name.len * 2;
1621 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001622 ret = btrfs_update_inode(trans, root,
1623 dentry->d_parent->d_inode);
1624 }
1625 return ret;
1626}
1627
1628static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001629 struct dentry *dentry, struct inode *inode,
1630 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001631{
Chris Mason9c583092008-01-29 15:15:18 -05001632 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04001633 if (!err) {
1634 d_instantiate(dentry, inode);
1635 return 0;
1636 }
1637 if (err > 0)
1638 err = -EEXIST;
1639 return err;
1640}
1641
Josef Bacik618e21d2007-07-11 10:18:17 -04001642static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1643 int mode, dev_t rdev)
1644{
1645 struct btrfs_trans_handle *trans;
1646 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001647 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04001648 int err;
1649 int drop_inode = 0;
1650 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05001651 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04001652
1653 if (!new_valid_dev(rdev))
1654 return -EINVAL;
1655
1656 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001657 err = btrfs_check_free_space(root, 1, 0);
1658 if (err)
1659 goto fail;
1660
Josef Bacik618e21d2007-07-11 10:18:17 -04001661 trans = btrfs_start_transaction(root, 1);
1662 btrfs_set_trans_block_group(trans, dir);
1663
1664 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1665 if (err) {
1666 err = -ENOSPC;
1667 goto out_unlock;
1668 }
1669
Chris Mason9c583092008-01-29 15:15:18 -05001670 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1671 dentry->d_name.len,
1672 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04001673 BTRFS_I(dir)->block_group, mode);
1674 err = PTR_ERR(inode);
1675 if (IS_ERR(inode))
1676 goto out_unlock;
1677
1678 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001679 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04001680 if (err)
1681 drop_inode = 1;
1682 else {
1683 inode->i_op = &btrfs_special_inode_operations;
1684 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001685 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001686 }
1687 dir->i_sb->s_dirt = 1;
1688 btrfs_update_inode_block_group(trans, inode);
1689 btrfs_update_inode_block_group(trans, dir);
1690out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04001691 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001692 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001693fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04001694 mutex_unlock(&root->fs_info->fs_mutex);
1695
1696 if (drop_inode) {
1697 inode_dec_link_count(inode);
1698 iput(inode);
1699 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04001700 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001701 btrfs_throttle(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04001702 return err;
1703}
1704
Chris Mason39279cc2007-06-12 06:35:45 -04001705static int btrfs_create(struct inode *dir, struct dentry *dentry,
1706 int mode, struct nameidata *nd)
1707{
1708 struct btrfs_trans_handle *trans;
1709 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001710 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001711 int err;
1712 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05001713 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001714 u64 objectid;
1715
1716 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001717 err = btrfs_check_free_space(root, 1, 0);
1718 if (err)
1719 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001720 trans = btrfs_start_transaction(root, 1);
1721 btrfs_set_trans_block_group(trans, dir);
1722
1723 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1724 if (err) {
1725 err = -ENOSPC;
1726 goto out_unlock;
1727 }
1728
Chris Mason9c583092008-01-29 15:15:18 -05001729 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1730 dentry->d_name.len,
1731 dentry->d_parent->d_inode->i_ino,
1732 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04001733 err = PTR_ERR(inode);
1734 if (IS_ERR(inode))
1735 goto out_unlock;
1736
1737 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001738 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001739 if (err)
1740 drop_inode = 1;
1741 else {
1742 inode->i_mapping->a_ops = &btrfs_aops;
1743 inode->i_fop = &btrfs_file_operations;
1744 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05001745 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1746 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04001747 inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001748 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001749 }
1750 dir->i_sb->s_dirt = 1;
1751 btrfs_update_inode_block_group(trans, inode);
1752 btrfs_update_inode_block_group(trans, dir);
1753out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04001754 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001755 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001756fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001757 mutex_unlock(&root->fs_info->fs_mutex);
1758
1759 if (drop_inode) {
1760 inode_dec_link_count(inode);
1761 iput(inode);
1762 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04001763 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001764 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001765 return err;
1766}
1767
1768static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1769 struct dentry *dentry)
1770{
1771 struct btrfs_trans_handle *trans;
1772 struct btrfs_root *root = BTRFS_I(dir)->root;
1773 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001774 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001775 int err;
1776 int drop_inode = 0;
1777
1778 if (inode->i_nlink == 0)
1779 return -ENOENT;
1780
Chris Mason6da6aba2007-12-18 16:15:09 -05001781#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1782 inode->i_nlink++;
1783#else
Chris Mason39279cc2007-06-12 06:35:45 -04001784 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001785#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001786 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001787 err = btrfs_check_free_space(root, 1, 0);
1788 if (err)
1789 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001790 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001791
Chris Mason39279cc2007-06-12 06:35:45 -04001792 btrfs_set_trans_block_group(trans, dir);
1793 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05001794 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001795
Chris Mason39279cc2007-06-12 06:35:45 -04001796 if (err)
1797 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001798
Chris Mason39279cc2007-06-12 06:35:45 -04001799 dir->i_sb->s_dirt = 1;
1800 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04001801 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001802
Chris Mason54aa1f42007-06-22 14:16:25 -04001803 if (err)
1804 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001805
Chris Masond3c2fdc2007-09-17 10:58:06 -04001806 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001807 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001808fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001809 mutex_unlock(&root->fs_info->fs_mutex);
1810
1811 if (drop_inode) {
1812 inode_dec_link_count(inode);
1813 iput(inode);
1814 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04001815 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001816 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001817 return err;
1818}
1819
Chris Mason39279cc2007-06-12 06:35:45 -04001820static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1821{
1822 struct inode *inode;
1823 struct btrfs_trans_handle *trans;
1824 struct btrfs_root *root = BTRFS_I(dir)->root;
1825 int err = 0;
1826 int drop_on_err = 0;
1827 u64 objectid;
Chris Masond3c2fdc2007-09-17 10:58:06 -04001828 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001829
1830 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001831 err = btrfs_check_free_space(root, 1, 0);
1832 if (err)
1833 goto out_unlock;
1834
Chris Mason39279cc2007-06-12 06:35:45 -04001835 trans = btrfs_start_transaction(root, 1);
1836 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04001837
Chris Mason39279cc2007-06-12 06:35:45 -04001838 if (IS_ERR(trans)) {
1839 err = PTR_ERR(trans);
1840 goto out_unlock;
1841 }
1842
1843 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1844 if (err) {
1845 err = -ENOSPC;
1846 goto out_unlock;
1847 }
1848
Chris Mason9c583092008-01-29 15:15:18 -05001849 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1850 dentry->d_name.len,
1851 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001852 BTRFS_I(dir)->block_group, S_IFDIR | mode);
1853 if (IS_ERR(inode)) {
1854 err = PTR_ERR(inode);
1855 goto out_fail;
1856 }
Chris Mason5f39d392007-10-15 16:14:19 -04001857
Chris Mason39279cc2007-06-12 06:35:45 -04001858 drop_on_err = 1;
1859 inode->i_op = &btrfs_dir_inode_operations;
1860 inode->i_fop = &btrfs_dir_file_operations;
1861 btrfs_set_trans_block_group(trans, inode);
1862
Chris Mason39544012007-12-12 14:38:19 -05001863 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001864 err = btrfs_update_inode(trans, root, inode);
1865 if (err)
1866 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001867
Chris Mason9c583092008-01-29 15:15:18 -05001868 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001869 if (err)
1870 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001871
Chris Mason39279cc2007-06-12 06:35:45 -04001872 d_instantiate(dentry, inode);
1873 drop_on_err = 0;
1874 dir->i_sb->s_dirt = 1;
1875 btrfs_update_inode_block_group(trans, inode);
1876 btrfs_update_inode_block_group(trans, dir);
1877
1878out_fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04001879 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001880 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04001881
Chris Mason39279cc2007-06-12 06:35:45 -04001882out_unlock:
1883 mutex_unlock(&root->fs_info->fs_mutex);
1884 if (drop_on_err)
1885 iput(inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04001886 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001887 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001888 return err;
1889}
1890
Chris Masona52d9a82007-08-27 16:49:44 -04001891struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05001892 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04001893 int create)
1894{
1895 int ret;
1896 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04001897 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04001898 u64 extent_start = 0;
1899 u64 extent_end = 0;
1900 u64 objectid = inode->i_ino;
1901 u32 found_type;
Chris Masona52d9a82007-08-27 16:49:44 -04001902 struct btrfs_path *path;
1903 struct btrfs_root *root = BTRFS_I(inode)->root;
1904 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04001905 struct extent_buffer *leaf;
1906 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04001907 struct extent_map *em = NULL;
1908 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05001909 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04001910 struct btrfs_trans_handle *trans = NULL;
1911
1912 path = btrfs_alloc_path();
1913 BUG_ON(!path);
1914 mutex_lock(&root->fs_info->fs_mutex);
1915
1916again:
Chris Masond1310b22008-01-24 16:13:08 -05001917 spin_lock(&em_tree->lock);
1918 em = lookup_extent_mapping(em_tree, start, len);
1919 spin_unlock(&em_tree->lock);
1920
Chris Masona52d9a82007-08-27 16:49:44 -04001921 if (em) {
Chris Mason56b453c2008-01-03 09:08:27 -05001922 if (em->start > start) {
Chris Masond1310b22008-01-24 16:13:08 -05001923 printk("get_extent lookup [%Lu %Lu] em [%Lu %Lu]\n",
1924 start, len, em->start, em->len);
Chris Mason56b453c2008-01-03 09:08:27 -05001925 WARN_ON(1);
1926 }
Chris Mason70dec802008-01-29 09:59:12 -05001927 if (em->block_start == EXTENT_MAP_INLINE && page)
1928 free_extent_map(em);
1929 else
1930 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04001931 }
Chris Masond1310b22008-01-24 16:13:08 -05001932 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001933 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05001934 err = -ENOMEM;
1935 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04001936 }
Chris Masond1310b22008-01-24 16:13:08 -05001937
1938 em->start = EXTENT_MAP_HOLE;
1939 em->len = (u64)-1;
Chris Masona52d9a82007-08-27 16:49:44 -04001940 em->bdev = inode->i_sb->s_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04001941 ret = btrfs_lookup_file_extent(trans, root, path,
1942 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04001943 if (ret < 0) {
1944 err = ret;
1945 goto out;
1946 }
1947
1948 if (ret != 0) {
1949 if (path->slots[0] == 0)
1950 goto not_found;
1951 path->slots[0]--;
1952 }
1953
Chris Mason5f39d392007-10-15 16:14:19 -04001954 leaf = path->nodes[0];
1955 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04001956 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04001957 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04001958 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1959 found_type = btrfs_key_type(&found_key);
1960 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04001961 found_type != BTRFS_EXTENT_DATA_KEY) {
1962 goto not_found;
1963 }
1964
Chris Mason5f39d392007-10-15 16:14:19 -04001965 found_type = btrfs_file_extent_type(leaf, item);
1966 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04001967 if (found_type == BTRFS_FILE_EXTENT_REG) {
1968 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04001969 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04001970 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04001971 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04001972 em->start = start;
1973 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05001974 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04001975 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05001976 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04001977 } else {
Chris Masond1310b22008-01-24 16:13:08 -05001978 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04001979 }
1980 goto not_found_em;
1981 }
Chris Masondb945352007-10-15 16:15:53 -04001982 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
1983 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04001984 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05001985 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04001986 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04001987 goto insert;
1988 }
Chris Masondb945352007-10-15 16:15:53 -04001989 bytenr += btrfs_file_extent_offset(leaf, item);
1990 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04001991 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05001992 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04001993 goto insert;
1994 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05001995 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04001996 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04001997 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04001998 size_t size;
1999 size_t extent_offset;
2000 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002001
Chris Mason5f39d392007-10-15 16:14:19 -04002002 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2003 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002004 extent_end = (extent_start + size + root->sectorsize - 1) &
2005 ~((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04002006 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002007 em->start = start;
2008 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002009 if (start + len <= extent_start)
Chris Masonb888db22007-08-27 16:49:44 -04002010 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002011 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002012 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002013 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002014 }
2015 goto not_found_em;
2016 }
2017 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002018
2019 if (!page) {
2020 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002021 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002022 goto out;
2023 }
2024
Chris Mason70dec802008-01-29 09:59:12 -05002025 page_start = page_offset(page) + pg_offset;
2026 extent_offset = page_start - extent_start;
2027 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002028 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002029 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002030 em->len = (copy_size + root->sectorsize - 1) &
2031 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002032 map = kmap(page);
2033 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002034 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002035 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002036 copy_size);
2037 flush_dcache_page(page);
2038 } else if (create && PageUptodate(page)) {
2039 if (!trans) {
2040 kunmap(page);
2041 free_extent_map(em);
2042 em = NULL;
2043 btrfs_release_path(root, path);
2044 trans = btrfs_start_transaction(root, 1);
2045 goto again;
2046 }
Chris Mason70dec802008-01-29 09:59:12 -05002047 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002048 copy_size);
2049 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002050 }
Chris Masona52d9a82007-08-27 16:49:44 -04002051 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002052 set_extent_uptodate(io_tree, em->start,
2053 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002054 goto insert;
2055 } else {
2056 printk("unkknown found_type %d\n", found_type);
2057 WARN_ON(1);
2058 }
2059not_found:
2060 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002061 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002062not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002063 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002064insert:
2065 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002066 if (em->start > start || extent_map_end(em) <= start) {
2067 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002068 err = -EIO;
2069 goto out;
2070 }
Chris Masond1310b22008-01-24 16:13:08 -05002071
2072 err = 0;
2073 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002074 ret = add_extent_mapping(em_tree, em);
2075 if (ret == -EEXIST) {
2076 free_extent_map(em);
Chris Masond1310b22008-01-24 16:13:08 -05002077 em = lookup_extent_mapping(em_tree, start, len);
2078 if (!em) {
Chris Masona52d9a82007-08-27 16:49:44 -04002079 err = -EIO;
Chris Masond1310b22008-01-24 16:13:08 -05002080 printk("failing to insert %Lu %Lu\n", start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002081 }
Chris Masona52d9a82007-08-27 16:49:44 -04002082 }
Chris Masond1310b22008-01-24 16:13:08 -05002083 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002084out:
2085 btrfs_free_path(path);
2086 if (trans) {
2087 ret = btrfs_end_transaction(trans, root);
2088 if (!err)
2089 err = ret;
2090 }
2091 mutex_unlock(&root->fs_info->fs_mutex);
2092 if (err) {
2093 free_extent_map(em);
2094 WARN_ON(1);
2095 return ERR_PTR(err);
2096 }
2097 return em;
2098}
2099
Christoph Hellwigd396c6f52007-09-10 20:02:30 -04002100static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002101{
Christoph Hellwigd396c6f52007-09-10 20:02:30 -04002102 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002103}
2104
Chris Mason9ebefb182007-06-15 13:50:00 -04002105int btrfs_readpage(struct file *file, struct page *page)
2106{
Chris Masond1310b22008-01-24 16:13:08 -05002107 struct extent_io_tree *tree;
2108 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002109 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002110}
Chris Mason1832a6d2007-12-21 16:27:21 -05002111
Chris Mason39279cc2007-06-12 06:35:45 -04002112static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2113{
Chris Masond1310b22008-01-24 16:13:08 -05002114 struct extent_io_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04002115
2116
2117 if (current->flags & PF_MEMALLOC) {
2118 redirty_page_for_writepage(wbc, page);
2119 unlock_page(page);
2120 return 0;
2121 }
Chris Masond1310b22008-01-24 16:13:08 -05002122 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002123 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2124}
Chris Mason39279cc2007-06-12 06:35:45 -04002125
Chris Masonb293f022007-11-01 19:45:34 -04002126static int btrfs_writepages(struct address_space *mapping,
2127 struct writeback_control *wbc)
2128{
Chris Masond1310b22008-01-24 16:13:08 -05002129 struct extent_io_tree *tree;
2130 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f022007-11-01 19:45:34 -04002131 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2132}
2133
Chris Mason3ab2fb52007-11-08 10:59:22 -05002134static int
2135btrfs_readpages(struct file *file, struct address_space *mapping,
2136 struct list_head *pages, unsigned nr_pages)
2137{
Chris Masond1310b22008-01-24 16:13:08 -05002138 struct extent_io_tree *tree;
2139 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002140 return extent_readpages(tree, mapping, pages, nr_pages,
2141 btrfs_get_extent);
2142}
2143
Chris Mason70dec802008-01-29 09:59:12 -05002144static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002145{
Chris Masond1310b22008-01-24 16:13:08 -05002146 struct extent_io_tree *tree;
2147 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002148 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002149
Chris Masond1310b22008-01-24 16:13:08 -05002150 tree = &BTRFS_I(page->mapping->host)->io_tree;
2151 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002152 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002153 if (ret == 1) {
2154 ClearPagePrivate(page);
2155 set_page_private(page, 0);
2156 page_cache_release(page);
2157 }
2158 return ret;
2159}
Chris Mason39279cc2007-06-12 06:35:45 -04002160
Chris Masona52d9a82007-08-27 16:49:44 -04002161static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2162{
Chris Masond1310b22008-01-24 16:13:08 -05002163 struct extent_io_tree *tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002164
Chris Masond1310b22008-01-24 16:13:08 -05002165 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002166 extent_invalidatepage(tree, page, offset);
2167 btrfs_releasepage(page, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002168}
2169
Chris Mason9ebefb182007-06-15 13:50:00 -04002170/*
2171 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2172 * called from a page fault handler when a page is first dirtied. Hence we must
2173 * be careful to check for EOF conditions here. We set the page up correctly
2174 * for a written page which means we get ENOSPC checking when writing into
2175 * holes and correct delalloc and unwritten extent mapping on filesystems that
2176 * support these features.
2177 *
2178 * We are not allowed to take the i_mutex here so we have to play games to
2179 * protect against truncate races as the page could now be beyond EOF. Because
2180 * vmtruncate() writes the inode size before removing pages, once we have the
2181 * page lock we can determine safely if the page is beyond EOF. If it is not
2182 * beyond EOF, then the page is guaranteed safe against truncation until we
2183 * unlock the page.
2184 */
2185int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2186{
Chris Mason6da6aba2007-12-18 16:15:09 -05002187 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002188 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9ebefb182007-06-15 13:50:00 -04002189 unsigned long end;
2190 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002191 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002192 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002193
Chris Mason1832a6d2007-12-21 16:27:21 -05002194 mutex_lock(&root->fs_info->fs_mutex);
2195 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason8f662a72008-01-02 10:01:11 -05002196 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002197 if (ret)
2198 goto out;
2199
2200 ret = -EINVAL;
2201
Chris Mason9ebefb182007-06-15 13:50:00 -04002202 lock_page(page);
2203 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002204 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04002205 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04002206
Chris Mason9ebefb182007-06-15 13:50:00 -04002207 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04002208 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002209 /* page got truncated out from underneath us */
2210 goto out_unlock;
2211 }
2212
2213 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002214 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04002215 end = size & ~PAGE_CACHE_MASK;
2216 else
2217 end = PAGE_CACHE_SIZE;
2218
Chris Masonb888db22007-08-27 16:49:44 -04002219 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04002220
2221out_unlock:
2222 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002223out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002224 return ret;
2225}
2226
Chris Mason39279cc2007-06-12 06:35:45 -04002227static void btrfs_truncate(struct inode *inode)
2228{
2229 struct btrfs_root *root = BTRFS_I(inode)->root;
2230 int ret;
2231 struct btrfs_trans_handle *trans;
Chris Masond3c2fdc2007-09-17 10:58:06 -04002232 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002233
2234 if (!S_ISREG(inode->i_mode))
2235 return;
2236 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2237 return;
2238
2239 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2240
2241 mutex_lock(&root->fs_info->fs_mutex);
2242 trans = btrfs_start_transaction(root, 1);
2243 btrfs_set_trans_block_group(trans, inode);
2244
2245 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002246 ret = btrfs_truncate_in_trans(trans, root, inode,
2247 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002248 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002249 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002250
Chris Mason39279cc2007-06-12 06:35:45 -04002251 ret = btrfs_end_transaction(trans, root);
2252 BUG_ON(ret);
2253 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002254 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002255 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002256}
2257
Chris Mason4313b392008-01-03 09:08:48 -05002258static int noinline create_subvol(struct btrfs_root *root, char *name,
2259 int namelen)
Chris Mason39279cc2007-06-12 06:35:45 -04002260{
2261 struct btrfs_trans_handle *trans;
2262 struct btrfs_key key;
2263 struct btrfs_root_item root_item;
2264 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002265 struct extent_buffer *leaf;
Chris Masondc17ff82008-01-08 15:46:30 -05002266 struct btrfs_root *new_root = root;
Chris Mason39279cc2007-06-12 06:35:45 -04002267 struct inode *inode;
2268 struct inode *dir;
2269 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002270 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002271 u64 objectid;
2272 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdc2007-09-17 10:58:06 -04002273 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002274
2275 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002276 ret = btrfs_check_free_space(root, 1, 0);
2277 if (ret)
2278 goto fail_commit;
2279
Chris Mason39279cc2007-06-12 06:35:45 -04002280 trans = btrfs_start_transaction(root, 1);
2281 BUG_ON(!trans);
2282
Chris Mason7bb86312007-12-11 09:25:06 -05002283 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2284 0, &objectid);
2285 if (ret)
2286 goto fail;
2287
2288 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2289 objectid, trans->transid, 0, 0,
2290 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002291 if (IS_ERR(leaf))
2292 return PTR_ERR(leaf);
2293
2294 btrfs_set_header_nritems(leaf, 0);
2295 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04002296 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002297 btrfs_set_header_generation(leaf, trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002298 btrfs_set_header_owner(leaf, objectid);
2299
Chris Mason5f39d392007-10-15 16:14:19 -04002300 write_extent_buffer(leaf, root->fs_info->fsid,
2301 (unsigned long)btrfs_header_fsid(leaf),
2302 BTRFS_FSID_SIZE);
2303 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002304
2305 inode_item = &root_item.inode;
2306 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002307 inode_item->generation = cpu_to_le64(1);
2308 inode_item->size = cpu_to_le64(3);
2309 inode_item->nlink = cpu_to_le32(1);
2310 inode_item->nblocks = cpu_to_le64(1);
2311 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04002312
Chris Masondb945352007-10-15 16:15:53 -04002313 btrfs_set_root_bytenr(&root_item, leaf->start);
2314 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002315 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002316 btrfs_set_root_used(&root_item, 0);
2317
Chris Mason5eda7b52007-06-22 14:16:25 -04002318 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2319 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002320
2321 free_extent_buffer(leaf);
2322 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002323
Chris Mason39279cc2007-06-12 06:35:45 -04002324 btrfs_set_root_dirid(&root_item, new_dirid);
2325
2326 key.objectid = objectid;
2327 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002328 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2329 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2330 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002331 if (ret)
2332 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002333
2334 /*
2335 * insert the directory item
2336 */
2337 key.offset = (u64)-1;
2338 dir = root->fs_info->sb->s_root->d_inode;
2339 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2340 name, namelen, dir->i_ino, &key,
2341 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04002342 if (ret)
2343 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002344
Chris Mason39544012007-12-12 14:38:19 -05002345 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2346 name, namelen, objectid,
2347 root->fs_info->sb->s_root->d_inode->i_ino);
2348 if (ret)
2349 goto fail;
2350
Chris Mason39279cc2007-06-12 06:35:45 -04002351 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002352 if (ret)
2353 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04002354
Josef Bacik58176a92007-08-29 15:47:34 -04002355 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04002356 BUG_ON(!new_root);
2357
2358 trans = btrfs_start_transaction(new_root, 1);
2359 BUG_ON(!trans);
2360
Chris Mason9c583092008-01-29 15:15:18 -05002361 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
2362 new_dirid,
Chris Mason39279cc2007-06-12 06:35:45 -04002363 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002364 if (IS_ERR(inode))
2365 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002366 inode->i_op = &btrfs_dir_inode_operations;
2367 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002368 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002369
Chris Mason39544012007-12-12 14:38:19 -05002370 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2371 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002372 inode->i_nlink = 1;
Chris Mason39544012007-12-12 14:38:19 -05002373 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002374 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002375 if (ret)
2376 goto fail;
2377fail:
Chris Masond3c2fdc2007-09-17 10:58:06 -04002378 nr = trans->blocks_used;
Chris Masondc17ff82008-01-08 15:46:30 -05002379 err = btrfs_commit_transaction(trans, new_root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002380 if (err && !ret)
2381 ret = err;
2382fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04002383 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002384 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002385 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002386 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002387}
2388
2389static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2390{
Chris Mason3063d292008-01-08 15:46:30 -05002391 struct btrfs_pending_snapshot *pending_snapshot;
Chris Mason39279cc2007-06-12 06:35:45 -04002392 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04002393 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002394 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05002395 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002396
2397 if (!root->ref_cows)
2398 return -EINVAL;
2399
2400 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002401 ret = btrfs_check_free_space(root, 1, 0);
2402 if (ret)
2403 goto fail_unlock;
2404
Chris Mason3063d292008-01-08 15:46:30 -05002405 pending_snapshot = kmalloc(sizeof(*pending_snapshot), GFP_NOFS);
2406 if (!pending_snapshot) {
2407 ret = -ENOMEM;
2408 goto fail_unlock;
2409 }
Yanfb4bc1e2008-01-17 11:59:51 -05002410 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
Chris Mason3063d292008-01-08 15:46:30 -05002411 if (!pending_snapshot->name) {
2412 ret = -ENOMEM;
2413 kfree(pending_snapshot);
2414 goto fail_unlock;
2415 }
Yanfb4bc1e2008-01-17 11:59:51 -05002416 memcpy(pending_snapshot->name, name, namelen);
2417 pending_snapshot->name[namelen] = '\0';
Chris Mason39279cc2007-06-12 06:35:45 -04002418 trans = btrfs_start_transaction(root, 1);
2419 BUG_ON(!trans);
Chris Mason3063d292008-01-08 15:46:30 -05002420 pending_snapshot->root = root;
2421 list_add(&pending_snapshot->list,
2422 &trans->transaction->pending_snapshots);
Chris Mason39279cc2007-06-12 06:35:45 -04002423 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002424 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002425
Chris Mason1832a6d2007-12-21 16:27:21 -05002426fail_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002427 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdc2007-09-17 10:58:06 -04002428 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002429 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002430 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002431}
2432
Chris Masonedbd8d42007-12-21 16:27:24 -05002433unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002434 struct file_ra_state *ra, struct file *file,
2435 pgoff_t offset, pgoff_t last_index)
2436{
2437 pgoff_t req_size;
2438
2439#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2440 req_size = last_index - offset + 1;
2441 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2442 return offset;
2443#else
2444 req_size = min(last_index - offset + 1, (pgoff_t)128);
2445 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2446 return offset + req_size;
2447#endif
2448}
2449
2450int btrfs_defrag_file(struct file *file) {
Chris Mason6da6aba2007-12-18 16:15:09 -05002451 struct inode *inode = fdentry(file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002452 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002453 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason86479a02007-09-10 19:58:16 -04002454 struct page *page;
2455 unsigned long last_index;
2456 unsigned long ra_index = 0;
2457 u64 page_start;
2458 u64 page_end;
2459 unsigned long i;
Chris Mason1832a6d2007-12-21 16:27:21 -05002460 int ret;
2461
2462 mutex_lock(&root->fs_info->fs_mutex);
2463 ret = btrfs_check_free_space(root, inode->i_size, 0);
2464 mutex_unlock(&root->fs_info->fs_mutex);
2465 if (ret)
2466 return -ENOSPC;
Chris Mason86479a02007-09-10 19:58:16 -04002467
2468 mutex_lock(&inode->i_mutex);
2469 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2470 for (i = 0; i <= last_index; i++) {
2471 if (i == ra_index) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002472 ra_index = btrfs_force_ra(inode->i_mapping,
2473 &file->f_ra,
2474 file, ra_index, last_index);
Chris Mason86479a02007-09-10 19:58:16 -04002475 }
2476 page = grab_cache_page(inode->i_mapping, i);
2477 if (!page)
2478 goto out_unlock;
2479 if (!PageUptodate(page)) {
2480 btrfs_readpage(NULL, page);
2481 lock_page(page);
2482 if (!PageUptodate(page)) {
2483 unlock_page(page);
2484 page_cache_release(page);
2485 goto out_unlock;
2486 }
2487 }
Chris Mason35ebb932007-10-30 16:56:53 -04002488 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002489 page_end = page_start + PAGE_CACHE_SIZE - 1;
2490
Chris Masond1310b22008-01-24 16:13:08 -05002491 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002492 set_extent_delalloc(io_tree, page_start,
Chris Mason86479a02007-09-10 19:58:16 -04002493 page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002494
Chris Masond1310b22008-01-24 16:13:08 -05002495 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason86479a02007-09-10 19:58:16 -04002496 set_page_dirty(page);
2497 unlock_page(page);
2498 page_cache_release(page);
2499 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2500 }
2501
2502out_unlock:
2503 mutex_unlock(&inode->i_mutex);
2504 return 0;
2505}
2506
Chris Masonedbd8d42007-12-21 16:27:24 -05002507static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2508{
2509 u64 new_size;
2510 u64 old_size;
2511 struct btrfs_ioctl_vol_args *vol_args;
2512 struct btrfs_trans_handle *trans;
2513 char *sizestr;
2514 int ret = 0;
2515 int namelen;
2516 int mod = 0;
2517
2518 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2519
2520 if (!vol_args)
2521 return -ENOMEM;
2522
2523 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2524 ret = -EFAULT;
2525 goto out;
2526 }
2527 namelen = strlen(vol_args->name);
2528 if (namelen > BTRFS_VOL_NAME_MAX) {
2529 ret = -EINVAL;
2530 goto out;
2531 }
2532
2533 sizestr = vol_args->name;
2534 if (!strcmp(sizestr, "max"))
2535 new_size = root->fs_info->sb->s_bdev->bd_inode->i_size;
2536 else {
2537 if (sizestr[0] == '-') {
2538 mod = -1;
2539 sizestr++;
2540 } else if (sizestr[0] == '+') {
2541 mod = 1;
2542 sizestr++;
2543 }
2544 new_size = btrfs_parse_size(sizestr);
2545 if (new_size == 0) {
2546 ret = -EINVAL;
2547 goto out;
2548 }
2549 }
2550
2551 mutex_lock(&root->fs_info->fs_mutex);
2552 old_size = btrfs_super_total_bytes(&root->fs_info->super_copy);
2553
2554 if (mod < 0) {
2555 if (new_size > old_size) {
2556 ret = -EINVAL;
2557 goto out_unlock;
2558 }
2559 new_size = old_size - new_size;
2560 } else if (mod > 0) {
2561 new_size = old_size + new_size;
2562 }
2563
2564 if (new_size < 256 * 1024 * 1024) {
2565 ret = -EINVAL;
2566 goto out_unlock;
2567 }
2568 if (new_size > root->fs_info->sb->s_bdev->bd_inode->i_size) {
2569 ret = -EFBIG;
2570 goto out_unlock;
2571 }
Chris Masonf9ef6602008-01-03 09:22:38 -05002572
2573 do_div(new_size, root->sectorsize);
2574 new_size *= root->sectorsize;
Chris Masonedbd8d42007-12-21 16:27:24 -05002575
2576printk("new size is %Lu\n", new_size);
2577 if (new_size > old_size) {
2578 trans = btrfs_start_transaction(root, 1);
2579 ret = btrfs_grow_extent_tree(trans, root, new_size);
2580 btrfs_commit_transaction(trans, root);
2581 } else {
2582 ret = btrfs_shrink_extent_tree(root, new_size);
2583 }
2584
2585out_unlock:
2586 mutex_unlock(&root->fs_info->fs_mutex);
2587out:
2588 kfree(vol_args);
2589 return ret;
2590}
2591
Chris Mason4313b392008-01-03 09:08:48 -05002592static int noinline btrfs_ioctl_snap_create(struct btrfs_root *root,
2593 void __user *arg)
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002594{
Chris Mason4aec2b52007-12-18 16:25:45 -05002595 struct btrfs_ioctl_vol_args *vol_args;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002596 struct btrfs_dir_item *di;
2597 struct btrfs_path *path;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002598 u64 root_dirid;
Chris Mason4aec2b52007-12-18 16:25:45 -05002599 int namelen;
2600 int ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002601
Chris Mason4aec2b52007-12-18 16:25:45 -05002602 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04002603
Chris Mason4aec2b52007-12-18 16:25:45 -05002604 if (!vol_args)
2605 return -ENOMEM;
2606
2607 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2608 ret = -EFAULT;
2609 goto out;
2610 }
2611
2612 namelen = strlen(vol_args->name);
2613 if (namelen > BTRFS_VOL_NAME_MAX) {
2614 ret = -EINVAL;
2615 goto out;
2616 }
2617 if (strchr(vol_args->name, '/')) {
2618 ret = -EINVAL;
2619 goto out;
2620 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002621
2622 path = btrfs_alloc_path();
Chris Mason4aec2b52007-12-18 16:25:45 -05002623 if (!path) {
2624 ret = -ENOMEM;
2625 goto out;
2626 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002627
2628 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
2629 mutex_lock(&root->fs_info->fs_mutex);
2630 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
2631 path, root_dirid,
Chris Mason4aec2b52007-12-18 16:25:45 -05002632 vol_args->name, namelen, 0);
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002633 mutex_unlock(&root->fs_info->fs_mutex);
2634 btrfs_free_path(path);
Chris Mason4aec2b52007-12-18 16:25:45 -05002635
2636 if (di && !IS_ERR(di)) {
2637 ret = -EEXIST;
2638 goto out;
2639 }
2640
2641 if (IS_ERR(di)) {
2642 ret = PTR_ERR(di);
2643 goto out;
2644 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002645
2646 if (root == root->fs_info->tree_root)
Chris Mason4aec2b52007-12-18 16:25:45 -05002647 ret = create_subvol(root, vol_args->name, namelen);
2648 else
2649 ret = create_snapshot(root, vol_args->name, namelen);
2650out:
2651 kfree(vol_args);
2652 return ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002653}
2654
2655static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04002656{
Chris Mason6da6aba2007-12-18 16:15:09 -05002657 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002658 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002659
2660 switch (inode->i_mode & S_IFMT) {
2661 case S_IFDIR:
2662 mutex_lock(&root->fs_info->fs_mutex);
2663 btrfs_defrag_root(root, 0);
2664 btrfs_defrag_root(root->fs_info->extent_root, 0);
2665 mutex_unlock(&root->fs_info->fs_mutex);
2666 break;
2667 case S_IFREG:
2668 btrfs_defrag_file(file);
2669 break;
2670 }
2671
2672 return 0;
2673}
2674
2675long btrfs_ioctl(struct file *file, unsigned int
2676 cmd, unsigned long arg)
2677{
Chris Mason6da6aba2007-12-18 16:15:09 -05002678 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002679
2680 switch (cmd) {
2681 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002682 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04002683 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002684 return btrfs_ioctl_defrag(file);
Chris Masonedbd8d42007-12-21 16:27:24 -05002685 case BTRFS_IOC_RESIZE:
2686 return btrfs_ioctl_resize(root, (void __user *)arg);
Chris Mason39279cc2007-06-12 06:35:45 -04002687 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002688
2689 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04002690}
2691
Chris Mason39279cc2007-06-12 06:35:45 -04002692/*
2693 * Called inside transaction, so use GFP_NOFS
2694 */
2695struct inode *btrfs_alloc_inode(struct super_block *sb)
2696{
2697 struct btrfs_inode *ei;
2698
2699 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2700 if (!ei)
2701 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002702 ei->last_trans = 0;
Chris Masondc17ff82008-01-08 15:46:30 -05002703 ei->ordered_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002704 return &ei->vfs_inode;
2705}
2706
2707void btrfs_destroy_inode(struct inode *inode)
2708{
2709 WARN_ON(!list_empty(&inode->i_dentry));
2710 WARN_ON(inode->i_data.nrpages);
2711
Chris Mason8c416c92008-01-14 15:10:26 -05002712 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04002713 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2714}
2715
Chris Mason44ec0b72007-10-29 10:55:05 -04002716#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2717static void init_once(struct kmem_cache * cachep, void *foo)
2718#else
Chris Mason39279cc2007-06-12 06:35:45 -04002719static void init_once(void * foo, struct kmem_cache * cachep,
2720 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04002721#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002722{
2723 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2724
2725 inode_init_once(&ei->vfs_inode);
2726}
2727
2728void btrfs_destroy_cachep(void)
2729{
2730 if (btrfs_inode_cachep)
2731 kmem_cache_destroy(btrfs_inode_cachep);
2732 if (btrfs_trans_handle_cachep)
2733 kmem_cache_destroy(btrfs_trans_handle_cachep);
2734 if (btrfs_transaction_cachep)
2735 kmem_cache_destroy(btrfs_transaction_cachep);
2736 if (btrfs_bit_radix_cachep)
2737 kmem_cache_destroy(btrfs_bit_radix_cachep);
2738 if (btrfs_path_cachep)
2739 kmem_cache_destroy(btrfs_path_cachep);
2740}
2741
Chris Mason86479a02007-09-10 19:58:16 -04002742struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04002743 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04002744#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2745 void (*ctor)(struct kmem_cache *, void *)
2746#else
Chris Mason92fee662007-07-25 12:31:35 -04002747 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04002748 unsigned long)
2749#endif
2750 )
Chris Mason92fee662007-07-25 12:31:35 -04002751{
2752 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2753 SLAB_MEM_SPREAD | extra_flags), ctor
2754#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2755 ,NULL
2756#endif
2757 );
2758}
2759
Chris Mason39279cc2007-06-12 06:35:45 -04002760int btrfs_init_cachep(void)
2761{
Chris Mason86479a02007-09-10 19:58:16 -04002762 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04002763 sizeof(struct btrfs_inode),
2764 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04002765 if (!btrfs_inode_cachep)
2766 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002767 btrfs_trans_handle_cachep =
2768 btrfs_cache_create("btrfs_trans_handle_cache",
2769 sizeof(struct btrfs_trans_handle),
2770 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002771 if (!btrfs_trans_handle_cachep)
2772 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002773 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04002774 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04002775 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002776 if (!btrfs_transaction_cachep)
2777 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002778 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04002779 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04002780 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002781 if (!btrfs_path_cachep)
2782 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002783 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04002784 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002785 if (!btrfs_bit_radix_cachep)
2786 goto fail;
2787 return 0;
2788fail:
2789 btrfs_destroy_cachep();
2790 return -ENOMEM;
2791}
2792
2793static int btrfs_getattr(struct vfsmount *mnt,
2794 struct dentry *dentry, struct kstat *stat)
2795{
2796 struct inode *inode = dentry->d_inode;
2797 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05002798 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason39279cc2007-06-12 06:35:45 -04002799 return 0;
2800}
2801
2802static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
2803 struct inode * new_dir,struct dentry *new_dentry)
2804{
2805 struct btrfs_trans_handle *trans;
2806 struct btrfs_root *root = BTRFS_I(old_dir)->root;
2807 struct inode *new_inode = new_dentry->d_inode;
2808 struct inode *old_inode = old_dentry->d_inode;
2809 struct timespec ctime = CURRENT_TIME;
2810 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002811 int ret;
2812
2813 if (S_ISDIR(old_inode->i_mode) && new_inode &&
2814 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
2815 return -ENOTEMPTY;
2816 }
Chris Mason5f39d392007-10-15 16:14:19 -04002817
Chris Mason39279cc2007-06-12 06:35:45 -04002818 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002819 ret = btrfs_check_free_space(root, 1, 0);
2820 if (ret)
2821 goto out_unlock;
2822
Chris Mason39279cc2007-06-12 06:35:45 -04002823 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002824
Chris Mason39279cc2007-06-12 06:35:45 -04002825 btrfs_set_trans_block_group(trans, new_dir);
2826 path = btrfs_alloc_path();
2827 if (!path) {
2828 ret = -ENOMEM;
2829 goto out_fail;
2830 }
2831
2832 old_dentry->d_inode->i_nlink++;
2833 old_dir->i_ctime = old_dir->i_mtime = ctime;
2834 new_dir->i_ctime = new_dir->i_mtime = ctime;
2835 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04002836
Chris Mason39279cc2007-06-12 06:35:45 -04002837 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
2838 if (ret)
2839 goto out_fail;
2840
2841 if (new_inode) {
2842 new_inode->i_ctime = CURRENT_TIME;
2843 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
2844 if (ret)
2845 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002846 }
Chris Mason9c583092008-01-29 15:15:18 -05002847 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04002848 if (ret)
2849 goto out_fail;
2850
2851out_fail:
2852 btrfs_free_path(path);
2853 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002854out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002855 mutex_unlock(&root->fs_info->fs_mutex);
2856 return ret;
2857}
2858
2859static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
2860 const char *symname)
2861{
2862 struct btrfs_trans_handle *trans;
2863 struct btrfs_root *root = BTRFS_I(dir)->root;
2864 struct btrfs_path *path;
2865 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05002866 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002867 int err;
2868 int drop_inode = 0;
2869 u64 objectid;
2870 int name_len;
2871 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04002872 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04002873 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04002874 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05002875 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002876
2877 name_len = strlen(symname) + 1;
2878 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
2879 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05002880
Chris Mason39279cc2007-06-12 06:35:45 -04002881 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002882 err = btrfs_check_free_space(root, 1, 0);
2883 if (err)
2884 goto out_fail;
2885
Chris Mason39279cc2007-06-12 06:35:45 -04002886 trans = btrfs_start_transaction(root, 1);
2887 btrfs_set_trans_block_group(trans, dir);
2888
2889 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2890 if (err) {
2891 err = -ENOSPC;
2892 goto out_unlock;
2893 }
2894
Chris Mason9c583092008-01-29 15:15:18 -05002895 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2896 dentry->d_name.len,
2897 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002898 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
2899 err = PTR_ERR(inode);
2900 if (IS_ERR(inode))
2901 goto out_unlock;
2902
2903 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05002904 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002905 if (err)
2906 drop_inode = 1;
2907 else {
2908 inode->i_mapping->a_ops = &btrfs_aops;
2909 inode->i_fop = &btrfs_file_operations;
2910 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05002911 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
2912 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04002913 inode->i_mapping, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002914 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002915 }
2916 dir->i_sb->s_dirt = 1;
2917 btrfs_update_inode_block_group(trans, inode);
2918 btrfs_update_inode_block_group(trans, dir);
2919 if (drop_inode)
2920 goto out_unlock;
2921
2922 path = btrfs_alloc_path();
2923 BUG_ON(!path);
2924 key.objectid = inode->i_ino;
2925 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002926 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
2927 datasize = btrfs_file_extent_calc_inline_size(name_len);
2928 err = btrfs_insert_empty_item(trans, root, path, &key,
2929 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04002930 if (err) {
2931 drop_inode = 1;
2932 goto out_unlock;
2933 }
Chris Mason5f39d392007-10-15 16:14:19 -04002934 leaf = path->nodes[0];
2935 ei = btrfs_item_ptr(leaf, path->slots[0],
2936 struct btrfs_file_extent_item);
2937 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
2938 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04002939 BTRFS_FILE_EXTENT_INLINE);
2940 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04002941 write_extent_buffer(leaf, symname, ptr, name_len);
2942 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002943 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04002944
Chris Mason39279cc2007-06-12 06:35:45 -04002945 inode->i_op = &btrfs_symlink_inode_operations;
2946 inode->i_mapping->a_ops = &btrfs_symlink_aops;
2947 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04002948 err = btrfs_update_inode(trans, root, inode);
2949 if (err)
2950 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002951
2952out_unlock:
Chris Masond3c2fdc2007-09-17 10:58:06 -04002953 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002954 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002955out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002956 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04002957 if (drop_inode) {
2958 inode_dec_link_count(inode);
2959 iput(inode);
2960 }
Chris Masond3c2fdc2007-09-17 10:58:06 -04002961 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002962 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002963 return err;
2964}
Yanfdebe2b2008-01-14 13:26:08 -05002965static int btrfs_permission(struct inode *inode, int mask,
2966 struct nameidata *nd)
2967{
2968 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
2969 return -EACCES;
2970 return generic_permission(inode, mask, NULL);
2971}
Chris Mason39279cc2007-06-12 06:35:45 -04002972
2973static struct inode_operations btrfs_dir_inode_operations = {
2974 .lookup = btrfs_lookup,
2975 .create = btrfs_create,
2976 .unlink = btrfs_unlink,
2977 .link = btrfs_link,
2978 .mkdir = btrfs_mkdir,
2979 .rmdir = btrfs_rmdir,
2980 .rename = btrfs_rename,
2981 .symlink = btrfs_symlink,
2982 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04002983 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05002984 .setxattr = generic_setxattr,
2985 .getxattr = generic_getxattr,
2986 .listxattr = btrfs_listxattr,
2987 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05002988 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04002989};
Chris Mason39279cc2007-06-12 06:35:45 -04002990static struct inode_operations btrfs_dir_ro_inode_operations = {
2991 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05002992 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04002993};
Chris Mason39279cc2007-06-12 06:35:45 -04002994static struct file_operations btrfs_dir_file_operations = {
2995 .llseek = generic_file_llseek,
2996 .read = generic_read_dir,
2997 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04002998 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04002999#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003000 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003001#endif
3002};
3003
Chris Masond1310b22008-01-24 16:13:08 -05003004static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003005 .fill_delalloc = run_delalloc_range,
3006 .writepage_io_hook = btrfs_writepage_io_hook,
3007 .readpage_io_hook = btrfs_readpage_io_hook,
3008 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
3009};
3010
Chris Mason39279cc2007-06-12 06:35:45 -04003011static struct address_space_operations btrfs_aops = {
3012 .readpage = btrfs_readpage,
3013 .writepage = btrfs_writepage,
Chris Masonb293f022007-11-01 19:45:34 -04003014 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003015 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003016 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003017 .bmap = btrfs_bmap,
Chris Masona52d9a82007-08-27 16:49:44 -04003018 .invalidatepage = btrfs_invalidatepage,
3019 .releasepage = btrfs_releasepage,
3020 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04003021};
3022
3023static struct address_space_operations btrfs_symlink_aops = {
3024 .readpage = btrfs_readpage,
3025 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003026 .invalidatepage = btrfs_invalidatepage,
3027 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003028};
3029
3030static struct inode_operations btrfs_file_inode_operations = {
3031 .truncate = btrfs_truncate,
3032 .getattr = btrfs_getattr,
3033 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003034 .setxattr = generic_setxattr,
3035 .getxattr = generic_getxattr,
3036 .listxattr = btrfs_listxattr,
3037 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003038 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003039};
Josef Bacik618e21d2007-07-11 10:18:17 -04003040static struct inode_operations btrfs_special_inode_operations = {
3041 .getattr = btrfs_getattr,
3042 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003043 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003044};
Chris Mason39279cc2007-06-12 06:35:45 -04003045static struct inode_operations btrfs_symlink_inode_operations = {
3046 .readlink = generic_readlink,
3047 .follow_link = page_follow_link_light,
3048 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003049 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003050};