blob: d6d32465bc9a4b137eb492906c698934cf2f0931 [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>
Chris Mason39279cc2007-06-12 06:35:45 -040035#include "ctree.h"
36#include "disk-io.h"
37#include "transaction.h"
38#include "btrfs_inode.h"
39#include "ioctl.h"
40#include "print-tree.h"
41
42struct btrfs_iget_args {
43 u64 ino;
44 struct btrfs_root *root;
45};
46
47static struct inode_operations btrfs_dir_inode_operations;
48static struct inode_operations btrfs_symlink_inode_operations;
49static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040050static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040051static struct inode_operations btrfs_file_inode_operations;
52static struct address_space_operations btrfs_aops;
53static struct address_space_operations btrfs_symlink_aops;
54static struct file_operations btrfs_dir_file_operations;
Chris Mason07157aa2007-08-30 08:50:51 -040055static struct extent_map_ops btrfs_extent_map_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040056
57static struct kmem_cache *btrfs_inode_cachep;
58struct kmem_cache *btrfs_trans_handle_cachep;
59struct kmem_cache *btrfs_transaction_cachep;
60struct kmem_cache *btrfs_bit_radix_cachep;
61struct kmem_cache *btrfs_path_cachep;
62
63#define S_SHIFT 12
64static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
65 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
66 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
67 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
68 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
69 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
70 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
71 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
72};
73
Chris Masonb888db2b2007-08-27 16:49:44 -040074static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
75{
76 struct btrfs_root *root = BTRFS_I(inode)->root;
77 struct btrfs_trans_handle *trans;
78 struct btrfs_key ins;
79 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -040080 u64 num_bytes;
Chris Masonb888db2b2007-08-27 16:49:44 -040081 int ret;
Chris Masondb945352007-10-15 16:15:53 -040082 u64 blocksize = root->sectorsize;
Chris Masonb888db2b2007-08-27 16:49:44 -040083
84 mutex_lock(&root->fs_info->fs_mutex);
85 trans = btrfs_start_transaction(root, 1);
86 btrfs_set_trans_block_group(trans, inode);
87 BUG_ON(!trans);
Chris Masondb945352007-10-15 16:15:53 -040088 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonb888db2b2007-08-27 16:49:44 -040089 ret = btrfs_drop_extents(trans, root, inode,
Chris Mason3326d1b2007-10-15 16:18:25 -040090 start, start + num_bytes, start, &alloc_hint);
Chris Masondb945352007-10-15 16:15:53 -040091
Chris Mason179e29e2007-11-01 11:28:41 -040092 if (alloc_hint == EXTENT_MAP_INLINE)
93 goto out;
94
Chris Masondb945352007-10-15 16:15:53 -040095 ret = btrfs_alloc_extent(trans, root, inode->i_ino, num_bytes, 0,
Chris Masonb888db2b2007-08-27 16:49:44 -040096 alloc_hint, (u64)-1, &ins, 1);
97 if (ret) {
98 WARN_ON(1);
99 goto out;
100 }
101 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
102 start, ins.objectid, ins.offset,
103 ins.offset);
104out:
105 btrfs_end_transaction(trans, root);
106 mutex_unlock(&root->fs_info->fs_mutex);
107 return ret;
108}
109
Chris Mason07157aa2007-08-30 08:50:51 -0400110int btrfs_writepage_io_hook(struct page *page, u64 start, u64 end)
111{
112 struct inode *inode = page->mapping->host;
113 struct btrfs_root *root = BTRFS_I(inode)->root;
114 struct btrfs_trans_handle *trans;
115 char *kaddr;
116 int ret;
Chris Mason35ebb932007-10-30 16:56:53 -0400117 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason07157aa2007-08-30 08:50:51 -0400118 size_t offset = start - page_start;
119
120 mutex_lock(&root->fs_info->fs_mutex);
121 trans = btrfs_start_transaction(root, 1);
122 btrfs_set_trans_block_group(trans, inode);
123 kaddr = kmap(page);
Chris Masonf578d4b2007-10-25 15:42:56 -0400124 btrfs_csum_file_block(trans, root, inode, inode->i_ino,
Chris Mason07157aa2007-08-30 08:50:51 -0400125 start, kaddr + offset, end - start + 1);
126 kunmap(page);
127 ret = btrfs_end_transaction(trans, root);
128 BUG_ON(ret);
129 mutex_unlock(&root->fs_info->fs_mutex);
130 return ret;
131}
132
133int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
134{
135 int ret = 0;
136 struct inode *inode = page->mapping->host;
137 struct btrfs_root *root = BTRFS_I(inode)->root;
138 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
139 struct btrfs_csum_item *item;
140 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400141 u32 csum;
Chris Mason07157aa2007-08-30 08:50:51 -0400142
143 mutex_lock(&root->fs_info->fs_mutex);
144 path = btrfs_alloc_path();
145 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
146 if (IS_ERR(item)) {
147 ret = PTR_ERR(item);
148 /* a csum that isn't present is a preallocated region. */
149 if (ret == -ENOENT || ret == -EFBIG)
150 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400151 csum = 0;
Chris Mason07157aa2007-08-30 08:50:51 -0400152 goto out;
153 }
Chris Masonff79f812007-10-15 16:22:25 -0400154 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
155 BTRFS_CRC32_SIZE);
156 set_state_private(em_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400157out:
158 if (path)
159 btrfs_free_path(path);
160 mutex_unlock(&root->fs_info->fs_mutex);
161 return ret;
162}
163
164int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end)
165{
Chris Mason35ebb932007-10-30 16:56:53 -0400166 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400167 struct inode *inode = page->mapping->host;
Chris Mason07157aa2007-08-30 08:50:51 -0400168 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
169 char *kaddr;
170 u64 private;
171 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400172 struct btrfs_root *root = BTRFS_I(inode)->root;
173 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400174 unsigned long flags;
Chris Mason07157aa2007-08-30 08:50:51 -0400175
176 ret = get_state_private(em_tree, start, &private);
Jens Axboebbf0d002007-10-19 09:23:07 -0400177 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400178 kaddr = kmap_atomic(page, KM_IRQ0);
179 if (ret) {
180 goto zeroit;
181 }
Chris Masonff79f812007-10-15 16:22:25 -0400182 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
183 btrfs_csum_final(csum, (char *)&csum);
184 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400185 goto zeroit;
186 }
187 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400188 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400189 return 0;
190
191zeroit:
192 printk("btrfs csum failed ino %lu off %llu\n",
193 page->mapping->host->i_ino, (unsigned long long)start);
Chris Masondb945352007-10-15 16:15:53 -0400194 memset(kaddr + offset, 1, end - start + 1);
195 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400196 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400197 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400198 return 0;
199}
Chris Masonb888db2b2007-08-27 16:49:44 -0400200
Chris Mason39279cc2007-06-12 06:35:45 -0400201void btrfs_read_locked_inode(struct inode *inode)
202{
203 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400204 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400205 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -0400206 struct btrfs_inode_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400207 struct btrfs_root *root = BTRFS_I(inode)->root;
208 struct btrfs_key location;
209 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400210 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400211 int ret;
212
213 path = btrfs_alloc_path();
214 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400215 mutex_lock(&root->fs_info->fs_mutex);
216
217 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
218 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400219 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400220 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400221
Chris Mason5f39d392007-10-15 16:14:19 -0400222 leaf = path->nodes[0];
223 inode_item = btrfs_item_ptr(leaf, path->slots[0],
224 struct btrfs_inode_item);
225
226 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
227 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
228 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
229 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
230 inode->i_size = btrfs_inode_size(leaf, inode_item);
231
232 tspec = btrfs_inode_atime(inode_item);
233 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
234 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
235
236 tspec = btrfs_inode_mtime(inode_item);
237 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
238 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
239
240 tspec = btrfs_inode_ctime(inode_item);
241 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
242 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
243
244 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
245 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400246 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400247 rdev = btrfs_inode_rdev(leaf, inode_item);
248
249 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400250 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
251 alloc_group_block);
252
253 btrfs_free_path(path);
254 inode_item = NULL;
255
256 mutex_unlock(&root->fs_info->fs_mutex);
257
258 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400259 case S_IFREG:
260 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason07157aa2007-08-30 08:50:51 -0400261 BTRFS_I(inode)->extent_tree.ops = &btrfs_extent_map_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400262 inode->i_fop = &btrfs_file_operations;
263 inode->i_op = &btrfs_file_inode_operations;
264 break;
265 case S_IFDIR:
266 inode->i_fop = &btrfs_dir_file_operations;
267 if (root == root->fs_info->tree_root)
268 inode->i_op = &btrfs_dir_ro_inode_operations;
269 else
270 inode->i_op = &btrfs_dir_inode_operations;
271 break;
272 case S_IFLNK:
273 inode->i_op = &btrfs_symlink_inode_operations;
274 inode->i_mapping->a_ops = &btrfs_symlink_aops;
275 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400276 default:
277 init_special_inode(inode, inode->i_mode, rdev);
278 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400279 }
280 return;
281
282make_bad:
283 btrfs_release_path(root, path);
284 btrfs_free_path(path);
285 mutex_unlock(&root->fs_info->fs_mutex);
286 make_bad_inode(inode);
287}
288
Chris Mason5f39d392007-10-15 16:14:19 -0400289static void fill_inode_item(struct extent_buffer *leaf,
290 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400291 struct inode *inode)
292{
Chris Mason5f39d392007-10-15 16:14:19 -0400293 btrfs_set_inode_uid(leaf, item, inode->i_uid);
294 btrfs_set_inode_gid(leaf, item, inode->i_gid);
295 btrfs_set_inode_size(leaf, item, inode->i_size);
296 btrfs_set_inode_mode(leaf, item, inode->i_mode);
297 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
298
299 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
300 inode->i_atime.tv_sec);
301 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
302 inode->i_atime.tv_nsec);
303
304 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
305 inode->i_mtime.tv_sec);
306 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
307 inode->i_mtime.tv_nsec);
308
309 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
310 inode->i_ctime.tv_sec);
311 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
312 inode->i_ctime.tv_nsec);
313
314 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
315 btrfs_set_inode_generation(leaf, item, inode->i_generation);
316 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
317 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400318 BTRFS_I(inode)->block_group->key.objectid);
319}
320
Chris Masona52d9a82007-08-27 16:49:44 -0400321int btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400322 struct btrfs_root *root,
323 struct inode *inode)
324{
325 struct btrfs_inode_item *inode_item;
326 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400327 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400328 int ret;
329
330 path = btrfs_alloc_path();
331 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400332 ret = btrfs_lookup_inode(trans, root, path,
333 &BTRFS_I(inode)->location, 1);
334 if (ret) {
335 if (ret > 0)
336 ret = -ENOENT;
337 goto failed;
338 }
339
Chris Mason5f39d392007-10-15 16:14:19 -0400340 leaf = path->nodes[0];
341 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400342 struct btrfs_inode_item);
343
Chris Mason5f39d392007-10-15 16:14:19 -0400344 fill_inode_item(leaf, inode_item, inode);
345 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400346 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400347 ret = 0;
348failed:
349 btrfs_release_path(root, path);
350 btrfs_free_path(path);
351 return ret;
352}
353
354
355static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
356 struct btrfs_root *root,
357 struct inode *dir,
358 struct dentry *dentry)
359{
360 struct btrfs_path *path;
361 const char *name = dentry->d_name.name;
362 int name_len = dentry->d_name.len;
363 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400364 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400365 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400366 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400367
368 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400369 if (!path) {
370 ret = -ENOMEM;
371 goto err;
372 }
373
Chris Mason39279cc2007-06-12 06:35:45 -0400374 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
375 name, name_len, -1);
376 if (IS_ERR(di)) {
377 ret = PTR_ERR(di);
378 goto err;
379 }
380 if (!di) {
381 ret = -ENOENT;
382 goto err;
383 }
Chris Mason5f39d392007-10-15 16:14:19 -0400384 leaf = path->nodes[0];
385 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400386 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400387 if (ret)
388 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400389 btrfs_release_path(root, path);
390
391 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400392 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400393 if (IS_ERR(di)) {
394 ret = PTR_ERR(di);
395 goto err;
396 }
397 if (!di) {
398 ret = -ENOENT;
399 goto err;
400 }
401 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason39279cc2007-06-12 06:35:45 -0400402
403 dentry->d_inode->i_ctime = dir->i_ctime;
404err:
405 btrfs_free_path(path);
406 if (!ret) {
407 dir->i_size -= name_len * 2;
Chris Mason79c44582007-06-25 10:09:33 -0400408 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400409 btrfs_update_inode(trans, root, dir);
410 drop_nlink(dentry->d_inode);
Chris Mason54aa1f42007-06-22 14:16:25 -0400411 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400412 dir->i_sb->s_dirt = 1;
413 }
414 return ret;
415}
416
417static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
418{
419 struct btrfs_root *root;
420 struct btrfs_trans_handle *trans;
421 int ret;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400422 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -0400423
424 root = BTRFS_I(dir)->root;
425 mutex_lock(&root->fs_info->fs_mutex);
426 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400427
Chris Mason39279cc2007-06-12 06:35:45 -0400428 btrfs_set_trans_block_group(trans, dir);
429 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400430 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400431
Chris Mason39279cc2007-06-12 06:35:45 -0400432 btrfs_end_transaction(trans, root);
433 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400434 btrfs_btree_balance_dirty(root, nr);
Chris Mason5f39d392007-10-15 16:14:19 -0400435
Chris Mason39279cc2007-06-12 06:35:45 -0400436 return ret;
437}
438
439static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
440{
441 struct inode *inode = dentry->d_inode;
442 int err;
443 int ret;
444 struct btrfs_root *root = BTRFS_I(dir)->root;
445 struct btrfs_path *path;
446 struct btrfs_key key;
447 struct btrfs_trans_handle *trans;
448 struct btrfs_key found_key;
449 int found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400450 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400451 char *goodnames = "..";
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400452 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -0400453
Yan134d4512007-10-25 15:49:25 -0400454 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
455 return -ENOTEMPTY;
456
Chris Mason39279cc2007-06-12 06:35:45 -0400457 path = btrfs_alloc_path();
458 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400459 mutex_lock(&root->fs_info->fs_mutex);
460 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400461
Chris Mason39279cc2007-06-12 06:35:45 -0400462 btrfs_set_trans_block_group(trans, dir);
463 key.objectid = inode->i_ino;
464 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400465 key.type = (u8)-1;
Chris Mason39279cc2007-06-12 06:35:45 -0400466 while(1) {
467 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
468 if (ret < 0) {
469 err = ret;
470 goto out;
471 }
472 BUG_ON(ret == 0);
473 if (path->slots[0] == 0) {
474 err = -ENOENT;
475 goto out;
476 }
477 path->slots[0]--;
Chris Mason5f39d392007-10-15 16:14:19 -0400478 leaf = path->nodes[0];
479 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400480 found_type = btrfs_key_type(&found_key);
481 if (found_key.objectid != inode->i_ino) {
482 err = -ENOENT;
483 goto out;
484 }
485 if ((found_type != BTRFS_DIR_ITEM_KEY &&
486 found_type != BTRFS_DIR_INDEX_KEY) ||
487 (!btrfs_match_dir_item_name(root, path, goodnames, 2) &&
488 !btrfs_match_dir_item_name(root, path, goodnames, 1))) {
489 err = -ENOTEMPTY;
490 goto out;
491 }
492 ret = btrfs_del_item(trans, root, path);
493 BUG_ON(ret);
494
495 if (found_type == BTRFS_DIR_ITEM_KEY && found_key.offset == 1)
496 break;
497 btrfs_release_path(root, path);
498 }
499 ret = 0;
500 btrfs_release_path(root, path);
501
502 /* now the directory is empty */
503 err = btrfs_unlink_trans(trans, root, dir, dentry);
504 if (!err) {
505 inode->i_size = 0;
506 }
507out:
508 btrfs_release_path(root, path);
509 btrfs_free_path(path);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400510 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400511 ret = btrfs_end_transaction(trans, root);
Yan134d4512007-10-25 15:49:25 -0400512 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400513 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -0400514 if (ret && !err)
515 err = ret;
516 return err;
517}
518
519static int btrfs_free_inode(struct btrfs_trans_handle *trans,
520 struct btrfs_root *root,
521 struct inode *inode)
522{
523 struct btrfs_path *path;
524 int ret;
525
526 clear_inode(inode);
527
528 path = btrfs_alloc_path();
529 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400530 ret = btrfs_lookup_inode(trans, root, path,
531 &BTRFS_I(inode)->location, -1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400532 if (ret > 0)
533 ret = -ENOENT;
534 if (!ret)
535 ret = btrfs_del_item(trans, root, path);
Chris Mason39279cc2007-06-12 06:35:45 -0400536 btrfs_free_path(path);
537 return ret;
538}
539
540/*
Chris Mason39279cc2007-06-12 06:35:45 -0400541 * this can truncate away extent items, csum items and directory items.
542 * It starts at a high offset and removes keys until it can't find
543 * any higher than i_size.
544 *
545 * csum items that cross the new i_size are truncated to the new size
546 * as well.
547 */
548static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
549 struct btrfs_root *root,
550 struct inode *inode)
551{
552 int ret;
553 struct btrfs_path *path;
554 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400555 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400556 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400557 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400558 struct btrfs_file_extent_item *fi;
559 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400560 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400561 u64 item_end = 0;
562 int found_extent;
563 int del_item;
Chris Mason179e29e2007-11-01 11:28:41 -0400564 int extent_type = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400565
Chris Masona52d9a82007-08-27 16:49:44 -0400566 btrfs_drop_extent_cache(inode, inode->i_size, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400567 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400568 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400569 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400570
Chris Mason39279cc2007-06-12 06:35:45 -0400571 /* FIXME, add redo link to tree so we don't leak on crash */
572 key.objectid = inode->i_ino;
573 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400574 key.type = (u8)-1;
575
Chris Mason39279cc2007-06-12 06:35:45 -0400576 while(1) {
577 btrfs_init_path(path);
578 fi = NULL;
579 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
580 if (ret < 0) {
581 goto error;
582 }
583 if (ret > 0) {
584 BUG_ON(path->slots[0] == 0);
585 path->slots[0]--;
586 }
Chris Mason5f39d392007-10-15 16:14:19 -0400587 leaf = path->nodes[0];
588 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
589 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400590
Chris Mason5f39d392007-10-15 16:14:19 -0400591 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400592 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400593
Chris Mason39279cc2007-06-12 06:35:45 -0400594 if (found_type != BTRFS_CSUM_ITEM_KEY &&
595 found_type != BTRFS_DIR_ITEM_KEY &&
596 found_type != BTRFS_DIR_INDEX_KEY &&
597 found_type != BTRFS_EXTENT_DATA_KEY)
598 break;
599
Chris Mason5f39d392007-10-15 16:14:19 -0400600 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400601 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400602 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400603 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400604 extent_type = btrfs_file_extent_type(leaf, fi);
605 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400606 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400607 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400608 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
609 struct btrfs_item *item = btrfs_item_nr(leaf,
610 path->slots[0]);
611 item_end += btrfs_file_extent_inline_len(leaf,
612 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400613 }
Yan008630c2007-11-07 13:31:09 -0500614 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400615 }
616 if (found_type == BTRFS_CSUM_ITEM_KEY) {
617 ret = btrfs_csum_truncate(trans, root, path,
618 inode->i_size);
619 BUG_ON(ret);
620 }
Yan008630c2007-11-07 13:31:09 -0500621 if (item_end < inode->i_size) {
Chris Masonb888db2b2007-08-27 16:49:44 -0400622 if (found_type == BTRFS_DIR_ITEM_KEY) {
623 found_type = BTRFS_INODE_ITEM_KEY;
624 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
625 found_type = BTRFS_CSUM_ITEM_KEY;
626 } else if (found_type) {
627 found_type--;
628 } else {
629 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400630 }
Yana61721d2007-09-17 11:08:38 -0400631 btrfs_set_key_type(&key, found_type);
Yan65555a02007-10-25 15:42:57 -0400632 btrfs_release_path(root, path);
Chris Masonb888db2b2007-08-27 16:49:44 -0400633 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400634 }
Chris Mason5f39d392007-10-15 16:14:19 -0400635 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -0400636 del_item = 1;
637 else
638 del_item = 0;
639 found_extent = 0;
640
641 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -0400642 if (found_type != BTRFS_EXTENT_DATA_KEY)
643 goto delete;
644
645 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -0400646 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -0400647 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400648 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -0400649 u64 orig_num_bytes =
650 btrfs_file_extent_num_bytes(leaf, fi);
651 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -0400652 found_key.offset + root->sectorsize - 1;
Chris Masondb945352007-10-15 16:15:53 -0400653 btrfs_set_file_extent_num_bytes(leaf, fi,
654 extent_num_bytes);
655 num_dec = (orig_num_bytes -
656 extent_num_bytes) >> 9;
Yanbab9fb02007-09-17 11:13:11 -0400657 if (extent_start != 0) {
658 inode->i_blocks -= num_dec;
659 }
Chris Mason5f39d392007-10-15 16:14:19 -0400660 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400661 } else {
Chris Masondb945352007-10-15 16:15:53 -0400662 extent_num_bytes =
663 btrfs_file_extent_disk_num_bytes(leaf,
664 fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400665 /* FIXME blocksize != 4096 */
Chris Masondb945352007-10-15 16:15:53 -0400666 num_dec = btrfs_file_extent_num_bytes(leaf,
667 fi) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400668 if (extent_start != 0) {
669 found_extent = 1;
670 inode->i_blocks -= num_dec;
671 }
672 }
Chris Mason179e29e2007-11-01 11:28:41 -0400673 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE &&
674 !del_item) {
675 u32 newsize = inode->i_size - found_key.offset;
676 newsize = btrfs_file_extent_calc_inline_size(newsize);
677 ret = btrfs_truncate_item(trans, root, path,
678 newsize, 1);
679 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -0400680 }
Chris Mason179e29e2007-11-01 11:28:41 -0400681delete:
Chris Mason39279cc2007-06-12 06:35:45 -0400682 if (del_item) {
683 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400684 if (ret)
685 goto error;
Chris Mason39279cc2007-06-12 06:35:45 -0400686 } else {
687 break;
688 }
689 btrfs_release_path(root, path);
690 if (found_extent) {
691 ret = btrfs_free_extent(trans, root, extent_start,
Chris Masondb945352007-10-15 16:15:53 -0400692 extent_num_bytes, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400693 BUG_ON(ret);
694 }
695 }
696 ret = 0;
697error:
698 btrfs_release_path(root, path);
699 btrfs_free_path(path);
700 inode->i_sb->s_dirt = 1;
701 return ret;
702}
703
Chris Masonb888db2b2007-08-27 16:49:44 -0400704static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -0400705 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -0400706{
Chris Mason39279cc2007-06-12 06:35:45 -0400707 char *kaddr;
708 int ret = 0;
Chris Masonb888db2b2007-08-27 16:49:44 -0400709 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason35ebb932007-10-30 16:56:53 -0400710 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db2b2007-08-27 16:49:44 -0400711 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400712
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400713 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400714
Chris Masonb888db2b2007-08-27 16:49:44 -0400715 lock_extent(em_tree, page_start, page_end, GFP_NOFS);
716 set_extent_delalloc(&BTRFS_I(inode)->extent_tree, page_start,
717 page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400718 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db2b2007-08-27 16:49:44 -0400719 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400720 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
721 flush_dcache_page(page);
Chris Masonb888db2b2007-08-27 16:49:44 -0400722 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400723 }
Chris Masonb888db2b2007-08-27 16:49:44 -0400724 set_page_dirty(page);
725 unlock_extent(em_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400726
Chris Masona52d9a82007-08-27 16:49:44 -0400727 return ret;
728}
729
730/*
731 * taken from block_truncate_page, but does cow as it zeros out
732 * any bytes left in the last page in the file.
733 */
734static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
735{
736 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -0400737 struct btrfs_root *root = BTRFS_I(inode)->root;
738 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -0400739 pgoff_t index = from >> PAGE_CACHE_SHIFT;
740 unsigned offset = from & (PAGE_CACHE_SIZE-1);
741 struct page *page;
742 int ret = 0;
743 u64 page_start;
744
745 if ((offset & (blocksize - 1)) == 0)
746 goto out;
747
Chris Masondb945352007-10-15 16:15:53 -0400748 down_read(&root->snap_sem);
Chris Masona52d9a82007-08-27 16:49:44 -0400749 ret = -ENOMEM;
750 page = grab_cache_page(mapping, index);
751 if (!page)
752 goto out;
753 if (!PageUptodate(page)) {
754 ret = btrfs_readpage(NULL, page);
755 lock_page(page);
756 if (!PageUptodate(page)) {
757 ret = -EIO;
758 goto out;
759 }
760 }
Chris Mason35ebb932007-10-30 16:56:53 -0400761 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -0400762
Chris Masonb888db2b2007-08-27 16:49:44 -0400763 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400764
Chris Mason39279cc2007-06-12 06:35:45 -0400765 unlock_page(page);
766 page_cache_release(page);
Chris Mason011410b2007-09-10 19:58:36 -0400767 up_read(&BTRFS_I(inode)->root->snap_sem);
Chris Mason39279cc2007-06-12 06:35:45 -0400768out:
769 return ret;
770}
771
772static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
773{
774 struct inode *inode = dentry->d_inode;
775 int err;
776
777 err = inode_change_ok(inode, attr);
778 if (err)
779 return err;
780
781 if (S_ISREG(inode->i_mode) &&
782 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
783 struct btrfs_trans_handle *trans;
784 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason2bf5a722007-08-30 11:54:02 -0400785 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
786
Chris Mason5f39d392007-10-15 16:14:19 -0400787 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400788 u64 pos = (inode->i_size + mask) & ~mask;
Chris Mason2bf5a722007-08-30 11:54:02 -0400789 u64 block_end = attr->ia_size | mask;
Chris Mason39279cc2007-06-12 06:35:45 -0400790 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -0400791 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400792
793 if (attr->ia_size <= pos)
794 goto out;
795
796 btrfs_truncate_page(inode->i_mapping, inode->i_size);
797
Chris Mason2bf5a722007-08-30 11:54:02 -0400798 lock_extent(em_tree, pos, block_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400799 hole_size = (attr->ia_size - pos + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -0400800
801 mutex_lock(&root->fs_info->fs_mutex);
802 trans = btrfs_start_transaction(root, 1);
803 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -0400804 err = btrfs_drop_extents(trans, root, inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400805 pos, pos + hole_size, pos,
806 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -0400807
Chris Mason179e29e2007-11-01 11:28:41 -0400808 if (alloc_hint != EXTENT_MAP_INLINE) {
809 err = btrfs_insert_file_extent(trans, root,
810 inode->i_ino,
811 pos, 0, 0, hole_size);
812 }
Chris Mason39279cc2007-06-12 06:35:45 -0400813 btrfs_end_transaction(trans, root);
814 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -0400815 unlock_extent(em_tree, pos, block_end, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -0400816 if (err)
817 return err;
Chris Mason39279cc2007-06-12 06:35:45 -0400818 }
819out:
820 err = inode_setattr(inode, attr);
821
822 return err;
823}
824void btrfs_delete_inode(struct inode *inode)
825{
826 struct btrfs_trans_handle *trans;
827 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400828 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -0400829 int ret;
830
831 truncate_inode_pages(&inode->i_data, 0);
832 if (is_bad_inode(inode)) {
833 goto no_delete;
834 }
Chris Mason5f39d392007-10-15 16:14:19 -0400835
Chris Mason39279cc2007-06-12 06:35:45 -0400836 inode->i_size = 0;
837 mutex_lock(&root->fs_info->fs_mutex);
838 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400839
Chris Mason39279cc2007-06-12 06:35:45 -0400840 btrfs_set_trans_block_group(trans, inode);
841 ret = btrfs_truncate_in_trans(trans, root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -0400842 if (ret)
843 goto no_delete_lock;
844 ret = btrfs_free_inode(trans, root, inode);
845 if (ret)
846 goto no_delete_lock;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400847 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400848
Chris Mason39279cc2007-06-12 06:35:45 -0400849 btrfs_end_transaction(trans, root);
850 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400851 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -0400852 return;
Chris Mason54aa1f42007-06-22 14:16:25 -0400853
854no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400855 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -0400856 btrfs_end_transaction(trans, root);
857 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400858 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -0400859no_delete:
860 clear_inode(inode);
861}
862
863/*
864 * this returns the key found in the dir entry in the location pointer.
865 * If no dir entries were found, location->objectid is 0.
866 */
867static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
868 struct btrfs_key *location)
869{
870 const char *name = dentry->d_name.name;
871 int namelen = dentry->d_name.len;
872 struct btrfs_dir_item *di;
873 struct btrfs_path *path;
874 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -0400875 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400876
877 path = btrfs_alloc_path();
878 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400879 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
880 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -0400881 if (IS_ERR(di))
882 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -0400883 if (!di || IS_ERR(di)) {
884 location->objectid = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400885 goto out;
886 }
Chris Mason5f39d392007-10-15 16:14:19 -0400887 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -0400888out:
889 btrfs_release_path(root, path);
890 btrfs_free_path(path);
891 return ret;
892}
893
894/*
895 * when we hit a tree root in a directory, the btrfs part of the inode
896 * needs to be changed to reflect the root directory of the tree root. This
897 * is kind of like crossing a mount point.
898 */
899static int fixup_tree_root_location(struct btrfs_root *root,
900 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -0400901 struct btrfs_root **sub_root,
902 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -0400903{
904 struct btrfs_path *path;
905 struct btrfs_root_item *ri;
906
907 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
908 return 0;
909 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
910 return 0;
911
912 path = btrfs_alloc_path();
913 BUG_ON(!path);
914 mutex_lock(&root->fs_info->fs_mutex);
915
Josef Bacik58176a92007-08-29 15:47:34 -0400916 *sub_root = btrfs_read_fs_root(root->fs_info, location,
917 dentry->d_name.name,
918 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -0400919 if (IS_ERR(*sub_root))
920 return PTR_ERR(*sub_root);
921
922 ri = &(*sub_root)->root_item;
923 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -0400924 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
925 location->offset = 0;
926
927 btrfs_free_path(path);
928 mutex_unlock(&root->fs_info->fs_mutex);
929 return 0;
930}
931
932static int btrfs_init_locked_inode(struct inode *inode, void *p)
933{
934 struct btrfs_iget_args *args = p;
935 inode->i_ino = args->ino;
936 BTRFS_I(inode)->root = args->root;
Chris Masonb888db2b2007-08-27 16:49:44 -0400937 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
938 inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400939 return 0;
940}
941
942static int btrfs_find_actor(struct inode *inode, void *opaque)
943{
944 struct btrfs_iget_args *args = opaque;
945 return (args->ino == inode->i_ino &&
946 args->root == BTRFS_I(inode)->root);
947}
948
949struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
950 struct btrfs_root *root)
951{
952 struct inode *inode;
953 struct btrfs_iget_args args;
954 args.ino = objectid;
955 args.root = root;
956
957 inode = iget5_locked(s, objectid, btrfs_find_actor,
958 btrfs_init_locked_inode,
959 (void *)&args);
960 return inode;
961}
962
963static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
964 struct nameidata *nd)
965{
966 struct inode * inode;
967 struct btrfs_inode *bi = BTRFS_I(dir);
968 struct btrfs_root *root = bi->root;
969 struct btrfs_root *sub_root = root;
970 struct btrfs_key location;
971 int ret;
972
973 if (dentry->d_name.len > BTRFS_NAME_LEN)
974 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -0400975
Chris Mason39279cc2007-06-12 06:35:45 -0400976 mutex_lock(&root->fs_info->fs_mutex);
977 ret = btrfs_inode_by_name(dir, dentry, &location);
978 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -0400979
Chris Mason39279cc2007-06-12 06:35:45 -0400980 if (ret < 0)
981 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400982
Chris Mason39279cc2007-06-12 06:35:45 -0400983 inode = NULL;
984 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -0400985 ret = fixup_tree_root_location(root, &location, &sub_root,
986 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -0400987 if (ret < 0)
988 return ERR_PTR(ret);
989 if (ret > 0)
990 return ERR_PTR(-ENOENT);
991 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
992 sub_root);
993 if (!inode)
994 return ERR_PTR(-EACCES);
995 if (inode->i_state & I_NEW) {
996 /* the inode and parent dir are two different roots */
997 if (sub_root != root) {
998 igrab(inode);
999 sub_root->inode = inode;
1000 }
1001 BTRFS_I(inode)->root = sub_root;
1002 memcpy(&BTRFS_I(inode)->location, &location,
1003 sizeof(location));
1004 btrfs_read_locked_inode(inode);
1005 unlock_new_inode(inode);
1006 }
1007 }
1008 return d_splice_alias(inode, dentry);
1009}
1010
Chris Mason39279cc2007-06-12 06:35:45 -04001011static unsigned char btrfs_filetype_table[] = {
1012 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1013};
1014
1015static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1016{
1017 struct inode *inode = filp->f_path.dentry->d_inode;
1018 struct btrfs_root *root = BTRFS_I(inode)->root;
1019 struct btrfs_item *item;
1020 struct btrfs_dir_item *di;
1021 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001022 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001023 struct btrfs_path *path;
1024 int ret;
1025 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001026 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001027 int slot;
1028 int advance;
1029 unsigned char d_type;
1030 int over = 0;
1031 u32 di_cur;
1032 u32 di_total;
1033 u32 di_len;
1034 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001035 char tmp_name[32];
1036 char *name_ptr;
1037 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001038
1039 /* FIXME, use a real flag for deciding about the key type */
1040 if (root->fs_info->tree_root == root)
1041 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001042
Chris Mason39279cc2007-06-12 06:35:45 -04001043 mutex_lock(&root->fs_info->fs_mutex);
1044 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001045 btrfs_set_key_type(&key, key_type);
1046 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001047
Chris Mason39279cc2007-06-12 06:35:45 -04001048 path = btrfs_alloc_path();
Chris Mason2cc58cf2007-08-27 16:49:44 -04001049 path->reada = 2;
Chris Mason39279cc2007-06-12 06:35:45 -04001050 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1051 if (ret < 0)
1052 goto err;
1053 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001054 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001055 leaf = path->nodes[0];
1056 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001057 slot = path->slots[0];
1058 if (advance || slot >= nritems) {
1059 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001060 ret = btrfs_next_leaf(root, path);
1061 if (ret)
1062 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001063 leaf = path->nodes[0];
1064 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001065 slot = path->slots[0];
1066 } else {
1067 slot++;
1068 path->slots[0]++;
1069 }
1070 }
1071 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001072 item = btrfs_item_nr(leaf, slot);
1073 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1074
1075 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001076 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001077 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001078 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001079 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001080 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001081
1082 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001083 advance = 1;
1084 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1085 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001086 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001087 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001088 struct btrfs_key location;
1089
1090 name_len = btrfs_dir_name_len(leaf, di);
1091 if (name_len < 32) {
1092 name_ptr = tmp_name;
1093 } else {
1094 name_ptr = kmalloc(name_len, GFP_NOFS);
1095 BUG_ON(!name_ptr);
1096 }
1097 read_extent_buffer(leaf, name_ptr,
1098 (unsigned long)(di + 1), name_len);
1099
1100 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1101 btrfs_dir_item_key_to_cpu(leaf, di, &location);
1102
1103 over = filldir(dirent, name_ptr, name_len,
1104 found_key.offset,
1105 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001106 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001107
1108 if (name_ptr != tmp_name)
1109 kfree(name_ptr);
1110
Chris Mason39279cc2007-06-12 06:35:45 -04001111 if (over)
1112 goto nopos;
Chris Mason5f39d392007-10-15 16:14:19 -04001113 di_len = btrfs_dir_name_len(leaf, di) + sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001114 di_cur += di_len;
1115 di = (struct btrfs_dir_item *)((char *)di + di_len);
1116 }
1117 }
1118 filp->f_pos++;
1119nopos:
1120 ret = 0;
1121err:
1122 btrfs_release_path(root, path);
1123 btrfs_free_path(path);
1124 mutex_unlock(&root->fs_info->fs_mutex);
1125 return ret;
1126}
1127
1128int btrfs_write_inode(struct inode *inode, int wait)
1129{
1130 struct btrfs_root *root = BTRFS_I(inode)->root;
1131 struct btrfs_trans_handle *trans;
1132 int ret = 0;
1133
1134 if (wait) {
1135 mutex_lock(&root->fs_info->fs_mutex);
1136 trans = btrfs_start_transaction(root, 1);
1137 btrfs_set_trans_block_group(trans, inode);
1138 ret = btrfs_commit_transaction(trans, root);
1139 mutex_unlock(&root->fs_info->fs_mutex);
1140 }
1141 return ret;
1142}
1143
1144/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001145 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001146 * inode changes. But, it is most likely to find the inode in cache.
1147 * FIXME, needs more benchmarking...there are no reasons other than performance
1148 * to keep or drop this code.
1149 */
1150void btrfs_dirty_inode(struct inode *inode)
1151{
1152 struct btrfs_root *root = BTRFS_I(inode)->root;
1153 struct btrfs_trans_handle *trans;
1154
1155 mutex_lock(&root->fs_info->fs_mutex);
1156 trans = btrfs_start_transaction(root, 1);
1157 btrfs_set_trans_block_group(trans, inode);
1158 btrfs_update_inode(trans, root, inode);
1159 btrfs_end_transaction(trans, root);
1160 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001161}
1162
1163static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1164 struct btrfs_root *root,
1165 u64 objectid,
1166 struct btrfs_block_group_cache *group,
1167 int mode)
1168{
1169 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001170 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04001171 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001172 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04001173 int ret;
1174 int owner;
1175
Chris Mason5f39d392007-10-15 16:14:19 -04001176 path = btrfs_alloc_path();
1177 BUG_ON(!path);
1178
Chris Mason39279cc2007-06-12 06:35:45 -04001179 inode = new_inode(root->fs_info->sb);
1180 if (!inode)
1181 return ERR_PTR(-ENOMEM);
1182
Chris Masonb888db2b2007-08-27 16:49:44 -04001183 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
1184 inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001185 BTRFS_I(inode)->root = root;
Chris Masonb888db2b2007-08-27 16:49:44 -04001186
Chris Mason39279cc2007-06-12 06:35:45 -04001187 if (mode & S_IFDIR)
1188 owner = 0;
1189 else
1190 owner = 1;
1191 group = btrfs_find_block_group(root, group, 0, 0, owner);
1192 BTRFS_I(inode)->block_group = group;
1193
Chris Mason5f39d392007-10-15 16:14:19 -04001194 ret = btrfs_insert_empty_inode(trans, root, path, objectid);
1195 if (ret)
1196 goto fail;
1197
Chris Mason39279cc2007-06-12 06:35:45 -04001198 inode->i_uid = current->fsuid;
1199 inode->i_gid = current->fsgid;
1200 inode->i_mode = mode;
1201 inode->i_ino = objectid;
1202 inode->i_blocks = 0;
1203 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001204 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1205 struct btrfs_inode_item);
1206 fill_inode_item(path->nodes[0], inode_item, inode);
1207 btrfs_mark_buffer_dirty(path->nodes[0]);
1208 btrfs_free_path(path);
1209
Chris Mason39279cc2007-06-12 06:35:45 -04001210 location = &BTRFS_I(inode)->location;
1211 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001212 location->offset = 0;
1213 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1214
Chris Mason39279cc2007-06-12 06:35:45 -04001215 insert_inode_hash(inode);
1216 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001217fail:
1218 btrfs_free_path(path);
1219 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001220}
1221
1222static inline u8 btrfs_inode_type(struct inode *inode)
1223{
1224 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1225}
1226
1227static int btrfs_add_link(struct btrfs_trans_handle *trans,
1228 struct dentry *dentry, struct inode *inode)
1229{
1230 int ret;
1231 struct btrfs_key key;
1232 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001233 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001234
Chris Mason39279cc2007-06-12 06:35:45 -04001235 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001236 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1237 key.offset = 0;
1238
1239 ret = btrfs_insert_dir_item(trans, root,
1240 dentry->d_name.name, dentry->d_name.len,
1241 dentry->d_parent->d_inode->i_ino,
1242 &key, btrfs_inode_type(inode));
1243 if (ret == 0) {
Chris Mason79c44582007-06-25 10:09:33 -04001244 parent_inode = dentry->d_parent->d_inode;
1245 parent_inode->i_size += dentry->d_name.len * 2;
1246 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001247 ret = btrfs_update_inode(trans, root,
1248 dentry->d_parent->d_inode);
1249 }
1250 return ret;
1251}
1252
1253static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
1254 struct dentry *dentry, struct inode *inode)
1255{
1256 int err = btrfs_add_link(trans, dentry, inode);
1257 if (!err) {
1258 d_instantiate(dentry, inode);
1259 return 0;
1260 }
1261 if (err > 0)
1262 err = -EEXIST;
1263 return err;
1264}
1265
Josef Bacik618e21d2007-07-11 10:18:17 -04001266static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1267 int mode, dev_t rdev)
1268{
1269 struct btrfs_trans_handle *trans;
1270 struct btrfs_root *root = BTRFS_I(dir)->root;
1271 struct inode *inode;
1272 int err;
1273 int drop_inode = 0;
1274 u64 objectid;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001275 unsigned long nr;
Josef Bacik618e21d2007-07-11 10:18:17 -04001276
1277 if (!new_valid_dev(rdev))
1278 return -EINVAL;
1279
1280 mutex_lock(&root->fs_info->fs_mutex);
1281 trans = btrfs_start_transaction(root, 1);
1282 btrfs_set_trans_block_group(trans, dir);
1283
1284 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1285 if (err) {
1286 err = -ENOSPC;
1287 goto out_unlock;
1288 }
1289
1290 inode = btrfs_new_inode(trans, root, objectid,
1291 BTRFS_I(dir)->block_group, mode);
1292 err = PTR_ERR(inode);
1293 if (IS_ERR(inode))
1294 goto out_unlock;
1295
1296 btrfs_set_trans_block_group(trans, inode);
1297 err = btrfs_add_nondir(trans, dentry, inode);
1298 if (err)
1299 drop_inode = 1;
1300 else {
1301 inode->i_op = &btrfs_special_inode_operations;
1302 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001303 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001304 }
1305 dir->i_sb->s_dirt = 1;
1306 btrfs_update_inode_block_group(trans, inode);
1307 btrfs_update_inode_block_group(trans, dir);
1308out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001309 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001310 btrfs_end_transaction(trans, root);
1311 mutex_unlock(&root->fs_info->fs_mutex);
1312
1313 if (drop_inode) {
1314 inode_dec_link_count(inode);
1315 iput(inode);
1316 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001317 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04001318 return err;
1319}
1320
Chris Mason39279cc2007-06-12 06:35:45 -04001321static int btrfs_create(struct inode *dir, struct dentry *dentry,
1322 int mode, struct nameidata *nd)
1323{
1324 struct btrfs_trans_handle *trans;
1325 struct btrfs_root *root = BTRFS_I(dir)->root;
1326 struct inode *inode;
1327 int err;
1328 int drop_inode = 0;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001329 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001330 u64 objectid;
1331
1332 mutex_lock(&root->fs_info->fs_mutex);
1333 trans = btrfs_start_transaction(root, 1);
1334 btrfs_set_trans_block_group(trans, dir);
1335
1336 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1337 if (err) {
1338 err = -ENOSPC;
1339 goto out_unlock;
1340 }
1341
1342 inode = btrfs_new_inode(trans, root, objectid,
1343 BTRFS_I(dir)->block_group, mode);
1344 err = PTR_ERR(inode);
1345 if (IS_ERR(inode))
1346 goto out_unlock;
1347
1348 btrfs_set_trans_block_group(trans, inode);
1349 err = btrfs_add_nondir(trans, dentry, inode);
1350 if (err)
1351 drop_inode = 1;
1352 else {
1353 inode->i_mapping->a_ops = &btrfs_aops;
1354 inode->i_fop = &btrfs_file_operations;
1355 inode->i_op = &btrfs_file_inode_operations;
Chris Masona52d9a82007-08-27 16:49:44 -04001356 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
1357 inode->i_mapping, GFP_NOFS);
Chris Mason07157aa2007-08-30 08:50:51 -04001358 BTRFS_I(inode)->extent_tree.ops = &btrfs_extent_map_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001359 }
1360 dir->i_sb->s_dirt = 1;
1361 btrfs_update_inode_block_group(trans, inode);
1362 btrfs_update_inode_block_group(trans, dir);
1363out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001364 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001365 btrfs_end_transaction(trans, root);
1366 mutex_unlock(&root->fs_info->fs_mutex);
1367
1368 if (drop_inode) {
1369 inode_dec_link_count(inode);
1370 iput(inode);
1371 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001372 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001373 return err;
1374}
1375
1376static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1377 struct dentry *dentry)
1378{
1379 struct btrfs_trans_handle *trans;
1380 struct btrfs_root *root = BTRFS_I(dir)->root;
1381 struct inode *inode = old_dentry->d_inode;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001382 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001383 int err;
1384 int drop_inode = 0;
1385
1386 if (inode->i_nlink == 0)
1387 return -ENOENT;
1388
1389 inc_nlink(inode);
1390 mutex_lock(&root->fs_info->fs_mutex);
1391 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001392
Chris Mason39279cc2007-06-12 06:35:45 -04001393 btrfs_set_trans_block_group(trans, dir);
1394 atomic_inc(&inode->i_count);
1395 err = btrfs_add_nondir(trans, dentry, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001396
Chris Mason39279cc2007-06-12 06:35:45 -04001397 if (err)
1398 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001399
Chris Mason39279cc2007-06-12 06:35:45 -04001400 dir->i_sb->s_dirt = 1;
1401 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04001402 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001403
Chris Mason54aa1f42007-06-22 14:16:25 -04001404 if (err)
1405 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001406
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001407 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001408 btrfs_end_transaction(trans, root);
1409 mutex_unlock(&root->fs_info->fs_mutex);
1410
1411 if (drop_inode) {
1412 inode_dec_link_count(inode);
1413 iput(inode);
1414 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001415 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001416 return err;
1417}
1418
1419static int btrfs_make_empty_dir(struct btrfs_trans_handle *trans,
1420 struct btrfs_root *root,
1421 u64 objectid, u64 dirid)
1422{
1423 int ret;
1424 char buf[2];
1425 struct btrfs_key key;
1426
1427 buf[0] = '.';
1428 buf[1] = '.';
1429
1430 key.objectid = objectid;
1431 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001432 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1433
1434 ret = btrfs_insert_dir_item(trans, root, buf, 1, objectid,
1435 &key, BTRFS_FT_DIR);
1436 if (ret)
1437 goto error;
Chris Mason5f39d392007-10-15 16:14:19 -04001438
Chris Mason39279cc2007-06-12 06:35:45 -04001439 key.objectid = dirid;
1440 ret = btrfs_insert_dir_item(trans, root, buf, 2, objectid,
1441 &key, BTRFS_FT_DIR);
1442 if (ret)
1443 goto error;
1444error:
1445 return ret;
1446}
1447
1448static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1449{
1450 struct inode *inode;
1451 struct btrfs_trans_handle *trans;
1452 struct btrfs_root *root = BTRFS_I(dir)->root;
1453 int err = 0;
1454 int drop_on_err = 0;
1455 u64 objectid;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001456 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001457
1458 mutex_lock(&root->fs_info->fs_mutex);
1459 trans = btrfs_start_transaction(root, 1);
1460 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04001461
Chris Mason39279cc2007-06-12 06:35:45 -04001462 if (IS_ERR(trans)) {
1463 err = PTR_ERR(trans);
1464 goto out_unlock;
1465 }
1466
1467 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1468 if (err) {
1469 err = -ENOSPC;
1470 goto out_unlock;
1471 }
1472
1473 inode = btrfs_new_inode(trans, root, objectid,
1474 BTRFS_I(dir)->block_group, S_IFDIR | mode);
1475 if (IS_ERR(inode)) {
1476 err = PTR_ERR(inode);
1477 goto out_fail;
1478 }
Chris Mason5f39d392007-10-15 16:14:19 -04001479
Chris Mason39279cc2007-06-12 06:35:45 -04001480 drop_on_err = 1;
1481 inode->i_op = &btrfs_dir_inode_operations;
1482 inode->i_fop = &btrfs_dir_file_operations;
1483 btrfs_set_trans_block_group(trans, inode);
1484
1485 err = btrfs_make_empty_dir(trans, root, inode->i_ino, dir->i_ino);
1486 if (err)
1487 goto out_fail;
1488
1489 inode->i_size = 6;
1490 err = btrfs_update_inode(trans, root, inode);
1491 if (err)
1492 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001493
Chris Mason39279cc2007-06-12 06:35:45 -04001494 err = btrfs_add_link(trans, dentry, inode);
1495 if (err)
1496 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001497
Chris Mason39279cc2007-06-12 06:35:45 -04001498 d_instantiate(dentry, inode);
1499 drop_on_err = 0;
1500 dir->i_sb->s_dirt = 1;
1501 btrfs_update_inode_block_group(trans, inode);
1502 btrfs_update_inode_block_group(trans, dir);
1503
1504out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001505 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001506 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04001507
Chris Mason39279cc2007-06-12 06:35:45 -04001508out_unlock:
1509 mutex_unlock(&root->fs_info->fs_mutex);
1510 if (drop_on_err)
1511 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001512 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001513 return err;
1514}
1515
Chris Masona52d9a82007-08-27 16:49:44 -04001516struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
1517 size_t page_offset, u64 start, u64 end,
1518 int create)
1519{
1520 int ret;
1521 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04001522 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04001523 u64 extent_start = 0;
1524 u64 extent_end = 0;
1525 u64 objectid = inode->i_ino;
1526 u32 found_type;
1527 int failed_insert = 0;
1528 struct btrfs_path *path;
1529 struct btrfs_root *root = BTRFS_I(inode)->root;
1530 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04001531 struct extent_buffer *leaf;
1532 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04001533 struct extent_map *em = NULL;
1534 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
1535 struct btrfs_trans_handle *trans = NULL;
1536
1537 path = btrfs_alloc_path();
1538 BUG_ON(!path);
1539 mutex_lock(&root->fs_info->fs_mutex);
1540
1541again:
1542 em = lookup_extent_mapping(em_tree, start, end);
1543 if (em) {
1544 goto out;
1545 }
1546 if (!em) {
1547 em = alloc_extent_map(GFP_NOFS);
1548 if (!em) {
1549 err = -ENOMEM;
1550 goto out;
1551 }
Chris Mason5f39d392007-10-15 16:14:19 -04001552 em->start = EXTENT_MAP_HOLE;
1553 em->end = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04001554 }
1555 em->bdev = inode->i_sb->s_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04001556 ret = btrfs_lookup_file_extent(trans, root, path,
1557 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04001558 if (ret < 0) {
1559 err = ret;
1560 goto out;
1561 }
1562
1563 if (ret != 0) {
1564 if (path->slots[0] == 0)
1565 goto not_found;
1566 path->slots[0]--;
1567 }
1568
Chris Mason5f39d392007-10-15 16:14:19 -04001569 leaf = path->nodes[0];
1570 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04001571 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04001572 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04001573 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1574 found_type = btrfs_key_type(&found_key);
1575 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04001576 found_type != BTRFS_EXTENT_DATA_KEY) {
1577 goto not_found;
1578 }
1579
Chris Mason5f39d392007-10-15 16:14:19 -04001580 found_type = btrfs_file_extent_type(leaf, item);
1581 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04001582 if (found_type == BTRFS_FILE_EXTENT_REG) {
1583 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04001584 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04001585 err = 0;
Chris Masonb888db2b2007-08-27 16:49:44 -04001586 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04001587 em->start = start;
1588 if (start < extent_start) {
Chris Masonb888db2b2007-08-27 16:49:44 -04001589 if (end < extent_start)
1590 goto not_found;
Chris Masona52d9a82007-08-27 16:49:44 -04001591 em->end = extent_end - 1;
1592 } else {
1593 em->end = end;
1594 }
1595 goto not_found_em;
1596 }
Chris Masondb945352007-10-15 16:15:53 -04001597 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
1598 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04001599 em->start = extent_start;
1600 em->end = extent_end - 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001601 em->block_start = EXTENT_MAP_HOLE;
1602 em->block_end = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04001603 goto insert;
1604 }
Chris Masondb945352007-10-15 16:15:53 -04001605 bytenr += btrfs_file_extent_offset(leaf, item);
1606 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04001607 em->block_end = em->block_start +
Chris Masondb945352007-10-15 16:15:53 -04001608 btrfs_file_extent_num_bytes(leaf, item) - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04001609 em->start = extent_start;
1610 em->end = extent_end - 1;
1611 goto insert;
1612 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04001613 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04001614 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04001615 size_t size;
1616 size_t extent_offset;
1617 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04001618
Chris Mason5f39d392007-10-15 16:14:19 -04001619 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
1620 path->slots[0]));
Yan689f9342007-10-29 11:41:07 -04001621 extent_end = (extent_start + size - 1) |
Chris Masondb945352007-10-15 16:15:53 -04001622 ((u64)root->sectorsize - 1);
Chris Masonb888db2b2007-08-27 16:49:44 -04001623 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04001624 em->start = start;
1625 if (start < extent_start) {
Chris Masonb888db2b2007-08-27 16:49:44 -04001626 if (end < extent_start)
1627 goto not_found;
Chris Mason50b78c22007-09-20 14:14:42 -04001628 em->end = extent_end;
Chris Masona52d9a82007-08-27 16:49:44 -04001629 } else {
1630 em->end = end;
1631 }
1632 goto not_found_em;
1633 }
1634 em->block_start = EXTENT_MAP_INLINE;
1635 em->block_end = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04001636
1637 if (!page) {
1638 em->start = extent_start;
1639 em->end = extent_start + size - 1;
1640 goto out;
1641 }
1642
Chris Mason35ebb932007-10-30 16:56:53 -04001643 extent_offset = ((u64)page->index << PAGE_CACHE_SHIFT) -
Yan689f9342007-10-29 11:41:07 -04001644 extent_start + page_offset;
1645 copy_size = min_t(u64, PAGE_CACHE_SIZE - page_offset,
1646 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04001647 em->start = extent_start + extent_offset;
1648 em->end = (em->start + copy_size -1) |
1649 ((u64)root->sectorsize -1);
Yan689f9342007-10-29 11:41:07 -04001650 map = kmap(page);
1651 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04001652 if (create == 0 && !PageUptodate(page)) {
1653 read_extent_buffer(leaf, map + page_offset, ptr,
1654 copy_size);
1655 flush_dcache_page(page);
1656 } else if (create && PageUptodate(page)) {
1657 if (!trans) {
1658 kunmap(page);
1659 free_extent_map(em);
1660 em = NULL;
1661 btrfs_release_path(root, path);
1662 trans = btrfs_start_transaction(root, 1);
1663 goto again;
1664 }
1665 write_extent_buffer(leaf, map + page_offset, ptr,
1666 copy_size);
1667 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04001668 }
Chris Masona52d9a82007-08-27 16:49:44 -04001669 kunmap(page);
Chris Mason3326d1b2007-10-15 16:18:25 -04001670 set_extent_uptodate(em_tree, em->start, em->end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001671 goto insert;
1672 } else {
1673 printk("unkknown found_type %d\n", found_type);
1674 WARN_ON(1);
1675 }
1676not_found:
1677 em->start = start;
1678 em->end = end;
1679not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04001680 em->block_start = EXTENT_MAP_HOLE;
1681 em->block_end = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04001682insert:
1683 btrfs_release_path(root, path);
1684 if (em->start > start || em->end < start) {
Chris Masonb888db2b2007-08-27 16:49:44 -04001685 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->end, start, end);
Chris Masona52d9a82007-08-27 16:49:44 -04001686 err = -EIO;
1687 goto out;
1688 }
1689 ret = add_extent_mapping(em_tree, em);
1690 if (ret == -EEXIST) {
1691 free_extent_map(em);
Chris Mason2bf5a722007-08-30 11:54:02 -04001692 em = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -04001693 failed_insert++;
1694 if (failed_insert > 5) {
1695 printk("failing to insert %Lu %Lu\n", start, end);
1696 err = -EIO;
1697 goto out;
1698 }
Chris Masona52d9a82007-08-27 16:49:44 -04001699 goto again;
1700 }
1701 err = 0;
1702out:
1703 btrfs_free_path(path);
1704 if (trans) {
1705 ret = btrfs_end_transaction(trans, root);
1706 if (!err)
1707 err = ret;
1708 }
1709 mutex_unlock(&root->fs_info->fs_mutex);
1710 if (err) {
1711 free_extent_map(em);
1712 WARN_ON(1);
1713 return ERR_PTR(err);
1714 }
1715 return em;
1716}
1717
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04001718static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04001719{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04001720 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04001721}
1722
1723static int btrfs_prepare_write(struct file *file, struct page *page,
1724 unsigned from, unsigned to)
1725{
Chris Masona52d9a82007-08-27 16:49:44 -04001726 return extent_prepare_write(&BTRFS_I(page->mapping->host)->extent_tree,
1727 page->mapping->host, page, from, to,
1728 btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04001729}
1730
Chris Mason9ebefb182007-06-15 13:50:00 -04001731int btrfs_readpage(struct file *file, struct page *page)
1732{
Chris Masona52d9a82007-08-27 16:49:44 -04001733 struct extent_map_tree *tree;
1734 tree = &BTRFS_I(page->mapping->host)->extent_tree;
1735 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04001736}
Chris Mason39279cc2007-06-12 06:35:45 -04001737static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
1738{
Chris Masona52d9a82007-08-27 16:49:44 -04001739 struct extent_map_tree *tree;
Chris Masonb888db2b2007-08-27 16:49:44 -04001740
1741
1742 if (current->flags & PF_MEMALLOC) {
1743 redirty_page_for_writepage(wbc, page);
1744 unlock_page(page);
1745 return 0;
1746 }
Chris Masona52d9a82007-08-27 16:49:44 -04001747 tree = &BTRFS_I(page->mapping->host)->extent_tree;
1748 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
1749}
Chris Mason39279cc2007-06-12 06:35:45 -04001750
Chris Masonb293f02e2007-11-01 19:45:34 -04001751static int btrfs_writepages(struct address_space *mapping,
1752 struct writeback_control *wbc)
1753{
1754 struct extent_map_tree *tree;
1755 tree = &BTRFS_I(mapping->host)->extent_tree;
1756 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
1757}
1758
Chris Mason3ab2fb52007-11-08 10:59:22 -05001759static int
1760btrfs_readpages(struct file *file, struct address_space *mapping,
1761 struct list_head *pages, unsigned nr_pages)
1762{
1763 struct extent_map_tree *tree;
1764 tree = &BTRFS_I(mapping->host)->extent_tree;
1765 return extent_readpages(tree, mapping, pages, nr_pages,
1766 btrfs_get_extent);
1767}
1768
Chris Masona52d9a82007-08-27 16:49:44 -04001769static int btrfs_releasepage(struct page *page, gfp_t unused_gfp_flags)
1770{
1771 struct extent_map_tree *tree;
1772 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04001773
Chris Masona52d9a82007-08-27 16:49:44 -04001774 tree = &BTRFS_I(page->mapping->host)->extent_tree;
1775 ret = try_release_extent_mapping(tree, page);
1776 if (ret == 1) {
1777 ClearPagePrivate(page);
1778 set_page_private(page, 0);
1779 page_cache_release(page);
1780 }
1781 return ret;
1782}
Chris Mason39279cc2007-06-12 06:35:45 -04001783
Chris Masona52d9a82007-08-27 16:49:44 -04001784static void btrfs_invalidatepage(struct page *page, unsigned long offset)
1785{
1786 struct extent_map_tree *tree;
1787
1788 tree = &BTRFS_I(page->mapping->host)->extent_tree;
1789 extent_invalidatepage(tree, page, offset);
1790 btrfs_releasepage(page, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001791}
1792
Chris Mason9ebefb182007-06-15 13:50:00 -04001793/*
1794 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
1795 * called from a page fault handler when a page is first dirtied. Hence we must
1796 * be careful to check for EOF conditions here. We set the page up correctly
1797 * for a written page which means we get ENOSPC checking when writing into
1798 * holes and correct delalloc and unwritten extent mapping on filesystems that
1799 * support these features.
1800 *
1801 * We are not allowed to take the i_mutex here so we have to play games to
1802 * protect against truncate races as the page could now be beyond EOF. Because
1803 * vmtruncate() writes the inode size before removing pages, once we have the
1804 * page lock we can determine safely if the page is beyond EOF. If it is not
1805 * beyond EOF, then the page is guaranteed safe against truncation until we
1806 * unlock the page.
1807 */
1808int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
1809{
1810 struct inode *inode = vma->vm_file->f_path.dentry->d_inode;
1811 unsigned long end;
1812 loff_t size;
1813 int ret = -EINVAL;
Chris Masona52d9a82007-08-27 16:49:44 -04001814 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04001815
Chris Mason011410b2007-09-10 19:58:36 -04001816 down_read(&BTRFS_I(inode)->root->snap_sem);
Chris Mason9ebefb182007-06-15 13:50:00 -04001817 lock_page(page);
1818 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04001819 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04001820 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04001821
Chris Mason9ebefb182007-06-15 13:50:00 -04001822 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04001823 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04001824 /* page got truncated out from underneath us */
1825 goto out_unlock;
1826 }
1827
1828 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04001829 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04001830 end = size & ~PAGE_CACHE_MASK;
1831 else
1832 end = PAGE_CACHE_SIZE;
1833
Chris Masonb888db2b2007-08-27 16:49:44 -04001834 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04001835
1836out_unlock:
Chris Mason011410b2007-09-10 19:58:36 -04001837 up_read(&BTRFS_I(inode)->root->snap_sem);
Chris Mason9ebefb182007-06-15 13:50:00 -04001838 unlock_page(page);
1839 return ret;
1840}
1841
Chris Mason39279cc2007-06-12 06:35:45 -04001842static void btrfs_truncate(struct inode *inode)
1843{
1844 struct btrfs_root *root = BTRFS_I(inode)->root;
1845 int ret;
1846 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001847 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001848
1849 if (!S_ISREG(inode->i_mode))
1850 return;
1851 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
1852 return;
1853
1854 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1855
1856 mutex_lock(&root->fs_info->fs_mutex);
1857 trans = btrfs_start_transaction(root, 1);
1858 btrfs_set_trans_block_group(trans, inode);
1859
1860 /* FIXME, add redo link to tree so we don't leak on crash */
1861 ret = btrfs_truncate_in_trans(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04001862 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001863 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04001864
Chris Mason39279cc2007-06-12 06:35:45 -04001865 ret = btrfs_end_transaction(trans, root);
1866 BUG_ON(ret);
1867 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001868 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001869}
1870
1871int btrfs_commit_write(struct file *file, struct page *page,
1872 unsigned from, unsigned to)
1873{
Chris Masona52d9a82007-08-27 16:49:44 -04001874 return extent_commit_write(&BTRFS_I(page->mapping->host)->extent_tree,
1875 page->mapping->host, page, from, to);
Chris Mason39279cc2007-06-12 06:35:45 -04001876}
1877
1878static int create_subvol(struct btrfs_root *root, char *name, int namelen)
1879{
1880 struct btrfs_trans_handle *trans;
1881 struct btrfs_key key;
1882 struct btrfs_root_item root_item;
1883 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04001884 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001885 struct btrfs_root *new_root;
1886 struct inode *inode;
1887 struct inode *dir;
1888 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04001889 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04001890 u64 objectid;
1891 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001892 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001893
1894 mutex_lock(&root->fs_info->fs_mutex);
1895 trans = btrfs_start_transaction(root, 1);
1896 BUG_ON(!trans);
1897
Chris Masondb945352007-10-15 16:15:53 -04001898 leaf = btrfs_alloc_free_block(trans, root, root->leafsize, 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04001899 if (IS_ERR(leaf))
1900 return PTR_ERR(leaf);
1901
1902 btrfs_set_header_nritems(leaf, 0);
1903 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04001904 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04001905 btrfs_set_header_generation(leaf, trans->transid);
1906 btrfs_set_header_owner(leaf, root->root_key.objectid);
1907 write_extent_buffer(leaf, root->fs_info->fsid,
1908 (unsigned long)btrfs_header_fsid(leaf),
1909 BTRFS_FSID_SIZE);
1910 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001911
1912 inode_item = &root_item.inode;
1913 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04001914 inode_item->generation = cpu_to_le64(1);
1915 inode_item->size = cpu_to_le64(3);
1916 inode_item->nlink = cpu_to_le32(1);
1917 inode_item->nblocks = cpu_to_le64(1);
1918 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04001919
Chris Masondb945352007-10-15 16:15:53 -04001920 btrfs_set_root_bytenr(&root_item, leaf->start);
1921 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001922 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001923 btrfs_set_root_used(&root_item, 0);
1924
Chris Mason5eda7b52007-06-22 14:16:25 -04001925 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
1926 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001927
1928 free_extent_buffer(leaf);
1929 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001930
1931 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
1932 0, &objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001933 if (ret)
1934 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001935
1936 btrfs_set_root_dirid(&root_item, new_dirid);
1937
1938 key.objectid = objectid;
1939 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001940 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
1941 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
1942 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04001943 if (ret)
1944 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001945
1946 /*
1947 * insert the directory item
1948 */
1949 key.offset = (u64)-1;
1950 dir = root->fs_info->sb->s_root->d_inode;
1951 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
1952 name, namelen, dir->i_ino, &key,
1953 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04001954 if (ret)
1955 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001956
1957 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04001958 if (ret)
1959 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04001960
Josef Bacik58176a92007-08-29 15:47:34 -04001961 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04001962 BUG_ON(!new_root);
1963
1964 trans = btrfs_start_transaction(new_root, 1);
1965 BUG_ON(!trans);
1966
1967 inode = btrfs_new_inode(trans, new_root, new_dirid,
1968 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04001969 if (IS_ERR(inode))
1970 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001971 inode->i_op = &btrfs_dir_inode_operations;
1972 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04001973 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001974
1975 ret = btrfs_make_empty_dir(trans, new_root, new_dirid, new_dirid);
Chris Mason54aa1f42007-06-22 14:16:25 -04001976 if (ret)
1977 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001978
1979 inode->i_nlink = 1;
1980 inode->i_size = 6;
1981 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04001982 if (ret)
1983 goto fail;
1984fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001985 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001986 err = btrfs_commit_transaction(trans, root);
1987 if (err && !ret)
1988 ret = err;
1989fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04001990 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001991 btrfs_btree_balance_dirty(root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -04001992 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04001993}
1994
1995static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
1996{
1997 struct btrfs_trans_handle *trans;
1998 struct btrfs_key key;
1999 struct btrfs_root_item new_root_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002000 struct extent_buffer *tmp;
Chris Mason39279cc2007-06-12 06:35:45 -04002001 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002002 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002003 u64 objectid;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002004 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002005
2006 if (!root->ref_cows)
2007 return -EINVAL;
2008
Chris Mason011410b2007-09-10 19:58:36 -04002009 down_write(&root->snap_sem);
2010 freeze_bdev(root->fs_info->sb->s_bdev);
2011 thaw_bdev(root->fs_info->sb->s_bdev, root->fs_info->sb);
2012
Chris Mason39279cc2007-06-12 06:35:45 -04002013 mutex_lock(&root->fs_info->fs_mutex);
2014 trans = btrfs_start_transaction(root, 1);
2015 BUG_ON(!trans);
2016
2017 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002018 if (ret)
2019 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002020
2021 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2022 0, &objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002023 if (ret)
2024 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002025
2026 memcpy(&new_root_item, &root->root_item,
2027 sizeof(new_root_item));
2028
2029 key.objectid = objectid;
2030 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002031 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
Chris Mason5f39d392007-10-15 16:14:19 -04002032
Chris Mason83df7c12007-08-27 16:49:44 -04002033 btrfs_cow_block(trans, root, root->node, NULL, 0, &tmp);
Chris Masondb945352007-10-15 16:15:53 -04002034 btrfs_set_root_bytenr(&new_root_item, root->node->start);
2035 btrfs_set_root_level(&new_root_item, btrfs_header_level(root->node));
Chris Mason39279cc2007-06-12 06:35:45 -04002036
2037 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2038 &new_root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002039 if (ret)
2040 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002041
2042 /*
2043 * insert the directory item
2044 */
2045 key.offset = (u64)-1;
2046 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2047 name, namelen,
2048 root->fs_info->sb->s_root->d_inode->i_ino,
2049 &key, BTRFS_FT_DIR);
2050
Chris Mason54aa1f42007-06-22 14:16:25 -04002051 if (ret)
2052 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002053
2054 ret = btrfs_inc_root_ref(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002055 if (ret)
2056 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04002057fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002058 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04002059 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002060
Chris Mason54aa1f42007-06-22 14:16:25 -04002061 if (err && !ret)
2062 ret = err;
Chris Mason5f39d392007-10-15 16:14:19 -04002063
Chris Mason39279cc2007-06-12 06:35:45 -04002064 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason011410b2007-09-10 19:58:36 -04002065 up_write(&root->snap_sem);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002066 btrfs_btree_balance_dirty(root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -04002067 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002068}
2069
Chris Mason86479a02007-09-10 19:58:16 -04002070static unsigned long force_ra(struct address_space *mapping,
2071 struct file_ra_state *ra, struct file *file,
2072 pgoff_t offset, pgoff_t last_index)
2073{
2074 pgoff_t req_size;
2075
2076#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2077 req_size = last_index - offset + 1;
2078 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2079 return offset;
2080#else
2081 req_size = min(last_index - offset + 1, (pgoff_t)128);
2082 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2083 return offset + req_size;
2084#endif
2085}
2086
2087int btrfs_defrag_file(struct file *file) {
2088 struct inode *inode = file->f_path.dentry->d_inode;
2089 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2090 struct page *page;
2091 unsigned long last_index;
2092 unsigned long ra_index = 0;
2093 u64 page_start;
2094 u64 page_end;
2095 unsigned long i;
2096
2097 mutex_lock(&inode->i_mutex);
2098 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2099 for (i = 0; i <= last_index; i++) {
2100 if (i == ra_index) {
2101 ra_index = force_ra(inode->i_mapping, &file->f_ra,
2102 file, ra_index, last_index);
2103 }
2104 page = grab_cache_page(inode->i_mapping, i);
2105 if (!page)
2106 goto out_unlock;
2107 if (!PageUptodate(page)) {
2108 btrfs_readpage(NULL, page);
2109 lock_page(page);
2110 if (!PageUptodate(page)) {
2111 unlock_page(page);
2112 page_cache_release(page);
2113 goto out_unlock;
2114 }
2115 }
Chris Mason35ebb932007-10-30 16:56:53 -04002116 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002117 page_end = page_start + PAGE_CACHE_SIZE - 1;
2118
2119 lock_extent(em_tree, page_start, page_end, GFP_NOFS);
2120 set_extent_delalloc(em_tree, page_start,
2121 page_end, GFP_NOFS);
2122 unlock_extent(em_tree, page_start, page_end, GFP_NOFS);
2123 set_page_dirty(page);
2124 unlock_page(page);
2125 page_cache_release(page);
2126 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2127 }
2128
2129out_unlock:
2130 mutex_unlock(&inode->i_mutex);
2131 return 0;
2132}
2133
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002134static int btrfs_ioctl_snap_create(struct btrfs_root *root, void __user *arg)
2135{
2136 struct btrfs_ioctl_vol_args vol_args;
2137 struct btrfs_dir_item *di;
2138 struct btrfs_path *path;
2139 int namelen;
2140 u64 root_dirid;
2141
2142 if (copy_from_user(&vol_args, arg, sizeof(vol_args)))
2143 return -EFAULT;
Chris Mason5f39d392007-10-15 16:14:19 -04002144
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002145 namelen = strlen(vol_args.name);
2146 if (namelen > BTRFS_VOL_NAME_MAX)
2147 return -EINVAL;
2148 if (strchr(vol_args.name, '/'))
2149 return -EINVAL;
2150
2151 path = btrfs_alloc_path();
2152 if (!path)
2153 return -ENOMEM;
2154
2155 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
2156 mutex_lock(&root->fs_info->fs_mutex);
2157 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
2158 path, root_dirid,
2159 vol_args.name, namelen, 0);
2160 mutex_unlock(&root->fs_info->fs_mutex);
2161 btrfs_free_path(path);
2162 if (di && !IS_ERR(di))
2163 return -EEXIST;
2164 if (IS_ERR(di))
2165 return PTR_ERR(di);
2166
2167 if (root == root->fs_info->tree_root)
2168 return create_subvol(root, vol_args.name, namelen);
2169 return create_snapshot(root, vol_args.name, namelen);
2170}
2171
2172static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04002173{
Christoph Hellwig34287aa2007-09-14 10:22:47 -04002174 struct inode *inode = file->f_path.dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002175 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002176
2177 switch (inode->i_mode & S_IFMT) {
2178 case S_IFDIR:
2179 mutex_lock(&root->fs_info->fs_mutex);
2180 btrfs_defrag_root(root, 0);
2181 btrfs_defrag_root(root->fs_info->extent_root, 0);
2182 mutex_unlock(&root->fs_info->fs_mutex);
2183 break;
2184 case S_IFREG:
2185 btrfs_defrag_file(file);
2186 break;
2187 }
2188
2189 return 0;
2190}
2191
2192long btrfs_ioctl(struct file *file, unsigned int
2193 cmd, unsigned long arg)
2194{
2195 struct btrfs_root *root = BTRFS_I(file->f_path.dentry->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002196
2197 switch (cmd) {
2198 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002199 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04002200 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002201 return btrfs_ioctl_defrag(file);
Chris Mason39279cc2007-06-12 06:35:45 -04002202 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002203
2204 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04002205}
2206
Chris Mason39279cc2007-06-12 06:35:45 -04002207/*
2208 * Called inside transaction, so use GFP_NOFS
2209 */
2210struct inode *btrfs_alloc_inode(struct super_block *sb)
2211{
2212 struct btrfs_inode *ei;
2213
2214 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2215 if (!ei)
2216 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002217 ei->last_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002218 return &ei->vfs_inode;
2219}
2220
2221void btrfs_destroy_inode(struct inode *inode)
2222{
2223 WARN_ON(!list_empty(&inode->i_dentry));
2224 WARN_ON(inode->i_data.nrpages);
2225
2226 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2227}
2228
Chris Mason44ec0b72007-10-29 10:55:05 -04002229#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2230static void init_once(struct kmem_cache * cachep, void *foo)
2231#else
Chris Mason39279cc2007-06-12 06:35:45 -04002232static void init_once(void * foo, struct kmem_cache * cachep,
2233 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04002234#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002235{
2236 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2237
2238 inode_init_once(&ei->vfs_inode);
2239}
2240
2241void btrfs_destroy_cachep(void)
2242{
2243 if (btrfs_inode_cachep)
2244 kmem_cache_destroy(btrfs_inode_cachep);
2245 if (btrfs_trans_handle_cachep)
2246 kmem_cache_destroy(btrfs_trans_handle_cachep);
2247 if (btrfs_transaction_cachep)
2248 kmem_cache_destroy(btrfs_transaction_cachep);
2249 if (btrfs_bit_radix_cachep)
2250 kmem_cache_destroy(btrfs_bit_radix_cachep);
2251 if (btrfs_path_cachep)
2252 kmem_cache_destroy(btrfs_path_cachep);
2253}
2254
Chris Mason86479a02007-09-10 19:58:16 -04002255struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04002256 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04002257#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2258 void (*ctor)(struct kmem_cache *, void *)
2259#else
Chris Mason92fee662007-07-25 12:31:35 -04002260 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04002261 unsigned long)
2262#endif
2263 )
Chris Mason92fee662007-07-25 12:31:35 -04002264{
2265 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2266 SLAB_MEM_SPREAD | extra_flags), ctor
2267#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2268 ,NULL
2269#endif
2270 );
2271}
2272
Chris Mason39279cc2007-06-12 06:35:45 -04002273int btrfs_init_cachep(void)
2274{
Chris Mason86479a02007-09-10 19:58:16 -04002275 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04002276 sizeof(struct btrfs_inode),
2277 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04002278 if (!btrfs_inode_cachep)
2279 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002280 btrfs_trans_handle_cachep =
2281 btrfs_cache_create("btrfs_trans_handle_cache",
2282 sizeof(struct btrfs_trans_handle),
2283 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002284 if (!btrfs_trans_handle_cachep)
2285 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002286 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04002287 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04002288 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002289 if (!btrfs_transaction_cachep)
2290 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002291 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04002292 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04002293 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002294 if (!btrfs_path_cachep)
2295 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002296 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04002297 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002298 if (!btrfs_bit_radix_cachep)
2299 goto fail;
2300 return 0;
2301fail:
2302 btrfs_destroy_cachep();
2303 return -ENOMEM;
2304}
2305
2306static int btrfs_getattr(struct vfsmount *mnt,
2307 struct dentry *dentry, struct kstat *stat)
2308{
2309 struct inode *inode = dentry->d_inode;
2310 generic_fillattr(inode, stat);
2311 stat->blksize = 256 * 1024;
2312 return 0;
2313}
2314
2315static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
2316 struct inode * new_dir,struct dentry *new_dentry)
2317{
2318 struct btrfs_trans_handle *trans;
2319 struct btrfs_root *root = BTRFS_I(old_dir)->root;
2320 struct inode *new_inode = new_dentry->d_inode;
2321 struct inode *old_inode = old_dentry->d_inode;
2322 struct timespec ctime = CURRENT_TIME;
2323 struct btrfs_path *path;
2324 struct btrfs_dir_item *di;
2325 int ret;
2326
2327 if (S_ISDIR(old_inode->i_mode) && new_inode &&
2328 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
2329 return -ENOTEMPTY;
2330 }
Chris Mason5f39d392007-10-15 16:14:19 -04002331
Chris Mason39279cc2007-06-12 06:35:45 -04002332 mutex_lock(&root->fs_info->fs_mutex);
2333 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002334
Chris Mason39279cc2007-06-12 06:35:45 -04002335 btrfs_set_trans_block_group(trans, new_dir);
2336 path = btrfs_alloc_path();
2337 if (!path) {
2338 ret = -ENOMEM;
2339 goto out_fail;
2340 }
2341
2342 old_dentry->d_inode->i_nlink++;
2343 old_dir->i_ctime = old_dir->i_mtime = ctime;
2344 new_dir->i_ctime = new_dir->i_mtime = ctime;
2345 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04002346
Chris Mason39279cc2007-06-12 06:35:45 -04002347 if (S_ISDIR(old_inode->i_mode) && old_dir != new_dir) {
2348 struct btrfs_key *location = &BTRFS_I(new_dir)->location;
Chris Mason5f39d392007-10-15 16:14:19 -04002349 struct btrfs_key old_parent_key;
Chris Mason39279cc2007-06-12 06:35:45 -04002350 di = btrfs_lookup_dir_item(trans, root, path, old_inode->i_ino,
2351 "..", 2, -1);
2352 if (IS_ERR(di)) {
2353 ret = PTR_ERR(di);
2354 goto out_fail;
2355 }
2356 if (!di) {
2357 ret = -ENOENT;
2358 goto out_fail;
2359 }
Chris Mason5f39d392007-10-15 16:14:19 -04002360 btrfs_dir_item_key_to_cpu(path->nodes[0], di, &old_parent_key);
Chris Mason39279cc2007-06-12 06:35:45 -04002361 ret = btrfs_del_item(trans, root, path);
2362 if (ret) {
Chris Mason39279cc2007-06-12 06:35:45 -04002363 goto out_fail;
2364 }
2365 btrfs_release_path(root, path);
2366
2367 di = btrfs_lookup_dir_index_item(trans, root, path,
2368 old_inode->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -04002369 old_parent_key.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002370 "..", 2, -1);
2371 if (IS_ERR(di)) {
2372 ret = PTR_ERR(di);
2373 goto out_fail;
2374 }
2375 if (!di) {
2376 ret = -ENOENT;
2377 goto out_fail;
2378 }
2379 ret = btrfs_del_item(trans, root, path);
2380 if (ret) {
Chris Mason39279cc2007-06-12 06:35:45 -04002381 goto out_fail;
2382 }
2383 btrfs_release_path(root, path);
2384
2385 ret = btrfs_insert_dir_item(trans, root, "..", 2,
2386 old_inode->i_ino, location,
2387 BTRFS_FT_DIR);
2388 if (ret)
2389 goto out_fail;
2390 }
2391
2392
2393 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
2394 if (ret)
2395 goto out_fail;
2396
2397 if (new_inode) {
2398 new_inode->i_ctime = CURRENT_TIME;
2399 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
2400 if (ret)
2401 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002402 }
2403 ret = btrfs_add_link(trans, new_dentry, old_inode);
2404 if (ret)
2405 goto out_fail;
2406
2407out_fail:
2408 btrfs_free_path(path);
2409 btrfs_end_transaction(trans, root);
2410 mutex_unlock(&root->fs_info->fs_mutex);
2411 return ret;
2412}
2413
2414static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
2415 const char *symname)
2416{
2417 struct btrfs_trans_handle *trans;
2418 struct btrfs_root *root = BTRFS_I(dir)->root;
2419 struct btrfs_path *path;
2420 struct btrfs_key key;
2421 struct inode *inode;
2422 int err;
2423 int drop_inode = 0;
2424 u64 objectid;
2425 int name_len;
2426 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04002427 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04002428 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04002429 struct extent_buffer *leaf;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002430 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002431
2432 name_len = strlen(symname) + 1;
2433 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
2434 return -ENAMETOOLONG;
2435 mutex_lock(&root->fs_info->fs_mutex);
2436 trans = btrfs_start_transaction(root, 1);
2437 btrfs_set_trans_block_group(trans, dir);
2438
2439 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2440 if (err) {
2441 err = -ENOSPC;
2442 goto out_unlock;
2443 }
2444
2445 inode = btrfs_new_inode(trans, root, objectid,
2446 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
2447 err = PTR_ERR(inode);
2448 if (IS_ERR(inode))
2449 goto out_unlock;
2450
2451 btrfs_set_trans_block_group(trans, inode);
2452 err = btrfs_add_nondir(trans, dentry, inode);
2453 if (err)
2454 drop_inode = 1;
2455 else {
2456 inode->i_mapping->a_ops = &btrfs_aops;
2457 inode->i_fop = &btrfs_file_operations;
2458 inode->i_op = &btrfs_file_inode_operations;
Chris Masona52d9a82007-08-27 16:49:44 -04002459 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
2460 inode->i_mapping, GFP_NOFS);
Chris Mason07157aa2007-08-30 08:50:51 -04002461 BTRFS_I(inode)->extent_tree.ops = &btrfs_extent_map_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002462 }
2463 dir->i_sb->s_dirt = 1;
2464 btrfs_update_inode_block_group(trans, inode);
2465 btrfs_update_inode_block_group(trans, dir);
2466 if (drop_inode)
2467 goto out_unlock;
2468
2469 path = btrfs_alloc_path();
2470 BUG_ON(!path);
2471 key.objectid = inode->i_ino;
2472 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002473 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
2474 datasize = btrfs_file_extent_calc_inline_size(name_len);
2475 err = btrfs_insert_empty_item(trans, root, path, &key,
2476 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04002477 if (err) {
2478 drop_inode = 1;
2479 goto out_unlock;
2480 }
Chris Mason5f39d392007-10-15 16:14:19 -04002481 leaf = path->nodes[0];
2482 ei = btrfs_item_ptr(leaf, path->slots[0],
2483 struct btrfs_file_extent_item);
2484 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
2485 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04002486 BTRFS_FILE_EXTENT_INLINE);
2487 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04002488 write_extent_buffer(leaf, symname, ptr, name_len);
2489 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002490 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04002491
Chris Mason39279cc2007-06-12 06:35:45 -04002492 inode->i_op = &btrfs_symlink_inode_operations;
2493 inode->i_mapping->a_ops = &btrfs_symlink_aops;
2494 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04002495 err = btrfs_update_inode(trans, root, inode);
2496 if (err)
2497 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002498
2499out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002500 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002501 btrfs_end_transaction(trans, root);
2502 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04002503 if (drop_inode) {
2504 inode_dec_link_count(inode);
2505 iput(inode);
2506 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002507 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002508 return err;
2509}
2510
2511static struct inode_operations btrfs_dir_inode_operations = {
2512 .lookup = btrfs_lookup,
2513 .create = btrfs_create,
2514 .unlink = btrfs_unlink,
2515 .link = btrfs_link,
2516 .mkdir = btrfs_mkdir,
2517 .rmdir = btrfs_rmdir,
2518 .rename = btrfs_rename,
2519 .symlink = btrfs_symlink,
2520 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04002521 .mknod = btrfs_mknod,
Chris Mason39279cc2007-06-12 06:35:45 -04002522};
2523
2524static struct inode_operations btrfs_dir_ro_inode_operations = {
2525 .lookup = btrfs_lookup,
2526};
2527
2528static struct file_operations btrfs_dir_file_operations = {
2529 .llseek = generic_file_llseek,
2530 .read = generic_read_dir,
2531 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04002532 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04002533#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04002534 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04002535#endif
2536};
2537
Chris Mason07157aa2007-08-30 08:50:51 -04002538static struct extent_map_ops btrfs_extent_map_ops = {
2539 .fill_delalloc = run_delalloc_range,
2540 .writepage_io_hook = btrfs_writepage_io_hook,
2541 .readpage_io_hook = btrfs_readpage_io_hook,
2542 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
2543};
2544
Chris Mason39279cc2007-06-12 06:35:45 -04002545static struct address_space_operations btrfs_aops = {
2546 .readpage = btrfs_readpage,
2547 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04002548 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05002549 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04002550 .sync_page = block_sync_page,
2551 .prepare_write = btrfs_prepare_write,
2552 .commit_write = btrfs_commit_write,
2553 .bmap = btrfs_bmap,
Chris Masona52d9a82007-08-27 16:49:44 -04002554 .invalidatepage = btrfs_invalidatepage,
2555 .releasepage = btrfs_releasepage,
2556 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04002557};
2558
2559static struct address_space_operations btrfs_symlink_aops = {
2560 .readpage = btrfs_readpage,
2561 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04002562 .invalidatepage = btrfs_invalidatepage,
2563 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04002564};
2565
2566static struct inode_operations btrfs_file_inode_operations = {
2567 .truncate = btrfs_truncate,
2568 .getattr = btrfs_getattr,
2569 .setattr = btrfs_setattr,
2570};
2571
Josef Bacik618e21d2007-07-11 10:18:17 -04002572static struct inode_operations btrfs_special_inode_operations = {
2573 .getattr = btrfs_getattr,
2574 .setattr = btrfs_setattr,
2575};
2576
Chris Mason39279cc2007-06-12 06:35:45 -04002577static struct inode_operations btrfs_symlink_inode_operations = {
2578 .readlink = generic_readlink,
2579 .follow_link = page_follow_link_light,
2580 .put_link = page_put_link,
2581};