blob: f6a20112d9e7baf74c66a85efea46fae6b2e514d [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason39279cc2007-06-12 06:35:45 -040019#include <linux/buffer_head.h>
20#include <linux/fs.h>
21#include <linux/pagemap.h>
22#include <linux/highmem.h>
23#include <linux/time.h>
24#include <linux/init.h>
25#include <linux/string.h>
26#include <linux/smp_lock.h>
27#include <linux/backing-dev.h>
28#include <linux/mpage.h>
29#include <linux/swap.h>
30#include <linux/writeback.h>
31#include <linux/statfs.h>
32#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040033#include <linux/bit_spinlock.h>
Chris Mason92fee662007-07-25 12:31:35 -040034#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050035#include <linux/xattr.h>
Chris Mason39279cc2007-06-12 06:35:45 -040036#include "ctree.h"
37#include "disk-io.h"
38#include "transaction.h"
39#include "btrfs_inode.h"
40#include "ioctl.h"
41#include "print-tree.h"
42
43struct btrfs_iget_args {
44 u64 ino;
45 struct btrfs_root *root;
46};
47
48static struct inode_operations btrfs_dir_inode_operations;
49static struct inode_operations btrfs_symlink_inode_operations;
50static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040051static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040052static struct inode_operations btrfs_file_inode_operations;
53static struct address_space_operations btrfs_aops;
54static struct address_space_operations btrfs_symlink_aops;
55static struct file_operations btrfs_dir_file_operations;
Chris Mason07157aa2007-08-30 08:50:51 -040056static struct extent_map_ops btrfs_extent_map_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040057
58static struct kmem_cache *btrfs_inode_cachep;
59struct kmem_cache *btrfs_trans_handle_cachep;
60struct kmem_cache *btrfs_transaction_cachep;
61struct kmem_cache *btrfs_bit_radix_cachep;
62struct kmem_cache *btrfs_path_cachep;
63
64#define S_SHIFT 12
65static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
66 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
67 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
68 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
69 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
70 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
71 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
72 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
73};
74
Chris Mason1832a6d2007-12-21 16:27:21 -050075int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
76 int for_del)
77{
78 u64 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
79 u64 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
80 u64 thresh;
81 int ret = 0;
82
83 if (for_del)
84 thresh = (total * 90) / 100;
85 else
86 thresh = (total * 85) / 100;
87
88 spin_lock(&root->fs_info->delalloc_lock);
89 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
90 ret = -ENOSPC;
91 spin_unlock(&root->fs_info->delalloc_lock);
92 return ret;
93}
94
Chris Masonbe20aa92007-12-17 20:14:01 -050095static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db22007-08-27 16:49:44 -040096{
97 struct btrfs_root *root = BTRFS_I(inode)->root;
98 struct btrfs_trans_handle *trans;
Chris Masonb888db22007-08-27 16:49:44 -040099 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400100 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500101 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400102 u64 blocksize = root->sectorsize;
Chris Masonbe20aa92007-12-17 20:14:01 -0500103 struct btrfs_key ins;
104 int ret;
Chris Masonb888db22007-08-27 16:49:44 -0400105
Chris Masonb888db22007-08-27 16:49:44 -0400106 trans = btrfs_start_transaction(root, 1);
Chris Masonb888db22007-08-27 16:49:44 -0400107 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500108 btrfs_set_trans_block_group(trans, inode);
109
Chris Masondb945352007-10-15 16:15:53 -0400110 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500111 num_bytes = max(blocksize, num_bytes);
Chris Masonb888db22007-08-27 16:49:44 -0400112 ret = btrfs_drop_extents(trans, root, inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400113 start, start + num_bytes, start, &alloc_hint);
Chris Masondb945352007-10-15 16:15:53 -0400114
Chris Mason179e29e2007-11-01 11:28:41 -0400115 if (alloc_hint == EXTENT_MAP_INLINE)
116 goto out;
117
Chris Masonc59f8952007-12-17 20:14:04 -0500118 while(num_bytes > 0) {
119 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
120 ret = btrfs_alloc_extent(trans, root, cur_alloc_size,
121 root->root_key.objectid,
122 trans->transid,
123 inode->i_ino, start, 0,
124 alloc_hint, (u64)-1, &ins, 1);
125 if (ret) {
126 WARN_ON(1);
127 goto out;
128 }
129 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
130 start, ins.objectid, ins.offset,
131 ins.offset);
132 num_bytes -= cur_alloc_size;
133 alloc_hint = ins.objectid + ins.offset;
134 start += cur_alloc_size;
Chris Masonb888db22007-08-27 16:49:44 -0400135 }
Chris Masonb888db22007-08-27 16:49:44 -0400136out:
137 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500138 return ret;
139}
140
141static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
142{
143 u64 extent_start;
144 u64 extent_end;
145 u64 bytenr;
146 u64 cow_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500147 u64 loops = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -0500148 struct btrfs_root *root = BTRFS_I(inode)->root;
149 struct extent_buffer *leaf;
150 int found_type;
151 struct btrfs_path *path;
152 struct btrfs_file_extent_item *item;
153 int ret;
154 int err;
155 struct btrfs_key found_key;
156
157 path = btrfs_alloc_path();
158 BUG_ON(!path);
159again:
160 ret = btrfs_lookup_file_extent(NULL, root, path,
161 inode->i_ino, start, 0);
162 if (ret < 0) {
163 btrfs_free_path(path);
164 return ret;
165 }
166
167 cow_end = end;
168 if (ret != 0) {
169 if (path->slots[0] == 0)
170 goto not_found;
171 path->slots[0]--;
172 }
173
174 leaf = path->nodes[0];
175 item = btrfs_item_ptr(leaf, path->slots[0],
176 struct btrfs_file_extent_item);
177
178 /* are we inside the extent that was found? */
179 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
180 found_type = btrfs_key_type(&found_key);
181 if (found_key.objectid != inode->i_ino ||
182 found_type != BTRFS_EXTENT_DATA_KEY) {
183 goto not_found;
184 }
185
186 found_type = btrfs_file_extent_type(leaf, item);
187 extent_start = found_key.offset;
188 if (found_type == BTRFS_FILE_EXTENT_REG) {
189 extent_end = extent_start +
190 btrfs_file_extent_num_bytes(leaf, item);
191 err = 0;
192
Chris Mason1832a6d2007-12-21 16:27:21 -0500193 if (loops && start != extent_start)
194 goto not_found;
195
Chris Masonbe20aa92007-12-17 20:14:01 -0500196 if (start < extent_start || start >= extent_end)
197 goto not_found;
198
199 cow_end = min(end, extent_end - 1);
200 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
201 if (bytenr == 0)
202 goto not_found;
203
Chris Masonbe20aa92007-12-17 20:14:01 -0500204 if (btrfs_count_snapshots_in_path(root, path, bytenr) != 1) {
205 goto not_found;
206 }
207
208 start = extent_end;
209 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
210 goto not_found;
211 }
212loop:
213 if (start > end) {
214 btrfs_free_path(path);
215 return 0;
216 }
217 btrfs_release_path(root, path);
Chris Mason1832a6d2007-12-21 16:27:21 -0500218 loops++;
Chris Masonbe20aa92007-12-17 20:14:01 -0500219 goto again;
220
221not_found:
222 cow_file_range(inode, start, cow_end);
223 start = cow_end + 1;
224 goto loop;
225}
226
227static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
228{
229 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -0500230 u64 num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500231 int ret;
232
233 mutex_lock(&root->fs_info->fs_mutex);
234 if (btrfs_test_opt(root, NODATACOW))
235 ret = run_delalloc_nocow(inode, start, end);
236 else
237 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500238
239 spin_lock(&root->fs_info->delalloc_lock);
240 num_bytes = end + 1 - start;
241 if (root->fs_info->delalloc_bytes < num_bytes) {
242 printk("delalloc accounting error total %llu sub %llu\n",
243 root->fs_info->delalloc_bytes, num_bytes);
244 } else {
245 root->fs_info->delalloc_bytes -= num_bytes;
246 }
247 spin_unlock(&root->fs_info->delalloc_lock);
248
Chris Masonb888db22007-08-27 16:49:44 -0400249 mutex_unlock(&root->fs_info->fs_mutex);
250 return ret;
251}
252
Chris Mason07157aa2007-08-30 08:50:51 -0400253int btrfs_writepage_io_hook(struct page *page, u64 start, u64 end)
254{
255 struct inode *inode = page->mapping->host;
256 struct btrfs_root *root = BTRFS_I(inode)->root;
257 struct btrfs_trans_handle *trans;
258 char *kaddr;
Chris Masonb6cda9b2007-12-14 15:30:32 -0500259 int ret = 0;
Chris Mason35ebb932007-10-30 16:56:53 -0400260 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason07157aa2007-08-30 08:50:51 -0400261 size_t offset = start - page_start;
262
Chris Masonb6cda9b2007-12-14 15:30:32 -0500263 if (btrfs_test_opt(root, NODATASUM))
264 return 0;
265
Chris Mason07157aa2007-08-30 08:50:51 -0400266 mutex_lock(&root->fs_info->fs_mutex);
267 trans = btrfs_start_transaction(root, 1);
268 btrfs_set_trans_block_group(trans, inode);
269 kaddr = kmap(page);
Chris Masonf578d4b2007-10-25 15:42:56 -0400270 btrfs_csum_file_block(trans, root, inode, inode->i_ino,
Chris Mason07157aa2007-08-30 08:50:51 -0400271 start, kaddr + offset, end - start + 1);
272 kunmap(page);
273 ret = btrfs_end_transaction(trans, root);
274 BUG_ON(ret);
275 mutex_unlock(&root->fs_info->fs_mutex);
276 return ret;
277}
278
279int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
280{
281 int ret = 0;
282 struct inode *inode = page->mapping->host;
283 struct btrfs_root *root = BTRFS_I(inode)->root;
284 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
285 struct btrfs_csum_item *item;
286 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400287 u32 csum;
Chris Mason07157aa2007-08-30 08:50:51 -0400288
Chris Masonb6cda9b2007-12-14 15:30:32 -0500289 if (btrfs_test_opt(root, NODATASUM))
290 return 0;
291
Chris Mason07157aa2007-08-30 08:50:51 -0400292 mutex_lock(&root->fs_info->fs_mutex);
293 path = btrfs_alloc_path();
294 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
295 if (IS_ERR(item)) {
296 ret = PTR_ERR(item);
297 /* a csum that isn't present is a preallocated region. */
298 if (ret == -ENOENT || ret == -EFBIG)
299 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400300 csum = 0;
Chris Mason07157aa2007-08-30 08:50:51 -0400301 goto out;
302 }
Chris Masonff79f812007-10-15 16:22:25 -0400303 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
304 BTRFS_CRC32_SIZE);
305 set_state_private(em_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400306out:
307 if (path)
308 btrfs_free_path(path);
309 mutex_unlock(&root->fs_info->fs_mutex);
310 return ret;
311}
312
313int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end)
314{
Chris Mason35ebb932007-10-30 16:56:53 -0400315 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400316 struct inode *inode = page->mapping->host;
Chris Mason07157aa2007-08-30 08:50:51 -0400317 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
318 char *kaddr;
319 u64 private;
320 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400321 struct btrfs_root *root = BTRFS_I(inode)->root;
322 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400323 unsigned long flags;
Chris Mason07157aa2007-08-30 08:50:51 -0400324
Chris Masonb6cda9b2007-12-14 15:30:32 -0500325 if (btrfs_test_opt(root, NODATASUM))
326 return 0;
327
Chris Mason07157aa2007-08-30 08:50:51 -0400328 ret = get_state_private(em_tree, start, &private);
Jens Axboebbf0d002007-10-19 09:23:07 -0400329 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400330 kaddr = kmap_atomic(page, KM_IRQ0);
331 if (ret) {
332 goto zeroit;
333 }
Chris Masonff79f812007-10-15 16:22:25 -0400334 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
335 btrfs_csum_final(csum, (char *)&csum);
336 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400337 goto zeroit;
338 }
339 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400340 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400341 return 0;
342
343zeroit:
344 printk("btrfs csum failed ino %lu off %llu\n",
345 page->mapping->host->i_ino, (unsigned long long)start);
Chris Masondb945352007-10-15 16:15:53 -0400346 memset(kaddr + offset, 1, end - start + 1);
347 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400348 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400349 local_irq_restore(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400350 return 0;
351}
Chris Masonb888db22007-08-27 16:49:44 -0400352
Chris Mason39279cc2007-06-12 06:35:45 -0400353void btrfs_read_locked_inode(struct inode *inode)
354{
355 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400356 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400357 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -0400358 struct btrfs_inode_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400359 struct btrfs_root *root = BTRFS_I(inode)->root;
360 struct btrfs_key location;
361 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400362 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400363 int ret;
364
365 path = btrfs_alloc_path();
366 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400367 mutex_lock(&root->fs_info->fs_mutex);
368
369 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
370 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400371 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400372 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400373
Chris Mason5f39d392007-10-15 16:14:19 -0400374 leaf = path->nodes[0];
375 inode_item = btrfs_item_ptr(leaf, path->slots[0],
376 struct btrfs_inode_item);
377
378 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
379 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
380 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
381 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
382 inode->i_size = btrfs_inode_size(leaf, inode_item);
383
384 tspec = btrfs_inode_atime(inode_item);
385 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
386 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
387
388 tspec = btrfs_inode_mtime(inode_item);
389 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
390 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
391
392 tspec = btrfs_inode_ctime(inode_item);
393 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
394 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
395
396 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
397 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400398 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400399 rdev = btrfs_inode_rdev(leaf, inode_item);
400
401 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400402 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
403 alloc_group_block);
404
405 btrfs_free_path(path);
406 inode_item = NULL;
407
408 mutex_unlock(&root->fs_info->fs_mutex);
409
410 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400411 case S_IFREG:
412 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason07157aa2007-08-30 08:50:51 -0400413 BTRFS_I(inode)->extent_tree.ops = &btrfs_extent_map_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400414 inode->i_fop = &btrfs_file_operations;
415 inode->i_op = &btrfs_file_inode_operations;
416 break;
417 case S_IFDIR:
418 inode->i_fop = &btrfs_dir_file_operations;
419 if (root == root->fs_info->tree_root)
420 inode->i_op = &btrfs_dir_ro_inode_operations;
421 else
422 inode->i_op = &btrfs_dir_inode_operations;
423 break;
424 case S_IFLNK:
425 inode->i_op = &btrfs_symlink_inode_operations;
426 inode->i_mapping->a_ops = &btrfs_symlink_aops;
427 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400428 default:
429 init_special_inode(inode, inode->i_mode, rdev);
430 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400431 }
432 return;
433
434make_bad:
435 btrfs_release_path(root, path);
436 btrfs_free_path(path);
437 mutex_unlock(&root->fs_info->fs_mutex);
438 make_bad_inode(inode);
439}
440
Chris Mason5f39d392007-10-15 16:14:19 -0400441static void fill_inode_item(struct extent_buffer *leaf,
442 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400443 struct inode *inode)
444{
Chris Mason5f39d392007-10-15 16:14:19 -0400445 btrfs_set_inode_uid(leaf, item, inode->i_uid);
446 btrfs_set_inode_gid(leaf, item, inode->i_gid);
447 btrfs_set_inode_size(leaf, item, inode->i_size);
448 btrfs_set_inode_mode(leaf, item, inode->i_mode);
449 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
450
451 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
452 inode->i_atime.tv_sec);
453 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
454 inode->i_atime.tv_nsec);
455
456 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
457 inode->i_mtime.tv_sec);
458 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
459 inode->i_mtime.tv_nsec);
460
461 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
462 inode->i_ctime.tv_sec);
463 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
464 inode->i_ctime.tv_nsec);
465
466 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
467 btrfs_set_inode_generation(leaf, item, inode->i_generation);
468 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
469 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400470 BTRFS_I(inode)->block_group->key.objectid);
471}
472
Chris Masona52d9a82007-08-27 16:49:44 -0400473int btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400474 struct btrfs_root *root,
475 struct inode *inode)
476{
477 struct btrfs_inode_item *inode_item;
478 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400479 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400480 int ret;
481
482 path = btrfs_alloc_path();
483 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400484 ret = btrfs_lookup_inode(trans, root, path,
485 &BTRFS_I(inode)->location, 1);
486 if (ret) {
487 if (ret > 0)
488 ret = -ENOENT;
489 goto failed;
490 }
491
Chris Mason5f39d392007-10-15 16:14:19 -0400492 leaf = path->nodes[0];
493 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400494 struct btrfs_inode_item);
495
Chris Mason5f39d392007-10-15 16:14:19 -0400496 fill_inode_item(leaf, inode_item, inode);
497 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400498 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400499 ret = 0;
500failed:
501 btrfs_release_path(root, path);
502 btrfs_free_path(path);
503 return ret;
504}
505
506
507static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
508 struct btrfs_root *root,
509 struct inode *dir,
510 struct dentry *dentry)
511{
512 struct btrfs_path *path;
513 const char *name = dentry->d_name.name;
514 int name_len = dentry->d_name.len;
515 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400516 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400517 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400518 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400519
520 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400521 if (!path) {
522 ret = -ENOMEM;
523 goto err;
524 }
525
Chris Mason39279cc2007-06-12 06:35:45 -0400526 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
527 name, name_len, -1);
528 if (IS_ERR(di)) {
529 ret = PTR_ERR(di);
530 goto err;
531 }
532 if (!di) {
533 ret = -ENOENT;
534 goto err;
535 }
Chris Mason5f39d392007-10-15 16:14:19 -0400536 leaf = path->nodes[0];
537 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400538 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400539 if (ret)
540 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400541 btrfs_release_path(root, path);
542
543 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400544 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400545 if (IS_ERR(di)) {
546 ret = PTR_ERR(di);
547 goto err;
548 }
549 if (!di) {
550 ret = -ENOENT;
551 goto err;
552 }
553 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason39279cc2007-06-12 06:35:45 -0400554
555 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -0500556 ret = btrfs_del_inode_ref(trans, root, name, name_len,
557 dentry->d_inode->i_ino,
558 dentry->d_parent->d_inode->i_ino);
559 if (ret) {
560 printk("failed to delete reference to %.*s, "
561 "inode %lu parent %lu\n", name_len, name,
562 dentry->d_inode->i_ino,
563 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -0500564 }
Chris Mason39279cc2007-06-12 06:35:45 -0400565err:
566 btrfs_free_path(path);
567 if (!ret) {
568 dir->i_size -= name_len * 2;
Chris Mason79c44582007-06-25 10:09:33 -0400569 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400570 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -0500571#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
572 dentry->d_inode->i_nlink--;
573#else
Chris Mason39279cc2007-06-12 06:35:45 -0400574 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -0500575#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400576 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400577 dir->i_sb->s_dirt = 1;
578 }
579 return ret;
580}
581
582static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
583{
584 struct btrfs_root *root;
585 struct btrfs_trans_handle *trans;
586 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -0500587 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400588
589 root = BTRFS_I(dir)->root;
590 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500591
592 ret = btrfs_check_free_space(root, 1, 1);
593 if (ret)
594 goto fail;
595
Chris Mason39279cc2007-06-12 06:35:45 -0400596 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400597
Chris Mason39279cc2007-06-12 06:35:45 -0400598 btrfs_set_trans_block_group(trans, dir);
599 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400600 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400601
Chris Mason39279cc2007-06-12 06:35:45 -0400602 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500603fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400604 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400605 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -0400606 return ret;
607}
608
609static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
610{
611 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -0500612 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400613 int ret;
614 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -0400615 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -0500616 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400617
Yan134d4512007-10-25 15:49:25 -0400618 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
619 return -ENOTEMPTY;
620
Chris Mason39279cc2007-06-12 06:35:45 -0400621 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500622 ret = btrfs_check_free_space(root, 1, 1);
623 if (ret)
624 goto fail;
625
Chris Mason39279cc2007-06-12 06:35:45 -0400626 trans = btrfs_start_transaction(root, 1);
627 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -0400628
629 /* now the directory is empty */
630 err = btrfs_unlink_trans(trans, root, dir, dentry);
631 if (!err) {
632 inode->i_size = 0;
633 }
Chris Mason39544012007-12-12 14:38:19 -0500634
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400635 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400636 ret = btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500637fail:
Yan134d4512007-10-25 15:49:25 -0400638 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400639 btrfs_btree_balance_dirty(root, nr);
Chris Mason39544012007-12-12 14:38:19 -0500640
Chris Mason39279cc2007-06-12 06:35:45 -0400641 if (ret && !err)
642 err = ret;
643 return err;
644}
645
646static int btrfs_free_inode(struct btrfs_trans_handle *trans,
647 struct btrfs_root *root,
648 struct inode *inode)
649{
650 struct btrfs_path *path;
651 int ret;
652
653 clear_inode(inode);
654
655 path = btrfs_alloc_path();
656 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400657 ret = btrfs_lookup_inode(trans, root, path,
658 &BTRFS_I(inode)->location, -1);
Chris Mason54aa1f42007-06-22 14:16:25 -0400659 if (ret > 0)
660 ret = -ENOENT;
661 if (!ret)
662 ret = btrfs_del_item(trans, root, path);
Chris Mason39279cc2007-06-12 06:35:45 -0400663 btrfs_free_path(path);
664 return ret;
665}
666
667/*
Chris Mason39279cc2007-06-12 06:35:45 -0400668 * this can truncate away extent items, csum items and directory items.
669 * It starts at a high offset and removes keys until it can't find
670 * any higher than i_size.
671 *
672 * csum items that cross the new i_size are truncated to the new size
673 * as well.
674 */
675static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
676 struct btrfs_root *root,
677 struct inode *inode)
678{
679 int ret;
680 struct btrfs_path *path;
681 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400682 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400683 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400684 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400685 struct btrfs_file_extent_item *fi;
686 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400687 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400688 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500689 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500690 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400691 int found_extent;
692 int del_item;
Chris Mason179e29e2007-11-01 11:28:41 -0400693 int extent_type = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400694
Chris Masona52d9a82007-08-27 16:49:44 -0400695 btrfs_drop_extent_cache(inode, inode->i_size, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400696 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400697 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400698 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400699
Chris Mason39279cc2007-06-12 06:35:45 -0400700 /* FIXME, add redo link to tree so we don't leak on crash */
701 key.objectid = inode->i_ino;
702 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400703 key.type = (u8)-1;
704
Chris Mason39279cc2007-06-12 06:35:45 -0400705 while(1) {
706 btrfs_init_path(path);
707 fi = NULL;
708 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
709 if (ret < 0) {
710 goto error;
711 }
712 if (ret > 0) {
713 BUG_ON(path->slots[0] == 0);
714 path->slots[0]--;
715 }
Chris Mason5f39d392007-10-15 16:14:19 -0400716 leaf = path->nodes[0];
717 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
718 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400719
Chris Mason5f39d392007-10-15 16:14:19 -0400720 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400721 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400722
Chris Mason39279cc2007-06-12 06:35:45 -0400723 if (found_type != BTRFS_CSUM_ITEM_KEY &&
724 found_type != BTRFS_DIR_ITEM_KEY &&
725 found_type != BTRFS_DIR_INDEX_KEY &&
726 found_type != BTRFS_EXTENT_DATA_KEY)
727 break;
728
Chris Mason5f39d392007-10-15 16:14:19 -0400729 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400730 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400731 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400732 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400733 extent_type = btrfs_file_extent_type(leaf, fi);
734 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400735 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400736 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400737 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
738 struct btrfs_item *item = btrfs_item_nr(leaf,
739 path->slots[0]);
740 item_end += btrfs_file_extent_inline_len(leaf,
741 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400742 }
Yan008630c2007-11-07 13:31:09 -0500743 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400744 }
745 if (found_type == BTRFS_CSUM_ITEM_KEY) {
746 ret = btrfs_csum_truncate(trans, root, path,
747 inode->i_size);
748 BUG_ON(ret);
749 }
Yan008630c2007-11-07 13:31:09 -0500750 if (item_end < inode->i_size) {
Chris Masonb888db22007-08-27 16:49:44 -0400751 if (found_type == BTRFS_DIR_ITEM_KEY) {
752 found_type = BTRFS_INODE_ITEM_KEY;
753 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
754 found_type = BTRFS_CSUM_ITEM_KEY;
755 } else if (found_type) {
756 found_type--;
757 } else {
758 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400759 }
Yana61721d2007-09-17 11:08:38 -0400760 btrfs_set_key_type(&key, found_type);
Yan65555a02007-10-25 15:42:57 -0400761 btrfs_release_path(root, path);
Chris Masonb888db22007-08-27 16:49:44 -0400762 continue;
Chris Mason39279cc2007-06-12 06:35:45 -0400763 }
Chris Mason5f39d392007-10-15 16:14:19 -0400764 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -0400765 del_item = 1;
766 else
767 del_item = 0;
768 found_extent = 0;
769
770 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -0400771 if (found_type != BTRFS_EXTENT_DATA_KEY)
772 goto delete;
773
774 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -0400775 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -0400776 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400777 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -0400778 u64 orig_num_bytes =
779 btrfs_file_extent_num_bytes(leaf, fi);
780 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -0400781 found_key.offset + root->sectorsize - 1;
Chris Masondb945352007-10-15 16:15:53 -0400782 btrfs_set_file_extent_num_bytes(leaf, fi,
783 extent_num_bytes);
784 num_dec = (orig_num_bytes -
785 extent_num_bytes) >> 9;
Yanbab9fb02007-09-17 11:13:11 -0400786 if (extent_start != 0) {
787 inode->i_blocks -= num_dec;
788 }
Chris Mason5f39d392007-10-15 16:14:19 -0400789 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400790 } else {
Chris Masondb945352007-10-15 16:15:53 -0400791 extent_num_bytes =
792 btrfs_file_extent_disk_num_bytes(leaf,
793 fi);
Chris Mason39279cc2007-06-12 06:35:45 -0400794 /* FIXME blocksize != 4096 */
Chris Masondb945352007-10-15 16:15:53 -0400795 num_dec = btrfs_file_extent_num_bytes(leaf,
796 fi) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400797 if (extent_start != 0) {
798 found_extent = 1;
799 inode->i_blocks -= num_dec;
800 }
Chris Masond8d5f3e2007-12-11 12:42:00 -0500801 root_gen = btrfs_header_generation(leaf);
802 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400803 }
Chris Mason179e29e2007-11-01 11:28:41 -0400804 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE &&
805 !del_item) {
806 u32 newsize = inode->i_size - found_key.offset;
807 newsize = btrfs_file_extent_calc_inline_size(newsize);
808 ret = btrfs_truncate_item(trans, root, path,
809 newsize, 1);
810 BUG_ON(ret);
Chris Mason39279cc2007-06-12 06:35:45 -0400811 }
Chris Mason179e29e2007-11-01 11:28:41 -0400812delete:
Chris Mason39279cc2007-06-12 06:35:45 -0400813 if (del_item) {
814 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400815 if (ret)
816 goto error;
Chris Mason39279cc2007-06-12 06:35:45 -0400817 } else {
818 break;
819 }
820 btrfs_release_path(root, path);
821 if (found_extent) {
822 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -0500823 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -0500824 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -0500825 root_gen, inode->i_ino,
826 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400827 BUG_ON(ret);
828 }
829 }
830 ret = 0;
831error:
832 btrfs_release_path(root, path);
833 btrfs_free_path(path);
834 inode->i_sb->s_dirt = 1;
835 return ret;
836}
837
Chris Masonb888db22007-08-27 16:49:44 -0400838static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -0400839 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -0400840{
Chris Mason39279cc2007-06-12 06:35:45 -0400841 char *kaddr;
Chris Masonb888db22007-08-27 16:49:44 -0400842 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason1832a6d2007-12-21 16:27:21 -0500843 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason35ebb932007-10-30 16:56:53 -0400844 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db22007-08-27 16:49:44 -0400845 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -0500846 u64 existing_delalloc;
847 u64 delalloc_start;
848 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400849
Chris Mason190662b2007-12-18 16:25:45 -0500850 WARN_ON(!PageLocked(page));
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400851 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400852
Chris Masonb888db22007-08-27 16:49:44 -0400853 lock_extent(em_tree, page_start, page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -0500854 delalloc_start = page_start;
855 existing_delalloc = count_range_bits(&BTRFS_I(inode)->extent_tree,
856 &delalloc_start, page_end,
857 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
Chris Masonb888db22007-08-27 16:49:44 -0400858 set_extent_delalloc(&BTRFS_I(inode)->extent_tree, page_start,
859 page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -0500860
861 spin_lock(&root->fs_info->delalloc_lock);
862 root->fs_info->delalloc_bytes += PAGE_CACHE_SIZE - existing_delalloc;
863 spin_unlock(&root->fs_info->delalloc_lock);
864
Chris Masona52d9a82007-08-27 16:49:44 -0400865 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db22007-08-27 16:49:44 -0400866 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400867 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
868 flush_dcache_page(page);
Chris Masonb888db22007-08-27 16:49:44 -0400869 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -0400870 }
Chris Masonb888db22007-08-27 16:49:44 -0400871 set_page_dirty(page);
872 unlock_extent(em_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400873
Chris Masona52d9a82007-08-27 16:49:44 -0400874 return ret;
875}
876
877/*
878 * taken from block_truncate_page, but does cow as it zeros out
879 * any bytes left in the last page in the file.
880 */
881static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
882{
883 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -0400884 struct btrfs_root *root = BTRFS_I(inode)->root;
885 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -0400886 pgoff_t index = from >> PAGE_CACHE_SHIFT;
887 unsigned offset = from & (PAGE_CACHE_SIZE-1);
888 struct page *page;
889 int ret = 0;
890 u64 page_start;
891
892 if ((offset & (blocksize - 1)) == 0)
893 goto out;
894
Chris Masondb945352007-10-15 16:15:53 -0400895 down_read(&root->snap_sem);
Chris Masona52d9a82007-08-27 16:49:44 -0400896 ret = -ENOMEM;
897 page = grab_cache_page(mapping, index);
898 if (!page)
899 goto out;
900 if (!PageUptodate(page)) {
901 ret = btrfs_readpage(NULL, page);
902 lock_page(page);
903 if (!PageUptodate(page)) {
904 ret = -EIO;
905 goto out;
906 }
907 }
Chris Mason35ebb932007-10-30 16:56:53 -0400908 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -0400909
Chris Masonb888db22007-08-27 16:49:44 -0400910 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400911
Chris Mason39279cc2007-06-12 06:35:45 -0400912 unlock_page(page);
913 page_cache_release(page);
Chris Mason011410b2007-09-10 19:58:36 -0400914 up_read(&BTRFS_I(inode)->root->snap_sem);
Chris Mason39279cc2007-06-12 06:35:45 -0400915out:
916 return ret;
917}
918
919static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
920{
921 struct inode *inode = dentry->d_inode;
922 int err;
923
924 err = inode_change_ok(inode, attr);
925 if (err)
926 return err;
927
928 if (S_ISREG(inode->i_mode) &&
929 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
930 struct btrfs_trans_handle *trans;
931 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason2bf5a722007-08-30 11:54:02 -0400932 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
933
Chris Mason5f39d392007-10-15 16:14:19 -0400934 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400935 u64 pos = (inode->i_size + mask) & ~mask;
Chris Mason2bf5a722007-08-30 11:54:02 -0400936 u64 block_end = attr->ia_size | mask;
Chris Mason39279cc2007-06-12 06:35:45 -0400937 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -0400938 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400939
940 if (attr->ia_size <= pos)
941 goto out;
942
Chris Mason1832a6d2007-12-21 16:27:21 -0500943 mutex_lock(&root->fs_info->fs_mutex);
944 err = btrfs_check_free_space(root, 1, 0);
945 mutex_unlock(&root->fs_info->fs_mutex);
946 if (err)
947 goto fail;
948
Chris Mason39279cc2007-06-12 06:35:45 -0400949 btrfs_truncate_page(inode->i_mapping, inode->i_size);
950
Chris Mason2bf5a722007-08-30 11:54:02 -0400951 lock_extent(em_tree, pos, block_end, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -0400952 hole_size = (attr->ia_size - pos + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -0400953
954 mutex_lock(&root->fs_info->fs_mutex);
955 trans = btrfs_start_transaction(root, 1);
956 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -0400957 err = btrfs_drop_extents(trans, root, inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400958 pos, pos + hole_size, pos,
959 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -0400960
Chris Mason179e29e2007-11-01 11:28:41 -0400961 if (alloc_hint != EXTENT_MAP_INLINE) {
962 err = btrfs_insert_file_extent(trans, root,
963 inode->i_ino,
964 pos, 0, 0, hole_size);
965 }
Chris Mason39279cc2007-06-12 06:35:45 -0400966 btrfs_end_transaction(trans, root);
967 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason2bf5a722007-08-30 11:54:02 -0400968 unlock_extent(em_tree, pos, block_end, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -0400969 if (err)
970 return err;
Chris Mason39279cc2007-06-12 06:35:45 -0400971 }
972out:
973 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -0500974fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400975 return err;
976}
977void btrfs_delete_inode(struct inode *inode)
978{
979 struct btrfs_trans_handle *trans;
980 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400981 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -0400982 int ret;
983
984 truncate_inode_pages(&inode->i_data, 0);
985 if (is_bad_inode(inode)) {
986 goto no_delete;
987 }
Chris Mason5f39d392007-10-15 16:14:19 -0400988
Chris Mason39279cc2007-06-12 06:35:45 -0400989 inode->i_size = 0;
990 mutex_lock(&root->fs_info->fs_mutex);
991 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400992
Chris Mason39279cc2007-06-12 06:35:45 -0400993 btrfs_set_trans_block_group(trans, inode);
994 ret = btrfs_truncate_in_trans(trans, root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -0400995 if (ret)
996 goto no_delete_lock;
Josef Bacik5103e942007-11-16 11:45:54 -0500997 ret = btrfs_delete_xattrs(trans, root, inode);
998 if (ret)
999 goto no_delete_lock;
Chris Mason54aa1f42007-06-22 14:16:25 -04001000 ret = btrfs_free_inode(trans, root, inode);
1001 if (ret)
1002 goto no_delete_lock;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001003 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04001004
Chris Mason39279cc2007-06-12 06:35:45 -04001005 btrfs_end_transaction(trans, root);
1006 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001007 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001008 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001009
1010no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001011 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001012 btrfs_end_transaction(trans, root);
1013 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001014 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001015no_delete:
1016 clear_inode(inode);
1017}
1018
1019/*
1020 * this returns the key found in the dir entry in the location pointer.
1021 * If no dir entries were found, location->objectid is 0.
1022 */
1023static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1024 struct btrfs_key *location)
1025{
1026 const char *name = dentry->d_name.name;
1027 int namelen = dentry->d_name.len;
1028 struct btrfs_dir_item *di;
1029 struct btrfs_path *path;
1030 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001031 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001032
Chris Mason39544012007-12-12 14:38:19 -05001033 if (namelen == 1 && strcmp(name, ".") == 0) {
1034 location->objectid = dir->i_ino;
1035 location->type = BTRFS_INODE_ITEM_KEY;
1036 location->offset = 0;
1037 return 0;
1038 }
Chris Mason39279cc2007-06-12 06:35:45 -04001039 path = btrfs_alloc_path();
1040 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001041
Chris Mason7a720532007-12-13 09:06:59 -05001042 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001043 struct btrfs_key key;
1044 struct extent_buffer *leaf;
1045 u32 nritems;
1046 int slot;
1047
1048 key.objectid = dir->i_ino;
1049 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1050 key.offset = 0;
1051 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1052 BUG_ON(ret == 0);
1053 ret = 0;
1054
1055 leaf = path->nodes[0];
1056 slot = path->slots[0];
1057 nritems = btrfs_header_nritems(leaf);
1058 if (slot >= nritems)
1059 goto out_err;
1060
1061 btrfs_item_key_to_cpu(leaf, &key, slot);
1062 if (key.objectid != dir->i_ino ||
1063 key.type != BTRFS_INODE_REF_KEY) {
1064 goto out_err;
1065 }
1066 location->objectid = key.offset;
1067 location->type = BTRFS_INODE_ITEM_KEY;
1068 location->offset = 0;
1069 goto out;
1070 }
1071
Chris Mason39279cc2007-06-12 06:35:45 -04001072 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1073 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001074 if (IS_ERR(di))
1075 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001076 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001077 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001078 }
Chris Mason5f39d392007-10-15 16:14:19 -04001079 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001080out:
Chris Mason39279cc2007-06-12 06:35:45 -04001081 btrfs_free_path(path);
1082 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001083out_err:
1084 location->objectid = 0;
1085 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001086}
1087
1088/*
1089 * when we hit a tree root in a directory, the btrfs part of the inode
1090 * needs to be changed to reflect the root directory of the tree root. This
1091 * is kind of like crossing a mount point.
1092 */
1093static int fixup_tree_root_location(struct btrfs_root *root,
1094 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001095 struct btrfs_root **sub_root,
1096 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001097{
1098 struct btrfs_path *path;
1099 struct btrfs_root_item *ri;
1100
1101 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1102 return 0;
1103 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1104 return 0;
1105
1106 path = btrfs_alloc_path();
1107 BUG_ON(!path);
1108 mutex_lock(&root->fs_info->fs_mutex);
1109
Josef Bacik58176a92007-08-29 15:47:34 -04001110 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1111 dentry->d_name.name,
1112 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001113 if (IS_ERR(*sub_root))
1114 return PTR_ERR(*sub_root);
1115
1116 ri = &(*sub_root)->root_item;
1117 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001118 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1119 location->offset = 0;
1120
1121 btrfs_free_path(path);
1122 mutex_unlock(&root->fs_info->fs_mutex);
1123 return 0;
1124}
1125
1126static int btrfs_init_locked_inode(struct inode *inode, void *p)
1127{
1128 struct btrfs_iget_args *args = p;
1129 inode->i_ino = args->ino;
1130 BTRFS_I(inode)->root = args->root;
Chris Masonb888db22007-08-27 16:49:44 -04001131 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
1132 inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001133 return 0;
1134}
1135
1136static int btrfs_find_actor(struct inode *inode, void *opaque)
1137{
1138 struct btrfs_iget_args *args = opaque;
1139 return (args->ino == inode->i_ino &&
1140 args->root == BTRFS_I(inode)->root);
1141}
1142
1143struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1144 struct btrfs_root *root)
1145{
1146 struct inode *inode;
1147 struct btrfs_iget_args args;
1148 args.ino = objectid;
1149 args.root = root;
1150
1151 inode = iget5_locked(s, objectid, btrfs_find_actor,
1152 btrfs_init_locked_inode,
1153 (void *)&args);
1154 return inode;
1155}
1156
1157static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1158 struct nameidata *nd)
1159{
1160 struct inode * inode;
1161 struct btrfs_inode *bi = BTRFS_I(dir);
1162 struct btrfs_root *root = bi->root;
1163 struct btrfs_root *sub_root = root;
1164 struct btrfs_key location;
1165 int ret;
1166
1167 if (dentry->d_name.len > BTRFS_NAME_LEN)
1168 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001169
Chris Mason39279cc2007-06-12 06:35:45 -04001170 mutex_lock(&root->fs_info->fs_mutex);
1171 ret = btrfs_inode_by_name(dir, dentry, &location);
1172 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001173
Chris Mason39279cc2007-06-12 06:35:45 -04001174 if (ret < 0)
1175 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001176
Chris Mason39279cc2007-06-12 06:35:45 -04001177 inode = NULL;
1178 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001179 ret = fixup_tree_root_location(root, &location, &sub_root,
1180 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001181 if (ret < 0)
1182 return ERR_PTR(ret);
1183 if (ret > 0)
1184 return ERR_PTR(-ENOENT);
1185 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1186 sub_root);
1187 if (!inode)
1188 return ERR_PTR(-EACCES);
1189 if (inode->i_state & I_NEW) {
1190 /* the inode and parent dir are two different roots */
1191 if (sub_root != root) {
1192 igrab(inode);
1193 sub_root->inode = inode;
1194 }
1195 BTRFS_I(inode)->root = sub_root;
1196 memcpy(&BTRFS_I(inode)->location, &location,
1197 sizeof(location));
1198 btrfs_read_locked_inode(inode);
1199 unlock_new_inode(inode);
1200 }
1201 }
1202 return d_splice_alias(inode, dentry);
1203}
1204
Chris Mason39279cc2007-06-12 06:35:45 -04001205static unsigned char btrfs_filetype_table[] = {
1206 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1207};
1208
1209static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1210{
Chris Mason6da6aba2007-12-18 16:15:09 -05001211 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001212 struct btrfs_root *root = BTRFS_I(inode)->root;
1213 struct btrfs_item *item;
1214 struct btrfs_dir_item *di;
1215 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001216 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001217 struct btrfs_path *path;
1218 int ret;
1219 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001220 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001221 int slot;
1222 int advance;
1223 unsigned char d_type;
1224 int over = 0;
1225 u32 di_cur;
1226 u32 di_total;
1227 u32 di_len;
1228 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001229 char tmp_name[32];
1230 char *name_ptr;
1231 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001232
1233 /* FIXME, use a real flag for deciding about the key type */
1234 if (root->fs_info->tree_root == root)
1235 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001236
Chris Mason39544012007-12-12 14:38:19 -05001237 /* special case for "." */
1238 if (filp->f_pos == 0) {
1239 over = filldir(dirent, ".", 1,
1240 1, inode->i_ino,
1241 DT_DIR);
1242 if (over)
1243 return 0;
1244 filp->f_pos = 1;
1245 }
1246
Chris Mason39279cc2007-06-12 06:35:45 -04001247 mutex_lock(&root->fs_info->fs_mutex);
1248 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001249 path = btrfs_alloc_path();
1250 path->reada = 2;
1251
1252 /* special case for .., just use the back ref */
1253 if (filp->f_pos == 1) {
1254 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1255 key.offset = 0;
1256 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1257 BUG_ON(ret == 0);
1258 leaf = path->nodes[0];
1259 slot = path->slots[0];
1260 nritems = btrfs_header_nritems(leaf);
1261 if (slot >= nritems) {
1262 btrfs_release_path(root, path);
1263 goto read_dir_items;
1264 }
1265 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1266 btrfs_release_path(root, path);
1267 if (found_key.objectid != key.objectid ||
1268 found_key.type != BTRFS_INODE_REF_KEY)
1269 goto read_dir_items;
1270 over = filldir(dirent, "..", 2,
1271 2, found_key.offset, DT_DIR);
1272 if (over)
1273 goto nopos;
1274 filp->f_pos = 2;
1275 }
1276
1277read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001278 btrfs_set_key_type(&key, key_type);
1279 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001280
Chris Mason39279cc2007-06-12 06:35:45 -04001281 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1282 if (ret < 0)
1283 goto err;
1284 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001285 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001286 leaf = path->nodes[0];
1287 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001288 slot = path->slots[0];
1289 if (advance || slot >= nritems) {
1290 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001291 ret = btrfs_next_leaf(root, path);
1292 if (ret)
1293 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001294 leaf = path->nodes[0];
1295 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001296 slot = path->slots[0];
1297 } else {
1298 slot++;
1299 path->slots[0]++;
1300 }
1301 }
1302 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001303 item = btrfs_item_nr(leaf, slot);
1304 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1305
1306 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001307 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001308 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001309 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001310 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001311 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001312
1313 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001314 advance = 1;
1315 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1316 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001317 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001318 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001319 struct btrfs_key location;
1320
1321 name_len = btrfs_dir_name_len(leaf, di);
1322 if (name_len < 32) {
1323 name_ptr = tmp_name;
1324 } else {
1325 name_ptr = kmalloc(name_len, GFP_NOFS);
1326 BUG_ON(!name_ptr);
1327 }
1328 read_extent_buffer(leaf, name_ptr,
1329 (unsigned long)(di + 1), name_len);
1330
1331 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1332 btrfs_dir_item_key_to_cpu(leaf, di, &location);
1333
1334 over = filldir(dirent, name_ptr, name_len,
1335 found_key.offset,
1336 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001337 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001338
1339 if (name_ptr != tmp_name)
1340 kfree(name_ptr);
1341
Chris Mason39279cc2007-06-12 06:35:45 -04001342 if (over)
1343 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001344 di_len = btrfs_dir_name_len(leaf, di) +
1345 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001346 di_cur += di_len;
1347 di = (struct btrfs_dir_item *)((char *)di + di_len);
1348 }
1349 }
1350 filp->f_pos++;
1351nopos:
1352 ret = 0;
1353err:
1354 btrfs_release_path(root, path);
1355 btrfs_free_path(path);
1356 mutex_unlock(&root->fs_info->fs_mutex);
1357 return ret;
1358}
1359
1360int btrfs_write_inode(struct inode *inode, int wait)
1361{
1362 struct btrfs_root *root = BTRFS_I(inode)->root;
1363 struct btrfs_trans_handle *trans;
1364 int ret = 0;
1365
1366 if (wait) {
1367 mutex_lock(&root->fs_info->fs_mutex);
1368 trans = btrfs_start_transaction(root, 1);
1369 btrfs_set_trans_block_group(trans, inode);
1370 ret = btrfs_commit_transaction(trans, root);
1371 mutex_unlock(&root->fs_info->fs_mutex);
1372 }
1373 return ret;
1374}
1375
1376/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001377 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001378 * inode changes. But, it is most likely to find the inode in cache.
1379 * FIXME, needs more benchmarking...there are no reasons other than performance
1380 * to keep or drop this code.
1381 */
1382void btrfs_dirty_inode(struct inode *inode)
1383{
1384 struct btrfs_root *root = BTRFS_I(inode)->root;
1385 struct btrfs_trans_handle *trans;
1386
1387 mutex_lock(&root->fs_info->fs_mutex);
1388 trans = btrfs_start_transaction(root, 1);
1389 btrfs_set_trans_block_group(trans, inode);
1390 btrfs_update_inode(trans, root, inode);
1391 btrfs_end_transaction(trans, root);
1392 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001393}
1394
1395static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1396 struct btrfs_root *root,
1397 u64 objectid,
1398 struct btrfs_block_group_cache *group,
1399 int mode)
1400{
1401 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001402 struct btrfs_inode_item *inode_item;
Chris Mason39279cc2007-06-12 06:35:45 -04001403 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001404 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04001405 int ret;
1406 int owner;
1407
Chris Mason5f39d392007-10-15 16:14:19 -04001408 path = btrfs_alloc_path();
1409 BUG_ON(!path);
1410
Chris Mason39279cc2007-06-12 06:35:45 -04001411 inode = new_inode(root->fs_info->sb);
1412 if (!inode)
1413 return ERR_PTR(-ENOMEM);
1414
Chris Masonb888db22007-08-27 16:49:44 -04001415 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
1416 inode->i_mapping, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04001417 BTRFS_I(inode)->root = root;
Chris Masonb888db22007-08-27 16:49:44 -04001418
Chris Mason39279cc2007-06-12 06:35:45 -04001419 if (mode & S_IFDIR)
1420 owner = 0;
1421 else
1422 owner = 1;
1423 group = btrfs_find_block_group(root, group, 0, 0, owner);
1424 BTRFS_I(inode)->block_group = group;
1425
Chris Mason5f39d392007-10-15 16:14:19 -04001426 ret = btrfs_insert_empty_inode(trans, root, path, objectid);
1427 if (ret)
1428 goto fail;
1429
Chris Mason39279cc2007-06-12 06:35:45 -04001430 inode->i_uid = current->fsuid;
1431 inode->i_gid = current->fsgid;
1432 inode->i_mode = mode;
1433 inode->i_ino = objectid;
1434 inode->i_blocks = 0;
1435 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001436 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1437 struct btrfs_inode_item);
1438 fill_inode_item(path->nodes[0], inode_item, inode);
1439 btrfs_mark_buffer_dirty(path->nodes[0]);
1440 btrfs_free_path(path);
1441
Chris Mason39279cc2007-06-12 06:35:45 -04001442 location = &BTRFS_I(inode)->location;
1443 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001444 location->offset = 0;
1445 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1446
Chris Mason39279cc2007-06-12 06:35:45 -04001447 insert_inode_hash(inode);
1448 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001449fail:
1450 btrfs_free_path(path);
1451 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001452}
1453
1454static inline u8 btrfs_inode_type(struct inode *inode)
1455{
1456 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1457}
1458
1459static int btrfs_add_link(struct btrfs_trans_handle *trans,
1460 struct dentry *dentry, struct inode *inode)
1461{
1462 int ret;
1463 struct btrfs_key key;
1464 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001465 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001466
Chris Mason39279cc2007-06-12 06:35:45 -04001467 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001468 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1469 key.offset = 0;
1470
1471 ret = btrfs_insert_dir_item(trans, root,
1472 dentry->d_name.name, dentry->d_name.len,
1473 dentry->d_parent->d_inode->i_ino,
1474 &key, btrfs_inode_type(inode));
1475 if (ret == 0) {
Chris Mason76fea002007-12-13 09:06:01 -05001476 ret = btrfs_insert_inode_ref(trans, root,
1477 dentry->d_name.name,
1478 dentry->d_name.len,
1479 inode->i_ino,
1480 dentry->d_parent->d_inode->i_ino);
Chris Mason79c44582007-06-25 10:09:33 -04001481 parent_inode = dentry->d_parent->d_inode;
1482 parent_inode->i_size += dentry->d_name.len * 2;
1483 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001484 ret = btrfs_update_inode(trans, root,
1485 dentry->d_parent->d_inode);
1486 }
1487 return ret;
1488}
1489
1490static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
1491 struct dentry *dentry, struct inode *inode)
1492{
1493 int err = btrfs_add_link(trans, dentry, inode);
1494 if (!err) {
1495 d_instantiate(dentry, inode);
1496 return 0;
1497 }
1498 if (err > 0)
1499 err = -EEXIST;
1500 return err;
1501}
1502
Josef Bacik618e21d2007-07-11 10:18:17 -04001503static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1504 int mode, dev_t rdev)
1505{
1506 struct btrfs_trans_handle *trans;
1507 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001508 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04001509 int err;
1510 int drop_inode = 0;
1511 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05001512 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04001513
1514 if (!new_valid_dev(rdev))
1515 return -EINVAL;
1516
1517 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001518 err = btrfs_check_free_space(root, 1, 0);
1519 if (err)
1520 goto fail;
1521
Josef Bacik618e21d2007-07-11 10:18:17 -04001522 trans = btrfs_start_transaction(root, 1);
1523 btrfs_set_trans_block_group(trans, dir);
1524
1525 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1526 if (err) {
1527 err = -ENOSPC;
1528 goto out_unlock;
1529 }
1530
1531 inode = btrfs_new_inode(trans, root, objectid,
1532 BTRFS_I(dir)->block_group, mode);
1533 err = PTR_ERR(inode);
1534 if (IS_ERR(inode))
1535 goto out_unlock;
1536
1537 btrfs_set_trans_block_group(trans, inode);
1538 err = btrfs_add_nondir(trans, dentry, inode);
1539 if (err)
1540 drop_inode = 1;
1541 else {
1542 inode->i_op = &btrfs_special_inode_operations;
1543 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001544 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001545 }
1546 dir->i_sb->s_dirt = 1;
1547 btrfs_update_inode_block_group(trans, inode);
1548 btrfs_update_inode_block_group(trans, dir);
1549out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001550 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001551 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001552fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04001553 mutex_unlock(&root->fs_info->fs_mutex);
1554
1555 if (drop_inode) {
1556 inode_dec_link_count(inode);
1557 iput(inode);
1558 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001559 btrfs_btree_balance_dirty(root, nr);
Josef Bacik618e21d2007-07-11 10:18:17 -04001560 return err;
1561}
1562
Chris Mason39279cc2007-06-12 06:35:45 -04001563static int btrfs_create(struct inode *dir, struct dentry *dentry,
1564 int mode, struct nameidata *nd)
1565{
1566 struct btrfs_trans_handle *trans;
1567 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001568 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001569 int err;
1570 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05001571 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001572 u64 objectid;
1573
1574 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001575 err = btrfs_check_free_space(root, 1, 0);
1576 if (err)
1577 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001578 trans = btrfs_start_transaction(root, 1);
1579 btrfs_set_trans_block_group(trans, dir);
1580
1581 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1582 if (err) {
1583 err = -ENOSPC;
1584 goto out_unlock;
1585 }
1586
1587 inode = btrfs_new_inode(trans, root, objectid,
1588 BTRFS_I(dir)->block_group, mode);
1589 err = PTR_ERR(inode);
1590 if (IS_ERR(inode))
1591 goto out_unlock;
1592
1593 btrfs_set_trans_block_group(trans, inode);
1594 err = btrfs_add_nondir(trans, dentry, inode);
1595 if (err)
1596 drop_inode = 1;
1597 else {
1598 inode->i_mapping->a_ops = &btrfs_aops;
1599 inode->i_fop = &btrfs_file_operations;
1600 inode->i_op = &btrfs_file_inode_operations;
Chris Masona52d9a82007-08-27 16:49:44 -04001601 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
1602 inode->i_mapping, GFP_NOFS);
Chris Mason07157aa2007-08-30 08:50:51 -04001603 BTRFS_I(inode)->extent_tree.ops = &btrfs_extent_map_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001604 }
1605 dir->i_sb->s_dirt = 1;
1606 btrfs_update_inode_block_group(trans, inode);
1607 btrfs_update_inode_block_group(trans, dir);
1608out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001609 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001610 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001611fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001612 mutex_unlock(&root->fs_info->fs_mutex);
1613
1614 if (drop_inode) {
1615 inode_dec_link_count(inode);
1616 iput(inode);
1617 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001618 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001619 return err;
1620}
1621
1622static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1623 struct dentry *dentry)
1624{
1625 struct btrfs_trans_handle *trans;
1626 struct btrfs_root *root = BTRFS_I(dir)->root;
1627 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001628 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001629 int err;
1630 int drop_inode = 0;
1631
1632 if (inode->i_nlink == 0)
1633 return -ENOENT;
1634
Chris Mason6da6aba2007-12-18 16:15:09 -05001635#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1636 inode->i_nlink++;
1637#else
Chris Mason39279cc2007-06-12 06:35:45 -04001638 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05001639#endif
Chris Mason39279cc2007-06-12 06:35:45 -04001640 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001641 err = btrfs_check_free_space(root, 1, 0);
1642 if (err)
1643 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001644 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001645
Chris Mason39279cc2007-06-12 06:35:45 -04001646 btrfs_set_trans_block_group(trans, dir);
1647 atomic_inc(&inode->i_count);
1648 err = btrfs_add_nondir(trans, dentry, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001649
Chris Mason39279cc2007-06-12 06:35:45 -04001650 if (err)
1651 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001652
Chris Mason39279cc2007-06-12 06:35:45 -04001653 dir->i_sb->s_dirt = 1;
1654 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04001655 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001656
Chris Mason54aa1f42007-06-22 14:16:25 -04001657 if (err)
1658 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001659
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001660 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001661 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001662fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001663 mutex_unlock(&root->fs_info->fs_mutex);
1664
1665 if (drop_inode) {
1666 inode_dec_link_count(inode);
1667 iput(inode);
1668 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001669 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001670 return err;
1671}
1672
Chris Mason39279cc2007-06-12 06:35:45 -04001673static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1674{
1675 struct inode *inode;
1676 struct btrfs_trans_handle *trans;
1677 struct btrfs_root *root = BTRFS_I(dir)->root;
1678 int err = 0;
1679 int drop_on_err = 0;
1680 u64 objectid;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001681 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04001682
1683 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001684 err = btrfs_check_free_space(root, 1, 0);
1685 if (err)
1686 goto out_unlock;
1687
Chris Mason39279cc2007-06-12 06:35:45 -04001688 trans = btrfs_start_transaction(root, 1);
1689 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04001690
Chris Mason39279cc2007-06-12 06:35:45 -04001691 if (IS_ERR(trans)) {
1692 err = PTR_ERR(trans);
1693 goto out_unlock;
1694 }
1695
1696 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1697 if (err) {
1698 err = -ENOSPC;
1699 goto out_unlock;
1700 }
1701
1702 inode = btrfs_new_inode(trans, root, objectid,
1703 BTRFS_I(dir)->block_group, S_IFDIR | mode);
1704 if (IS_ERR(inode)) {
1705 err = PTR_ERR(inode);
1706 goto out_fail;
1707 }
Chris Mason5f39d392007-10-15 16:14:19 -04001708
Chris Mason39279cc2007-06-12 06:35:45 -04001709 drop_on_err = 1;
1710 inode->i_op = &btrfs_dir_inode_operations;
1711 inode->i_fop = &btrfs_dir_file_operations;
1712 btrfs_set_trans_block_group(trans, inode);
1713
Chris Mason39544012007-12-12 14:38:19 -05001714 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001715 err = btrfs_update_inode(trans, root, inode);
1716 if (err)
1717 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001718
Chris Mason39279cc2007-06-12 06:35:45 -04001719 err = btrfs_add_link(trans, dentry, inode);
1720 if (err)
1721 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04001722
Chris Mason39279cc2007-06-12 06:35:45 -04001723 d_instantiate(dentry, inode);
1724 drop_on_err = 0;
1725 dir->i_sb->s_dirt = 1;
1726 btrfs_update_inode_block_group(trans, inode);
1727 btrfs_update_inode_block_group(trans, dir);
1728
1729out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001730 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001731 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04001732
Chris Mason39279cc2007-06-12 06:35:45 -04001733out_unlock:
1734 mutex_unlock(&root->fs_info->fs_mutex);
1735 if (drop_on_err)
1736 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001737 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04001738 return err;
1739}
1740
Chris Masona52d9a82007-08-27 16:49:44 -04001741struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
1742 size_t page_offset, u64 start, u64 end,
1743 int create)
1744{
1745 int ret;
1746 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04001747 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04001748 u64 extent_start = 0;
1749 u64 extent_end = 0;
1750 u64 objectid = inode->i_ino;
1751 u32 found_type;
1752 int failed_insert = 0;
1753 struct btrfs_path *path;
1754 struct btrfs_root *root = BTRFS_I(inode)->root;
1755 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04001756 struct extent_buffer *leaf;
1757 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04001758 struct extent_map *em = NULL;
1759 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
1760 struct btrfs_trans_handle *trans = NULL;
1761
1762 path = btrfs_alloc_path();
1763 BUG_ON(!path);
1764 mutex_lock(&root->fs_info->fs_mutex);
1765
1766again:
1767 em = lookup_extent_mapping(em_tree, start, end);
1768 if (em) {
1769 goto out;
1770 }
1771 if (!em) {
1772 em = alloc_extent_map(GFP_NOFS);
1773 if (!em) {
1774 err = -ENOMEM;
1775 goto out;
1776 }
Chris Mason5f39d392007-10-15 16:14:19 -04001777 em->start = EXTENT_MAP_HOLE;
1778 em->end = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04001779 }
1780 em->bdev = inode->i_sb->s_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04001781 ret = btrfs_lookup_file_extent(trans, root, path,
1782 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04001783 if (ret < 0) {
1784 err = ret;
1785 goto out;
1786 }
1787
1788 if (ret != 0) {
1789 if (path->slots[0] == 0)
1790 goto not_found;
1791 path->slots[0]--;
1792 }
1793
Chris Mason5f39d392007-10-15 16:14:19 -04001794 leaf = path->nodes[0];
1795 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04001796 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04001797 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04001798 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1799 found_type = btrfs_key_type(&found_key);
1800 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04001801 found_type != BTRFS_EXTENT_DATA_KEY) {
1802 goto not_found;
1803 }
1804
Chris Mason5f39d392007-10-15 16:14:19 -04001805 found_type = btrfs_file_extent_type(leaf, item);
1806 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04001807 if (found_type == BTRFS_FILE_EXTENT_REG) {
1808 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04001809 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04001810 err = 0;
Chris Masonb888db22007-08-27 16:49:44 -04001811 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04001812 em->start = start;
1813 if (start < extent_start) {
Chris Masonb888db22007-08-27 16:49:44 -04001814 if (end < extent_start)
1815 goto not_found;
Chris Masona52d9a82007-08-27 16:49:44 -04001816 em->end = extent_end - 1;
1817 } else {
1818 em->end = end;
1819 }
1820 goto not_found_em;
1821 }
Chris Masondb945352007-10-15 16:15:53 -04001822 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
1823 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04001824 em->start = extent_start;
1825 em->end = extent_end - 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001826 em->block_start = EXTENT_MAP_HOLE;
1827 em->block_end = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04001828 goto insert;
1829 }
Chris Masondb945352007-10-15 16:15:53 -04001830 bytenr += btrfs_file_extent_offset(leaf, item);
1831 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04001832 em->block_end = em->block_start +
Chris Masondb945352007-10-15 16:15:53 -04001833 btrfs_file_extent_num_bytes(leaf, item) - 1;
Chris Masona52d9a82007-08-27 16:49:44 -04001834 em->start = extent_start;
1835 em->end = extent_end - 1;
1836 goto insert;
1837 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -04001838 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04001839 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04001840 size_t size;
1841 size_t extent_offset;
1842 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04001843
Chris Mason5f39d392007-10-15 16:14:19 -04001844 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
1845 path->slots[0]));
Yan689f9342007-10-29 11:41:07 -04001846 extent_end = (extent_start + size - 1) |
Chris Masondb945352007-10-15 16:15:53 -04001847 ((u64)root->sectorsize - 1);
Chris Masonb888db22007-08-27 16:49:44 -04001848 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04001849 em->start = start;
1850 if (start < extent_start) {
Chris Masonb888db22007-08-27 16:49:44 -04001851 if (end < extent_start)
1852 goto not_found;
Chris Mason50b78c22007-09-20 14:14:42 -04001853 em->end = extent_end;
Chris Masona52d9a82007-08-27 16:49:44 -04001854 } else {
1855 em->end = end;
1856 }
1857 goto not_found_em;
1858 }
1859 em->block_start = EXTENT_MAP_INLINE;
1860 em->block_end = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04001861
1862 if (!page) {
1863 em->start = extent_start;
1864 em->end = extent_start + size - 1;
1865 goto out;
1866 }
1867
Chris Mason35ebb932007-10-30 16:56:53 -04001868 extent_offset = ((u64)page->index << PAGE_CACHE_SHIFT) -
Yan689f9342007-10-29 11:41:07 -04001869 extent_start + page_offset;
1870 copy_size = min_t(u64, PAGE_CACHE_SIZE - page_offset,
1871 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04001872 em->start = extent_start + extent_offset;
1873 em->end = (em->start + copy_size -1) |
1874 ((u64)root->sectorsize -1);
Yan689f9342007-10-29 11:41:07 -04001875 map = kmap(page);
1876 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04001877 if (create == 0 && !PageUptodate(page)) {
1878 read_extent_buffer(leaf, map + page_offset, ptr,
1879 copy_size);
1880 flush_dcache_page(page);
1881 } else if (create && PageUptodate(page)) {
1882 if (!trans) {
1883 kunmap(page);
1884 free_extent_map(em);
1885 em = NULL;
1886 btrfs_release_path(root, path);
1887 trans = btrfs_start_transaction(root, 1);
1888 goto again;
1889 }
1890 write_extent_buffer(leaf, map + page_offset, ptr,
1891 copy_size);
1892 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04001893 }
Chris Masona52d9a82007-08-27 16:49:44 -04001894 kunmap(page);
Chris Mason3326d1b2007-10-15 16:18:25 -04001895 set_extent_uptodate(em_tree, em->start, em->end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001896 goto insert;
1897 } else {
1898 printk("unkknown found_type %d\n", found_type);
1899 WARN_ON(1);
1900 }
1901not_found:
1902 em->start = start;
1903 em->end = end;
1904not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04001905 em->block_start = EXTENT_MAP_HOLE;
1906 em->block_end = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04001907insert:
1908 btrfs_release_path(root, path);
1909 if (em->start > start || em->end < start) {
Chris Masonb888db22007-08-27 16:49:44 -04001910 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->end, start, end);
Chris Masona52d9a82007-08-27 16:49:44 -04001911 err = -EIO;
1912 goto out;
1913 }
1914 ret = add_extent_mapping(em_tree, em);
1915 if (ret == -EEXIST) {
1916 free_extent_map(em);
Chris Mason2bf5a722007-08-30 11:54:02 -04001917 em = NULL;
Chris Mason6da6aba2007-12-18 16:15:09 -05001918 if (0 && failed_insert == 1) {
1919 btrfs_drop_extent_cache(inode, start, end);
1920 }
Chris Masona52d9a82007-08-27 16:49:44 -04001921 failed_insert++;
1922 if (failed_insert > 5) {
1923 printk("failing to insert %Lu %Lu\n", start, end);
1924 err = -EIO;
1925 goto out;
1926 }
Chris Masona52d9a82007-08-27 16:49:44 -04001927 goto again;
1928 }
1929 err = 0;
1930out:
1931 btrfs_free_path(path);
1932 if (trans) {
1933 ret = btrfs_end_transaction(trans, root);
1934 if (!err)
1935 err = ret;
1936 }
1937 mutex_unlock(&root->fs_info->fs_mutex);
1938 if (err) {
1939 free_extent_map(em);
1940 WARN_ON(1);
1941 return ERR_PTR(err);
1942 }
1943 return em;
1944}
1945
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04001946static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04001947{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04001948 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04001949}
1950
1951static int btrfs_prepare_write(struct file *file, struct page *page,
1952 unsigned from, unsigned to)
1953{
Chris Mason1832a6d2007-12-21 16:27:21 -05001954 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
1955 int err;
1956
1957 mutex_lock(&root->fs_info->fs_mutex);
1958 err = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason5d4fb732007-12-21 16:27:23 -05001959 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001960 if (err)
1961 return -ENOSPC;
1962
Chris Masona52d9a82007-08-27 16:49:44 -04001963 return extent_prepare_write(&BTRFS_I(page->mapping->host)->extent_tree,
1964 page->mapping->host, page, from, to,
1965 btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04001966}
1967
Chris Mason9ebefb182007-06-15 13:50:00 -04001968int btrfs_readpage(struct file *file, struct page *page)
1969{
Chris Masona52d9a82007-08-27 16:49:44 -04001970 struct extent_map_tree *tree;
1971 tree = &BTRFS_I(page->mapping->host)->extent_tree;
1972 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04001973}
Chris Mason1832a6d2007-12-21 16:27:21 -05001974
Chris Mason39279cc2007-06-12 06:35:45 -04001975static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
1976{
Chris Masona52d9a82007-08-27 16:49:44 -04001977 struct extent_map_tree *tree;
Chris Masonb888db22007-08-27 16:49:44 -04001978
1979
1980 if (current->flags & PF_MEMALLOC) {
1981 redirty_page_for_writepage(wbc, page);
1982 unlock_page(page);
1983 return 0;
1984 }
Chris Masona52d9a82007-08-27 16:49:44 -04001985 tree = &BTRFS_I(page->mapping->host)->extent_tree;
1986 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
1987}
Chris Mason39279cc2007-06-12 06:35:45 -04001988
Chris Masonb293f02e2007-11-01 19:45:34 -04001989static int btrfs_writepages(struct address_space *mapping,
1990 struct writeback_control *wbc)
1991{
1992 struct extent_map_tree *tree;
1993 tree = &BTRFS_I(mapping->host)->extent_tree;
1994 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
1995}
1996
Chris Mason3ab2fb52007-11-08 10:59:22 -05001997static int
1998btrfs_readpages(struct file *file, struct address_space *mapping,
1999 struct list_head *pages, unsigned nr_pages)
2000{
2001 struct extent_map_tree *tree;
2002 tree = &BTRFS_I(mapping->host)->extent_tree;
2003 return extent_readpages(tree, mapping, pages, nr_pages,
2004 btrfs_get_extent);
2005}
2006
Chris Masona52d9a82007-08-27 16:49:44 -04002007static int btrfs_releasepage(struct page *page, gfp_t unused_gfp_flags)
2008{
2009 struct extent_map_tree *tree;
2010 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002011
Chris Masona52d9a82007-08-27 16:49:44 -04002012 tree = &BTRFS_I(page->mapping->host)->extent_tree;
2013 ret = try_release_extent_mapping(tree, page);
2014 if (ret == 1) {
2015 ClearPagePrivate(page);
2016 set_page_private(page, 0);
2017 page_cache_release(page);
2018 }
2019 return ret;
2020}
Chris Mason39279cc2007-06-12 06:35:45 -04002021
Chris Masona52d9a82007-08-27 16:49:44 -04002022static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2023{
2024 struct extent_map_tree *tree;
2025
2026 tree = &BTRFS_I(page->mapping->host)->extent_tree;
2027 extent_invalidatepage(tree, page, offset);
2028 btrfs_releasepage(page, GFP_NOFS);
Chris Mason39279cc2007-06-12 06:35:45 -04002029}
2030
Chris Mason9ebefb182007-06-15 13:50:00 -04002031/*
2032 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2033 * called from a page fault handler when a page is first dirtied. Hence we must
2034 * be careful to check for EOF conditions here. We set the page up correctly
2035 * for a written page which means we get ENOSPC checking when writing into
2036 * holes and correct delalloc and unwritten extent mapping on filesystems that
2037 * support these features.
2038 *
2039 * We are not allowed to take the i_mutex here so we have to play games to
2040 * protect against truncate races as the page could now be beyond EOF. Because
2041 * vmtruncate() writes the inode size before removing pages, once we have the
2042 * page lock we can determine safely if the page is beyond EOF. If it is not
2043 * beyond EOF, then the page is guaranteed safe against truncation until we
2044 * unlock the page.
2045 */
2046int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2047{
Chris Mason6da6aba2007-12-18 16:15:09 -05002048 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002049 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9ebefb182007-06-15 13:50:00 -04002050 unsigned long end;
2051 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002052 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002053 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002054
Chris Mason1832a6d2007-12-21 16:27:21 -05002055 mutex_lock(&root->fs_info->fs_mutex);
2056 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
2057 mutex_lock(&root->fs_info->fs_mutex);
2058 if (ret)
2059 goto out;
2060
2061 ret = -EINVAL;
2062
Chris Mason011410b2007-09-10 19:58:36 -04002063 down_read(&BTRFS_I(inode)->root->snap_sem);
Chris Mason9ebefb182007-06-15 13:50:00 -04002064 lock_page(page);
2065 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002066 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04002067 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04002068
Chris Mason9ebefb182007-06-15 13:50:00 -04002069 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04002070 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002071 /* page got truncated out from underneath us */
2072 goto out_unlock;
2073 }
2074
2075 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002076 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04002077 end = size & ~PAGE_CACHE_MASK;
2078 else
2079 end = PAGE_CACHE_SIZE;
2080
Chris Masonb888db22007-08-27 16:49:44 -04002081 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04002082
2083out_unlock:
Chris Mason011410b2007-09-10 19:58:36 -04002084 up_read(&BTRFS_I(inode)->root->snap_sem);
Chris Mason9ebefb182007-06-15 13:50:00 -04002085 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002086out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002087 return ret;
2088}
2089
Chris Mason39279cc2007-06-12 06:35:45 -04002090static void btrfs_truncate(struct inode *inode)
2091{
2092 struct btrfs_root *root = BTRFS_I(inode)->root;
2093 int ret;
2094 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002095 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002096
2097 if (!S_ISREG(inode->i_mode))
2098 return;
2099 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2100 return;
2101
2102 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2103
2104 mutex_lock(&root->fs_info->fs_mutex);
2105 trans = btrfs_start_transaction(root, 1);
2106 btrfs_set_trans_block_group(trans, inode);
2107
2108 /* FIXME, add redo link to tree so we don't leak on crash */
2109 ret = btrfs_truncate_in_trans(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -04002110 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002111 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002112
Chris Mason39279cc2007-06-12 06:35:45 -04002113 ret = btrfs_end_transaction(trans, root);
2114 BUG_ON(ret);
2115 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002116 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002117}
2118
2119int btrfs_commit_write(struct file *file, struct page *page,
2120 unsigned from, unsigned to)
2121{
Chris Masone9906a92007-12-14 12:56:58 -05002122 loff_t pos = ((loff_t)page->index << PAGE_CACHE_SHIFT) + to;
2123 struct inode *inode = page->mapping->host;
2124
2125 btrfs_cow_one_page(inode, page, PAGE_CACHE_SIZE);
2126
Chris Masone9906a92007-12-14 12:56:58 -05002127 if (pos > inode->i_size) {
2128 i_size_write(inode, pos);
2129 mark_inode_dirty(inode);
2130 }
2131 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002132}
2133
2134static int create_subvol(struct btrfs_root *root, char *name, int namelen)
2135{
2136 struct btrfs_trans_handle *trans;
2137 struct btrfs_key key;
2138 struct btrfs_root_item root_item;
2139 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002140 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04002141 struct btrfs_root *new_root;
2142 struct inode *inode;
2143 struct inode *dir;
2144 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002145 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002146 u64 objectid;
2147 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002148 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002149
2150 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002151 ret = btrfs_check_free_space(root, 1, 0);
2152 if (ret)
2153 goto fail_commit;
2154
Chris Mason39279cc2007-06-12 06:35:45 -04002155 trans = btrfs_start_transaction(root, 1);
2156 BUG_ON(!trans);
2157
Chris Mason7bb86312007-12-11 09:25:06 -05002158 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2159 0, &objectid);
2160 if (ret)
2161 goto fail;
2162
2163 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2164 objectid, trans->transid, 0, 0,
2165 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002166 if (IS_ERR(leaf))
2167 return PTR_ERR(leaf);
2168
2169 btrfs_set_header_nritems(leaf, 0);
2170 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04002171 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002172 btrfs_set_header_generation(leaf, trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002173 btrfs_set_header_owner(leaf, objectid);
2174
Chris Mason5f39d392007-10-15 16:14:19 -04002175 write_extent_buffer(leaf, root->fs_info->fsid,
2176 (unsigned long)btrfs_header_fsid(leaf),
2177 BTRFS_FSID_SIZE);
2178 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002179
2180 inode_item = &root_item.inode;
2181 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002182 inode_item->generation = cpu_to_le64(1);
2183 inode_item->size = cpu_to_le64(3);
2184 inode_item->nlink = cpu_to_le32(1);
2185 inode_item->nblocks = cpu_to_le64(1);
2186 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04002187
Chris Masondb945352007-10-15 16:15:53 -04002188 btrfs_set_root_bytenr(&root_item, leaf->start);
2189 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002190 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002191 btrfs_set_root_used(&root_item, 0);
2192
Chris Mason5eda7b52007-06-22 14:16:25 -04002193 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2194 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002195
2196 free_extent_buffer(leaf);
2197 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002198
Chris Mason39279cc2007-06-12 06:35:45 -04002199 btrfs_set_root_dirid(&root_item, new_dirid);
2200
2201 key.objectid = objectid;
2202 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002203 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2204 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2205 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002206 if (ret)
2207 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002208
2209 /*
2210 * insert the directory item
2211 */
2212 key.offset = (u64)-1;
2213 dir = root->fs_info->sb->s_root->d_inode;
2214 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2215 name, namelen, dir->i_ino, &key,
2216 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04002217 if (ret)
2218 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002219
Chris Mason39544012007-12-12 14:38:19 -05002220 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2221 name, namelen, objectid,
2222 root->fs_info->sb->s_root->d_inode->i_ino);
2223 if (ret)
2224 goto fail;
2225
Chris Mason39279cc2007-06-12 06:35:45 -04002226 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002227 if (ret)
2228 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04002229
Josef Bacik58176a92007-08-29 15:47:34 -04002230 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04002231 BUG_ON(!new_root);
2232
2233 trans = btrfs_start_transaction(new_root, 1);
2234 BUG_ON(!trans);
2235
2236 inode = btrfs_new_inode(trans, new_root, new_dirid,
2237 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002238 if (IS_ERR(inode))
2239 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002240 inode->i_op = &btrfs_dir_inode_operations;
2241 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002242 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002243
Chris Mason39544012007-12-12 14:38:19 -05002244 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2245 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002246 inode->i_nlink = 1;
Chris Mason39544012007-12-12 14:38:19 -05002247 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002248 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002249 if (ret)
2250 goto fail;
2251fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002252 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04002253 err = btrfs_commit_transaction(trans, root);
2254 if (err && !ret)
2255 ret = err;
2256fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04002257 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002258 btrfs_btree_balance_dirty(root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -04002259 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002260}
2261
2262static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2263{
2264 struct btrfs_trans_handle *trans;
2265 struct btrfs_key key;
2266 struct btrfs_root_item new_root_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002267 struct extent_buffer *tmp;
Chris Mason39279cc2007-06-12 06:35:45 -04002268 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002269 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002270 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05002271 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002272
2273 if (!root->ref_cows)
2274 return -EINVAL;
2275
Chris Mason011410b2007-09-10 19:58:36 -04002276 down_write(&root->snap_sem);
2277 freeze_bdev(root->fs_info->sb->s_bdev);
2278 thaw_bdev(root->fs_info->sb->s_bdev, root->fs_info->sb);
2279
Chris Mason39279cc2007-06-12 06:35:45 -04002280 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002281 ret = btrfs_check_free_space(root, 1, 0);
2282 if (ret)
2283 goto fail_unlock;
2284
Chris Mason39279cc2007-06-12 06:35:45 -04002285 trans = btrfs_start_transaction(root, 1);
2286 BUG_ON(!trans);
2287
2288 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002289 if (ret)
2290 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002291
2292 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2293 0, &objectid);
Chris Mason54aa1f42007-06-22 14:16:25 -04002294 if (ret)
2295 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002296
2297 memcpy(&new_root_item, &root->root_item,
2298 sizeof(new_root_item));
2299
2300 key.objectid = objectid;
2301 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002302 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
Chris Masonbe20aa92007-12-17 20:14:01 -05002303
Yan96919752007-12-04 13:20:20 -05002304 extent_buffer_get(root->node);
Chris Mason83df7c12007-08-27 16:49:44 -04002305 btrfs_cow_block(trans, root, root->node, NULL, 0, &tmp);
Yan96919752007-12-04 13:20:20 -05002306 free_extent_buffer(tmp);
Chris Masonbe20aa92007-12-17 20:14:01 -05002307
2308 btrfs_copy_root(trans, root, root->node, &tmp, objectid);
2309
2310 btrfs_set_root_bytenr(&new_root_item, tmp->start);
2311 btrfs_set_root_level(&new_root_item, btrfs_header_level(tmp));
Chris Mason39279cc2007-06-12 06:35:45 -04002312 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2313 &new_root_item);
Chris Masonbe20aa92007-12-17 20:14:01 -05002314 free_extent_buffer(tmp);
Chris Mason54aa1f42007-06-22 14:16:25 -04002315 if (ret)
2316 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002317
2318 /*
2319 * insert the directory item
2320 */
2321 key.offset = (u64)-1;
2322 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2323 name, namelen,
2324 root->fs_info->sb->s_root->d_inode->i_ino,
2325 &key, BTRFS_FT_DIR);
2326
Chris Mason54aa1f42007-06-22 14:16:25 -04002327 if (ret)
2328 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002329
Chris Mason39544012007-12-12 14:38:19 -05002330 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2331 name, namelen, objectid,
2332 root->fs_info->sb->s_root->d_inode->i_ino);
2333
2334 if (ret)
2335 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04002336fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002337 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04002338 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002339
Chris Mason54aa1f42007-06-22 14:16:25 -04002340 if (err && !ret)
2341 ret = err;
Chris Mason1832a6d2007-12-21 16:27:21 -05002342fail_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002343 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason011410b2007-09-10 19:58:36 -04002344 up_write(&root->snap_sem);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002345 btrfs_btree_balance_dirty(root, nr);
Chris Mason54aa1f42007-06-22 14:16:25 -04002346 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002347}
2348
Chris Masonedbd8d42007-12-21 16:27:24 -05002349unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002350 struct file_ra_state *ra, struct file *file,
2351 pgoff_t offset, pgoff_t last_index)
2352{
2353 pgoff_t req_size;
2354
2355#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2356 req_size = last_index - offset + 1;
2357 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2358 return offset;
2359#else
2360 req_size = min(last_index - offset + 1, (pgoff_t)128);
2361 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2362 return offset + req_size;
2363#endif
2364}
2365
2366int btrfs_defrag_file(struct file *file) {
Chris Mason6da6aba2007-12-18 16:15:09 -05002367 struct inode *inode = fdentry(file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002368 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason86479a02007-09-10 19:58:16 -04002369 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2370 struct page *page;
2371 unsigned long last_index;
2372 unsigned long ra_index = 0;
2373 u64 page_start;
2374 u64 page_end;
Chris Masonedbd8d42007-12-21 16:27:24 -05002375 u64 delalloc_start;
2376 u64 existing_delalloc;
Chris Mason86479a02007-09-10 19:58:16 -04002377 unsigned long i;
Chris Mason1832a6d2007-12-21 16:27:21 -05002378 int ret;
2379
2380 mutex_lock(&root->fs_info->fs_mutex);
2381 ret = btrfs_check_free_space(root, inode->i_size, 0);
2382 mutex_unlock(&root->fs_info->fs_mutex);
2383 if (ret)
2384 return -ENOSPC;
Chris Mason86479a02007-09-10 19:58:16 -04002385
2386 mutex_lock(&inode->i_mutex);
2387 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2388 for (i = 0; i <= last_index; i++) {
2389 if (i == ra_index) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002390 ra_index = btrfs_force_ra(inode->i_mapping,
2391 &file->f_ra,
2392 file, ra_index, last_index);
Chris Mason86479a02007-09-10 19:58:16 -04002393 }
2394 page = grab_cache_page(inode->i_mapping, i);
2395 if (!page)
2396 goto out_unlock;
2397 if (!PageUptodate(page)) {
2398 btrfs_readpage(NULL, page);
2399 lock_page(page);
2400 if (!PageUptodate(page)) {
2401 unlock_page(page);
2402 page_cache_release(page);
2403 goto out_unlock;
2404 }
2405 }
Chris Mason35ebb932007-10-30 16:56:53 -04002406 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002407 page_end = page_start + PAGE_CACHE_SIZE - 1;
2408
2409 lock_extent(em_tree, page_start, page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002410 delalloc_start = page_start;
2411 existing_delalloc =
2412 count_range_bits(&BTRFS_I(inode)->extent_tree,
2413 &delalloc_start, page_end,
2414 PAGE_CACHE_SIZE, EXTENT_DELALLOC);
Chris Mason86479a02007-09-10 19:58:16 -04002415 set_extent_delalloc(em_tree, page_start,
2416 page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002417
2418 spin_lock(&root->fs_info->delalloc_lock);
2419 root->fs_info->delalloc_bytes += PAGE_CACHE_SIZE -
2420 existing_delalloc;
2421 spin_unlock(&root->fs_info->delalloc_lock);
2422
Chris Mason86479a02007-09-10 19:58:16 -04002423 unlock_extent(em_tree, page_start, page_end, GFP_NOFS);
2424 set_page_dirty(page);
2425 unlock_page(page);
2426 page_cache_release(page);
2427 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2428 }
2429
2430out_unlock:
2431 mutex_unlock(&inode->i_mutex);
2432 return 0;
2433}
2434
Chris Masonedbd8d42007-12-21 16:27:24 -05002435static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2436{
2437 u64 new_size;
2438 u64 old_size;
2439 struct btrfs_ioctl_vol_args *vol_args;
2440 struct btrfs_trans_handle *trans;
2441 char *sizestr;
2442 int ret = 0;
2443 int namelen;
2444 int mod = 0;
2445
2446 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2447
2448 if (!vol_args)
2449 return -ENOMEM;
2450
2451 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2452 ret = -EFAULT;
2453 goto out;
2454 }
2455 namelen = strlen(vol_args->name);
2456 if (namelen > BTRFS_VOL_NAME_MAX) {
2457 ret = -EINVAL;
2458 goto out;
2459 }
2460
2461 sizestr = vol_args->name;
2462 if (!strcmp(sizestr, "max"))
2463 new_size = root->fs_info->sb->s_bdev->bd_inode->i_size;
2464 else {
2465 if (sizestr[0] == '-') {
2466 mod = -1;
2467 sizestr++;
2468 } else if (sizestr[0] == '+') {
2469 mod = 1;
2470 sizestr++;
2471 }
2472 new_size = btrfs_parse_size(sizestr);
2473 if (new_size == 0) {
2474 ret = -EINVAL;
2475 goto out;
2476 }
2477 }
2478
2479 mutex_lock(&root->fs_info->fs_mutex);
2480 old_size = btrfs_super_total_bytes(&root->fs_info->super_copy);
2481
2482 if (mod < 0) {
2483 if (new_size > old_size) {
2484 ret = -EINVAL;
2485 goto out_unlock;
2486 }
2487 new_size = old_size - new_size;
2488 } else if (mod > 0) {
2489 new_size = old_size + new_size;
2490 }
2491
2492 if (new_size < 256 * 1024 * 1024) {
2493 ret = -EINVAL;
2494 goto out_unlock;
2495 }
2496 if (new_size > root->fs_info->sb->s_bdev->bd_inode->i_size) {
2497 ret = -EFBIG;
2498 goto out_unlock;
2499 }
2500 new_size = (new_size / root->sectorsize) * root->sectorsize;
2501
2502printk("new size is %Lu\n", new_size);
2503 if (new_size > old_size) {
2504 trans = btrfs_start_transaction(root, 1);
2505 ret = btrfs_grow_extent_tree(trans, root, new_size);
2506 btrfs_commit_transaction(trans, root);
2507 } else {
2508 ret = btrfs_shrink_extent_tree(root, new_size);
2509 }
2510
2511out_unlock:
2512 mutex_unlock(&root->fs_info->fs_mutex);
2513out:
2514 kfree(vol_args);
2515 return ret;
2516}
2517
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002518static int btrfs_ioctl_snap_create(struct btrfs_root *root, void __user *arg)
2519{
Chris Mason4aec2b52007-12-18 16:25:45 -05002520 struct btrfs_ioctl_vol_args *vol_args;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002521 struct btrfs_dir_item *di;
2522 struct btrfs_path *path;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002523 u64 root_dirid;
Chris Mason4aec2b52007-12-18 16:25:45 -05002524 int namelen;
2525 int ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002526
Chris Mason4aec2b52007-12-18 16:25:45 -05002527 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04002528
Chris Mason4aec2b52007-12-18 16:25:45 -05002529 if (!vol_args)
2530 return -ENOMEM;
2531
2532 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2533 ret = -EFAULT;
2534 goto out;
2535 }
2536
2537 namelen = strlen(vol_args->name);
2538 if (namelen > BTRFS_VOL_NAME_MAX) {
2539 ret = -EINVAL;
2540 goto out;
2541 }
2542 if (strchr(vol_args->name, '/')) {
2543 ret = -EINVAL;
2544 goto out;
2545 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002546
2547 path = btrfs_alloc_path();
Chris Mason4aec2b52007-12-18 16:25:45 -05002548 if (!path) {
2549 ret = -ENOMEM;
2550 goto out;
2551 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002552
2553 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
2554 mutex_lock(&root->fs_info->fs_mutex);
2555 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
2556 path, root_dirid,
Chris Mason4aec2b52007-12-18 16:25:45 -05002557 vol_args->name, namelen, 0);
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002558 mutex_unlock(&root->fs_info->fs_mutex);
2559 btrfs_free_path(path);
Chris Mason4aec2b52007-12-18 16:25:45 -05002560
2561 if (di && !IS_ERR(di)) {
2562 ret = -EEXIST;
2563 goto out;
2564 }
2565
2566 if (IS_ERR(di)) {
2567 ret = PTR_ERR(di);
2568 goto out;
2569 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002570
2571 if (root == root->fs_info->tree_root)
Chris Mason4aec2b52007-12-18 16:25:45 -05002572 ret = create_subvol(root, vol_args->name, namelen);
2573 else
2574 ret = create_snapshot(root, vol_args->name, namelen);
2575out:
2576 kfree(vol_args);
2577 return ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002578}
2579
2580static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04002581{
Chris Mason6da6aba2007-12-18 16:15:09 -05002582 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002583 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002584
2585 switch (inode->i_mode & S_IFMT) {
2586 case S_IFDIR:
2587 mutex_lock(&root->fs_info->fs_mutex);
2588 btrfs_defrag_root(root, 0);
2589 btrfs_defrag_root(root->fs_info->extent_root, 0);
2590 mutex_unlock(&root->fs_info->fs_mutex);
2591 break;
2592 case S_IFREG:
2593 btrfs_defrag_file(file);
2594 break;
2595 }
2596
2597 return 0;
2598}
2599
2600long btrfs_ioctl(struct file *file, unsigned int
2601 cmd, unsigned long arg)
2602{
Chris Mason6da6aba2007-12-18 16:15:09 -05002603 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04002604
2605 switch (cmd) {
2606 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002607 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04002608 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002609 return btrfs_ioctl_defrag(file);
Chris Masonedbd8d42007-12-21 16:27:24 -05002610 case BTRFS_IOC_RESIZE:
2611 return btrfs_ioctl_resize(root, (void __user *)arg);
Chris Mason39279cc2007-06-12 06:35:45 -04002612 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04002613
2614 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04002615}
2616
Chris Mason39279cc2007-06-12 06:35:45 -04002617/*
2618 * Called inside transaction, so use GFP_NOFS
2619 */
2620struct inode *btrfs_alloc_inode(struct super_block *sb)
2621{
2622 struct btrfs_inode *ei;
2623
2624 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
2625 if (!ei)
2626 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04002627 ei->last_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002628 return &ei->vfs_inode;
2629}
2630
2631void btrfs_destroy_inode(struct inode *inode)
2632{
2633 WARN_ON(!list_empty(&inode->i_dentry));
2634 WARN_ON(inode->i_data.nrpages);
2635
2636 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
2637}
2638
Chris Mason44ec0b72007-10-29 10:55:05 -04002639#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2640static void init_once(struct kmem_cache * cachep, void *foo)
2641#else
Chris Mason39279cc2007-06-12 06:35:45 -04002642static void init_once(void * foo, struct kmem_cache * cachep,
2643 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04002644#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002645{
2646 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
2647
2648 inode_init_once(&ei->vfs_inode);
2649}
2650
2651void btrfs_destroy_cachep(void)
2652{
2653 if (btrfs_inode_cachep)
2654 kmem_cache_destroy(btrfs_inode_cachep);
2655 if (btrfs_trans_handle_cachep)
2656 kmem_cache_destroy(btrfs_trans_handle_cachep);
2657 if (btrfs_transaction_cachep)
2658 kmem_cache_destroy(btrfs_transaction_cachep);
2659 if (btrfs_bit_radix_cachep)
2660 kmem_cache_destroy(btrfs_bit_radix_cachep);
2661 if (btrfs_path_cachep)
2662 kmem_cache_destroy(btrfs_path_cachep);
2663}
2664
Chris Mason86479a02007-09-10 19:58:16 -04002665struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04002666 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04002667#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
2668 void (*ctor)(struct kmem_cache *, void *)
2669#else
Chris Mason92fee662007-07-25 12:31:35 -04002670 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04002671 unsigned long)
2672#endif
2673 )
Chris Mason92fee662007-07-25 12:31:35 -04002674{
2675 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
2676 SLAB_MEM_SPREAD | extra_flags), ctor
2677#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
2678 ,NULL
2679#endif
2680 );
2681}
2682
Chris Mason39279cc2007-06-12 06:35:45 -04002683int btrfs_init_cachep(void)
2684{
Chris Mason86479a02007-09-10 19:58:16 -04002685 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04002686 sizeof(struct btrfs_inode),
2687 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04002688 if (!btrfs_inode_cachep)
2689 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002690 btrfs_trans_handle_cachep =
2691 btrfs_cache_create("btrfs_trans_handle_cache",
2692 sizeof(struct btrfs_trans_handle),
2693 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002694 if (!btrfs_trans_handle_cachep)
2695 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002696 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04002697 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04002698 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002699 if (!btrfs_transaction_cachep)
2700 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002701 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04002702 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04002703 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002704 if (!btrfs_path_cachep)
2705 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04002706 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04002707 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04002708 if (!btrfs_bit_radix_cachep)
2709 goto fail;
2710 return 0;
2711fail:
2712 btrfs_destroy_cachep();
2713 return -ENOMEM;
2714}
2715
2716static int btrfs_getattr(struct vfsmount *mnt,
2717 struct dentry *dentry, struct kstat *stat)
2718{
2719 struct inode *inode = dentry->d_inode;
2720 generic_fillattr(inode, stat);
2721 stat->blksize = 256 * 1024;
2722 return 0;
2723}
2724
2725static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
2726 struct inode * new_dir,struct dentry *new_dentry)
2727{
2728 struct btrfs_trans_handle *trans;
2729 struct btrfs_root *root = BTRFS_I(old_dir)->root;
2730 struct inode *new_inode = new_dentry->d_inode;
2731 struct inode *old_inode = old_dentry->d_inode;
2732 struct timespec ctime = CURRENT_TIME;
2733 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04002734 int ret;
2735
2736 if (S_ISDIR(old_inode->i_mode) && new_inode &&
2737 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
2738 return -ENOTEMPTY;
2739 }
Chris Mason5f39d392007-10-15 16:14:19 -04002740
Chris Mason39279cc2007-06-12 06:35:45 -04002741 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002742 ret = btrfs_check_free_space(root, 1, 0);
2743 if (ret)
2744 goto out_unlock;
2745
Chris Mason39279cc2007-06-12 06:35:45 -04002746 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002747
Chris Mason39279cc2007-06-12 06:35:45 -04002748 btrfs_set_trans_block_group(trans, new_dir);
2749 path = btrfs_alloc_path();
2750 if (!path) {
2751 ret = -ENOMEM;
2752 goto out_fail;
2753 }
2754
2755 old_dentry->d_inode->i_nlink++;
2756 old_dir->i_ctime = old_dir->i_mtime = ctime;
2757 new_dir->i_ctime = new_dir->i_mtime = ctime;
2758 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04002759
Chris Mason39279cc2007-06-12 06:35:45 -04002760 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
2761 if (ret)
2762 goto out_fail;
2763
2764 if (new_inode) {
2765 new_inode->i_ctime = CURRENT_TIME;
2766 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
2767 if (ret)
2768 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002769 }
2770 ret = btrfs_add_link(trans, new_dentry, old_inode);
2771 if (ret)
2772 goto out_fail;
2773
2774out_fail:
2775 btrfs_free_path(path);
2776 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002777out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002778 mutex_unlock(&root->fs_info->fs_mutex);
2779 return ret;
2780}
2781
2782static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
2783 const char *symname)
2784{
2785 struct btrfs_trans_handle *trans;
2786 struct btrfs_root *root = BTRFS_I(dir)->root;
2787 struct btrfs_path *path;
2788 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05002789 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002790 int err;
2791 int drop_inode = 0;
2792 u64 objectid;
2793 int name_len;
2794 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04002795 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04002796 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04002797 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05002798 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002799
2800 name_len = strlen(symname) + 1;
2801 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
2802 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05002803
Chris Mason39279cc2007-06-12 06:35:45 -04002804 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002805 err = btrfs_check_free_space(root, 1, 0);
2806 if (err)
2807 goto out_fail;
2808
Chris Mason39279cc2007-06-12 06:35:45 -04002809 trans = btrfs_start_transaction(root, 1);
2810 btrfs_set_trans_block_group(trans, dir);
2811
2812 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2813 if (err) {
2814 err = -ENOSPC;
2815 goto out_unlock;
2816 }
2817
2818 inode = btrfs_new_inode(trans, root, objectid,
2819 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
2820 err = PTR_ERR(inode);
2821 if (IS_ERR(inode))
2822 goto out_unlock;
2823
2824 btrfs_set_trans_block_group(trans, inode);
2825 err = btrfs_add_nondir(trans, dentry, inode);
2826 if (err)
2827 drop_inode = 1;
2828 else {
2829 inode->i_mapping->a_ops = &btrfs_aops;
2830 inode->i_fop = &btrfs_file_operations;
2831 inode->i_op = &btrfs_file_inode_operations;
Chris Masona52d9a82007-08-27 16:49:44 -04002832 extent_map_tree_init(&BTRFS_I(inode)->extent_tree,
2833 inode->i_mapping, GFP_NOFS);
Chris Mason07157aa2007-08-30 08:50:51 -04002834 BTRFS_I(inode)->extent_tree.ops = &btrfs_extent_map_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04002835 }
2836 dir->i_sb->s_dirt = 1;
2837 btrfs_update_inode_block_group(trans, inode);
2838 btrfs_update_inode_block_group(trans, dir);
2839 if (drop_inode)
2840 goto out_unlock;
2841
2842 path = btrfs_alloc_path();
2843 BUG_ON(!path);
2844 key.objectid = inode->i_ino;
2845 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002846 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
2847 datasize = btrfs_file_extent_calc_inline_size(name_len);
2848 err = btrfs_insert_empty_item(trans, root, path, &key,
2849 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04002850 if (err) {
2851 drop_inode = 1;
2852 goto out_unlock;
2853 }
Chris Mason5f39d392007-10-15 16:14:19 -04002854 leaf = path->nodes[0];
2855 ei = btrfs_item_ptr(leaf, path->slots[0],
2856 struct btrfs_file_extent_item);
2857 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
2858 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04002859 BTRFS_FILE_EXTENT_INLINE);
2860 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04002861 write_extent_buffer(leaf, symname, ptr, name_len);
2862 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002863 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04002864
Chris Mason39279cc2007-06-12 06:35:45 -04002865 inode->i_op = &btrfs_symlink_inode_operations;
2866 inode->i_mapping->a_ops = &btrfs_symlink_aops;
2867 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04002868 err = btrfs_update_inode(trans, root, inode);
2869 if (err)
2870 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002871
2872out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002873 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002874 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002875out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002876 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04002877 if (drop_inode) {
2878 inode_dec_link_count(inode);
2879 iput(inode);
2880 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002881 btrfs_btree_balance_dirty(root, nr);
Chris Mason39279cc2007-06-12 06:35:45 -04002882 return err;
2883}
2884
2885static struct inode_operations btrfs_dir_inode_operations = {
2886 .lookup = btrfs_lookup,
2887 .create = btrfs_create,
2888 .unlink = btrfs_unlink,
2889 .link = btrfs_link,
2890 .mkdir = btrfs_mkdir,
2891 .rmdir = btrfs_rmdir,
2892 .rename = btrfs_rename,
2893 .symlink = btrfs_symlink,
2894 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04002895 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05002896 .setxattr = generic_setxattr,
2897 .getxattr = generic_getxattr,
2898 .listxattr = btrfs_listxattr,
2899 .removexattr = generic_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04002900};
2901
2902static struct inode_operations btrfs_dir_ro_inode_operations = {
2903 .lookup = btrfs_lookup,
2904};
2905
2906static struct file_operations btrfs_dir_file_operations = {
2907 .llseek = generic_file_llseek,
2908 .read = generic_read_dir,
2909 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04002910 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04002911#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04002912 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04002913#endif
2914};
2915
Chris Mason07157aa2007-08-30 08:50:51 -04002916static struct extent_map_ops btrfs_extent_map_ops = {
2917 .fill_delalloc = run_delalloc_range,
2918 .writepage_io_hook = btrfs_writepage_io_hook,
2919 .readpage_io_hook = btrfs_readpage_io_hook,
2920 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
2921};
2922
Chris Mason39279cc2007-06-12 06:35:45 -04002923static struct address_space_operations btrfs_aops = {
2924 .readpage = btrfs_readpage,
2925 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04002926 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05002927 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04002928 .sync_page = block_sync_page,
2929 .prepare_write = btrfs_prepare_write,
2930 .commit_write = btrfs_commit_write,
2931 .bmap = btrfs_bmap,
Chris Masona52d9a82007-08-27 16:49:44 -04002932 .invalidatepage = btrfs_invalidatepage,
2933 .releasepage = btrfs_releasepage,
2934 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04002935};
2936
2937static struct address_space_operations btrfs_symlink_aops = {
2938 .readpage = btrfs_readpage,
2939 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04002940 .invalidatepage = btrfs_invalidatepage,
2941 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04002942};
2943
2944static struct inode_operations btrfs_file_inode_operations = {
2945 .truncate = btrfs_truncate,
2946 .getattr = btrfs_getattr,
2947 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05002948 .setxattr = generic_setxattr,
2949 .getxattr = generic_getxattr,
2950 .listxattr = btrfs_listxattr,
2951 .removexattr = generic_removexattr,
Chris Mason39279cc2007-06-12 06:35:45 -04002952};
2953
Josef Bacik618e21d2007-07-11 10:18:17 -04002954static struct inode_operations btrfs_special_inode_operations = {
2955 .getattr = btrfs_getattr,
2956 .setattr = btrfs_setattr,
2957};
2958
Chris Mason39279cc2007-06-12 06:35:45 -04002959static struct inode_operations btrfs_symlink_inode_operations = {
2960 .readlink = generic_readlink,
2961 .follow_link = page_follow_link_light,
2962 .put_link = page_put_link,
2963};