blob: c6fae29c0b9e9d8a248595f5a90fc147ff9f517e [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 Mason8f18cf12008-04-25 16:53:30 -040019#include <linux/kernel.h>
Chris Mason065631f2008-02-20 12:07:25 -050020#include <linux/bio.h>
Chris Mason39279cc2007-06-12 06:35:45 -040021#include <linux/buffer_head.h>
Sage Weilf2eb0a22008-05-02 14:43:14 -040022#include <linux/file.h>
Chris Mason39279cc2007-06-12 06:35:45 -040023#include <linux/fs.h>
24#include <linux/pagemap.h>
25#include <linux/highmem.h>
26#include <linux/time.h>
27#include <linux/init.h>
28#include <linux/string.h>
29#include <linux/smp_lock.h>
30#include <linux/backing-dev.h>
31#include <linux/mpage.h>
32#include <linux/swap.h>
33#include <linux/writeback.h>
34#include <linux/statfs.h>
35#include <linux/compat.h>
Chris Mason9ebefb182007-06-15 13:50:00 -040036#include <linux/bit_spinlock.h>
Chris Mason92fee662007-07-25 12:31:35 -040037#include <linux/version.h>
Josef Bacik5103e942007-11-16 11:45:54 -050038#include <linux/xattr.h>
Chris Mason39279cc2007-06-12 06:35:45 -040039#include "ctree.h"
40#include "disk-io.h"
41#include "transaction.h"
42#include "btrfs_inode.h"
43#include "ioctl.h"
44#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040045#include "volumes.h"
Chris Mason39279cc2007-06-12 06:35:45 -040046
47struct btrfs_iget_args {
48 u64 ino;
49 struct btrfs_root *root;
50};
51
52static struct inode_operations btrfs_dir_inode_operations;
53static struct inode_operations btrfs_symlink_inode_operations;
54static struct inode_operations btrfs_dir_ro_inode_operations;
Josef Bacik618e21d2007-07-11 10:18:17 -040055static struct inode_operations btrfs_special_inode_operations;
Chris Mason39279cc2007-06-12 06:35:45 -040056static struct inode_operations btrfs_file_inode_operations;
57static struct address_space_operations btrfs_aops;
58static struct address_space_operations btrfs_symlink_aops;
59static struct file_operations btrfs_dir_file_operations;
Chris Masond1310b22008-01-24 16:13:08 -050060static struct extent_io_ops btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -040061
62static struct kmem_cache *btrfs_inode_cachep;
63struct kmem_cache *btrfs_trans_handle_cachep;
64struct kmem_cache *btrfs_transaction_cachep;
65struct kmem_cache *btrfs_bit_radix_cachep;
66struct kmem_cache *btrfs_path_cachep;
67
68#define S_SHIFT 12
69static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
70 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
71 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
72 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
73 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
74 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
75 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
76 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
77};
78
Chris Mason1832a6d2007-12-21 16:27:21 -050079int btrfs_check_free_space(struct btrfs_root *root, u64 num_required,
80 int for_del)
81{
82 u64 total = btrfs_super_total_bytes(&root->fs_info->super_copy);
83 u64 used = btrfs_super_bytes_used(&root->fs_info->super_copy);
84 u64 thresh;
Chris Masonbcbfce82008-04-22 13:26:47 -040085 unsigned long flags;
Chris Mason1832a6d2007-12-21 16:27:21 -050086 int ret = 0;
87
88 if (for_del)
Chris Masonf9ef6602008-01-03 09:22:38 -050089 thresh = total * 90;
Chris Mason1832a6d2007-12-21 16:27:21 -050090 else
Chris Masonf9ef6602008-01-03 09:22:38 -050091 thresh = total * 85;
92
93 do_div(thresh, 100);
Chris Mason1832a6d2007-12-21 16:27:21 -050094
Chris Masonbcbfce82008-04-22 13:26:47 -040095 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -050096 if (used + root->fs_info->delalloc_bytes + num_required > thresh)
97 ret = -ENOSPC;
Chris Masonbcbfce82008-04-22 13:26:47 -040098 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason1832a6d2007-12-21 16:27:21 -050099 return ret;
100}
101
Chris Masonbe20aa92007-12-17 20:14:01 -0500102static int cow_file_range(struct inode *inode, u64 start, u64 end)
Chris Masonb888db2b2007-08-27 16:49:44 -0400103{
104 struct btrfs_root *root = BTRFS_I(inode)->root;
105 struct btrfs_trans_handle *trans;
Chris Masonb888db2b2007-08-27 16:49:44 -0400106 u64 alloc_hint = 0;
Chris Masondb945352007-10-15 16:15:53 -0400107 u64 num_bytes;
Chris Masonc59f8952007-12-17 20:14:04 -0500108 u64 cur_alloc_size;
Chris Masondb945352007-10-15 16:15:53 -0400109 u64 blocksize = root->sectorsize;
Chris Masond1310b22008-01-24 16:13:08 -0500110 u64 orig_start = start;
111 u64 orig_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500112 struct btrfs_key ins;
113 int ret;
Chris Masonb888db2b2007-08-27 16:49:44 -0400114
Chris Masonb888db2b2007-08-27 16:49:44 -0400115 trans = btrfs_start_transaction(root, 1);
Chris Masonb888db2b2007-08-27 16:49:44 -0400116 BUG_ON(!trans);
Chris Masonbe20aa92007-12-17 20:14:01 -0500117 btrfs_set_trans_block_group(trans, inode);
118
Chris Masondb945352007-10-15 16:15:53 -0400119 num_bytes = (end - start + blocksize) & ~(blocksize - 1);
Chris Masonbe20aa92007-12-17 20:14:01 -0500120 num_bytes = max(blocksize, num_bytes);
Chris Masonb888db2b2007-08-27 16:49:44 -0400121 ret = btrfs_drop_extents(trans, root, inode,
Chris Mason3326d1b2007-10-15 16:18:25 -0400122 start, start + num_bytes, start, &alloc_hint);
Chris Masond1310b22008-01-24 16:13:08 -0500123 orig_num_bytes = num_bytes;
Chris Masondb945352007-10-15 16:15:53 -0400124
Chris Mason179e29e2007-11-01 11:28:41 -0400125 if (alloc_hint == EXTENT_MAP_INLINE)
126 goto out;
127
Chris Mason3b951512008-04-17 11:29:12 -0400128 BUG_ON(num_bytes > btrfs_super_total_bytes(&root->fs_info->super_copy));
129
Chris Masonc59f8952007-12-17 20:14:04 -0500130 while(num_bytes > 0) {
131 cur_alloc_size = min(num_bytes, root->fs_info->max_extent);
132 ret = btrfs_alloc_extent(trans, root, cur_alloc_size,
Chris Mason98d20f62008-04-14 09:46:10 -0400133 root->sectorsize,
Chris Masonc59f8952007-12-17 20:14:04 -0500134 root->root_key.objectid,
135 trans->transid,
136 inode->i_ino, start, 0,
137 alloc_hint, (u64)-1, &ins, 1);
138 if (ret) {
139 WARN_ON(1);
140 goto out;
141 }
Chris Mason98d20f62008-04-14 09:46:10 -0400142 cur_alloc_size = ins.offset;
Chris Masonc59f8952007-12-17 20:14:04 -0500143 ret = btrfs_insert_file_extent(trans, root, inode->i_ino,
144 start, ins.objectid, ins.offset,
Sage Weilf2eb0a22008-05-02 14:43:14 -0400145 ins.offset, 0);
Chris Mason90692182008-02-08 13:49:28 -0500146 inode->i_blocks += ins.offset >> 9;
Chris Mason5f564062008-01-22 16:47:59 -0500147 btrfs_check_file(root, inode);
Chris Mason3b951512008-04-17 11:29:12 -0400148 if (num_bytes < cur_alloc_size) {
149 printk("num_bytes %Lu cur_alloc %Lu\n", num_bytes,
150 cur_alloc_size);
151 break;
152 }
Chris Masonc59f8952007-12-17 20:14:04 -0500153 num_bytes -= cur_alloc_size;
154 alloc_hint = ins.objectid + ins.offset;
155 start += cur_alloc_size;
Chris Masonb888db2b2007-08-27 16:49:44 -0400156 }
Chris Masond1310b22008-01-24 16:13:08 -0500157 btrfs_drop_extent_cache(inode, orig_start,
158 orig_start + orig_num_bytes - 1);
Chris Masondc17ff82008-01-08 15:46:30 -0500159 btrfs_add_ordered_inode(inode);
Chris Mason90692182008-02-08 13:49:28 -0500160 btrfs_update_inode(trans, root, inode);
Chris Masonb888db2b2007-08-27 16:49:44 -0400161out:
162 btrfs_end_transaction(trans, root);
Chris Masonbe20aa92007-12-17 20:14:01 -0500163 return ret;
164}
165
166static int run_delalloc_nocow(struct inode *inode, u64 start, u64 end)
167{
168 u64 extent_start;
169 u64 extent_end;
170 u64 bytenr;
171 u64 cow_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500172 u64 loops = 0;
Chris Masonc31f8832008-01-08 15:46:31 -0500173 u64 total_fs_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500174 struct btrfs_root *root = BTRFS_I(inode)->root;
175 struct extent_buffer *leaf;
176 int found_type;
177 struct btrfs_path *path;
178 struct btrfs_file_extent_item *item;
179 int ret;
180 int err;
181 struct btrfs_key found_key;
182
Chris Masonc31f8832008-01-08 15:46:31 -0500183 total_fs_bytes = btrfs_super_total_bytes(&root->fs_info->super_copy);
Chris Masonbe20aa92007-12-17 20:14:01 -0500184 path = btrfs_alloc_path();
185 BUG_ON(!path);
186again:
187 ret = btrfs_lookup_file_extent(NULL, root, path,
188 inode->i_ino, start, 0);
189 if (ret < 0) {
190 btrfs_free_path(path);
191 return ret;
192 }
193
194 cow_end = end;
195 if (ret != 0) {
196 if (path->slots[0] == 0)
197 goto not_found;
198 path->slots[0]--;
199 }
200
201 leaf = path->nodes[0];
202 item = btrfs_item_ptr(leaf, path->slots[0],
203 struct btrfs_file_extent_item);
204
205 /* are we inside the extent that was found? */
206 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
207 found_type = btrfs_key_type(&found_key);
208 if (found_key.objectid != inode->i_ino ||
209 found_type != BTRFS_EXTENT_DATA_KEY) {
210 goto not_found;
211 }
212
213 found_type = btrfs_file_extent_type(leaf, item);
214 extent_start = found_key.offset;
215 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Masonc31f8832008-01-08 15:46:31 -0500216 u64 extent_num_bytes;
217
218 extent_num_bytes = btrfs_file_extent_num_bytes(leaf, item);
219 extent_end = extent_start + extent_num_bytes;
Chris Masonbe20aa92007-12-17 20:14:01 -0500220 err = 0;
221
Chris Mason1832a6d2007-12-21 16:27:21 -0500222 if (loops && start != extent_start)
223 goto not_found;
224
Chris Masonbe20aa92007-12-17 20:14:01 -0500225 if (start < extent_start || start >= extent_end)
226 goto not_found;
227
228 cow_end = min(end, extent_end - 1);
229 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
230 if (bytenr == 0)
231 goto not_found;
232
Chris Masonc31f8832008-01-08 15:46:31 -0500233 /*
234 * we may be called by the resizer, make sure we're inside
235 * the limits of the FS
236 */
237 if (bytenr + extent_num_bytes > total_fs_bytes)
238 goto not_found;
239
Chris Masonbe20aa92007-12-17 20:14:01 -0500240 if (btrfs_count_snapshots_in_path(root, path, bytenr) != 1) {
241 goto not_found;
242 }
243
244 start = extent_end;
Chris Masonbd098352008-01-03 13:23:19 -0500245 } else {
Chris Masonbe20aa92007-12-17 20:14:01 -0500246 goto not_found;
247 }
248loop:
249 if (start > end) {
250 btrfs_free_path(path);
251 return 0;
252 }
253 btrfs_release_path(root, path);
Chris Mason1832a6d2007-12-21 16:27:21 -0500254 loops++;
Chris Masonbe20aa92007-12-17 20:14:01 -0500255 goto again;
256
257not_found:
258 cow_file_range(inode, start, cow_end);
259 start = cow_end + 1;
260 goto loop;
261}
262
263static int run_delalloc_range(struct inode *inode, u64 start, u64 end)
264{
265 struct btrfs_root *root = BTRFS_I(inode)->root;
266 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -0500267 mutex_lock(&root->fs_info->fs_mutex);
Yanb98b6762008-01-08 15:54:37 -0500268 if (btrfs_test_opt(root, NODATACOW) ||
269 btrfs_test_flag(inode, NODATACOW))
Chris Masonbe20aa92007-12-17 20:14:01 -0500270 ret = run_delalloc_nocow(inode, start, end);
271 else
272 ret = cow_file_range(inode, start, end);
Chris Mason1832a6d2007-12-21 16:27:21 -0500273
Chris Masonb888db2b2007-08-27 16:49:44 -0400274 mutex_unlock(&root->fs_info->fs_mutex);
275 return ret;
276}
277
Chris Mason291d6732008-01-29 15:55:23 -0500278int btrfs_set_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500279 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500280{
Chris Masonbcbfce82008-04-22 13:26:47 -0400281 unsigned long flags;
Chris Masonb0c68f82008-01-31 11:05:37 -0500282 if (!(old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500283 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400284 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Mason90692182008-02-08 13:49:28 -0500285 BTRFS_I(inode)->delalloc_bytes += end - start + 1;
Chris Mason291d6732008-01-29 15:55:23 -0500286 root->fs_info->delalloc_bytes += end - start + 1;
Chris Masonbcbfce82008-04-22 13:26:47 -0400287 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500288 }
289 return 0;
290}
291
292int btrfs_clear_bit_hook(struct inode *inode, u64 start, u64 end,
Chris Masonb0c68f82008-01-31 11:05:37 -0500293 unsigned long old, unsigned long bits)
Chris Mason291d6732008-01-29 15:55:23 -0500294{
Chris Masonb0c68f82008-01-31 11:05:37 -0500295 if ((old & EXTENT_DELALLOC) && (bits & EXTENT_DELALLOC)) {
Chris Mason291d6732008-01-29 15:55:23 -0500296 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masonbcbfce82008-04-22 13:26:47 -0400297 unsigned long flags;
298
299 spin_lock_irqsave(&root->fs_info->delalloc_lock, flags);
Chris Masonb0c68f82008-01-31 11:05:37 -0500300 if (end - start + 1 > root->fs_info->delalloc_bytes) {
301 printk("warning: delalloc account %Lu %Lu\n",
302 end - start + 1, root->fs_info->delalloc_bytes);
303 root->fs_info->delalloc_bytes = 0;
Chris Mason90692182008-02-08 13:49:28 -0500304 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masonb0c68f82008-01-31 11:05:37 -0500305 } else {
306 root->fs_info->delalloc_bytes -= end - start + 1;
Chris Mason90692182008-02-08 13:49:28 -0500307 BTRFS_I(inode)->delalloc_bytes -= end - start + 1;
Chris Masonb0c68f82008-01-31 11:05:37 -0500308 }
Chris Masonbcbfce82008-04-22 13:26:47 -0400309 spin_unlock_irqrestore(&root->fs_info->delalloc_lock, flags);
Chris Mason291d6732008-01-29 15:55:23 -0500310 }
311 return 0;
312}
313
Chris Mason239b14b2008-03-24 15:02:07 -0400314int btrfs_merge_bio_hook(struct page *page, unsigned long offset,
315 size_t size, struct bio *bio)
316{
317 struct btrfs_root *root = BTRFS_I(page->mapping->host)->root;
318 struct btrfs_mapping_tree *map_tree;
Chris Mason239b14b2008-03-24 15:02:07 -0400319 u64 logical = bio->bi_sector << 9;
Chris Mason239b14b2008-03-24 15:02:07 -0400320 u64 length = 0;
321 u64 map_length;
Chris Mason239b14b2008-03-24 15:02:07 -0400322 int ret;
323
Chris Masonf2d8d742008-04-21 10:03:05 -0400324 length = bio->bi_size;
Chris Mason239b14b2008-03-24 15:02:07 -0400325 map_tree = &root->fs_info->mapping_tree;
326 map_length = length;
Chris Masoncea9e442008-04-09 16:28:12 -0400327 ret = btrfs_map_block(map_tree, READ, logical,
Chris Masonf1885912008-04-09 16:28:12 -0400328 &map_length, NULL, 0);
Chris Masoncea9e442008-04-09 16:28:12 -0400329
Chris Mason239b14b2008-03-24 15:02:07 -0400330 if (map_length < length + size) {
Chris Mason239b14b2008-03-24 15:02:07 -0400331 return 1;
332 }
333 return 0;
334}
335
Chris Mason44b8bd72008-04-16 11:14:51 -0400336int __btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
Chris Masonf1885912008-04-09 16:28:12 -0400337 int mirror_num)
Chris Mason065631f2008-02-20 12:07:25 -0500338{
Chris Mason065631f2008-02-20 12:07:25 -0500339 struct btrfs_root *root = BTRFS_I(inode)->root;
340 struct btrfs_trans_handle *trans;
341 int ret = 0;
Chris Masone0156402008-04-16 11:15:20 -0400342 char *sums = NULL;
343
344 ret = btrfs_csum_one_bio(root, bio, &sums);
345 BUG_ON(ret);
Chris Mason065631f2008-02-20 12:07:25 -0500346
Chris Mason44b8bd72008-04-16 11:14:51 -0400347 mutex_lock(&root->fs_info->fs_mutex);
348 trans = btrfs_start_transaction(root, 1);
Chris Masone0156402008-04-16 11:15:20 -0400349
Chris Mason44b8bd72008-04-16 11:14:51 -0400350 btrfs_set_trans_block_group(trans, inode);
Chris Masone0156402008-04-16 11:15:20 -0400351 btrfs_csum_file_blocks(trans, root, inode, bio, sums);
352
Chris Mason44b8bd72008-04-16 11:14:51 -0400353 ret = btrfs_end_transaction(trans, root);
354 BUG_ON(ret);
355 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masone0156402008-04-16 11:15:20 -0400356
357 kfree(sums);
358
Chris Mason44b8bd72008-04-16 11:14:51 -0400359 return btrfs_map_bio(root, rw, bio, mirror_num);
360}
361
362int btrfs_submit_bio_hook(struct inode *inode, int rw, struct bio *bio,
363 int mirror_num)
364{
365 struct btrfs_root *root = BTRFS_I(inode)->root;
366 int ret = 0;
367
Chris Mason22c59942008-04-09 16:28:12 -0400368 if (!(rw & (1 << BIO_RW))) {
369 ret = btrfs_bio_wq_end_io(root->fs_info, bio, 0);
370 BUG_ON(ret);
Chris Mason0b86a832008-03-24 15:01:56 -0400371 goto mapit;
372 }
Chris Mason065631f2008-02-20 12:07:25 -0500373
374 if (btrfs_test_opt(root, NODATASUM) ||
Chris Mason0b86a832008-03-24 15:01:56 -0400375 btrfs_test_flag(inode, NODATASUM)) {
376 goto mapit;
377 }
Chris Mason065631f2008-02-20 12:07:25 -0500378
Chris Mason44b8bd72008-04-16 11:14:51 -0400379 return btrfs_wq_submit_bio(BTRFS_I(inode)->root->fs_info,
380 inode, rw, bio, mirror_num,
381 __btrfs_submit_bio_hook);
Chris Mason0b86a832008-03-24 15:01:56 -0400382mapit:
Chris Masonf1885912008-04-09 16:28:12 -0400383 return btrfs_map_bio(root, rw, bio, mirror_num);
Chris Mason065631f2008-02-20 12:07:25 -0500384}
Chris Mason6885f302008-02-20 16:11:05 -0500385
Chris Mason07157aa2007-08-30 08:50:51 -0400386int btrfs_readpage_io_hook(struct page *page, u64 start, u64 end)
387{
388 int ret = 0;
389 struct inode *inode = page->mapping->host;
390 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -0500391 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400392 struct btrfs_csum_item *item;
393 struct btrfs_path *path = NULL;
Chris Masonff79f812007-10-15 16:22:25 -0400394 u32 csum;
Chris Mason699122f2008-04-16 12:59:22 -0400395
Yanb98b6762008-01-08 15:54:37 -0500396 if (btrfs_test_opt(root, NODATASUM) ||
397 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500398 return 0;
Chris Mason699122f2008-04-16 12:59:22 -0400399
Chris Mason07157aa2007-08-30 08:50:51 -0400400 mutex_lock(&root->fs_info->fs_mutex);
401 path = btrfs_alloc_path();
402 item = btrfs_lookup_csum(NULL, root, path, inode->i_ino, start, 0);
403 if (IS_ERR(item)) {
404 ret = PTR_ERR(item);
405 /* a csum that isn't present is a preallocated region. */
406 if (ret == -ENOENT || ret == -EFBIG)
407 ret = 0;
Chris Masonff79f812007-10-15 16:22:25 -0400408 csum = 0;
Chris Masonaadfeb62008-01-29 09:10:27 -0500409 printk("no csum found for inode %lu start %Lu\n", inode->i_ino, start);
Chris Mason07157aa2007-08-30 08:50:51 -0400410 goto out;
411 }
Chris Masonff79f812007-10-15 16:22:25 -0400412 read_extent_buffer(path->nodes[0], &csum, (unsigned long)item,
413 BTRFS_CRC32_SIZE);
Chris Masond1310b22008-01-24 16:13:08 -0500414 set_state_private(io_tree, start, csum);
Chris Mason07157aa2007-08-30 08:50:51 -0400415out:
416 if (path)
417 btrfs_free_path(path);
418 mutex_unlock(&root->fs_info->fs_mutex);
419 return ret;
420}
421
Chris Mason7e383262008-04-09 16:28:12 -0400422struct io_failure_record {
423 struct page *page;
424 u64 start;
425 u64 len;
426 u64 logical;
427 int last_mirror;
428};
429
430int btrfs_readpage_io_failed_hook(struct bio *failed_bio,
431 struct page *page, u64 start, u64 end,
432 struct extent_state *state)
433{
434 struct io_failure_record *failrec = NULL;
435 u64 private;
436 struct extent_map *em;
437 struct inode *inode = page->mapping->host;
438 struct extent_io_tree *failure_tree = &BTRFS_I(inode)->io_failure_tree;
Chris Mason3b951512008-04-17 11:29:12 -0400439 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Mason7e383262008-04-09 16:28:12 -0400440 struct bio *bio;
441 int num_copies;
442 int ret;
443 u64 logical;
444
445 ret = get_state_private(failure_tree, start, &private);
446 if (ret) {
Chris Mason7e383262008-04-09 16:28:12 -0400447 failrec = kmalloc(sizeof(*failrec), GFP_NOFS);
448 if (!failrec)
449 return -ENOMEM;
450 failrec->start = start;
451 failrec->len = end - start + 1;
452 failrec->last_mirror = 0;
453
Chris Mason3b951512008-04-17 11:29:12 -0400454 spin_lock(&em_tree->lock);
455 em = lookup_extent_mapping(em_tree, start, failrec->len);
456 if (em->start > start || em->start + em->len < start) {
457 free_extent_map(em);
458 em = NULL;
459 }
460 spin_unlock(&em_tree->lock);
Chris Mason7e383262008-04-09 16:28:12 -0400461
462 if (!em || IS_ERR(em)) {
463 kfree(failrec);
464 return -EIO;
465 }
466 logical = start - em->start;
467 logical = em->block_start + logical;
468 failrec->logical = logical;
469 free_extent_map(em);
470 set_extent_bits(failure_tree, start, end, EXTENT_LOCKED |
471 EXTENT_DIRTY, GFP_NOFS);
Chris Mason587f7702008-04-11 12:16:46 -0400472 set_state_private(failure_tree, start,
473 (u64)(unsigned long)failrec);
Chris Mason7e383262008-04-09 16:28:12 -0400474 } else {
Chris Mason587f7702008-04-11 12:16:46 -0400475 failrec = (struct io_failure_record *)(unsigned long)private;
Chris Mason7e383262008-04-09 16:28:12 -0400476 }
477 num_copies = btrfs_num_copies(
478 &BTRFS_I(inode)->root->fs_info->mapping_tree,
479 failrec->logical, failrec->len);
480 failrec->last_mirror++;
481 if (!state) {
482 spin_lock_irq(&BTRFS_I(inode)->io_tree.lock);
483 state = find_first_extent_bit_state(&BTRFS_I(inode)->io_tree,
484 failrec->start,
485 EXTENT_LOCKED);
486 if (state && state->start != failrec->start)
487 state = NULL;
488 spin_unlock_irq(&BTRFS_I(inode)->io_tree.lock);
489 }
490 if (!state || failrec->last_mirror > num_copies) {
491 set_state_private(failure_tree, failrec->start, 0);
492 clear_extent_bits(failure_tree, failrec->start,
493 failrec->start + failrec->len - 1,
494 EXTENT_LOCKED | EXTENT_DIRTY, GFP_NOFS);
495 kfree(failrec);
496 return -EIO;
497 }
498 bio = bio_alloc(GFP_NOFS, 1);
499 bio->bi_private = state;
500 bio->bi_end_io = failed_bio->bi_end_io;
501 bio->bi_sector = failrec->logical >> 9;
502 bio->bi_bdev = failed_bio->bi_bdev;
Chris Masone1c4b742008-04-22 13:26:46 -0400503 bio->bi_size = 0;
Chris Mason7e383262008-04-09 16:28:12 -0400504 bio_add_page(bio, page, failrec->len, start - page_offset(page));
505 btrfs_submit_bio_hook(inode, READ, bio, failrec->last_mirror);
506 return 0;
507}
508
Chris Mason70dec802008-01-29 09:59:12 -0500509int btrfs_readpage_end_io_hook(struct page *page, u64 start, u64 end,
510 struct extent_state *state)
Chris Mason07157aa2007-08-30 08:50:51 -0400511{
Chris Mason35ebb932007-10-30 16:56:53 -0400512 size_t offset = start - ((u64)page->index << PAGE_CACHE_SHIFT);
Chris Mason07157aa2007-08-30 08:50:51 -0400513 struct inode *inode = page->mapping->host;
Chris Masond1310b22008-01-24 16:13:08 -0500514 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason07157aa2007-08-30 08:50:51 -0400515 char *kaddr;
Chris Masonaadfeb62008-01-29 09:10:27 -0500516 u64 private = ~(u32)0;
Chris Mason07157aa2007-08-30 08:50:51 -0400517 int ret;
Chris Masonff79f812007-10-15 16:22:25 -0400518 struct btrfs_root *root = BTRFS_I(inode)->root;
519 u32 csum = ~(u32)0;
Jens Axboebbf0d002007-10-19 09:23:07 -0400520 unsigned long flags;
Chris Masond1310b22008-01-24 16:13:08 -0500521
Yanb98b6762008-01-08 15:54:37 -0500522 if (btrfs_test_opt(root, NODATASUM) ||
523 btrfs_test_flag(inode, NODATASUM))
Chris Masonb6cda9b2007-12-14 15:30:32 -0500524 return 0;
Yanc2e639f2008-02-04 08:57:25 -0500525 if (state && state->start == start) {
Chris Mason70dec802008-01-29 09:59:12 -0500526 private = state->private;
527 ret = 0;
528 } else {
529 ret = get_state_private(io_tree, start, &private);
530 }
Jens Axboebbf0d002007-10-19 09:23:07 -0400531 local_irq_save(flags);
Chris Mason07157aa2007-08-30 08:50:51 -0400532 kaddr = kmap_atomic(page, KM_IRQ0);
533 if (ret) {
534 goto zeroit;
535 }
Chris Masonff79f812007-10-15 16:22:25 -0400536 csum = btrfs_csum_data(root, kaddr + offset, csum, end - start + 1);
537 btrfs_csum_final(csum, (char *)&csum);
538 if (csum != private) {
Chris Mason07157aa2007-08-30 08:50:51 -0400539 goto zeroit;
540 }
541 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400542 local_irq_restore(flags);
Chris Mason7e383262008-04-09 16:28:12 -0400543
544 /* if the io failure tree for this inode is non-empty,
545 * check to see if we've recovered from a failed IO
546 */
547 private = 0;
548 if (count_range_bits(&BTRFS_I(inode)->io_failure_tree, &private,
549 (u64)-1, 1, EXTENT_DIRTY)) {
550 u64 private_failure;
551 struct io_failure_record *failure;
552 ret = get_state_private(&BTRFS_I(inode)->io_failure_tree,
553 start, &private_failure);
554 if (ret == 0) {
Chris Mason587f7702008-04-11 12:16:46 -0400555 failure = (struct io_failure_record *)(unsigned long)
556 private_failure;
Chris Mason7e383262008-04-09 16:28:12 -0400557 set_state_private(&BTRFS_I(inode)->io_failure_tree,
558 failure->start, 0);
559 clear_extent_bits(&BTRFS_I(inode)->io_failure_tree,
560 failure->start,
561 failure->start + failure->len - 1,
562 EXTENT_DIRTY | EXTENT_LOCKED,
563 GFP_NOFS);
564 kfree(failure);
565 }
566 }
Chris Mason07157aa2007-08-30 08:50:51 -0400567 return 0;
568
569zeroit:
Chris Masonaadfeb62008-01-29 09:10:27 -0500570 printk("btrfs csum failed ino %lu off %llu csum %u private %Lu\n",
571 page->mapping->host->i_ino, (unsigned long long)start, csum,
572 private);
Chris Masondb945352007-10-15 16:15:53 -0400573 memset(kaddr + offset, 1, end - start + 1);
574 flush_dcache_page(page);
Chris Mason07157aa2007-08-30 08:50:51 -0400575 kunmap_atomic(kaddr, KM_IRQ0);
Jens Axboebbf0d002007-10-19 09:23:07 -0400576 local_irq_restore(flags);
Chris Mason3b951512008-04-17 11:29:12 -0400577 if (private == 0)
578 return 0;
Chris Mason7e383262008-04-09 16:28:12 -0400579 return -EIO;
Chris Mason07157aa2007-08-30 08:50:51 -0400580}
Chris Masonb888db2b2007-08-27 16:49:44 -0400581
Chris Mason39279cc2007-06-12 06:35:45 -0400582void btrfs_read_locked_inode(struct inode *inode)
583{
584 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400585 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400586 struct btrfs_inode_item *inode_item;
Chris Mason0b86a832008-03-24 15:01:56 -0400587 struct btrfs_timespec *tspec;
Chris Mason39279cc2007-06-12 06:35:45 -0400588 struct btrfs_root *root = BTRFS_I(inode)->root;
589 struct btrfs_key location;
590 u64 alloc_group_block;
Josef Bacik618e21d2007-07-11 10:18:17 -0400591 u32 rdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400592 int ret;
593
594 path = btrfs_alloc_path();
595 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400596 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400597 memcpy(&location, &BTRFS_I(inode)->location, sizeof(location));
Chris Masondc17ff82008-01-08 15:46:30 -0500598
Chris Mason39279cc2007-06-12 06:35:45 -0400599 ret = btrfs_lookup_inode(NULL, root, path, &location, 0);
Chris Mason5f39d392007-10-15 16:14:19 -0400600 if (ret)
Chris Mason39279cc2007-06-12 06:35:45 -0400601 goto make_bad;
Chris Mason39279cc2007-06-12 06:35:45 -0400602
Chris Mason5f39d392007-10-15 16:14:19 -0400603 leaf = path->nodes[0];
604 inode_item = btrfs_item_ptr(leaf, path->slots[0],
605 struct btrfs_inode_item);
606
607 inode->i_mode = btrfs_inode_mode(leaf, inode_item);
608 inode->i_nlink = btrfs_inode_nlink(leaf, inode_item);
609 inode->i_uid = btrfs_inode_uid(leaf, inode_item);
610 inode->i_gid = btrfs_inode_gid(leaf, inode_item);
611 inode->i_size = btrfs_inode_size(leaf, inode_item);
612
613 tspec = btrfs_inode_atime(inode_item);
614 inode->i_atime.tv_sec = btrfs_timespec_sec(leaf, tspec);
615 inode->i_atime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
616
617 tspec = btrfs_inode_mtime(inode_item);
618 inode->i_mtime.tv_sec = btrfs_timespec_sec(leaf, tspec);
619 inode->i_mtime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
620
621 tspec = btrfs_inode_ctime(inode_item);
622 inode->i_ctime.tv_sec = btrfs_timespec_sec(leaf, tspec);
623 inode->i_ctime.tv_nsec = btrfs_timespec_nsec(leaf, tspec);
624
625 inode->i_blocks = btrfs_inode_nblocks(leaf, inode_item);
626 inode->i_generation = btrfs_inode_generation(leaf, inode_item);
Josef Bacik618e21d2007-07-11 10:18:17 -0400627 inode->i_rdev = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400628 rdev = btrfs_inode_rdev(leaf, inode_item);
629
630 alloc_group_block = btrfs_inode_block_group(leaf, inode_item);
Chris Mason39279cc2007-06-12 06:35:45 -0400631 BTRFS_I(inode)->block_group = btrfs_lookup_block_group(root->fs_info,
632 alloc_group_block);
Yanb98b6762008-01-08 15:54:37 -0500633 BTRFS_I(inode)->flags = btrfs_inode_flags(leaf, inode_item);
Chris Masone52ec0e2007-12-21 16:36:24 -0500634 if (!BTRFS_I(inode)->block_group) {
635 BTRFS_I(inode)->block_group = btrfs_find_block_group(root,
Chris Mason0b86a832008-03-24 15:01:56 -0400636 NULL, 0,
637 BTRFS_BLOCK_GROUP_METADATA, 0);
Chris Masone52ec0e2007-12-21 16:36:24 -0500638 }
Chris Mason39279cc2007-06-12 06:35:45 -0400639 btrfs_free_path(path);
640 inode_item = NULL;
641
642 mutex_unlock(&root->fs_info->fs_mutex);
643
644 switch (inode->i_mode & S_IFMT) {
Chris Mason39279cc2007-06-12 06:35:45 -0400645 case S_IFREG:
646 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -0400647 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Masond1310b22008-01-24 16:13:08 -0500648 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -0400649 inode->i_fop = &btrfs_file_operations;
650 inode->i_op = &btrfs_file_inode_operations;
651 break;
652 case S_IFDIR:
653 inode->i_fop = &btrfs_dir_file_operations;
654 if (root == root->fs_info->tree_root)
655 inode->i_op = &btrfs_dir_ro_inode_operations;
656 else
657 inode->i_op = &btrfs_dir_inode_operations;
658 break;
659 case S_IFLNK:
660 inode->i_op = &btrfs_symlink_inode_operations;
661 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -0400662 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -0400663 break;
Josef Bacik618e21d2007-07-11 10:18:17 -0400664 default:
665 init_special_inode(inode, inode->i_mode, rdev);
666 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400667 }
668 return;
669
670make_bad:
671 btrfs_release_path(root, path);
672 btrfs_free_path(path);
673 mutex_unlock(&root->fs_info->fs_mutex);
674 make_bad_inode(inode);
675}
676
Chris Mason5f39d392007-10-15 16:14:19 -0400677static void fill_inode_item(struct extent_buffer *leaf,
678 struct btrfs_inode_item *item,
Chris Mason39279cc2007-06-12 06:35:45 -0400679 struct inode *inode)
680{
Chris Mason5f39d392007-10-15 16:14:19 -0400681 btrfs_set_inode_uid(leaf, item, inode->i_uid);
682 btrfs_set_inode_gid(leaf, item, inode->i_gid);
683 btrfs_set_inode_size(leaf, item, inode->i_size);
684 btrfs_set_inode_mode(leaf, item, inode->i_mode);
685 btrfs_set_inode_nlink(leaf, item, inode->i_nlink);
686
687 btrfs_set_timespec_sec(leaf, btrfs_inode_atime(item),
688 inode->i_atime.tv_sec);
689 btrfs_set_timespec_nsec(leaf, btrfs_inode_atime(item),
690 inode->i_atime.tv_nsec);
691
692 btrfs_set_timespec_sec(leaf, btrfs_inode_mtime(item),
693 inode->i_mtime.tv_sec);
694 btrfs_set_timespec_nsec(leaf, btrfs_inode_mtime(item),
695 inode->i_mtime.tv_nsec);
696
697 btrfs_set_timespec_sec(leaf, btrfs_inode_ctime(item),
698 inode->i_ctime.tv_sec);
699 btrfs_set_timespec_nsec(leaf, btrfs_inode_ctime(item),
700 inode->i_ctime.tv_nsec);
701
702 btrfs_set_inode_nblocks(leaf, item, inode->i_blocks);
703 btrfs_set_inode_generation(leaf, item, inode->i_generation);
704 btrfs_set_inode_rdev(leaf, item, inode->i_rdev);
Yanb98b6762008-01-08 15:54:37 -0500705 btrfs_set_inode_flags(leaf, item, BTRFS_I(inode)->flags);
Chris Mason5f39d392007-10-15 16:14:19 -0400706 btrfs_set_inode_block_group(leaf, item,
Chris Mason39279cc2007-06-12 06:35:45 -0400707 BTRFS_I(inode)->block_group->key.objectid);
708}
709
Chris Masona52d9a82007-08-27 16:49:44 -0400710int btrfs_update_inode(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400711 struct btrfs_root *root,
712 struct inode *inode)
713{
714 struct btrfs_inode_item *inode_item;
715 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400716 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400717 int ret;
718
719 path = btrfs_alloc_path();
720 BUG_ON(!path);
Chris Mason39279cc2007-06-12 06:35:45 -0400721 ret = btrfs_lookup_inode(trans, root, path,
722 &BTRFS_I(inode)->location, 1);
723 if (ret) {
724 if (ret > 0)
725 ret = -ENOENT;
726 goto failed;
727 }
728
Chris Mason5f39d392007-10-15 16:14:19 -0400729 leaf = path->nodes[0];
730 inode_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400731 struct btrfs_inode_item);
732
Chris Mason5f39d392007-10-15 16:14:19 -0400733 fill_inode_item(leaf, inode_item, inode);
734 btrfs_mark_buffer_dirty(leaf);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400735 btrfs_set_inode_last_trans(trans, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400736 ret = 0;
737failed:
738 btrfs_release_path(root, path);
739 btrfs_free_path(path);
740 return ret;
741}
742
743
744static int btrfs_unlink_trans(struct btrfs_trans_handle *trans,
745 struct btrfs_root *root,
746 struct inode *dir,
747 struct dentry *dentry)
748{
749 struct btrfs_path *path;
750 const char *name = dentry->d_name.name;
751 int name_len = dentry->d_name.len;
752 int ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400753 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400754 struct btrfs_dir_item *di;
Chris Mason5f39d392007-10-15 16:14:19 -0400755 struct btrfs_key key;
Chris Mason39279cc2007-06-12 06:35:45 -0400756
757 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -0400758 if (!path) {
759 ret = -ENOMEM;
760 goto err;
761 }
762
Chris Mason39279cc2007-06-12 06:35:45 -0400763 di = btrfs_lookup_dir_item(trans, root, path, dir->i_ino,
764 name, name_len, -1);
765 if (IS_ERR(di)) {
766 ret = PTR_ERR(di);
767 goto err;
768 }
769 if (!di) {
770 ret = -ENOENT;
771 goto err;
772 }
Chris Mason5f39d392007-10-15 16:14:19 -0400773 leaf = path->nodes[0];
774 btrfs_dir_item_key_to_cpu(leaf, di, &key);
Chris Mason39279cc2007-06-12 06:35:45 -0400775 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason54aa1f42007-06-22 14:16:25 -0400776 if (ret)
777 goto err;
Chris Mason39279cc2007-06-12 06:35:45 -0400778 btrfs_release_path(root, path);
779
780 di = btrfs_lookup_dir_index_item(trans, root, path, dir->i_ino,
Chris Mason5f39d392007-10-15 16:14:19 -0400781 key.objectid, name, name_len, -1);
Chris Mason39279cc2007-06-12 06:35:45 -0400782 if (IS_ERR(di)) {
783 ret = PTR_ERR(di);
784 goto err;
785 }
786 if (!di) {
787 ret = -ENOENT;
788 goto err;
789 }
790 ret = btrfs_delete_one_dir_name(trans, root, path, di);
Chris Mason39279cc2007-06-12 06:35:45 -0400791
792 dentry->d_inode->i_ctime = dir->i_ctime;
Chris Mason76fea002007-12-13 09:06:01 -0500793 ret = btrfs_del_inode_ref(trans, root, name, name_len,
794 dentry->d_inode->i_ino,
795 dentry->d_parent->d_inode->i_ino);
796 if (ret) {
797 printk("failed to delete reference to %.*s, "
798 "inode %lu parent %lu\n", name_len, name,
799 dentry->d_inode->i_ino,
800 dentry->d_parent->d_inode->i_ino);
Chris Mason39544012007-12-12 14:38:19 -0500801 }
Chris Mason39279cc2007-06-12 06:35:45 -0400802err:
803 btrfs_free_path(path);
804 if (!ret) {
805 dir->i_size -= name_len * 2;
Chris Mason79c44582007-06-25 10:09:33 -0400806 dir->i_mtime = dir->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -0400807 btrfs_update_inode(trans, root, dir);
Chris Mason6da6aba2007-12-18 16:15:09 -0500808#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
809 dentry->d_inode->i_nlink--;
810#else
Chris Mason39279cc2007-06-12 06:35:45 -0400811 drop_nlink(dentry->d_inode);
Chris Mason6da6aba2007-12-18 16:15:09 -0500812#endif
Chris Mason54aa1f42007-06-22 14:16:25 -0400813 ret = btrfs_update_inode(trans, root, dentry->d_inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400814 dir->i_sb->s_dirt = 1;
815 }
816 return ret;
817}
818
819static int btrfs_unlink(struct inode *dir, struct dentry *dentry)
820{
821 struct btrfs_root *root;
822 struct btrfs_trans_handle *trans;
Chris Mason2da98f02008-01-16 11:44:43 -0500823 struct inode *inode = dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400824 int ret;
Chris Mason1832a6d2007-12-21 16:27:21 -0500825 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400826
827 root = BTRFS_I(dir)->root;
828 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500829
830 ret = btrfs_check_free_space(root, 1, 1);
831 if (ret)
832 goto fail;
833
Chris Mason39279cc2007-06-12 06:35:45 -0400834 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -0400835
Chris Mason39279cc2007-06-12 06:35:45 -0400836 btrfs_set_trans_block_group(trans, dir);
837 ret = btrfs_unlink_trans(trans, root, dir, dentry);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400838 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -0400839
Chris Mason2da98f02008-01-16 11:44:43 -0500840 if (inode->i_nlink == 0) {
841 int found;
842 /* if the inode isn't linked anywhere,
843 * we don't need to worry about
844 * data=ordered
845 */
846 found = btrfs_del_ordered_inode(inode);
847 if (found == 1) {
848 atomic_dec(&inode->i_count);
849 }
850 }
851
Chris Mason39279cc2007-06-12 06:35:45 -0400852 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500853fail:
Chris Mason39279cc2007-06-12 06:35:45 -0400854 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400855 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500856 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -0400857 return ret;
858}
859
860static int btrfs_rmdir(struct inode *dir, struct dentry *dentry)
861{
862 struct inode *inode = dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -0500863 int err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400864 int ret;
865 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason39279cc2007-06-12 06:35:45 -0400866 struct btrfs_trans_handle *trans;
Chris Mason1832a6d2007-12-21 16:27:21 -0500867 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400868
Yan134d4512007-10-25 15:49:25 -0400869 if (inode->i_size > BTRFS_EMPTY_DIR_SIZE)
870 return -ENOTEMPTY;
871
Chris Mason39279cc2007-06-12 06:35:45 -0400872 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -0500873 ret = btrfs_check_free_space(root, 1, 1);
874 if (ret)
875 goto fail;
876
Chris Mason39279cc2007-06-12 06:35:45 -0400877 trans = btrfs_start_transaction(root, 1);
878 btrfs_set_trans_block_group(trans, dir);
Chris Mason39279cc2007-06-12 06:35:45 -0400879
880 /* now the directory is empty */
881 err = btrfs_unlink_trans(trans, root, dir, dentry);
882 if (!err) {
883 inode->i_size = 0;
884 }
Chris Mason39544012007-12-12 14:38:19 -0500885
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400886 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -0400887 ret = btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -0500888fail:
Yan134d4512007-10-25 15:49:25 -0400889 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -0400890 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -0500891 btrfs_throttle(root);
Chris Mason39544012007-12-12 14:38:19 -0500892
Chris Mason39279cc2007-06-12 06:35:45 -0400893 if (ret && !err)
894 err = ret;
895 return err;
896}
897
Chris Mason39279cc2007-06-12 06:35:45 -0400898/*
Chris Mason39279cc2007-06-12 06:35:45 -0400899 * this can truncate away extent items, csum items and directory items.
900 * It starts at a high offset and removes keys until it can't find
901 * any higher than i_size.
902 *
903 * csum items that cross the new i_size are truncated to the new size
904 * as well.
905 */
906static int btrfs_truncate_in_trans(struct btrfs_trans_handle *trans,
907 struct btrfs_root *root,
Chris Mason85e21ba2008-01-29 15:11:36 -0500908 struct inode *inode,
909 u32 min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400910{
911 int ret;
912 struct btrfs_path *path;
913 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -0400914 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -0400915 u32 found_type;
Chris Mason5f39d392007-10-15 16:14:19 -0400916 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -0400917 struct btrfs_file_extent_item *fi;
918 u64 extent_start = 0;
Chris Masondb945352007-10-15 16:15:53 -0400919 u64 extent_num_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400920 u64 item_end = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500921 u64 root_gen = 0;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500922 u64 root_owner = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400923 int found_extent;
924 int del_item;
Chris Mason85e21ba2008-01-29 15:11:36 -0500925 int pending_del_nr = 0;
926 int pending_del_slot = 0;
Chris Mason179e29e2007-11-01 11:28:41 -0400927 int extent_type = -1;
Chris Mason3b951512008-04-17 11:29:12 -0400928 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400929
Chris Mason3b951512008-04-17 11:29:12 -0400930 btrfs_drop_extent_cache(inode, inode->i_size & (~mask), (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -0400931 path = btrfs_alloc_path();
Chris Mason3c69fae2007-08-07 15:52:22 -0400932 path->reada = -1;
Chris Mason39279cc2007-06-12 06:35:45 -0400933 BUG_ON(!path);
Chris Mason5f39d392007-10-15 16:14:19 -0400934
Chris Mason39279cc2007-06-12 06:35:45 -0400935 /* FIXME, add redo link to tree so we don't leak on crash */
936 key.objectid = inode->i_ino;
937 key.offset = (u64)-1;
Chris Mason5f39d392007-10-15 16:14:19 -0400938 key.type = (u8)-1;
939
Chris Mason85e21ba2008-01-29 15:11:36 -0500940 btrfs_init_path(path);
941search_again:
942 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
943 if (ret < 0) {
944 goto error;
945 }
946 if (ret > 0) {
947 BUG_ON(path->slots[0] == 0);
948 path->slots[0]--;
949 }
950
Chris Mason39279cc2007-06-12 06:35:45 -0400951 while(1) {
Chris Mason39279cc2007-06-12 06:35:45 -0400952 fi = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400953 leaf = path->nodes[0];
954 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
955 found_type = btrfs_key_type(&found_key);
Chris Mason39279cc2007-06-12 06:35:45 -0400956
Chris Mason5f39d392007-10-15 16:14:19 -0400957 if (found_key.objectid != inode->i_ino)
Chris Mason39279cc2007-06-12 06:35:45 -0400958 break;
Chris Mason5f39d392007-10-15 16:14:19 -0400959
Chris Mason85e21ba2008-01-29 15:11:36 -0500960 if (found_type < min_type)
Chris Mason39279cc2007-06-12 06:35:45 -0400961 break;
962
Chris Mason5f39d392007-10-15 16:14:19 -0400963 item_end = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -0400964 if (found_type == BTRFS_EXTENT_DATA_KEY) {
Chris Mason5f39d392007-10-15 16:14:19 -0400965 fi = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason39279cc2007-06-12 06:35:45 -0400966 struct btrfs_file_extent_item);
Chris Mason179e29e2007-11-01 11:28:41 -0400967 extent_type = btrfs_file_extent_type(leaf, fi);
968 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400969 item_end +=
Chris Masondb945352007-10-15 16:15:53 -0400970 btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason179e29e2007-11-01 11:28:41 -0400971 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
972 struct btrfs_item *item = btrfs_item_nr(leaf,
973 path->slots[0]);
974 item_end += btrfs_file_extent_inline_len(leaf,
975 item);
Chris Mason39279cc2007-06-12 06:35:45 -0400976 }
Yan008630c2007-11-07 13:31:09 -0500977 item_end--;
Chris Mason39279cc2007-06-12 06:35:45 -0400978 }
979 if (found_type == BTRFS_CSUM_ITEM_KEY) {
980 ret = btrfs_csum_truncate(trans, root, path,
981 inode->i_size);
982 BUG_ON(ret);
983 }
Yan008630c2007-11-07 13:31:09 -0500984 if (item_end < inode->i_size) {
Chris Masonb888db2b2007-08-27 16:49:44 -0400985 if (found_type == BTRFS_DIR_ITEM_KEY) {
986 found_type = BTRFS_INODE_ITEM_KEY;
987 } else if (found_type == BTRFS_EXTENT_ITEM_KEY) {
988 found_type = BTRFS_CSUM_ITEM_KEY;
Chris Mason85e21ba2008-01-29 15:11:36 -0500989 } else if (found_type == BTRFS_EXTENT_DATA_KEY) {
990 found_type = BTRFS_XATTR_ITEM_KEY;
991 } else if (found_type == BTRFS_XATTR_ITEM_KEY) {
992 found_type = BTRFS_INODE_REF_KEY;
Chris Masonb888db2b2007-08-27 16:49:44 -0400993 } else if (found_type) {
994 found_type--;
995 } else {
996 break;
Chris Mason39279cc2007-06-12 06:35:45 -0400997 }
Yana61721d2007-09-17 11:08:38 -0400998 btrfs_set_key_type(&key, found_type);
Chris Mason85e21ba2008-01-29 15:11:36 -0500999 goto next;
Chris Mason39279cc2007-06-12 06:35:45 -04001000 }
Chris Mason5f39d392007-10-15 16:14:19 -04001001 if (found_key.offset >= inode->i_size)
Chris Mason39279cc2007-06-12 06:35:45 -04001002 del_item = 1;
1003 else
1004 del_item = 0;
1005 found_extent = 0;
1006
1007 /* FIXME, shrink the extent if the ref count is only 1 */
Chris Mason179e29e2007-11-01 11:28:41 -04001008 if (found_type != BTRFS_EXTENT_DATA_KEY)
1009 goto delete;
1010
1011 if (extent_type != BTRFS_FILE_EXTENT_INLINE) {
Chris Mason39279cc2007-06-12 06:35:45 -04001012 u64 num_dec;
Chris Masondb945352007-10-15 16:15:53 -04001013 extent_start = btrfs_file_extent_disk_bytenr(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001014 if (!del_item) {
Chris Masondb945352007-10-15 16:15:53 -04001015 u64 orig_num_bytes =
1016 btrfs_file_extent_num_bytes(leaf, fi);
1017 extent_num_bytes = inode->i_size -
Chris Mason5f39d392007-10-15 16:14:19 -04001018 found_key.offset + root->sectorsize - 1;
Yanb1632b12008-01-30 11:54:04 -05001019 extent_num_bytes = extent_num_bytes &
1020 ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -04001021 btrfs_set_file_extent_num_bytes(leaf, fi,
1022 extent_num_bytes);
1023 num_dec = (orig_num_bytes -
Chris Mason90692182008-02-08 13:49:28 -05001024 extent_num_bytes);
1025 if (extent_start != 0)
1026 dec_i_blocks(inode, num_dec);
Chris Mason5f39d392007-10-15 16:14:19 -04001027 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001028 } else {
Chris Masondb945352007-10-15 16:15:53 -04001029 extent_num_bytes =
1030 btrfs_file_extent_disk_num_bytes(leaf,
1031 fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001032 /* FIXME blocksize != 4096 */
Chris Mason90692182008-02-08 13:49:28 -05001033 num_dec = btrfs_file_extent_num_bytes(leaf, fi);
Chris Mason39279cc2007-06-12 06:35:45 -04001034 if (extent_start != 0) {
1035 found_extent = 1;
Chris Mason90692182008-02-08 13:49:28 -05001036 dec_i_blocks(inode, num_dec);
Chris Mason39279cc2007-06-12 06:35:45 -04001037 }
Chris Masond8d5f3e2007-12-11 12:42:00 -05001038 root_gen = btrfs_header_generation(leaf);
1039 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001040 }
Chris Mason90692182008-02-08 13:49:28 -05001041 } else if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1042 if (!del_item) {
1043 u32 newsize = inode->i_size - found_key.offset;
1044 dec_i_blocks(inode, item_end + 1 -
1045 found_key.offset - newsize);
1046 newsize =
1047 btrfs_file_extent_calc_inline_size(newsize);
1048 ret = btrfs_truncate_item(trans, root, path,
1049 newsize, 1);
1050 BUG_ON(ret);
1051 } else {
1052 dec_i_blocks(inode, item_end + 1 -
1053 found_key.offset);
1054 }
Chris Mason39279cc2007-06-12 06:35:45 -04001055 }
Chris Mason179e29e2007-11-01 11:28:41 -04001056delete:
Chris Mason39279cc2007-06-12 06:35:45 -04001057 if (del_item) {
Chris Mason85e21ba2008-01-29 15:11:36 -05001058 if (!pending_del_nr) {
1059 /* no pending yet, add ourselves */
1060 pending_del_slot = path->slots[0];
1061 pending_del_nr = 1;
1062 } else if (pending_del_nr &&
1063 path->slots[0] + 1 == pending_del_slot) {
1064 /* hop on the pending chunk */
1065 pending_del_nr++;
1066 pending_del_slot = path->slots[0];
1067 } else {
1068 printk("bad pending slot %d pending_del_nr %d pending_del_slot %d\n", path->slots[0], pending_del_nr, pending_del_slot);
1069 }
Chris Mason39279cc2007-06-12 06:35:45 -04001070 } else {
1071 break;
1072 }
Chris Mason39279cc2007-06-12 06:35:45 -04001073 if (found_extent) {
1074 ret = btrfs_free_extent(trans, root, extent_start,
Chris Mason7bb86312007-12-11 09:25:06 -05001075 extent_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -05001076 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -05001077 root_gen, inode->i_ino,
1078 found_key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001079 BUG_ON(ret);
1080 }
Chris Mason85e21ba2008-01-29 15:11:36 -05001081next:
1082 if (path->slots[0] == 0) {
1083 if (pending_del_nr)
1084 goto del_pending;
1085 btrfs_release_path(root, path);
1086 goto search_again;
1087 }
1088
1089 path->slots[0]--;
1090 if (pending_del_nr &&
1091 path->slots[0] + 1 != pending_del_slot) {
1092 struct btrfs_key debug;
1093del_pending:
1094 btrfs_item_key_to_cpu(path->nodes[0], &debug,
1095 pending_del_slot);
1096 ret = btrfs_del_items(trans, root, path,
1097 pending_del_slot,
1098 pending_del_nr);
1099 BUG_ON(ret);
1100 pending_del_nr = 0;
1101 btrfs_release_path(root, path);
1102 goto search_again;
1103 }
Chris Mason39279cc2007-06-12 06:35:45 -04001104 }
1105 ret = 0;
1106error:
Chris Mason85e21ba2008-01-29 15:11:36 -05001107 if (pending_del_nr) {
1108 ret = btrfs_del_items(trans, root, path, pending_del_slot,
1109 pending_del_nr);
1110 }
Chris Mason39279cc2007-06-12 06:35:45 -04001111 btrfs_release_path(root, path);
1112 btrfs_free_path(path);
1113 inode->i_sb->s_dirt = 1;
1114 return ret;
1115}
1116
Chris Masonb888db2b2007-08-27 16:49:44 -04001117static int btrfs_cow_one_page(struct inode *inode, struct page *page,
Chris Masona52d9a82007-08-27 16:49:44 -04001118 size_t zero_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001119{
Chris Mason39279cc2007-06-12 06:35:45 -04001120 char *kaddr;
Chris Masond1310b22008-01-24 16:13:08 -05001121 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason35ebb932007-10-30 16:56:53 -04001122 u64 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masonb888db2b2007-08-27 16:49:44 -04001123 u64 page_end = page_start + PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -05001124 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001125
Chris Mason190662b2007-12-18 16:25:45 -05001126 WARN_ON(!PageLocked(page));
Christoph Hellwigb3cfa352007-09-17 11:25:58 -04001127 set_page_extent_mapped(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001128
Chris Masond1310b22008-01-24 16:13:08 -05001129 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05001130 set_extent_delalloc(&BTRFS_I(inode)->io_tree, page_start,
Chris Masonb888db2b2007-08-27 16:49:44 -04001131 page_end, GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -05001132
Chris Masona52d9a82007-08-27 16:49:44 -04001133 if (zero_start != PAGE_CACHE_SIZE) {
Chris Masonb888db2b2007-08-27 16:49:44 -04001134 kaddr = kmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001135 memset(kaddr + zero_start, 0, PAGE_CACHE_SIZE - zero_start);
1136 flush_dcache_page(page);
Chris Masonb888db2b2007-08-27 16:49:44 -04001137 kunmap(page);
Chris Masona52d9a82007-08-27 16:49:44 -04001138 }
Chris Masonb888db2b2007-08-27 16:49:44 -04001139 set_page_dirty(page);
Chris Masond1310b22008-01-24 16:13:08 -05001140 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04001141
Chris Masona52d9a82007-08-27 16:49:44 -04001142 return ret;
1143}
1144
1145/*
1146 * taken from block_truncate_page, but does cow as it zeros out
1147 * any bytes left in the last page in the file.
1148 */
1149static int btrfs_truncate_page(struct address_space *mapping, loff_t from)
1150{
1151 struct inode *inode = mapping->host;
Chris Masondb945352007-10-15 16:15:53 -04001152 struct btrfs_root *root = BTRFS_I(inode)->root;
1153 u32 blocksize = root->sectorsize;
Chris Masona52d9a82007-08-27 16:49:44 -04001154 pgoff_t index = from >> PAGE_CACHE_SHIFT;
1155 unsigned offset = from & (PAGE_CACHE_SIZE-1);
1156 struct page *page;
1157 int ret = 0;
1158 u64 page_start;
1159
1160 if ((offset & (blocksize - 1)) == 0)
1161 goto out;
1162
1163 ret = -ENOMEM;
1164 page = grab_cache_page(mapping, index);
1165 if (!page)
1166 goto out;
1167 if (!PageUptodate(page)) {
1168 ret = btrfs_readpage(NULL, page);
1169 lock_page(page);
1170 if (!PageUptodate(page)) {
1171 ret = -EIO;
1172 goto out;
1173 }
1174 }
Chris Mason35ebb932007-10-30 16:56:53 -04001175 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04001176
Chris Masonb888db2b2007-08-27 16:49:44 -04001177 ret = btrfs_cow_one_page(inode, page, offset);
Chris Mason39279cc2007-06-12 06:35:45 -04001178
Chris Mason39279cc2007-06-12 06:35:45 -04001179 unlock_page(page);
1180 page_cache_release(page);
1181out:
1182 return ret;
1183}
1184
1185static int btrfs_setattr(struct dentry *dentry, struct iattr *attr)
1186{
1187 struct inode *inode = dentry->d_inode;
1188 int err;
1189
1190 err = inode_change_ok(inode, attr);
1191 if (err)
1192 return err;
1193
1194 if (S_ISREG(inode->i_mode) &&
1195 attr->ia_valid & ATTR_SIZE && attr->ia_size > inode->i_size) {
1196 struct btrfs_trans_handle *trans;
1197 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05001198 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason2bf5a722007-08-30 11:54:02 -04001199
Chris Mason5f39d392007-10-15 16:14:19 -04001200 u64 mask = root->sectorsize - 1;
Chris Mason1b0f7c22008-01-30 14:33:02 -05001201 u64 hole_start = (inode->i_size + mask) & ~mask;
Chris Masonf392a932008-01-30 11:54:05 -05001202 u64 block_end = (attr->ia_size + mask) & ~mask;
Chris Mason39279cc2007-06-12 06:35:45 -04001203 u64 hole_size;
Chris Mason179e29e2007-11-01 11:28:41 -04001204 u64 alloc_hint = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001205
Chris Mason1b0f7c22008-01-30 14:33:02 -05001206 if (attr->ia_size <= hole_start)
Chris Mason39279cc2007-06-12 06:35:45 -04001207 goto out;
1208
Chris Mason1832a6d2007-12-21 16:27:21 -05001209 mutex_lock(&root->fs_info->fs_mutex);
1210 err = btrfs_check_free_space(root, 1, 0);
1211 mutex_unlock(&root->fs_info->fs_mutex);
1212 if (err)
1213 goto fail;
1214
Chris Mason39279cc2007-06-12 06:35:45 -04001215 btrfs_truncate_page(inode->i_mapping, inode->i_size);
1216
Chris Mason1b0f7c22008-01-30 14:33:02 -05001217 lock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason5f564062008-01-22 16:47:59 -05001218 hole_size = block_end - hole_start;
Chris Mason39279cc2007-06-12 06:35:45 -04001219
1220 mutex_lock(&root->fs_info->fs_mutex);
1221 trans = btrfs_start_transaction(root, 1);
1222 btrfs_set_trans_block_group(trans, inode);
Chris Mason2bf5a722007-08-30 11:54:02 -04001223 err = btrfs_drop_extents(trans, root, inode,
Chris Mason1b0f7c22008-01-30 14:33:02 -05001224 hole_start, block_end, hole_start,
Chris Mason3326d1b2007-10-15 16:18:25 -04001225 &alloc_hint);
Chris Mason2bf5a722007-08-30 11:54:02 -04001226
Chris Mason179e29e2007-11-01 11:28:41 -04001227 if (alloc_hint != EXTENT_MAP_INLINE) {
1228 err = btrfs_insert_file_extent(trans, root,
1229 inode->i_ino,
Chris Mason5f564062008-01-22 16:47:59 -05001230 hole_start, 0, 0,
Sage Weilf2eb0a22008-05-02 14:43:14 -04001231 hole_size, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001232 btrfs_drop_extent_cache(inode, hole_start,
Chris Mason3b951512008-04-17 11:29:12 -04001233 (u64)-1);
Chris Mason5f564062008-01-22 16:47:59 -05001234 btrfs_check_file(root, inode);
Chris Mason179e29e2007-11-01 11:28:41 -04001235 }
Chris Mason39279cc2007-06-12 06:35:45 -04001236 btrfs_end_transaction(trans, root);
1237 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1b0f7c22008-01-30 14:33:02 -05001238 unlock_extent(io_tree, hole_start, block_end - 1, GFP_NOFS);
Chris Mason54aa1f42007-06-22 14:16:25 -04001239 if (err)
1240 return err;
Chris Mason39279cc2007-06-12 06:35:45 -04001241 }
1242out:
1243 err = inode_setattr(inode, attr);
Chris Mason1832a6d2007-12-21 16:27:21 -05001244fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001245 return err;
1246}
Chris Mason61295eb2008-01-14 16:24:38 -05001247
Chris Mason2da98f02008-01-16 11:44:43 -05001248void btrfs_put_inode(struct inode *inode)
Chris Mason61295eb2008-01-14 16:24:38 -05001249{
Chris Mason2da98f02008-01-16 11:44:43 -05001250 int ret;
1251
1252 if (!BTRFS_I(inode)->ordered_trans) {
Chris Mason61295eb2008-01-14 16:24:38 -05001253 return;
1254 }
Chris Mason2da98f02008-01-16 11:44:43 -05001255
1256 if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_DIRTY) ||
1257 mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))
1258 return;
1259
1260 ret = btrfs_del_ordered_inode(inode);
1261 if (ret == 1) {
1262 atomic_dec(&inode->i_count);
1263 }
Chris Mason61295eb2008-01-14 16:24:38 -05001264}
1265
Chris Mason39279cc2007-06-12 06:35:45 -04001266void btrfs_delete_inode(struct inode *inode)
1267{
1268 struct btrfs_trans_handle *trans;
1269 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001270 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04001271 int ret;
1272
1273 truncate_inode_pages(&inode->i_data, 0);
1274 if (is_bad_inode(inode)) {
1275 goto no_delete;
1276 }
Chris Mason5f39d392007-10-15 16:14:19 -04001277
Chris Mason39279cc2007-06-12 06:35:45 -04001278 inode->i_size = 0;
1279 mutex_lock(&root->fs_info->fs_mutex);
1280 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04001281
Chris Mason39279cc2007-06-12 06:35:45 -04001282 btrfs_set_trans_block_group(trans, inode);
Chris Mason85e21ba2008-01-29 15:11:36 -05001283 ret = btrfs_truncate_in_trans(trans, root, inode, 0);
Chris Mason54aa1f42007-06-22 14:16:25 -04001284 if (ret)
1285 goto no_delete_lock;
Chris Mason85e21ba2008-01-29 15:11:36 -05001286
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001287 nr = trans->blocks_used;
Chris Mason85e21ba2008-01-29 15:11:36 -05001288 clear_inode(inode);
Chris Mason5f39d392007-10-15 16:14:19 -04001289
Chris Mason39279cc2007-06-12 06:35:45 -04001290 btrfs_end_transaction(trans, root);
1291 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001292 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001293 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001294 return;
Chris Mason54aa1f42007-06-22 14:16:25 -04001295
1296no_delete_lock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001297 nr = trans->blocks_used;
Chris Mason54aa1f42007-06-22 14:16:25 -04001298 btrfs_end_transaction(trans, root);
1299 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001300 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001301 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001302no_delete:
1303 clear_inode(inode);
1304}
1305
1306/*
1307 * this returns the key found in the dir entry in the location pointer.
1308 * If no dir entries were found, location->objectid is 0.
1309 */
1310static int btrfs_inode_by_name(struct inode *dir, struct dentry *dentry,
1311 struct btrfs_key *location)
1312{
1313 const char *name = dentry->d_name.name;
1314 int namelen = dentry->d_name.len;
1315 struct btrfs_dir_item *di;
1316 struct btrfs_path *path;
1317 struct btrfs_root *root = BTRFS_I(dir)->root;
Yan0d9f7f32007-10-25 15:48:28 -04001318 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001319
Chris Mason39544012007-12-12 14:38:19 -05001320 if (namelen == 1 && strcmp(name, ".") == 0) {
1321 location->objectid = dir->i_ino;
1322 location->type = BTRFS_INODE_ITEM_KEY;
1323 location->offset = 0;
1324 return 0;
1325 }
Chris Mason39279cc2007-06-12 06:35:45 -04001326 path = btrfs_alloc_path();
1327 BUG_ON(!path);
Chris Mason39544012007-12-12 14:38:19 -05001328
Chris Mason7a720532007-12-13 09:06:59 -05001329 if (namelen == 2 && strcmp(name, "..") == 0) {
Chris Mason39544012007-12-12 14:38:19 -05001330 struct btrfs_key key;
1331 struct extent_buffer *leaf;
1332 u32 nritems;
1333 int slot;
1334
1335 key.objectid = dir->i_ino;
1336 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1337 key.offset = 0;
1338 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1339 BUG_ON(ret == 0);
1340 ret = 0;
1341
1342 leaf = path->nodes[0];
1343 slot = path->slots[0];
1344 nritems = btrfs_header_nritems(leaf);
1345 if (slot >= nritems)
1346 goto out_err;
1347
1348 btrfs_item_key_to_cpu(leaf, &key, slot);
1349 if (key.objectid != dir->i_ino ||
1350 key.type != BTRFS_INODE_REF_KEY) {
1351 goto out_err;
1352 }
1353 location->objectid = key.offset;
1354 location->type = BTRFS_INODE_ITEM_KEY;
1355 location->offset = 0;
1356 goto out;
1357 }
1358
Chris Mason39279cc2007-06-12 06:35:45 -04001359 di = btrfs_lookup_dir_item(NULL, root, path, dir->i_ino, name,
1360 namelen, 0);
Yan0d9f7f32007-10-25 15:48:28 -04001361 if (IS_ERR(di))
1362 ret = PTR_ERR(di);
Chris Mason39279cc2007-06-12 06:35:45 -04001363 if (!di || IS_ERR(di)) {
Chris Mason39544012007-12-12 14:38:19 -05001364 goto out_err;
Chris Mason39279cc2007-06-12 06:35:45 -04001365 }
Chris Mason5f39d392007-10-15 16:14:19 -04001366 btrfs_dir_item_key_to_cpu(path->nodes[0], di, location);
Chris Mason39279cc2007-06-12 06:35:45 -04001367out:
Chris Mason39279cc2007-06-12 06:35:45 -04001368 btrfs_free_path(path);
1369 return ret;
Chris Mason39544012007-12-12 14:38:19 -05001370out_err:
1371 location->objectid = 0;
1372 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -04001373}
1374
1375/*
1376 * when we hit a tree root in a directory, the btrfs part of the inode
1377 * needs to be changed to reflect the root directory of the tree root. This
1378 * is kind of like crossing a mount point.
1379 */
1380static int fixup_tree_root_location(struct btrfs_root *root,
1381 struct btrfs_key *location,
Josef Bacik58176a92007-08-29 15:47:34 -04001382 struct btrfs_root **sub_root,
1383 struct dentry *dentry)
Chris Mason39279cc2007-06-12 06:35:45 -04001384{
1385 struct btrfs_path *path;
1386 struct btrfs_root_item *ri;
1387
1388 if (btrfs_key_type(location) != BTRFS_ROOT_ITEM_KEY)
1389 return 0;
1390 if (location->objectid == BTRFS_ROOT_TREE_OBJECTID)
1391 return 0;
1392
1393 path = btrfs_alloc_path();
1394 BUG_ON(!path);
1395 mutex_lock(&root->fs_info->fs_mutex);
1396
Josef Bacik58176a92007-08-29 15:47:34 -04001397 *sub_root = btrfs_read_fs_root(root->fs_info, location,
1398 dentry->d_name.name,
1399 dentry->d_name.len);
Chris Mason39279cc2007-06-12 06:35:45 -04001400 if (IS_ERR(*sub_root))
1401 return PTR_ERR(*sub_root);
1402
1403 ri = &(*sub_root)->root_item;
1404 location->objectid = btrfs_root_dirid(ri);
Chris Mason39279cc2007-06-12 06:35:45 -04001405 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1406 location->offset = 0;
1407
1408 btrfs_free_path(path);
1409 mutex_unlock(&root->fs_info->fs_mutex);
1410 return 0;
1411}
1412
1413static int btrfs_init_locked_inode(struct inode *inode, void *p)
1414{
1415 struct btrfs_iget_args *args = p;
1416 inode->i_ino = args->ino;
1417 BTRFS_I(inode)->root = args->root;
Chris Mason90692182008-02-08 13:49:28 -05001418 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Masond1310b22008-01-24 16:13:08 -05001419 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1420 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db2b2007-08-27 16:49:44 -04001421 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001422 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1423 inode->i_mapping, GFP_NOFS);
Chris Mason81d7ed22008-04-25 08:51:48 -04001424 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001425 return 0;
1426}
1427
1428static int btrfs_find_actor(struct inode *inode, void *opaque)
1429{
1430 struct btrfs_iget_args *args = opaque;
1431 return (args->ino == inode->i_ino &&
1432 args->root == BTRFS_I(inode)->root);
1433}
1434
Chris Masondc17ff82008-01-08 15:46:30 -05001435struct inode *btrfs_ilookup(struct super_block *s, u64 objectid,
1436 u64 root_objectid)
1437{
1438 struct btrfs_iget_args args;
1439 args.ino = objectid;
1440 args.root = btrfs_lookup_fs_root(btrfs_sb(s)->fs_info, root_objectid);
1441
1442 if (!args.root)
1443 return NULL;
1444
1445 return ilookup5(s, objectid, btrfs_find_actor, (void *)&args);
1446}
1447
Chris Mason39279cc2007-06-12 06:35:45 -04001448struct inode *btrfs_iget_locked(struct super_block *s, u64 objectid,
1449 struct btrfs_root *root)
1450{
1451 struct inode *inode;
1452 struct btrfs_iget_args args;
1453 args.ino = objectid;
1454 args.root = root;
1455
1456 inode = iget5_locked(s, objectid, btrfs_find_actor,
1457 btrfs_init_locked_inode,
1458 (void *)&args);
1459 return inode;
1460}
1461
1462static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
1463 struct nameidata *nd)
1464{
1465 struct inode * inode;
1466 struct btrfs_inode *bi = BTRFS_I(dir);
1467 struct btrfs_root *root = bi->root;
1468 struct btrfs_root *sub_root = root;
1469 struct btrfs_key location;
1470 int ret;
1471
1472 if (dentry->d_name.len > BTRFS_NAME_LEN)
1473 return ERR_PTR(-ENAMETOOLONG);
Chris Mason5f39d392007-10-15 16:14:19 -04001474
Chris Mason39279cc2007-06-12 06:35:45 -04001475 mutex_lock(&root->fs_info->fs_mutex);
1476 ret = btrfs_inode_by_name(dir, dentry, &location);
1477 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason5f39d392007-10-15 16:14:19 -04001478
Chris Mason39279cc2007-06-12 06:35:45 -04001479 if (ret < 0)
1480 return ERR_PTR(ret);
Chris Mason5f39d392007-10-15 16:14:19 -04001481
Chris Mason39279cc2007-06-12 06:35:45 -04001482 inode = NULL;
1483 if (location.objectid) {
Josef Bacik58176a92007-08-29 15:47:34 -04001484 ret = fixup_tree_root_location(root, &location, &sub_root,
1485 dentry);
Chris Mason39279cc2007-06-12 06:35:45 -04001486 if (ret < 0)
1487 return ERR_PTR(ret);
1488 if (ret > 0)
1489 return ERR_PTR(-ENOENT);
1490 inode = btrfs_iget_locked(dir->i_sb, location.objectid,
1491 sub_root);
1492 if (!inode)
1493 return ERR_PTR(-EACCES);
1494 if (inode->i_state & I_NEW) {
1495 /* the inode and parent dir are two different roots */
1496 if (sub_root != root) {
1497 igrab(inode);
1498 sub_root->inode = inode;
1499 }
1500 BTRFS_I(inode)->root = sub_root;
1501 memcpy(&BTRFS_I(inode)->location, &location,
1502 sizeof(location));
1503 btrfs_read_locked_inode(inode);
1504 unlock_new_inode(inode);
1505 }
1506 }
1507 return d_splice_alias(inode, dentry);
1508}
1509
Chris Mason39279cc2007-06-12 06:35:45 -04001510static unsigned char btrfs_filetype_table[] = {
1511 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK
1512};
1513
1514static int btrfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
1515{
Chris Mason6da6aba2007-12-18 16:15:09 -05001516 struct inode *inode = filp->f_dentry->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04001517 struct btrfs_root *root = BTRFS_I(inode)->root;
1518 struct btrfs_item *item;
1519 struct btrfs_dir_item *di;
1520 struct btrfs_key key;
Chris Mason5f39d392007-10-15 16:14:19 -04001521 struct btrfs_key found_key;
Chris Mason39279cc2007-06-12 06:35:45 -04001522 struct btrfs_path *path;
1523 int ret;
1524 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -04001525 struct extent_buffer *leaf;
Chris Mason39279cc2007-06-12 06:35:45 -04001526 int slot;
1527 int advance;
1528 unsigned char d_type;
1529 int over = 0;
1530 u32 di_cur;
1531 u32 di_total;
1532 u32 di_len;
1533 int key_type = BTRFS_DIR_INDEX_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001534 char tmp_name[32];
1535 char *name_ptr;
1536 int name_len;
Chris Mason39279cc2007-06-12 06:35:45 -04001537
1538 /* FIXME, use a real flag for deciding about the key type */
1539 if (root->fs_info->tree_root == root)
1540 key_type = BTRFS_DIR_ITEM_KEY;
Chris Mason5f39d392007-10-15 16:14:19 -04001541
Chris Mason39544012007-12-12 14:38:19 -05001542 /* special case for "." */
1543 if (filp->f_pos == 0) {
1544 over = filldir(dirent, ".", 1,
1545 1, inode->i_ino,
1546 DT_DIR);
1547 if (over)
1548 return 0;
1549 filp->f_pos = 1;
1550 }
1551
Chris Mason39279cc2007-06-12 06:35:45 -04001552 mutex_lock(&root->fs_info->fs_mutex);
1553 key.objectid = inode->i_ino;
Chris Mason39544012007-12-12 14:38:19 -05001554 path = btrfs_alloc_path();
1555 path->reada = 2;
1556
1557 /* special case for .., just use the back ref */
1558 if (filp->f_pos == 1) {
1559 btrfs_set_key_type(&key, BTRFS_INODE_REF_KEY);
1560 key.offset = 0;
1561 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1562 BUG_ON(ret == 0);
1563 leaf = path->nodes[0];
1564 slot = path->slots[0];
1565 nritems = btrfs_header_nritems(leaf);
1566 if (slot >= nritems) {
1567 btrfs_release_path(root, path);
1568 goto read_dir_items;
1569 }
1570 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1571 btrfs_release_path(root, path);
1572 if (found_key.objectid != key.objectid ||
1573 found_key.type != BTRFS_INODE_REF_KEY)
1574 goto read_dir_items;
1575 over = filldir(dirent, "..", 2,
1576 2, found_key.offset, DT_DIR);
1577 if (over)
1578 goto nopos;
1579 filp->f_pos = 2;
1580 }
1581
1582read_dir_items:
Chris Mason39279cc2007-06-12 06:35:45 -04001583 btrfs_set_key_type(&key, key_type);
1584 key.offset = filp->f_pos;
Chris Mason5f39d392007-10-15 16:14:19 -04001585
Chris Mason39279cc2007-06-12 06:35:45 -04001586 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1587 if (ret < 0)
1588 goto err;
1589 advance = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001590 while(1) {
Chris Mason5f39d392007-10-15 16:14:19 -04001591 leaf = path->nodes[0];
1592 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001593 slot = path->slots[0];
1594 if (advance || slot >= nritems) {
1595 if (slot >= nritems -1) {
Chris Mason39279cc2007-06-12 06:35:45 -04001596 ret = btrfs_next_leaf(root, path);
1597 if (ret)
1598 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001599 leaf = path->nodes[0];
1600 nritems = btrfs_header_nritems(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04001601 slot = path->slots[0];
1602 } else {
1603 slot++;
1604 path->slots[0]++;
1605 }
1606 }
1607 advance = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04001608 item = btrfs_item_nr(leaf, slot);
1609 btrfs_item_key_to_cpu(leaf, &found_key, slot);
1610
1611 if (found_key.objectid != key.objectid)
Chris Mason39279cc2007-06-12 06:35:45 -04001612 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001613 if (btrfs_key_type(&found_key) != key_type)
Chris Mason39279cc2007-06-12 06:35:45 -04001614 break;
Chris Mason5f39d392007-10-15 16:14:19 -04001615 if (found_key.offset < filp->f_pos)
Chris Mason39279cc2007-06-12 06:35:45 -04001616 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04001617
1618 filp->f_pos = found_key.offset;
Chris Mason39279cc2007-06-12 06:35:45 -04001619 advance = 1;
1620 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
1621 di_cur = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04001622 di_total = btrfs_item_size(leaf, item);
Chris Mason39279cc2007-06-12 06:35:45 -04001623 while(di_cur < di_total) {
Chris Mason5f39d392007-10-15 16:14:19 -04001624 struct btrfs_key location;
1625
1626 name_len = btrfs_dir_name_len(leaf, di);
1627 if (name_len < 32) {
1628 name_ptr = tmp_name;
1629 } else {
1630 name_ptr = kmalloc(name_len, GFP_NOFS);
1631 BUG_ON(!name_ptr);
1632 }
1633 read_extent_buffer(leaf, name_ptr,
1634 (unsigned long)(di + 1), name_len);
1635
1636 d_type = btrfs_filetype_table[btrfs_dir_type(leaf, di)];
1637 btrfs_dir_item_key_to_cpu(leaf, di, &location);
Chris Mason5f39d392007-10-15 16:14:19 -04001638 over = filldir(dirent, name_ptr, name_len,
1639 found_key.offset,
1640 location.objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001641 d_type);
Chris Mason5f39d392007-10-15 16:14:19 -04001642
1643 if (name_ptr != tmp_name)
1644 kfree(name_ptr);
1645
Chris Mason39279cc2007-06-12 06:35:45 -04001646 if (over)
1647 goto nopos;
Josef Bacik5103e942007-11-16 11:45:54 -05001648 di_len = btrfs_dir_name_len(leaf, di) +
1649 btrfs_dir_data_len(leaf, di) +sizeof(*di);
Chris Mason39279cc2007-06-12 06:35:45 -04001650 di_cur += di_len;
1651 di = (struct btrfs_dir_item *)((char *)di + di_len);
1652 }
1653 }
Yan Zheng5e591a02008-02-19 11:41:02 -05001654 if (key_type == BTRFS_DIR_INDEX_KEY)
1655 filp->f_pos = INT_LIMIT(typeof(filp->f_pos));
1656 else
1657 filp->f_pos++;
Chris Mason39279cc2007-06-12 06:35:45 -04001658nopos:
1659 ret = 0;
1660err:
1661 btrfs_release_path(root, path);
1662 btrfs_free_path(path);
1663 mutex_unlock(&root->fs_info->fs_mutex);
1664 return ret;
1665}
1666
1667int btrfs_write_inode(struct inode *inode, int wait)
1668{
1669 struct btrfs_root *root = BTRFS_I(inode)->root;
1670 struct btrfs_trans_handle *trans;
1671 int ret = 0;
1672
1673 if (wait) {
1674 mutex_lock(&root->fs_info->fs_mutex);
1675 trans = btrfs_start_transaction(root, 1);
1676 btrfs_set_trans_block_group(trans, inode);
1677 ret = btrfs_commit_transaction(trans, root);
1678 mutex_unlock(&root->fs_info->fs_mutex);
1679 }
1680 return ret;
1681}
1682
1683/*
Chris Mason54aa1f42007-06-22 14:16:25 -04001684 * This is somewhat expensive, updating the tree every time the
Chris Mason39279cc2007-06-12 06:35:45 -04001685 * inode changes. But, it is most likely to find the inode in cache.
1686 * FIXME, needs more benchmarking...there are no reasons other than performance
1687 * to keep or drop this code.
1688 */
1689void btrfs_dirty_inode(struct inode *inode)
1690{
1691 struct btrfs_root *root = BTRFS_I(inode)->root;
1692 struct btrfs_trans_handle *trans;
1693
1694 mutex_lock(&root->fs_info->fs_mutex);
1695 trans = btrfs_start_transaction(root, 1);
1696 btrfs_set_trans_block_group(trans, inode);
1697 btrfs_update_inode(trans, root, inode);
1698 btrfs_end_transaction(trans, root);
1699 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04001700}
1701
1702static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
1703 struct btrfs_root *root,
Chris Mason9c583092008-01-29 15:15:18 -05001704 const char *name, int name_len,
1705 u64 ref_objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04001706 u64 objectid,
1707 struct btrfs_block_group_cache *group,
1708 int mode)
1709{
1710 struct inode *inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001711 struct btrfs_inode_item *inode_item;
Chris Mason6324fbf2008-03-24 15:01:59 -04001712 struct btrfs_block_group_cache *new_inode_group;
Chris Mason39279cc2007-06-12 06:35:45 -04001713 struct btrfs_key *location;
Chris Mason5f39d392007-10-15 16:14:19 -04001714 struct btrfs_path *path;
Chris Mason9c583092008-01-29 15:15:18 -05001715 struct btrfs_inode_ref *ref;
1716 struct btrfs_key key[2];
1717 u32 sizes[2];
1718 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04001719 int ret;
1720 int owner;
1721
Chris Mason5f39d392007-10-15 16:14:19 -04001722 path = btrfs_alloc_path();
1723 BUG_ON(!path);
1724
Chris Mason39279cc2007-06-12 06:35:45 -04001725 inode = new_inode(root->fs_info->sb);
1726 if (!inode)
1727 return ERR_PTR(-ENOMEM);
1728
Chris Masond1310b22008-01-24 16:13:08 -05001729 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1730 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masonb888db2b2007-08-27 16:49:44 -04001731 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001732 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1733 inode->i_mapping, GFP_NOFS);
Chris Mason81d7ed22008-04-25 08:51:48 -04001734 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Mason90692182008-02-08 13:49:28 -05001735 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001736 BTRFS_I(inode)->root = root;
Chris Masonb888db2b2007-08-27 16:49:44 -04001737
Chris Mason39279cc2007-06-12 06:35:45 -04001738 if (mode & S_IFDIR)
1739 owner = 0;
1740 else
1741 owner = 1;
Chris Mason6324fbf2008-03-24 15:01:59 -04001742 new_inode_group = btrfs_find_block_group(root, group, 0,
Chris Mason0b86a832008-03-24 15:01:56 -04001743 BTRFS_BLOCK_GROUP_METADATA, owner);
Chris Mason6324fbf2008-03-24 15:01:59 -04001744 if (!new_inode_group) {
1745 printk("find_block group failed\n");
1746 new_inode_group = group;
1747 }
1748 BTRFS_I(inode)->block_group = new_inode_group;
Yanb98b6762008-01-08 15:54:37 -05001749 BTRFS_I(inode)->flags = 0;
Chris Mason9c583092008-01-29 15:15:18 -05001750
1751 key[0].objectid = objectid;
1752 btrfs_set_key_type(&key[0], BTRFS_INODE_ITEM_KEY);
1753 key[0].offset = 0;
1754
1755 key[1].objectid = objectid;
1756 btrfs_set_key_type(&key[1], BTRFS_INODE_REF_KEY);
1757 key[1].offset = ref_objectid;
1758
1759 sizes[0] = sizeof(struct btrfs_inode_item);
1760 sizes[1] = name_len + sizeof(*ref);
1761
1762 ret = btrfs_insert_empty_items(trans, root, path, key, sizes, 2);
1763 if (ret != 0)
Chris Mason5f39d392007-10-15 16:14:19 -04001764 goto fail;
1765
Chris Mason9c583092008-01-29 15:15:18 -05001766 if (objectid > root->highest_inode)
1767 root->highest_inode = objectid;
1768
Chris Mason39279cc2007-06-12 06:35:45 -04001769 inode->i_uid = current->fsuid;
1770 inode->i_gid = current->fsgid;
1771 inode->i_mode = mode;
1772 inode->i_ino = objectid;
1773 inode->i_blocks = 0;
1774 inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
Chris Mason5f39d392007-10-15 16:14:19 -04001775 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1776 struct btrfs_inode_item);
1777 fill_inode_item(path->nodes[0], inode_item, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001778
1779 ref = btrfs_item_ptr(path->nodes[0], path->slots[0] + 1,
1780 struct btrfs_inode_ref);
1781 btrfs_set_inode_ref_name_len(path->nodes[0], ref, name_len);
1782 ptr = (unsigned long)(ref + 1);
1783 write_extent_buffer(path->nodes[0], name, ptr, name_len);
1784
Chris Mason5f39d392007-10-15 16:14:19 -04001785 btrfs_mark_buffer_dirty(path->nodes[0]);
1786 btrfs_free_path(path);
1787
Chris Mason39279cc2007-06-12 06:35:45 -04001788 location = &BTRFS_I(inode)->location;
1789 location->objectid = objectid;
Chris Mason39279cc2007-06-12 06:35:45 -04001790 location->offset = 0;
1791 btrfs_set_key_type(location, BTRFS_INODE_ITEM_KEY);
1792
Chris Mason39279cc2007-06-12 06:35:45 -04001793 insert_inode_hash(inode);
1794 return inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001795fail:
1796 btrfs_free_path(path);
1797 return ERR_PTR(ret);
Chris Mason39279cc2007-06-12 06:35:45 -04001798}
1799
1800static inline u8 btrfs_inode_type(struct inode *inode)
1801{
1802 return btrfs_type_by_mode[(inode->i_mode & S_IFMT) >> S_SHIFT];
1803}
1804
1805static int btrfs_add_link(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001806 struct dentry *dentry, struct inode *inode,
1807 int add_backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001808{
1809 int ret;
1810 struct btrfs_key key;
1811 struct btrfs_root *root = BTRFS_I(dentry->d_parent->d_inode)->root;
Chris Mason79c44582007-06-25 10:09:33 -04001812 struct inode *parent_inode;
Chris Mason5f39d392007-10-15 16:14:19 -04001813
Chris Mason39279cc2007-06-12 06:35:45 -04001814 key.objectid = inode->i_ino;
Chris Mason39279cc2007-06-12 06:35:45 -04001815 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
1816 key.offset = 0;
1817
1818 ret = btrfs_insert_dir_item(trans, root,
1819 dentry->d_name.name, dentry->d_name.len,
1820 dentry->d_parent->d_inode->i_ino,
1821 &key, btrfs_inode_type(inode));
1822 if (ret == 0) {
Chris Mason9c583092008-01-29 15:15:18 -05001823 if (add_backref) {
1824 ret = btrfs_insert_inode_ref(trans, root,
1825 dentry->d_name.name,
1826 dentry->d_name.len,
1827 inode->i_ino,
1828 dentry->d_parent->d_inode->i_ino);
1829 }
Chris Mason79c44582007-06-25 10:09:33 -04001830 parent_inode = dentry->d_parent->d_inode;
1831 parent_inode->i_size += dentry->d_name.len * 2;
1832 parent_inode->i_mtime = parent_inode->i_ctime = CURRENT_TIME;
Chris Mason39279cc2007-06-12 06:35:45 -04001833 ret = btrfs_update_inode(trans, root,
1834 dentry->d_parent->d_inode);
1835 }
1836 return ret;
1837}
1838
1839static int btrfs_add_nondir(struct btrfs_trans_handle *trans,
Chris Mason9c583092008-01-29 15:15:18 -05001840 struct dentry *dentry, struct inode *inode,
1841 int backref)
Chris Mason39279cc2007-06-12 06:35:45 -04001842{
Chris Mason9c583092008-01-29 15:15:18 -05001843 int err = btrfs_add_link(trans, dentry, inode, backref);
Chris Mason39279cc2007-06-12 06:35:45 -04001844 if (!err) {
1845 d_instantiate(dentry, inode);
1846 return 0;
1847 }
1848 if (err > 0)
1849 err = -EEXIST;
1850 return err;
1851}
1852
Josef Bacik618e21d2007-07-11 10:18:17 -04001853static int btrfs_mknod(struct inode *dir, struct dentry *dentry,
1854 int mode, dev_t rdev)
1855{
1856 struct btrfs_trans_handle *trans;
1857 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001858 struct inode *inode = NULL;
Josef Bacik618e21d2007-07-11 10:18:17 -04001859 int err;
1860 int drop_inode = 0;
1861 u64 objectid;
Chris Mason1832a6d2007-12-21 16:27:21 -05001862 unsigned long nr = 0;
Josef Bacik618e21d2007-07-11 10:18:17 -04001863
1864 if (!new_valid_dev(rdev))
1865 return -EINVAL;
1866
1867 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001868 err = btrfs_check_free_space(root, 1, 0);
1869 if (err)
1870 goto fail;
1871
Josef Bacik618e21d2007-07-11 10:18:17 -04001872 trans = btrfs_start_transaction(root, 1);
1873 btrfs_set_trans_block_group(trans, dir);
1874
1875 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1876 if (err) {
1877 err = -ENOSPC;
1878 goto out_unlock;
1879 }
1880
Chris Mason9c583092008-01-29 15:15:18 -05001881 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1882 dentry->d_name.len,
1883 dentry->d_parent->d_inode->i_ino, objectid,
Josef Bacik618e21d2007-07-11 10:18:17 -04001884 BTRFS_I(dir)->block_group, mode);
1885 err = PTR_ERR(inode);
1886 if (IS_ERR(inode))
1887 goto out_unlock;
1888
1889 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001890 err = btrfs_add_nondir(trans, dentry, inode, 0);
Josef Bacik618e21d2007-07-11 10:18:17 -04001891 if (err)
1892 drop_inode = 1;
1893 else {
1894 inode->i_op = &btrfs_special_inode_operations;
1895 init_special_inode(inode, inode->i_mode, rdev);
Yan1b4ab1b2007-08-29 09:11:44 -04001896 btrfs_update_inode(trans, root, inode);
Josef Bacik618e21d2007-07-11 10:18:17 -04001897 }
1898 dir->i_sb->s_dirt = 1;
1899 btrfs_update_inode_block_group(trans, inode);
1900 btrfs_update_inode_block_group(trans, dir);
1901out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001902 nr = trans->blocks_used;
Josef Bacik618e21d2007-07-11 10:18:17 -04001903 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001904fail:
Josef Bacik618e21d2007-07-11 10:18:17 -04001905 mutex_unlock(&root->fs_info->fs_mutex);
1906
1907 if (drop_inode) {
1908 inode_dec_link_count(inode);
1909 iput(inode);
1910 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001911 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001912 btrfs_throttle(root);
Josef Bacik618e21d2007-07-11 10:18:17 -04001913 return err;
1914}
1915
Chris Mason39279cc2007-06-12 06:35:45 -04001916static int btrfs_create(struct inode *dir, struct dentry *dentry,
1917 int mode, struct nameidata *nd)
1918{
1919 struct btrfs_trans_handle *trans;
1920 struct btrfs_root *root = BTRFS_I(dir)->root;
Chris Mason1832a6d2007-12-21 16:27:21 -05001921 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04001922 int err;
1923 int drop_inode = 0;
Chris Mason1832a6d2007-12-21 16:27:21 -05001924 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001925 u64 objectid;
1926
1927 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05001928 err = btrfs_check_free_space(root, 1, 0);
1929 if (err)
1930 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04001931 trans = btrfs_start_transaction(root, 1);
1932 btrfs_set_trans_block_group(trans, dir);
1933
1934 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
1935 if (err) {
1936 err = -ENOSPC;
1937 goto out_unlock;
1938 }
1939
Chris Mason9c583092008-01-29 15:15:18 -05001940 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
1941 dentry->d_name.len,
1942 dentry->d_parent->d_inode->i_ino,
1943 objectid, BTRFS_I(dir)->block_group, mode);
Chris Mason39279cc2007-06-12 06:35:45 -04001944 err = PTR_ERR(inode);
1945 if (IS_ERR(inode))
1946 goto out_unlock;
1947
1948 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05001949 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04001950 if (err)
1951 drop_inode = 1;
1952 else {
1953 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04001954 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04001955 inode->i_fop = &btrfs_file_operations;
1956 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05001957 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
1958 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04001959 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04001960 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
1961 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05001962 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason81d7ed22008-04-25 08:51:48 -04001963 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Masond1310b22008-01-24 16:13:08 -05001964 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04001965 }
1966 dir->i_sb->s_dirt = 1;
1967 btrfs_update_inode_block_group(trans, inode);
1968 btrfs_update_inode_block_group(trans, dir);
1969out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001970 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04001971 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05001972fail:
Chris Mason39279cc2007-06-12 06:35:45 -04001973 mutex_unlock(&root->fs_info->fs_mutex);
1974
1975 if (drop_inode) {
1976 inode_dec_link_count(inode);
1977 iput(inode);
1978 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04001979 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05001980 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04001981 return err;
1982}
1983
1984static int btrfs_link(struct dentry *old_dentry, struct inode *dir,
1985 struct dentry *dentry)
1986{
1987 struct btrfs_trans_handle *trans;
1988 struct btrfs_root *root = BTRFS_I(dir)->root;
1989 struct inode *inode = old_dentry->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05001990 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04001991 int err;
1992 int drop_inode = 0;
1993
1994 if (inode->i_nlink == 0)
1995 return -ENOENT;
1996
Chris Mason6da6aba2007-12-18 16:15:09 -05001997#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
1998 inode->i_nlink++;
1999#else
Chris Mason39279cc2007-06-12 06:35:45 -04002000 inc_nlink(inode);
Chris Mason6da6aba2007-12-18 16:15:09 -05002001#endif
Chris Mason39279cc2007-06-12 06:35:45 -04002002 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002003 err = btrfs_check_free_space(root, 1, 0);
2004 if (err)
2005 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002006 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002007
Chris Mason39279cc2007-06-12 06:35:45 -04002008 btrfs_set_trans_block_group(trans, dir);
2009 atomic_inc(&inode->i_count);
Chris Mason9c583092008-01-29 15:15:18 -05002010 err = btrfs_add_nondir(trans, dentry, inode, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002011
Chris Mason39279cc2007-06-12 06:35:45 -04002012 if (err)
2013 drop_inode = 1;
Chris Mason5f39d392007-10-15 16:14:19 -04002014
Chris Mason39279cc2007-06-12 06:35:45 -04002015 dir->i_sb->s_dirt = 1;
2016 btrfs_update_inode_block_group(trans, dir);
Chris Mason54aa1f42007-06-22 14:16:25 -04002017 err = btrfs_update_inode(trans, root, inode);
Chris Mason5f39d392007-10-15 16:14:19 -04002018
Chris Mason54aa1f42007-06-22 14:16:25 -04002019 if (err)
2020 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002021
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002022 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002023 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05002024fail:
Chris Mason39279cc2007-06-12 06:35:45 -04002025 mutex_unlock(&root->fs_info->fs_mutex);
2026
2027 if (drop_inode) {
2028 inode_dec_link_count(inode);
2029 iput(inode);
2030 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002031 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002032 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002033 return err;
2034}
2035
Chris Mason39279cc2007-06-12 06:35:45 -04002036static int btrfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2037{
2038 struct inode *inode;
2039 struct btrfs_trans_handle *trans;
2040 struct btrfs_root *root = BTRFS_I(dir)->root;
2041 int err = 0;
2042 int drop_on_err = 0;
2043 u64 objectid;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002044 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002045
2046 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002047 err = btrfs_check_free_space(root, 1, 0);
2048 if (err)
2049 goto out_unlock;
2050
Chris Mason39279cc2007-06-12 06:35:45 -04002051 trans = btrfs_start_transaction(root, 1);
2052 btrfs_set_trans_block_group(trans, dir);
Chris Mason5f39d392007-10-15 16:14:19 -04002053
Chris Mason39279cc2007-06-12 06:35:45 -04002054 if (IS_ERR(trans)) {
2055 err = PTR_ERR(trans);
2056 goto out_unlock;
2057 }
2058
2059 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
2060 if (err) {
2061 err = -ENOSPC;
2062 goto out_unlock;
2063 }
2064
Chris Mason9c583092008-01-29 15:15:18 -05002065 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
2066 dentry->d_name.len,
2067 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04002068 BTRFS_I(dir)->block_group, S_IFDIR | mode);
2069 if (IS_ERR(inode)) {
2070 err = PTR_ERR(inode);
2071 goto out_fail;
2072 }
Chris Mason5f39d392007-10-15 16:14:19 -04002073
Chris Mason39279cc2007-06-12 06:35:45 -04002074 drop_on_err = 1;
2075 inode->i_op = &btrfs_dir_inode_operations;
2076 inode->i_fop = &btrfs_dir_file_operations;
2077 btrfs_set_trans_block_group(trans, inode);
2078
Chris Mason39544012007-12-12 14:38:19 -05002079 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002080 err = btrfs_update_inode(trans, root, inode);
2081 if (err)
2082 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002083
Chris Mason9c583092008-01-29 15:15:18 -05002084 err = btrfs_add_link(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002085 if (err)
2086 goto out_fail;
Chris Mason5f39d392007-10-15 16:14:19 -04002087
Chris Mason39279cc2007-06-12 06:35:45 -04002088 d_instantiate(dentry, inode);
2089 drop_on_err = 0;
2090 dir->i_sb->s_dirt = 1;
2091 btrfs_update_inode_block_group(trans, inode);
2092 btrfs_update_inode_block_group(trans, dir);
2093
2094out_fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002095 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04002096 btrfs_end_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002097
Chris Mason39279cc2007-06-12 06:35:45 -04002098out_unlock:
2099 mutex_unlock(&root->fs_info->fs_mutex);
2100 if (drop_on_err)
2101 iput(inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002102 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002103 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002104 return err;
2105}
2106
Chris Mason3b951512008-04-17 11:29:12 -04002107static int merge_extent_mapping(struct extent_map_tree *em_tree,
2108 struct extent_map *existing,
2109 struct extent_map *em)
2110{
2111 u64 start_diff;
2112 u64 new_end;
2113 int ret = 0;
2114 int real_blocks = existing->block_start < EXTENT_MAP_LAST_BYTE;
2115
2116 if (real_blocks && em->block_start >= EXTENT_MAP_LAST_BYTE)
2117 goto invalid;
2118
2119 if (!real_blocks && em->block_start != existing->block_start)
2120 goto invalid;
2121
2122 new_end = max(existing->start + existing->len, em->start + em->len);
2123
2124 if (existing->start >= em->start) {
2125 if (em->start + em->len < existing->start)
2126 goto invalid;
2127
2128 start_diff = existing->start - em->start;
2129 if (real_blocks && em->block_start + start_diff !=
2130 existing->block_start)
2131 goto invalid;
2132
2133 em->len = new_end - em->start;
2134
2135 remove_extent_mapping(em_tree, existing);
2136 /* free for the tree */
2137 free_extent_map(existing);
2138 ret = add_extent_mapping(em_tree, em);
2139
2140 } else if (em->start > existing->start) {
2141
2142 if (existing->start + existing->len < em->start)
2143 goto invalid;
2144
2145 start_diff = em->start - existing->start;
2146 if (real_blocks && existing->block_start + start_diff !=
2147 em->block_start)
2148 goto invalid;
2149
2150 remove_extent_mapping(em_tree, existing);
2151 em->block_start = existing->block_start;
2152 em->start = existing->start;
2153 em->len = new_end - existing->start;
2154 free_extent_map(existing);
2155
2156 ret = add_extent_mapping(em_tree, em);
2157 } else {
2158 goto invalid;
2159 }
2160 return ret;
2161
2162invalid:
2163 printk("invalid extent map merge [%Lu %Lu %Lu] [%Lu %Lu %Lu]\n",
2164 existing->start, existing->len, existing->block_start,
2165 em->start, em->len, em->block_start);
2166 return -EIO;
2167}
2168
Chris Masona52d9a82007-08-27 16:49:44 -04002169struct extent_map *btrfs_get_extent(struct inode *inode, struct page *page,
Chris Mason70dec802008-01-29 09:59:12 -05002170 size_t pg_offset, u64 start, u64 len,
Chris Masona52d9a82007-08-27 16:49:44 -04002171 int create)
2172{
2173 int ret;
2174 int err = 0;
Chris Masondb945352007-10-15 16:15:53 -04002175 u64 bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002176 u64 extent_start = 0;
2177 u64 extent_end = 0;
2178 u64 objectid = inode->i_ino;
2179 u32 found_type;
Chris Masona52d9a82007-08-27 16:49:44 -04002180 struct btrfs_path *path;
2181 struct btrfs_root *root = BTRFS_I(inode)->root;
2182 struct btrfs_file_extent_item *item;
Chris Mason5f39d392007-10-15 16:14:19 -04002183 struct extent_buffer *leaf;
2184 struct btrfs_key found_key;
Chris Masona52d9a82007-08-27 16:49:44 -04002185 struct extent_map *em = NULL;
2186 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masond1310b22008-01-24 16:13:08 -05002187 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002188 struct btrfs_trans_handle *trans = NULL;
2189
2190 path = btrfs_alloc_path();
2191 BUG_ON(!path);
2192 mutex_lock(&root->fs_info->fs_mutex);
2193
2194again:
Chris Masond1310b22008-01-24 16:13:08 -05002195 spin_lock(&em_tree->lock);
2196 em = lookup_extent_mapping(em_tree, start, len);
2197 spin_unlock(&em_tree->lock);
2198
Chris Masona52d9a82007-08-27 16:49:44 -04002199 if (em) {
Chris Masone1c4b742008-04-22 13:26:46 -04002200 if (em->start > start || em->start + em->len <= start)
2201 free_extent_map(em);
2202 else if (em->block_start == EXTENT_MAP_INLINE && page)
Chris Mason70dec802008-01-29 09:59:12 -05002203 free_extent_map(em);
2204 else
2205 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002206 }
Chris Masond1310b22008-01-24 16:13:08 -05002207 em = alloc_extent_map(GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002208 if (!em) {
Chris Masond1310b22008-01-24 16:13:08 -05002209 err = -ENOMEM;
2210 goto out;
Chris Masona52d9a82007-08-27 16:49:44 -04002211 }
Chris Masond1310b22008-01-24 16:13:08 -05002212
2213 em->start = EXTENT_MAP_HOLE;
2214 em->len = (u64)-1;
Chris Masona52d9a82007-08-27 16:49:44 -04002215 em->bdev = inode->i_sb->s_bdev;
Chris Mason179e29e2007-11-01 11:28:41 -04002216 ret = btrfs_lookup_file_extent(trans, root, path,
2217 objectid, start, trans != NULL);
Chris Masona52d9a82007-08-27 16:49:44 -04002218 if (ret < 0) {
2219 err = ret;
2220 goto out;
2221 }
2222
2223 if (ret != 0) {
2224 if (path->slots[0] == 0)
2225 goto not_found;
2226 path->slots[0]--;
2227 }
2228
Chris Mason5f39d392007-10-15 16:14:19 -04002229 leaf = path->nodes[0];
2230 item = btrfs_item_ptr(leaf, path->slots[0],
Chris Masona52d9a82007-08-27 16:49:44 -04002231 struct btrfs_file_extent_item);
Chris Masona52d9a82007-08-27 16:49:44 -04002232 /* are we inside the extent that was found? */
Chris Mason5f39d392007-10-15 16:14:19 -04002233 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
2234 found_type = btrfs_key_type(&found_key);
2235 if (found_key.objectid != objectid ||
Chris Masona52d9a82007-08-27 16:49:44 -04002236 found_type != BTRFS_EXTENT_DATA_KEY) {
2237 goto not_found;
2238 }
2239
Chris Mason5f39d392007-10-15 16:14:19 -04002240 found_type = btrfs_file_extent_type(leaf, item);
2241 extent_start = found_key.offset;
Chris Masona52d9a82007-08-27 16:49:44 -04002242 if (found_type == BTRFS_FILE_EXTENT_REG) {
2243 extent_end = extent_start +
Chris Masondb945352007-10-15 16:15:53 -04002244 btrfs_file_extent_num_bytes(leaf, item);
Chris Masona52d9a82007-08-27 16:49:44 -04002245 err = 0;
Chris Masonb888db2b2007-08-27 16:49:44 -04002246 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002247 em->start = start;
2248 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002249 if (start + len <= extent_start)
Chris Masonb888db2b2007-08-27 16:49:44 -04002250 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002251 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002252 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002253 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002254 }
2255 goto not_found_em;
2256 }
Chris Masondb945352007-10-15 16:15:53 -04002257 bytenr = btrfs_file_extent_disk_bytenr(leaf, item);
2258 if (bytenr == 0) {
Chris Masona52d9a82007-08-27 16:49:44 -04002259 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002260 em->len = extent_end - extent_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002261 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002262 goto insert;
2263 }
Chris Masondb945352007-10-15 16:15:53 -04002264 bytenr += btrfs_file_extent_offset(leaf, item);
2265 em->block_start = bytenr;
Chris Masona52d9a82007-08-27 16:49:44 -04002266 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002267 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002268 goto insert;
2269 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason70dec802008-01-29 09:59:12 -05002270 u64 page_start;
Chris Mason5f39d392007-10-15 16:14:19 -04002271 unsigned long ptr;
Chris Masona52d9a82007-08-27 16:49:44 -04002272 char *map;
Chris Mason3326d1b2007-10-15 16:18:25 -04002273 size_t size;
2274 size_t extent_offset;
2275 size_t copy_size;
Chris Masona52d9a82007-08-27 16:49:44 -04002276
Chris Mason5f39d392007-10-15 16:14:19 -04002277 size = btrfs_file_extent_inline_len(leaf, btrfs_item_nr(leaf,
2278 path->slots[0]));
Chris Masond1310b22008-01-24 16:13:08 -05002279 extent_end = (extent_start + size + root->sectorsize - 1) &
2280 ~((u64)root->sectorsize - 1);
Chris Masonb888db2b2007-08-27 16:49:44 -04002281 if (start < extent_start || start >= extent_end) {
Chris Masona52d9a82007-08-27 16:49:44 -04002282 em->start = start;
2283 if (start < extent_start) {
Chris Masond1310b22008-01-24 16:13:08 -05002284 if (start + len <= extent_start)
Chris Masonb888db2b2007-08-27 16:49:44 -04002285 goto not_found;
Chris Masond1310b22008-01-24 16:13:08 -05002286 em->len = extent_end - extent_start;
Chris Masona52d9a82007-08-27 16:49:44 -04002287 } else {
Chris Masond1310b22008-01-24 16:13:08 -05002288 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002289 }
2290 goto not_found_em;
2291 }
2292 em->block_start = EXTENT_MAP_INLINE;
Yan689f9342007-10-29 11:41:07 -04002293
2294 if (!page) {
2295 em->start = extent_start;
Chris Masond1310b22008-01-24 16:13:08 -05002296 em->len = size;
Yan689f9342007-10-29 11:41:07 -04002297 goto out;
2298 }
2299
Chris Mason70dec802008-01-29 09:59:12 -05002300 page_start = page_offset(page) + pg_offset;
2301 extent_offset = page_start - extent_start;
2302 copy_size = min_t(u64, PAGE_CACHE_SIZE - pg_offset,
Yan689f9342007-10-29 11:41:07 -04002303 size - extent_offset);
Chris Mason3326d1b2007-10-15 16:18:25 -04002304 em->start = extent_start + extent_offset;
Chris Mason70dec802008-01-29 09:59:12 -05002305 em->len = (copy_size + root->sectorsize - 1) &
2306 ~((u64)root->sectorsize - 1);
Yan689f9342007-10-29 11:41:07 -04002307 map = kmap(page);
2308 ptr = btrfs_file_extent_inline_start(item) + extent_offset;
Chris Mason179e29e2007-11-01 11:28:41 -04002309 if (create == 0 && !PageUptodate(page)) {
Chris Mason70dec802008-01-29 09:59:12 -05002310 read_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002311 copy_size);
2312 flush_dcache_page(page);
2313 } else if (create && PageUptodate(page)) {
2314 if (!trans) {
2315 kunmap(page);
2316 free_extent_map(em);
2317 em = NULL;
2318 btrfs_release_path(root, path);
2319 trans = btrfs_start_transaction(root, 1);
2320 goto again;
2321 }
Chris Mason70dec802008-01-29 09:59:12 -05002322 write_extent_buffer(leaf, map + pg_offset, ptr,
Chris Mason179e29e2007-11-01 11:28:41 -04002323 copy_size);
2324 btrfs_mark_buffer_dirty(leaf);
Chris Masona52d9a82007-08-27 16:49:44 -04002325 }
Chris Masona52d9a82007-08-27 16:49:44 -04002326 kunmap(page);
Chris Masond1310b22008-01-24 16:13:08 -05002327 set_extent_uptodate(io_tree, em->start,
2328 extent_map_end(em) - 1, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -04002329 goto insert;
2330 } else {
2331 printk("unkknown found_type %d\n", found_type);
2332 WARN_ON(1);
2333 }
2334not_found:
2335 em->start = start;
Chris Masond1310b22008-01-24 16:13:08 -05002336 em->len = len;
Chris Masona52d9a82007-08-27 16:49:44 -04002337not_found_em:
Chris Mason5f39d392007-10-15 16:14:19 -04002338 em->block_start = EXTENT_MAP_HOLE;
Chris Masona52d9a82007-08-27 16:49:44 -04002339insert:
2340 btrfs_release_path(root, path);
Chris Masond1310b22008-01-24 16:13:08 -05002341 if (em->start > start || extent_map_end(em) <= start) {
2342 printk("bad extent! em: [%Lu %Lu] passed [%Lu %Lu]\n", em->start, em->len, start, len);
Chris Masona52d9a82007-08-27 16:49:44 -04002343 err = -EIO;
2344 goto out;
2345 }
Chris Masond1310b22008-01-24 16:13:08 -05002346
2347 err = 0;
2348 spin_lock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002349 ret = add_extent_mapping(em_tree, em);
Chris Mason3b951512008-04-17 11:29:12 -04002350 /* it is possible that someone inserted the extent into the tree
2351 * while we had the lock dropped. It is also possible that
2352 * an overlapping map exists in the tree
2353 */
Chris Masona52d9a82007-08-27 16:49:44 -04002354 if (ret == -EEXIST) {
Chris Mason3b951512008-04-17 11:29:12 -04002355 struct extent_map *existing;
2356 existing = lookup_extent_mapping(em_tree, start, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002357 if (existing && (existing->start > start ||
2358 existing->start + existing->len <= start)) {
2359 free_extent_map(existing);
2360 existing = NULL;
2361 }
Chris Mason3b951512008-04-17 11:29:12 -04002362 if (!existing) {
2363 existing = lookup_extent_mapping(em_tree, em->start,
2364 em->len);
2365 if (existing) {
2366 err = merge_extent_mapping(em_tree, existing,
2367 em);
2368 free_extent_map(existing);
2369 if (err) {
2370 free_extent_map(em);
2371 em = NULL;
2372 }
2373 } else {
2374 err = -EIO;
2375 printk("failing to insert %Lu %Lu\n",
2376 start, len);
2377 free_extent_map(em);
2378 em = NULL;
2379 }
2380 } else {
2381 free_extent_map(em);
2382 em = existing;
Chris Masona52d9a82007-08-27 16:49:44 -04002383 }
Chris Masona52d9a82007-08-27 16:49:44 -04002384 }
Chris Masond1310b22008-01-24 16:13:08 -05002385 spin_unlock(&em_tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -04002386out:
2387 btrfs_free_path(path);
2388 if (trans) {
2389 ret = btrfs_end_transaction(trans, root);
2390 if (!err)
2391 err = ret;
2392 }
2393 mutex_unlock(&root->fs_info->fs_mutex);
2394 if (err) {
2395 free_extent_map(em);
2396 WARN_ON(1);
2397 return ERR_PTR(err);
2398 }
2399 return em;
2400}
2401
Chris Masone1c4b742008-04-22 13:26:46 -04002402#if 0 /* waiting for O_DIRECT reads */
Chris Mason16432982008-04-10 10:23:21 -04002403static int btrfs_get_block(struct inode *inode, sector_t iblock,
2404 struct buffer_head *bh_result, int create)
2405{
2406 struct extent_map *em;
2407 u64 start = (u64)iblock << inode->i_blkbits;
2408 struct btrfs_multi_bio *multi = NULL;
2409 struct btrfs_root *root = BTRFS_I(inode)->root;
2410 u64 len;
2411 u64 logical;
2412 u64 map_length;
2413 int ret = 0;
2414
2415 em = btrfs_get_extent(inode, NULL, 0, start, bh_result->b_size, 0);
2416
2417 if (!em || IS_ERR(em))
2418 goto out;
2419
Chris Masone1c4b742008-04-22 13:26:46 -04002420 if (em->start > start || em->start + em->len <= start) {
Chris Mason16432982008-04-10 10:23:21 -04002421 goto out;
Chris Masone1c4b742008-04-22 13:26:46 -04002422 }
Chris Mason16432982008-04-10 10:23:21 -04002423
2424 if (em->block_start == EXTENT_MAP_INLINE) {
2425 ret = -EINVAL;
2426 goto out;
2427 }
2428
Chris Mason16432982008-04-10 10:23:21 -04002429 len = em->start + em->len - start;
2430 len = min_t(u64, len, INT_LIMIT(typeof(bh_result->b_size)));
2431
Chris Masone1c4b742008-04-22 13:26:46 -04002432 if (em->block_start == EXTENT_MAP_HOLE ||
2433 em->block_start == EXTENT_MAP_DELALLOC) {
2434 bh_result->b_size = len;
2435 goto out;
2436 }
2437
Chris Mason16432982008-04-10 10:23:21 -04002438 logical = start - em->start;
2439 logical = em->block_start + logical;
2440
2441 map_length = len;
2442 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
2443 logical, &map_length, &multi, 0);
2444 BUG_ON(ret);
2445 bh_result->b_blocknr = multi->stripes[0].physical >> inode->i_blkbits;
2446 bh_result->b_size = min(map_length, len);
Chris Masone1c4b742008-04-22 13:26:46 -04002447
Chris Mason16432982008-04-10 10:23:21 -04002448 bh_result->b_bdev = multi->stripes[0].dev->bdev;
2449 set_buffer_mapped(bh_result);
2450 kfree(multi);
2451out:
2452 free_extent_map(em);
2453 return ret;
2454}
Chris Masone1c4b742008-04-22 13:26:46 -04002455#endif
Chris Mason16432982008-04-10 10:23:21 -04002456
2457static ssize_t btrfs_direct_IO(int rw, struct kiocb *iocb,
2458 const struct iovec *iov, loff_t offset,
2459 unsigned long nr_segs)
2460{
Chris Masone1c4b742008-04-22 13:26:46 -04002461 return -EINVAL;
2462#if 0
Chris Mason16432982008-04-10 10:23:21 -04002463 struct file *file = iocb->ki_filp;
2464 struct inode *inode = file->f_mapping->host;
2465
2466 if (rw == WRITE)
2467 return -EINVAL;
2468
2469 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
2470 offset, nr_segs, btrfs_get_block, NULL);
Chris Masone1c4b742008-04-22 13:26:46 -04002471#endif
Chris Mason16432982008-04-10 10:23:21 -04002472}
2473
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002474static sector_t btrfs_bmap(struct address_space *mapping, sector_t iblock)
Chris Mason39279cc2007-06-12 06:35:45 -04002475{
Christoph Hellwigd396c6f2007-09-10 20:02:30 -04002476 return extent_bmap(mapping, iblock, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002477}
2478
Chris Mason9ebefb182007-06-15 13:50:00 -04002479int btrfs_readpage(struct file *file, struct page *page)
2480{
Chris Masond1310b22008-01-24 16:13:08 -05002481 struct extent_io_tree *tree;
2482 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002483 return extent_read_full_page(tree, page, btrfs_get_extent);
Chris Mason39279cc2007-06-12 06:35:45 -04002484}
Chris Mason1832a6d2007-12-21 16:27:21 -05002485
Chris Mason39279cc2007-06-12 06:35:45 -04002486static int btrfs_writepage(struct page *page, struct writeback_control *wbc)
2487{
Chris Masond1310b22008-01-24 16:13:08 -05002488 struct extent_io_tree *tree;
Chris Masonb888db2b2007-08-27 16:49:44 -04002489
2490
2491 if (current->flags & PF_MEMALLOC) {
2492 redirty_page_for_writepage(wbc, page);
2493 unlock_page(page);
2494 return 0;
2495 }
Chris Masond1310b22008-01-24 16:13:08 -05002496 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002497 return extent_write_full_page(tree, page, btrfs_get_extent, wbc);
2498}
Chris Mason39279cc2007-06-12 06:35:45 -04002499
Chris Masonb293f02e2007-11-01 19:45:34 -04002500static int btrfs_writepages(struct address_space *mapping,
2501 struct writeback_control *wbc)
2502{
Chris Masond1310b22008-01-24 16:13:08 -05002503 struct extent_io_tree *tree;
2504 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Masonb293f02e2007-11-01 19:45:34 -04002505 return extent_writepages(tree, mapping, btrfs_get_extent, wbc);
2506}
2507
Chris Mason3ab2fb52007-11-08 10:59:22 -05002508static int
2509btrfs_readpages(struct file *file, struct address_space *mapping,
2510 struct list_head *pages, unsigned nr_pages)
2511{
Chris Masond1310b22008-01-24 16:13:08 -05002512 struct extent_io_tree *tree;
2513 tree = &BTRFS_I(mapping->host)->io_tree;
Chris Mason3ab2fb52007-11-08 10:59:22 -05002514 return extent_readpages(tree, mapping, pages, nr_pages,
2515 btrfs_get_extent);
2516}
2517
Chris Mason70dec802008-01-29 09:59:12 -05002518static int btrfs_releasepage(struct page *page, gfp_t gfp_flags)
Chris Masona52d9a82007-08-27 16:49:44 -04002519{
Chris Masond1310b22008-01-24 16:13:08 -05002520 struct extent_io_tree *tree;
2521 struct extent_map_tree *map;
Chris Masona52d9a82007-08-27 16:49:44 -04002522 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002523
Chris Masond1310b22008-01-24 16:13:08 -05002524 tree = &BTRFS_I(page->mapping->host)->io_tree;
2525 map = &BTRFS_I(page->mapping->host)->extent_tree;
Chris Mason70dec802008-01-29 09:59:12 -05002526 ret = try_release_extent_mapping(map, tree, page, gfp_flags);
Chris Masona52d9a82007-08-27 16:49:44 -04002527 if (ret == 1) {
Chris Mason4ef64ea2008-04-21 08:52:50 -04002528 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Masona52d9a82007-08-27 16:49:44 -04002529 ClearPagePrivate(page);
2530 set_page_private(page, 0);
2531 page_cache_release(page);
2532 }
2533 return ret;
2534}
Chris Mason39279cc2007-06-12 06:35:45 -04002535
Chris Masona52d9a82007-08-27 16:49:44 -04002536static void btrfs_invalidatepage(struct page *page, unsigned long offset)
2537{
Chris Masond1310b22008-01-24 16:13:08 -05002538 struct extent_io_tree *tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002539
Chris Masond1310b22008-01-24 16:13:08 -05002540 tree = &BTRFS_I(page->mapping->host)->io_tree;
Chris Masona52d9a82007-08-27 16:49:44 -04002541 extent_invalidatepage(tree, page, offset);
2542 btrfs_releasepage(page, GFP_NOFS);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002543 if (PagePrivate(page)) {
Chris Mason4ef64ea2008-04-21 08:52:50 -04002544 invalidate_extent_lru(tree, page_offset(page), PAGE_CACHE_SIZE);
Chris Mason9ad6b7b2008-04-18 16:11:30 -04002545 ClearPagePrivate(page);
2546 set_page_private(page, 0);
2547 page_cache_release(page);
2548 }
Chris Mason39279cc2007-06-12 06:35:45 -04002549}
2550
Chris Mason9ebefb182007-06-15 13:50:00 -04002551/*
2552 * btrfs_page_mkwrite() is not allowed to change the file size as it gets
2553 * called from a page fault handler when a page is first dirtied. Hence we must
2554 * be careful to check for EOF conditions here. We set the page up correctly
2555 * for a written page which means we get ENOSPC checking when writing into
2556 * holes and correct delalloc and unwritten extent mapping on filesystems that
2557 * support these features.
2558 *
2559 * We are not allowed to take the i_mutex here so we have to play games to
2560 * protect against truncate races as the page could now be beyond EOF. Because
2561 * vmtruncate() writes the inode size before removing pages, once we have the
2562 * page lock we can determine safely if the page is beyond EOF. If it is not
2563 * beyond EOF, then the page is guaranteed safe against truncation until we
2564 * unlock the page.
2565 */
2566int btrfs_page_mkwrite(struct vm_area_struct *vma, struct page *page)
2567{
Chris Mason6da6aba2007-12-18 16:15:09 -05002568 struct inode *inode = fdentry(vma->vm_file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002569 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason9ebefb182007-06-15 13:50:00 -04002570 unsigned long end;
2571 loff_t size;
Chris Mason1832a6d2007-12-21 16:27:21 -05002572 int ret;
Chris Masona52d9a82007-08-27 16:49:44 -04002573 u64 page_start;
Chris Mason9ebefb182007-06-15 13:50:00 -04002574
Chris Mason1832a6d2007-12-21 16:27:21 -05002575 mutex_lock(&root->fs_info->fs_mutex);
2576 ret = btrfs_check_free_space(root, PAGE_CACHE_SIZE, 0);
Chris Mason8f662a72008-01-02 10:01:11 -05002577 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002578 if (ret)
2579 goto out;
2580
2581 ret = -EINVAL;
2582
Chris Mason9ebefb182007-06-15 13:50:00 -04002583 lock_page(page);
2584 wait_on_page_writeback(page);
Chris Mason9ebefb182007-06-15 13:50:00 -04002585 size = i_size_read(inode);
Chris Mason35ebb932007-10-30 16:56:53 -04002586 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Masona52d9a82007-08-27 16:49:44 -04002587
Chris Mason9ebefb182007-06-15 13:50:00 -04002588 if ((page->mapping != inode->i_mapping) ||
Chris Masona52d9a82007-08-27 16:49:44 -04002589 (page_start > size)) {
Chris Mason9ebefb182007-06-15 13:50:00 -04002590 /* page got truncated out from underneath us */
2591 goto out_unlock;
2592 }
2593
2594 /* page is wholly or partially inside EOF */
Chris Masona52d9a82007-08-27 16:49:44 -04002595 if (page_start + PAGE_CACHE_SIZE > size)
Chris Mason9ebefb182007-06-15 13:50:00 -04002596 end = size & ~PAGE_CACHE_MASK;
2597 else
2598 end = PAGE_CACHE_SIZE;
2599
Chris Masonb888db2b2007-08-27 16:49:44 -04002600 ret = btrfs_cow_one_page(inode, page, end);
Chris Mason9ebefb182007-06-15 13:50:00 -04002601
2602out_unlock:
2603 unlock_page(page);
Chris Mason1832a6d2007-12-21 16:27:21 -05002604out:
Chris Mason9ebefb182007-06-15 13:50:00 -04002605 return ret;
2606}
2607
Chris Mason39279cc2007-06-12 06:35:45 -04002608static void btrfs_truncate(struct inode *inode)
2609{
2610 struct btrfs_root *root = BTRFS_I(inode)->root;
2611 int ret;
2612 struct btrfs_trans_handle *trans;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002613 unsigned long nr;
Chris Mason39279cc2007-06-12 06:35:45 -04002614
2615 if (!S_ISREG(inode->i_mode))
2616 return;
2617 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2618 return;
2619
2620 btrfs_truncate_page(inode->i_mapping, inode->i_size);
2621
2622 mutex_lock(&root->fs_info->fs_mutex);
2623 trans = btrfs_start_transaction(root, 1);
2624 btrfs_set_trans_block_group(trans, inode);
2625
2626 /* FIXME, add redo link to tree so we don't leak on crash */
Chris Mason85e21ba2008-01-29 15:11:36 -05002627 ret = btrfs_truncate_in_trans(trans, root, inode,
2628 BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -04002629 btrfs_update_inode(trans, root, inode);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002630 nr = trans->blocks_used;
Chris Mason5f39d392007-10-15 16:14:19 -04002631
Chris Mason39279cc2007-06-12 06:35:45 -04002632 ret = btrfs_end_transaction(trans, root);
2633 BUG_ON(ret);
2634 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002635 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002636 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04002637}
2638
Chris Mason4313b392008-01-03 09:08:48 -05002639static int noinline create_subvol(struct btrfs_root *root, char *name,
2640 int namelen)
Chris Mason39279cc2007-06-12 06:35:45 -04002641{
2642 struct btrfs_trans_handle *trans;
2643 struct btrfs_key key;
2644 struct btrfs_root_item root_item;
2645 struct btrfs_inode_item *inode_item;
Chris Mason5f39d392007-10-15 16:14:19 -04002646 struct extent_buffer *leaf;
Chris Masondc17ff82008-01-08 15:46:30 -05002647 struct btrfs_root *new_root = root;
Chris Mason39279cc2007-06-12 06:35:45 -04002648 struct inode *inode;
2649 struct inode *dir;
2650 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002651 int err;
Chris Mason39279cc2007-06-12 06:35:45 -04002652 u64 objectid;
2653 u64 new_dirid = BTRFS_FIRST_FREE_OBJECTID;
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002654 unsigned long nr = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002655
2656 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002657 ret = btrfs_check_free_space(root, 1, 0);
2658 if (ret)
2659 goto fail_commit;
2660
Chris Mason39279cc2007-06-12 06:35:45 -04002661 trans = btrfs_start_transaction(root, 1);
2662 BUG_ON(!trans);
2663
Chris Mason7bb86312007-12-11 09:25:06 -05002664 ret = btrfs_find_free_objectid(trans, root->fs_info->tree_root,
2665 0, &objectid);
2666 if (ret)
2667 goto fail;
2668
2669 leaf = __btrfs_alloc_free_block(trans, root, root->leafsize,
2670 objectid, trans->transid, 0, 0,
2671 0, 0);
Chris Mason5f39d392007-10-15 16:14:19 -04002672 if (IS_ERR(leaf))
2673 return PTR_ERR(leaf);
2674
2675 btrfs_set_header_nritems(leaf, 0);
2676 btrfs_set_header_level(leaf, 0);
Chris Masondb945352007-10-15 16:15:53 -04002677 btrfs_set_header_bytenr(leaf, leaf->start);
Chris Mason5f39d392007-10-15 16:14:19 -04002678 btrfs_set_header_generation(leaf, trans->transid);
Chris Mason7bb86312007-12-11 09:25:06 -05002679 btrfs_set_header_owner(leaf, objectid);
2680
Chris Mason5f39d392007-10-15 16:14:19 -04002681 write_extent_buffer(leaf, root->fs_info->fsid,
2682 (unsigned long)btrfs_header_fsid(leaf),
2683 BTRFS_FSID_SIZE);
2684 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04002685
2686 inode_item = &root_item.inode;
2687 memset(inode_item, 0, sizeof(*inode_item));
Chris Mason5f39d392007-10-15 16:14:19 -04002688 inode_item->generation = cpu_to_le64(1);
2689 inode_item->size = cpu_to_le64(3);
2690 inode_item->nlink = cpu_to_le32(1);
2691 inode_item->nblocks = cpu_to_le64(1);
2692 inode_item->mode = cpu_to_le32(S_IFDIR | 0755);
Chris Mason39279cc2007-06-12 06:35:45 -04002693
Chris Masondb945352007-10-15 16:15:53 -04002694 btrfs_set_root_bytenr(&root_item, leaf->start);
2695 btrfs_set_root_level(&root_item, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04002696 btrfs_set_root_refs(&root_item, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04002697 btrfs_set_root_used(&root_item, 0);
2698
Chris Mason5eda7b52007-06-22 14:16:25 -04002699 memset(&root_item.drop_progress, 0, sizeof(root_item.drop_progress));
2700 root_item.drop_level = 0;
Chris Mason5f39d392007-10-15 16:14:19 -04002701
2702 free_extent_buffer(leaf);
2703 leaf = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04002704
Chris Mason39279cc2007-06-12 06:35:45 -04002705 btrfs_set_root_dirid(&root_item, new_dirid);
2706
2707 key.objectid = objectid;
2708 key.offset = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04002709 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
2710 ret = btrfs_insert_root(trans, root->fs_info->tree_root, &key,
2711 &root_item);
Chris Mason54aa1f42007-06-22 14:16:25 -04002712 if (ret)
2713 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002714
2715 /*
2716 * insert the directory item
2717 */
2718 key.offset = (u64)-1;
2719 dir = root->fs_info->sb->s_root->d_inode;
2720 ret = btrfs_insert_dir_item(trans, root->fs_info->tree_root,
2721 name, namelen, dir->i_ino, &key,
2722 BTRFS_FT_DIR);
Chris Mason54aa1f42007-06-22 14:16:25 -04002723 if (ret)
2724 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002725
Chris Mason39544012007-12-12 14:38:19 -05002726 ret = btrfs_insert_inode_ref(trans, root->fs_info->tree_root,
2727 name, namelen, objectid,
2728 root->fs_info->sb->s_root->d_inode->i_ino);
2729 if (ret)
2730 goto fail;
2731
Chris Mason39279cc2007-06-12 06:35:45 -04002732 ret = btrfs_commit_transaction(trans, root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002733 if (ret)
2734 goto fail_commit;
Chris Mason39279cc2007-06-12 06:35:45 -04002735
Josef Bacik58176a92007-08-29 15:47:34 -04002736 new_root = btrfs_read_fs_root(root->fs_info, &key, name, namelen);
Chris Mason39279cc2007-06-12 06:35:45 -04002737 BUG_ON(!new_root);
2738
2739 trans = btrfs_start_transaction(new_root, 1);
2740 BUG_ON(!trans);
2741
Chris Mason9c583092008-01-29 15:15:18 -05002742 inode = btrfs_new_inode(trans, new_root, "..", 2, new_dirid,
2743 new_dirid,
Chris Mason39279cc2007-06-12 06:35:45 -04002744 BTRFS_I(dir)->block_group, S_IFDIR | 0700);
Chris Mason54aa1f42007-06-22 14:16:25 -04002745 if (IS_ERR(inode))
2746 goto fail;
Chris Mason39279cc2007-06-12 06:35:45 -04002747 inode->i_op = &btrfs_dir_inode_operations;
2748 inode->i_fop = &btrfs_dir_file_operations;
Chris Mason34088782007-06-12 11:36:58 -04002749 new_root->inode = inode;
Chris Mason39279cc2007-06-12 06:35:45 -04002750
Chris Mason39544012007-12-12 14:38:19 -05002751 ret = btrfs_insert_inode_ref(trans, new_root, "..", 2, new_dirid,
2752 new_dirid);
Chris Mason39279cc2007-06-12 06:35:45 -04002753 inode->i_nlink = 1;
Chris Mason39544012007-12-12 14:38:19 -05002754 inode->i_size = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002755 ret = btrfs_update_inode(trans, new_root, inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002756 if (ret)
2757 goto fail;
2758fail:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002759 nr = trans->blocks_used;
Chris Masondc17ff82008-01-08 15:46:30 -05002760 err = btrfs_commit_transaction(trans, new_root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002761 if (err && !ret)
2762 ret = err;
2763fail_commit:
Chris Mason39279cc2007-06-12 06:35:45 -04002764 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002765 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002766 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002767 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002768}
2769
2770static int create_snapshot(struct btrfs_root *root, char *name, int namelen)
2771{
Chris Mason3063d292008-01-08 15:46:30 -05002772 struct btrfs_pending_snapshot *pending_snapshot;
Chris Mason39279cc2007-06-12 06:35:45 -04002773 struct btrfs_trans_handle *trans;
Chris Mason39279cc2007-06-12 06:35:45 -04002774 int ret;
Chris Mason54aa1f42007-06-22 14:16:25 -04002775 int err;
Chris Mason1832a6d2007-12-21 16:27:21 -05002776 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04002777
2778 if (!root->ref_cows)
2779 return -EINVAL;
2780
2781 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05002782 ret = btrfs_check_free_space(root, 1, 0);
2783 if (ret)
2784 goto fail_unlock;
2785
Chris Mason3063d292008-01-08 15:46:30 -05002786 pending_snapshot = kmalloc(sizeof(*pending_snapshot), GFP_NOFS);
2787 if (!pending_snapshot) {
2788 ret = -ENOMEM;
2789 goto fail_unlock;
2790 }
Yanfb4bc1e2008-01-17 11:59:51 -05002791 pending_snapshot->name = kmalloc(namelen + 1, GFP_NOFS);
Chris Mason3063d292008-01-08 15:46:30 -05002792 if (!pending_snapshot->name) {
2793 ret = -ENOMEM;
2794 kfree(pending_snapshot);
2795 goto fail_unlock;
2796 }
Yanfb4bc1e2008-01-17 11:59:51 -05002797 memcpy(pending_snapshot->name, name, namelen);
2798 pending_snapshot->name[namelen] = '\0';
Chris Mason39279cc2007-06-12 06:35:45 -04002799 trans = btrfs_start_transaction(root, 1);
2800 BUG_ON(!trans);
Chris Mason3063d292008-01-08 15:46:30 -05002801 pending_snapshot->root = root;
2802 list_add(&pending_snapshot->list,
2803 &trans->transaction->pending_snapshots);
Chris Mason39279cc2007-06-12 06:35:45 -04002804 ret = btrfs_update_inode(trans, root, root->inode);
Chris Mason54aa1f42007-06-22 14:16:25 -04002805 err = btrfs_commit_transaction(trans, root);
Chris Mason5f39d392007-10-15 16:14:19 -04002806
Chris Mason1832a6d2007-12-21 16:27:21 -05002807fail_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04002808 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masond3c2fdcf2007-09-17 10:58:06 -04002809 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05002810 btrfs_throttle(root);
Chris Mason54aa1f42007-06-22 14:16:25 -04002811 return ret;
Chris Mason39279cc2007-06-12 06:35:45 -04002812}
2813
Chris Masonedbd8d42007-12-21 16:27:24 -05002814unsigned long btrfs_force_ra(struct address_space *mapping,
Chris Mason86479a02007-09-10 19:58:16 -04002815 struct file_ra_state *ra, struct file *file,
2816 pgoff_t offset, pgoff_t last_index)
2817{
Chris Mason8e7bf942008-04-28 09:02:36 -04002818 pgoff_t req_size = last_index - offset + 1;
Chris Mason86479a02007-09-10 19:58:16 -04002819
2820#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
Chris Mason86479a02007-09-10 19:58:16 -04002821 offset = page_cache_readahead(mapping, ra, file, offset, req_size);
2822 return offset;
2823#else
Chris Mason86479a02007-09-10 19:58:16 -04002824 page_cache_sync_readahead(mapping, ra, file, offset, req_size);
2825 return offset + req_size;
2826#endif
2827}
2828
2829int btrfs_defrag_file(struct file *file) {
Chris Mason6da6aba2007-12-18 16:15:09 -05002830 struct inode *inode = fdentry(file)->d_inode;
Chris Mason1832a6d2007-12-21 16:27:21 -05002831 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Masond1310b22008-01-24 16:13:08 -05002832 struct extent_io_tree *io_tree = &BTRFS_I(inode)->io_tree;
Chris Mason86479a02007-09-10 19:58:16 -04002833 struct page *page;
2834 unsigned long last_index;
Chris Mason8e7bf942008-04-28 09:02:36 -04002835 unsigned long ra_pages = root->fs_info->bdi.ra_pages;
2836 unsigned long total_read = 0;
Chris Mason86479a02007-09-10 19:58:16 -04002837 u64 page_start;
2838 u64 page_end;
2839 unsigned long i;
Chris Mason1832a6d2007-12-21 16:27:21 -05002840 int ret;
2841
2842 mutex_lock(&root->fs_info->fs_mutex);
2843 ret = btrfs_check_free_space(root, inode->i_size, 0);
2844 mutex_unlock(&root->fs_info->fs_mutex);
2845 if (ret)
2846 return -ENOSPC;
Chris Mason86479a02007-09-10 19:58:16 -04002847
2848 mutex_lock(&inode->i_mutex);
2849 last_index = inode->i_size >> PAGE_CACHE_SHIFT;
2850 for (i = 0; i <= last_index; i++) {
Chris Mason8e7bf942008-04-28 09:02:36 -04002851 if (total_read % ra_pages == 0) {
2852 btrfs_force_ra(inode->i_mapping, &file->f_ra, file, i,
2853 min(last_index, i + ra_pages - 1));
Chris Mason86479a02007-09-10 19:58:16 -04002854 }
Chris Mason8e7bf942008-04-28 09:02:36 -04002855 total_read++;
Chris Mason86479a02007-09-10 19:58:16 -04002856 page = grab_cache_page(inode->i_mapping, i);
2857 if (!page)
2858 goto out_unlock;
2859 if (!PageUptodate(page)) {
2860 btrfs_readpage(NULL, page);
2861 lock_page(page);
2862 if (!PageUptodate(page)) {
2863 unlock_page(page);
2864 page_cache_release(page);
2865 goto out_unlock;
2866 }
2867 }
Chris Masonec44a352008-04-28 15:29:52 -04002868
2869#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
2870 ClearPageDirty(page);
2871#else
2872 cancel_dirty_page(page, PAGE_CACHE_SIZE);
2873#endif
2874 wait_on_page_writeback(page);
2875 set_page_extent_mapped(page);
2876
Chris Mason35ebb932007-10-30 16:56:53 -04002877 page_start = (u64)page->index << PAGE_CACHE_SHIFT;
Chris Mason86479a02007-09-10 19:58:16 -04002878 page_end = page_start + PAGE_CACHE_SIZE - 1;
2879
Chris Masond1310b22008-01-24 16:13:08 -05002880 lock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Masond1310b22008-01-24 16:13:08 -05002881 set_extent_delalloc(io_tree, page_start,
Chris Mason86479a02007-09-10 19:58:16 -04002882 page_end, GFP_NOFS);
Chris Masonedbd8d42007-12-21 16:27:24 -05002883
Chris Masond1310b22008-01-24 16:13:08 -05002884 unlock_extent(io_tree, page_start, page_end, GFP_NOFS);
Chris Mason86479a02007-09-10 19:58:16 -04002885 set_page_dirty(page);
2886 unlock_page(page);
2887 page_cache_release(page);
2888 balance_dirty_pages_ratelimited_nr(inode->i_mapping, 1);
2889 }
2890
2891out_unlock:
2892 mutex_unlock(&inode->i_mutex);
2893 return 0;
2894}
2895
Chris Masonedbd8d42007-12-21 16:27:24 -05002896static int btrfs_ioctl_resize(struct btrfs_root *root, void __user *arg)
2897{
2898 u64 new_size;
2899 u64 old_size;
Chris Mason8f18cf12008-04-25 16:53:30 -04002900 u64 devid = 1;
Chris Masonedbd8d42007-12-21 16:27:24 -05002901 struct btrfs_ioctl_vol_args *vol_args;
2902 struct btrfs_trans_handle *trans;
Chris Mason8f18cf12008-04-25 16:53:30 -04002903 struct btrfs_device *device = NULL;
Chris Masonedbd8d42007-12-21 16:27:24 -05002904 char *sizestr;
Chris Mason8f18cf12008-04-25 16:53:30 -04002905 char *devstr = NULL;
Chris Masonedbd8d42007-12-21 16:27:24 -05002906 int ret = 0;
2907 int namelen;
2908 int mod = 0;
2909
2910 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
2911
2912 if (!vol_args)
2913 return -ENOMEM;
2914
2915 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
2916 ret = -EFAULT;
2917 goto out;
2918 }
2919 namelen = strlen(vol_args->name);
2920 if (namelen > BTRFS_VOL_NAME_MAX) {
2921 ret = -EINVAL;
2922 goto out;
2923 }
2924
Chris Mason8f18cf12008-04-25 16:53:30 -04002925 mutex_lock(&root->fs_info->fs_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05002926 sizestr = vol_args->name;
Chris Mason8f18cf12008-04-25 16:53:30 -04002927 devstr = strchr(sizestr, ':');
2928 if (devstr) {
2929 char *end;
2930 sizestr = devstr + 1;
2931 *devstr = '\0';
2932 devstr = vol_args->name;
2933 devid = simple_strtoull(devstr, &end, 10);
2934printk("resizing devid %Lu\n", devid);
2935 }
2936 device = btrfs_find_device(root, devid, NULL);
2937 if (!device) {
2938 printk("resizer unable to find device %Lu\n", devid);
2939 ret = -EINVAL;
2940 goto out_unlock;
2941 }
Chris Masonedbd8d42007-12-21 16:27:24 -05002942 if (!strcmp(sizestr, "max"))
Chris Mason8f18cf12008-04-25 16:53:30 -04002943 new_size = device->bdev->bd_inode->i_size;
Chris Masonedbd8d42007-12-21 16:27:24 -05002944 else {
2945 if (sizestr[0] == '-') {
2946 mod = -1;
2947 sizestr++;
2948 } else if (sizestr[0] == '+') {
2949 mod = 1;
2950 sizestr++;
2951 }
2952 new_size = btrfs_parse_size(sizestr);
2953 if (new_size == 0) {
2954 ret = -EINVAL;
Chris Mason8f18cf12008-04-25 16:53:30 -04002955 goto out_unlock;
Chris Masonedbd8d42007-12-21 16:27:24 -05002956 }
2957 }
2958
Chris Mason8f18cf12008-04-25 16:53:30 -04002959 old_size = device->total_bytes;
Chris Masonedbd8d42007-12-21 16:27:24 -05002960
2961 if (mod < 0) {
2962 if (new_size > old_size) {
2963 ret = -EINVAL;
2964 goto out_unlock;
2965 }
2966 new_size = old_size - new_size;
2967 } else if (mod > 0) {
2968 new_size = old_size + new_size;
2969 }
2970
2971 if (new_size < 256 * 1024 * 1024) {
2972 ret = -EINVAL;
2973 goto out_unlock;
2974 }
Chris Mason8f18cf12008-04-25 16:53:30 -04002975 if (new_size > device->bdev->bd_inode->i_size) {
Chris Masonedbd8d42007-12-21 16:27:24 -05002976 ret = -EFBIG;
2977 goto out_unlock;
2978 }
Chris Masonf9ef6602008-01-03 09:22:38 -05002979
2980 do_div(new_size, root->sectorsize);
2981 new_size *= root->sectorsize;
Chris Masonedbd8d42007-12-21 16:27:24 -05002982
Chris Mason8f18cf12008-04-25 16:53:30 -04002983printk("new size for %s is %llu\n", device->name, (unsigned long long)new_size);
2984
Chris Masonedbd8d42007-12-21 16:27:24 -05002985 if (new_size > old_size) {
2986 trans = btrfs_start_transaction(root, 1);
Chris Mason8f18cf12008-04-25 16:53:30 -04002987 ret = btrfs_grow_device(trans, device, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05002988 btrfs_commit_transaction(trans, root);
2989 } else {
Chris Mason8f18cf12008-04-25 16:53:30 -04002990 ret = btrfs_shrink_device(device, new_size);
Chris Masonedbd8d42007-12-21 16:27:24 -05002991 }
2992
2993out_unlock:
2994 mutex_unlock(&root->fs_info->fs_mutex);
2995out:
2996 kfree(vol_args);
2997 return ret;
2998}
2999
Chris Mason4313b392008-01-03 09:08:48 -05003000static int noinline btrfs_ioctl_snap_create(struct btrfs_root *root,
3001 void __user *arg)
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003002{
Chris Mason4aec2b52007-12-18 16:25:45 -05003003 struct btrfs_ioctl_vol_args *vol_args;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003004 struct btrfs_dir_item *di;
3005 struct btrfs_path *path;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003006 u64 root_dirid;
Chris Mason4aec2b52007-12-18 16:25:45 -05003007 int namelen;
3008 int ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003009
Chris Mason4aec2b52007-12-18 16:25:45 -05003010 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
Chris Mason5f39d392007-10-15 16:14:19 -04003011
Chris Mason4aec2b52007-12-18 16:25:45 -05003012 if (!vol_args)
3013 return -ENOMEM;
3014
3015 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
3016 ret = -EFAULT;
3017 goto out;
3018 }
3019
3020 namelen = strlen(vol_args->name);
3021 if (namelen > BTRFS_VOL_NAME_MAX) {
3022 ret = -EINVAL;
3023 goto out;
3024 }
3025 if (strchr(vol_args->name, '/')) {
3026 ret = -EINVAL;
3027 goto out;
3028 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003029
3030 path = btrfs_alloc_path();
Chris Mason4aec2b52007-12-18 16:25:45 -05003031 if (!path) {
3032 ret = -ENOMEM;
3033 goto out;
3034 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003035
3036 root_dirid = root->fs_info->sb->s_root->d_inode->i_ino,
3037 mutex_lock(&root->fs_info->fs_mutex);
3038 di = btrfs_lookup_dir_item(NULL, root->fs_info->tree_root,
3039 path, root_dirid,
Chris Mason4aec2b52007-12-18 16:25:45 -05003040 vol_args->name, namelen, 0);
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003041 mutex_unlock(&root->fs_info->fs_mutex);
3042 btrfs_free_path(path);
Chris Mason4aec2b52007-12-18 16:25:45 -05003043
3044 if (di && !IS_ERR(di)) {
3045 ret = -EEXIST;
3046 goto out;
3047 }
3048
3049 if (IS_ERR(di)) {
3050 ret = PTR_ERR(di);
3051 goto out;
3052 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003053
3054 if (root == root->fs_info->tree_root)
Chris Mason4aec2b52007-12-18 16:25:45 -05003055 ret = create_subvol(root, vol_args->name, namelen);
3056 else
3057 ret = create_snapshot(root, vol_args->name, namelen);
3058out:
3059 kfree(vol_args);
3060 return ret;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003061}
3062
3063static int btrfs_ioctl_defrag(struct file *file)
Chris Mason39279cc2007-06-12 06:35:45 -04003064{
Chris Mason6da6aba2007-12-18 16:15:09 -05003065 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -04003066 struct btrfs_root *root = BTRFS_I(inode)->root;
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003067
3068 switch (inode->i_mode & S_IFMT) {
3069 case S_IFDIR:
3070 mutex_lock(&root->fs_info->fs_mutex);
3071 btrfs_defrag_root(root, 0);
3072 btrfs_defrag_root(root->fs_info->extent_root, 0);
3073 mutex_unlock(&root->fs_info->fs_mutex);
3074 break;
3075 case S_IFREG:
3076 btrfs_defrag_file(file);
3077 break;
3078 }
3079
3080 return 0;
3081}
3082
Chris Mason788f20e2008-04-28 15:29:42 -04003083long btrfs_ioctl_add_dev(struct btrfs_root *root, void __user *arg)
3084{
3085 struct btrfs_ioctl_vol_args *vol_args;
3086 int ret;
3087
3088 vol_args = kmalloc(sizeof(*vol_args), GFP_NOFS);
3089
3090 if (!vol_args)
3091 return -ENOMEM;
3092
3093 if (copy_from_user(vol_args, arg, sizeof(*vol_args))) {
3094 ret = -EFAULT;
3095 goto out;
3096 }
3097 ret = btrfs_init_new_device(root, vol_args->name);
3098
3099out:
3100 kfree(vol_args);
3101 return ret;
3102}
3103
Sage Weilf2eb0a22008-05-02 14:43:14 -04003104void dup_item_to_inode(struct btrfs_trans_handle *trans,
3105 struct btrfs_root *root,
3106 struct btrfs_path *path,
3107 struct extent_buffer *leaf,
3108 int slot,
3109 struct btrfs_key *key,
3110 u64 destino)
3111{
3112 struct btrfs_path *cpath = btrfs_alloc_path();
3113 int len = btrfs_item_size_nr(leaf, slot);
3114 int dstoff;
3115 struct btrfs_key ckey = *key;
3116 int ret;
3117
3118 ckey.objectid = destino;
3119 ret = btrfs_insert_empty_item(trans, root, cpath, &ckey, len);
3120 dstoff = btrfs_item_ptr_offset(cpath->nodes[0], cpath->slots[0]);
3121 copy_extent_buffer(cpath->nodes[0], leaf, dstoff,
3122 btrfs_item_ptr_offset(leaf, slot),
3123 len);
3124 btrfs_release_path(root, cpath);
3125}
3126
3127long btrfs_ioctl_clone(struct file *file, unsigned long src_fd)
3128{
3129 struct inode *inode = fdentry(file)->d_inode;
3130 struct btrfs_root *root = BTRFS_I(inode)->root;
3131 struct file *src_file;
3132 struct inode *src;
3133 struct btrfs_trans_handle *trans;
3134 int ret;
3135 u64 pos;
3136 struct btrfs_path *path;
3137 struct btrfs_key key;
3138 struct extent_buffer *leaf;
3139 u32 nritems;
3140 int nextret;
3141 int slot;
3142
3143 src_file = fget(src_fd);
3144 if (!src_file)
3145 return -EBADF;
3146 src = src_file->f_dentry->d_inode;
3147
3148 ret = -EXDEV;
3149 if (src->i_sb != inode->i_sb)
3150 goto out_fput;
3151
3152 if (inode < src) {
3153 mutex_lock(&inode->i_mutex);
3154 mutex_lock(&src->i_mutex);
3155 } else {
3156 mutex_lock(&src->i_mutex);
3157 mutex_lock(&inode->i_mutex);
3158 }
3159
3160 ret = -ENOTEMPTY;
3161 if (inode->i_size)
3162 goto out_unlock;
3163
3164 /* do any pending delalloc/csum calc on src, one way or
3165 another, and lock file content */
3166 while (1) {
3167 filemap_write_and_wait(src->i_mapping);
3168 lock_extent(&BTRFS_I(src)->io_tree, 0, (u64)-1, GFP_NOFS);
3169 if (BTRFS_I(src)->delalloc_bytes == 0)
3170 break;
3171 unlock_extent(&BTRFS_I(src)->io_tree, 0, (u64)-1, GFP_NOFS);
3172 }
3173
3174 mutex_lock(&root->fs_info->fs_mutex);
3175 trans = btrfs_start_transaction(root, 0);
3176 path = btrfs_alloc_path();
3177 pos = 0;
3178 while (1) {
3179 ret = btrfs_lookup_file_extent(trans, root, path, src->i_ino,
3180 pos, 0);
3181 if (ret < 0)
3182 goto out;
3183 if (ret > 0) {
3184 if (path->slots[0] == 0) {
3185 ret = 0;
3186 goto out;
3187 }
3188 path->slots[0]--;
3189 }
3190next_slot:
3191 leaf = path->nodes[0];
3192 slot = path->slots[0];
3193 btrfs_item_key_to_cpu(leaf, &key, slot);
3194 nritems = btrfs_header_nritems(leaf);
3195
3196 if (btrfs_key_type(&key) > BTRFS_CSUM_ITEM_KEY ||
3197 key.objectid != src->i_ino)
3198 goto out;
3199 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
3200 struct btrfs_file_extent_item *extent;
3201 int found_type;
3202 pos = key.offset;
3203 extent = btrfs_item_ptr(leaf, slot,
3204 struct btrfs_file_extent_item);
3205 found_type = btrfs_file_extent_type(leaf, extent);
3206 if (found_type == BTRFS_FILE_EXTENT_REG) {
3207 u64 len = btrfs_file_extent_num_bytes(leaf,
3208 extent);
3209 u64 ds = btrfs_file_extent_disk_bytenr(leaf,
3210 extent);
3211 u64 dl = btrfs_file_extent_disk_num_bytes(leaf,
3212 extent);
3213 u64 off = btrfs_file_extent_offset(leaf,
3214 extent);
3215 btrfs_insert_file_extent(trans, root,
3216 inode->i_ino, pos,
3217 ds, dl, len, off);
3218 /* ds == 0 means there's a hole */
3219 if (ds != 0) {
3220 btrfs_inc_extent_ref(trans, root,
3221 ds, dl,
3222 root->root_key.objectid,
3223 trans->transid,
3224 inode->i_ino, pos);
3225 }
3226 pos = key.offset + len;
3227 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
3228 dup_item_to_inode(trans, root, path, leaf, slot,
3229 &key, inode->i_ino);
3230 pos = key.offset + btrfs_item_size_nr(leaf,
3231 slot);
3232 }
3233 } else if (btrfs_key_type(&key) == BTRFS_CSUM_ITEM_KEY)
3234 dup_item_to_inode(trans, root, path, leaf, slot, &key,
3235 inode->i_ino);
3236
3237 if (slot >= nritems - 1) {
3238 nextret = btrfs_next_leaf(root, path);
3239 if (nextret)
3240 goto out;
3241 } else {
3242 path->slots[0]++;
3243 }
3244 goto next_slot;
3245 }
3246
3247out:
3248 btrfs_free_path(path);
3249 ret = 0;
3250
3251 inode->i_blocks = src->i_blocks;
3252 i_size_write(inode, src->i_size);
3253 btrfs_update_inode(trans, root, inode);
3254
3255 unlock_extent(&BTRFS_I(src)->io_tree, 0, (u64)-1, GFP_NOFS);
3256
3257 btrfs_end_transaction(trans, root);
3258 mutex_unlock(&root->fs_info->fs_mutex);
3259
3260out_unlock:
3261 mutex_unlock(&src->i_mutex);
3262 mutex_unlock(&inode->i_mutex);
3263out_fput:
3264 fput(src_file);
3265 return ret;
3266}
3267
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003268long btrfs_ioctl(struct file *file, unsigned int
3269 cmd, unsigned long arg)
3270{
Chris Mason6da6aba2007-12-18 16:15:09 -05003271 struct btrfs_root *root = BTRFS_I(fdentry(file)->d_inode)->root;
Chris Mason39279cc2007-06-12 06:35:45 -04003272
3273 switch (cmd) {
3274 case BTRFS_IOC_SNAP_CREATE:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003275 return btrfs_ioctl_snap_create(root, (void __user *)arg);
Chris Mason6702ed42007-08-07 16:15:09 -04003276 case BTRFS_IOC_DEFRAG:
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003277 return btrfs_ioctl_defrag(file);
Chris Masonedbd8d42007-12-21 16:27:24 -05003278 case BTRFS_IOC_RESIZE:
3279 return btrfs_ioctl_resize(root, (void __user *)arg);
Chris Mason788f20e2008-04-28 15:29:42 -04003280 case BTRFS_IOC_ADD_DEV:
3281 return btrfs_ioctl_add_dev(root, (void __user *)arg);
Chris Masonec44a352008-04-28 15:29:52 -04003282 case BTRFS_IOC_BALANCE:
3283 return btrfs_balance(root->fs_info->dev_root);
Sage Weilf2eb0a22008-05-02 14:43:14 -04003284 case BTRFS_IOC_CLONE:
3285 return btrfs_ioctl_clone(file, arg);
Chris Mason39279cc2007-06-12 06:35:45 -04003286 }
Christoph Hellwigd03581f2007-09-14 10:22:57 -04003287
3288 return -ENOTTY;
Chris Mason39279cc2007-06-12 06:35:45 -04003289}
3290
Chris Mason39279cc2007-06-12 06:35:45 -04003291/*
3292 * Called inside transaction, so use GFP_NOFS
3293 */
3294struct inode *btrfs_alloc_inode(struct super_block *sb)
3295{
3296 struct btrfs_inode *ei;
3297
3298 ei = kmem_cache_alloc(btrfs_inode_cachep, GFP_NOFS);
3299 if (!ei)
3300 return NULL;
Josef Bacik15ee9bc2007-08-10 16:22:09 -04003301 ei->last_trans = 0;
Chris Masondc17ff82008-01-08 15:46:30 -05003302 ei->ordered_trans = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003303 return &ei->vfs_inode;
3304}
3305
3306void btrfs_destroy_inode(struct inode *inode)
3307{
3308 WARN_ON(!list_empty(&inode->i_dentry));
3309 WARN_ON(inode->i_data.nrpages);
3310
Chris Mason8c416c92008-01-14 15:10:26 -05003311 btrfs_drop_extent_cache(inode, 0, (u64)-1);
Chris Mason39279cc2007-06-12 06:35:45 -04003312 kmem_cache_free(btrfs_inode_cachep, BTRFS_I(inode));
3313}
3314
Chris Mason44ec0b72007-10-29 10:55:05 -04003315#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
3316static void init_once(struct kmem_cache * cachep, void *foo)
3317#else
Chris Mason39279cc2007-06-12 06:35:45 -04003318static void init_once(void * foo, struct kmem_cache * cachep,
3319 unsigned long flags)
Chris Mason44ec0b72007-10-29 10:55:05 -04003320#endif
Chris Mason39279cc2007-06-12 06:35:45 -04003321{
3322 struct btrfs_inode *ei = (struct btrfs_inode *) foo;
3323
3324 inode_init_once(&ei->vfs_inode);
3325}
3326
3327void btrfs_destroy_cachep(void)
3328{
3329 if (btrfs_inode_cachep)
3330 kmem_cache_destroy(btrfs_inode_cachep);
3331 if (btrfs_trans_handle_cachep)
3332 kmem_cache_destroy(btrfs_trans_handle_cachep);
3333 if (btrfs_transaction_cachep)
3334 kmem_cache_destroy(btrfs_transaction_cachep);
3335 if (btrfs_bit_radix_cachep)
3336 kmem_cache_destroy(btrfs_bit_radix_cachep);
3337 if (btrfs_path_cachep)
3338 kmem_cache_destroy(btrfs_path_cachep);
3339}
3340
Chris Mason86479a02007-09-10 19:58:16 -04003341struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
Chris Mason92fee662007-07-25 12:31:35 -04003342 unsigned long extra_flags,
Chris Mason44ec0b72007-10-29 10:55:05 -04003343#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,23)
3344 void (*ctor)(struct kmem_cache *, void *)
3345#else
Chris Mason92fee662007-07-25 12:31:35 -04003346 void (*ctor)(void *, struct kmem_cache *,
Chris Mason44ec0b72007-10-29 10:55:05 -04003347 unsigned long)
3348#endif
3349 )
Chris Mason92fee662007-07-25 12:31:35 -04003350{
3351 return kmem_cache_create(name, size, 0, (SLAB_RECLAIM_ACCOUNT |
3352 SLAB_MEM_SPREAD | extra_flags), ctor
3353#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
3354 ,NULL
3355#endif
3356 );
3357}
3358
Chris Mason39279cc2007-06-12 06:35:45 -04003359int btrfs_init_cachep(void)
3360{
Chris Mason86479a02007-09-10 19:58:16 -04003361 btrfs_inode_cachep = btrfs_cache_create("btrfs_inode_cache",
Chris Mason92fee662007-07-25 12:31:35 -04003362 sizeof(struct btrfs_inode),
3363 0, init_once);
Chris Mason39279cc2007-06-12 06:35:45 -04003364 if (!btrfs_inode_cachep)
3365 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003366 btrfs_trans_handle_cachep =
3367 btrfs_cache_create("btrfs_trans_handle_cache",
3368 sizeof(struct btrfs_trans_handle),
3369 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003370 if (!btrfs_trans_handle_cachep)
3371 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003372 btrfs_transaction_cachep = btrfs_cache_create("btrfs_transaction_cache",
Chris Mason39279cc2007-06-12 06:35:45 -04003373 sizeof(struct btrfs_transaction),
Chris Mason92fee662007-07-25 12:31:35 -04003374 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003375 if (!btrfs_transaction_cachep)
3376 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003377 btrfs_path_cachep = btrfs_cache_create("btrfs_path_cache",
Yan23223582007-09-17 11:08:52 -04003378 sizeof(struct btrfs_path),
Chris Mason92fee662007-07-25 12:31:35 -04003379 0, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003380 if (!btrfs_path_cachep)
3381 goto fail;
Chris Mason86479a02007-09-10 19:58:16 -04003382 btrfs_bit_radix_cachep = btrfs_cache_create("btrfs_radix", 256,
Chris Mason92fee662007-07-25 12:31:35 -04003383 SLAB_DESTROY_BY_RCU, NULL);
Chris Mason39279cc2007-06-12 06:35:45 -04003384 if (!btrfs_bit_radix_cachep)
3385 goto fail;
3386 return 0;
3387fail:
3388 btrfs_destroy_cachep();
3389 return -ENOMEM;
3390}
3391
3392static int btrfs_getattr(struct vfsmount *mnt,
3393 struct dentry *dentry, struct kstat *stat)
3394{
3395 struct inode *inode = dentry->d_inode;
3396 generic_fillattr(inode, stat);
Chris Masond6667462008-01-03 14:51:00 -05003397 stat->blksize = PAGE_CACHE_SIZE;
Chris Mason90692182008-02-08 13:49:28 -05003398 stat->blocks = inode->i_blocks + (BTRFS_I(inode)->delalloc_bytes >> 9);
Chris Mason39279cc2007-06-12 06:35:45 -04003399 return 0;
3400}
3401
3402static int btrfs_rename(struct inode * old_dir, struct dentry *old_dentry,
3403 struct inode * new_dir,struct dentry *new_dentry)
3404{
3405 struct btrfs_trans_handle *trans;
3406 struct btrfs_root *root = BTRFS_I(old_dir)->root;
3407 struct inode *new_inode = new_dentry->d_inode;
3408 struct inode *old_inode = old_dentry->d_inode;
3409 struct timespec ctime = CURRENT_TIME;
3410 struct btrfs_path *path;
Chris Mason39279cc2007-06-12 06:35:45 -04003411 int ret;
3412
3413 if (S_ISDIR(old_inode->i_mode) && new_inode &&
3414 new_inode->i_size > BTRFS_EMPTY_DIR_SIZE) {
3415 return -ENOTEMPTY;
3416 }
Chris Mason5f39d392007-10-15 16:14:19 -04003417
Chris Mason39279cc2007-06-12 06:35:45 -04003418 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05003419 ret = btrfs_check_free_space(root, 1, 0);
3420 if (ret)
3421 goto out_unlock;
3422
Chris Mason39279cc2007-06-12 06:35:45 -04003423 trans = btrfs_start_transaction(root, 1);
Chris Mason5f39d392007-10-15 16:14:19 -04003424
Chris Mason39279cc2007-06-12 06:35:45 -04003425 btrfs_set_trans_block_group(trans, new_dir);
3426 path = btrfs_alloc_path();
3427 if (!path) {
3428 ret = -ENOMEM;
3429 goto out_fail;
3430 }
3431
3432 old_dentry->d_inode->i_nlink++;
3433 old_dir->i_ctime = old_dir->i_mtime = ctime;
3434 new_dir->i_ctime = new_dir->i_mtime = ctime;
3435 old_inode->i_ctime = ctime;
Chris Mason5f39d392007-10-15 16:14:19 -04003436
Chris Mason39279cc2007-06-12 06:35:45 -04003437 ret = btrfs_unlink_trans(trans, root, old_dir, old_dentry);
3438 if (ret)
3439 goto out_fail;
3440
3441 if (new_inode) {
3442 new_inode->i_ctime = CURRENT_TIME;
3443 ret = btrfs_unlink_trans(trans, root, new_dir, new_dentry);
3444 if (ret)
3445 goto out_fail;
Chris Mason39279cc2007-06-12 06:35:45 -04003446 }
Chris Mason9c583092008-01-29 15:15:18 -05003447 ret = btrfs_add_link(trans, new_dentry, old_inode, 1);
Chris Mason39279cc2007-06-12 06:35:45 -04003448 if (ret)
3449 goto out_fail;
3450
3451out_fail:
3452 btrfs_free_path(path);
3453 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003454out_unlock:
Chris Mason39279cc2007-06-12 06:35:45 -04003455 mutex_unlock(&root->fs_info->fs_mutex);
3456 return ret;
3457}
3458
3459static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
3460 const char *symname)
3461{
3462 struct btrfs_trans_handle *trans;
3463 struct btrfs_root *root = BTRFS_I(dir)->root;
3464 struct btrfs_path *path;
3465 struct btrfs_key key;
Chris Mason1832a6d2007-12-21 16:27:21 -05003466 struct inode *inode = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -04003467 int err;
3468 int drop_inode = 0;
3469 u64 objectid;
3470 int name_len;
3471 int datasize;
Chris Mason5f39d392007-10-15 16:14:19 -04003472 unsigned long ptr;
Chris Mason39279cc2007-06-12 06:35:45 -04003473 struct btrfs_file_extent_item *ei;
Chris Mason5f39d392007-10-15 16:14:19 -04003474 struct extent_buffer *leaf;
Chris Mason1832a6d2007-12-21 16:27:21 -05003475 unsigned long nr = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003476
3477 name_len = strlen(symname) + 1;
3478 if (name_len > BTRFS_MAX_INLINE_DATA_SIZE(root))
3479 return -ENAMETOOLONG;
Chris Mason1832a6d2007-12-21 16:27:21 -05003480
Chris Mason39279cc2007-06-12 06:35:45 -04003481 mutex_lock(&root->fs_info->fs_mutex);
Chris Mason1832a6d2007-12-21 16:27:21 -05003482 err = btrfs_check_free_space(root, 1, 0);
3483 if (err)
3484 goto out_fail;
3485
Chris Mason39279cc2007-06-12 06:35:45 -04003486 trans = btrfs_start_transaction(root, 1);
3487 btrfs_set_trans_block_group(trans, dir);
3488
3489 err = btrfs_find_free_objectid(trans, root, dir->i_ino, &objectid);
3490 if (err) {
3491 err = -ENOSPC;
3492 goto out_unlock;
3493 }
3494
Chris Mason9c583092008-01-29 15:15:18 -05003495 inode = btrfs_new_inode(trans, root, dentry->d_name.name,
3496 dentry->d_name.len,
3497 dentry->d_parent->d_inode->i_ino, objectid,
Chris Mason39279cc2007-06-12 06:35:45 -04003498 BTRFS_I(dir)->block_group, S_IFLNK|S_IRWXUGO);
3499 err = PTR_ERR(inode);
3500 if (IS_ERR(inode))
3501 goto out_unlock;
3502
3503 btrfs_set_trans_block_group(trans, inode);
Chris Mason9c583092008-01-29 15:15:18 -05003504 err = btrfs_add_nondir(trans, dentry, inode, 0);
Chris Mason39279cc2007-06-12 06:35:45 -04003505 if (err)
3506 drop_inode = 1;
3507 else {
3508 inode->i_mapping->a_ops = &btrfs_aops;
Chris Mason04160082008-03-26 10:28:07 -04003509 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003510 inode->i_fop = &btrfs_file_operations;
3511 inode->i_op = &btrfs_file_inode_operations;
Chris Masond1310b22008-01-24 16:13:08 -05003512 extent_map_tree_init(&BTRFS_I(inode)->extent_tree, GFP_NOFS);
3513 extent_io_tree_init(&BTRFS_I(inode)->io_tree,
Chris Masona52d9a82007-08-27 16:49:44 -04003514 inode->i_mapping, GFP_NOFS);
Chris Mason7e383262008-04-09 16:28:12 -04003515 extent_io_tree_init(&BTRFS_I(inode)->io_failure_tree,
3516 inode->i_mapping, GFP_NOFS);
Chris Mason90692182008-02-08 13:49:28 -05003517 BTRFS_I(inode)->delalloc_bytes = 0;
Chris Mason81d7ed22008-04-25 08:51:48 -04003518 atomic_set(&BTRFS_I(inode)->ordered_writeback, 0);
Chris Masond1310b22008-01-24 16:13:08 -05003519 BTRFS_I(inode)->io_tree.ops = &btrfs_extent_io_ops;
Chris Mason39279cc2007-06-12 06:35:45 -04003520 }
3521 dir->i_sb->s_dirt = 1;
3522 btrfs_update_inode_block_group(trans, inode);
3523 btrfs_update_inode_block_group(trans, dir);
3524 if (drop_inode)
3525 goto out_unlock;
3526
3527 path = btrfs_alloc_path();
3528 BUG_ON(!path);
3529 key.objectid = inode->i_ino;
3530 key.offset = 0;
Chris Mason39279cc2007-06-12 06:35:45 -04003531 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
3532 datasize = btrfs_file_extent_calc_inline_size(name_len);
3533 err = btrfs_insert_empty_item(trans, root, path, &key,
3534 datasize);
Chris Mason54aa1f42007-06-22 14:16:25 -04003535 if (err) {
3536 drop_inode = 1;
3537 goto out_unlock;
3538 }
Chris Mason5f39d392007-10-15 16:14:19 -04003539 leaf = path->nodes[0];
3540 ei = btrfs_item_ptr(leaf, path->slots[0],
3541 struct btrfs_file_extent_item);
3542 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
3543 btrfs_set_file_extent_type(leaf, ei,
Chris Mason39279cc2007-06-12 06:35:45 -04003544 BTRFS_FILE_EXTENT_INLINE);
3545 ptr = btrfs_file_extent_inline_start(ei);
Chris Mason5f39d392007-10-15 16:14:19 -04003546 write_extent_buffer(leaf, symname, ptr, name_len);
3547 btrfs_mark_buffer_dirty(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -04003548 btrfs_free_path(path);
Chris Mason5f39d392007-10-15 16:14:19 -04003549
Chris Mason39279cc2007-06-12 06:35:45 -04003550 inode->i_op = &btrfs_symlink_inode_operations;
3551 inode->i_mapping->a_ops = &btrfs_symlink_aops;
Chris Mason04160082008-03-26 10:28:07 -04003552 inode->i_mapping->backing_dev_info = &root->fs_info->bdi;
Chris Mason39279cc2007-06-12 06:35:45 -04003553 inode->i_size = name_len - 1;
Chris Mason54aa1f42007-06-22 14:16:25 -04003554 err = btrfs_update_inode(trans, root, inode);
3555 if (err)
3556 drop_inode = 1;
Chris Mason39279cc2007-06-12 06:35:45 -04003557
3558out_unlock:
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003559 nr = trans->blocks_used;
Chris Mason39279cc2007-06-12 06:35:45 -04003560 btrfs_end_transaction(trans, root);
Chris Mason1832a6d2007-12-21 16:27:21 -05003561out_fail:
Chris Mason39279cc2007-06-12 06:35:45 -04003562 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -04003563 if (drop_inode) {
3564 inode_dec_link_count(inode);
3565 iput(inode);
3566 }
Chris Masond3c2fdcf2007-09-17 10:58:06 -04003567 btrfs_btree_balance_dirty(root, nr);
Chris Masone2008b62008-01-08 15:46:30 -05003568 btrfs_throttle(root);
Chris Mason39279cc2007-06-12 06:35:45 -04003569 return err;
3570}
Chris Mason16432982008-04-10 10:23:21 -04003571
Yanfdebe2b2008-01-14 13:26:08 -05003572static int btrfs_permission(struct inode *inode, int mask,
3573 struct nameidata *nd)
3574{
3575 if (btrfs_test_flag(inode, READONLY) && (mask & MAY_WRITE))
3576 return -EACCES;
3577 return generic_permission(inode, mask, NULL);
3578}
Chris Mason39279cc2007-06-12 06:35:45 -04003579
3580static struct inode_operations btrfs_dir_inode_operations = {
3581 .lookup = btrfs_lookup,
3582 .create = btrfs_create,
3583 .unlink = btrfs_unlink,
3584 .link = btrfs_link,
3585 .mkdir = btrfs_mkdir,
3586 .rmdir = btrfs_rmdir,
3587 .rename = btrfs_rename,
3588 .symlink = btrfs_symlink,
3589 .setattr = btrfs_setattr,
Josef Bacik618e21d2007-07-11 10:18:17 -04003590 .mknod = btrfs_mknod,
Josef Bacik5103e942007-11-16 11:45:54 -05003591 .setxattr = generic_setxattr,
3592 .getxattr = generic_getxattr,
3593 .listxattr = btrfs_listxattr,
3594 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003595 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003596};
Chris Mason39279cc2007-06-12 06:35:45 -04003597static struct inode_operations btrfs_dir_ro_inode_operations = {
3598 .lookup = btrfs_lookup,
Yanfdebe2b2008-01-14 13:26:08 -05003599 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003600};
Chris Mason39279cc2007-06-12 06:35:45 -04003601static struct file_operations btrfs_dir_file_operations = {
3602 .llseek = generic_file_llseek,
3603 .read = generic_read_dir,
3604 .readdir = btrfs_readdir,
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003605 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003606#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -04003607 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -04003608#endif
3609};
3610
Chris Masond1310b22008-01-24 16:13:08 -05003611static struct extent_io_ops btrfs_extent_io_ops = {
Chris Mason07157aa2007-08-30 08:50:51 -04003612 .fill_delalloc = run_delalloc_range,
Chris Mason065631f2008-02-20 12:07:25 -05003613 .submit_bio_hook = btrfs_submit_bio_hook,
Chris Mason239b14b2008-03-24 15:02:07 -04003614 .merge_bio_hook = btrfs_merge_bio_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003615 .readpage_io_hook = btrfs_readpage_io_hook,
3616 .readpage_end_io_hook = btrfs_readpage_end_io_hook,
Chris Mason7e383262008-04-09 16:28:12 -04003617 .readpage_io_failed_hook = btrfs_readpage_io_failed_hook,
Chris Masonb0c68f82008-01-31 11:05:37 -05003618 .set_bit_hook = btrfs_set_bit_hook,
3619 .clear_bit_hook = btrfs_clear_bit_hook,
Chris Mason07157aa2007-08-30 08:50:51 -04003620};
3621
Chris Mason39279cc2007-06-12 06:35:45 -04003622static struct address_space_operations btrfs_aops = {
3623 .readpage = btrfs_readpage,
3624 .writepage = btrfs_writepage,
Chris Masonb293f02e2007-11-01 19:45:34 -04003625 .writepages = btrfs_writepages,
Chris Mason3ab2fb52007-11-08 10:59:22 -05003626 .readpages = btrfs_readpages,
Chris Mason39279cc2007-06-12 06:35:45 -04003627 .sync_page = block_sync_page,
Chris Mason39279cc2007-06-12 06:35:45 -04003628 .bmap = btrfs_bmap,
Chris Mason16432982008-04-10 10:23:21 -04003629 .direct_IO = btrfs_direct_IO,
Chris Masona52d9a82007-08-27 16:49:44 -04003630 .invalidatepage = btrfs_invalidatepage,
3631 .releasepage = btrfs_releasepage,
3632 .set_page_dirty = __set_page_dirty_nobuffers,
Chris Mason39279cc2007-06-12 06:35:45 -04003633};
3634
3635static struct address_space_operations btrfs_symlink_aops = {
3636 .readpage = btrfs_readpage,
3637 .writepage = btrfs_writepage,
Chris Mason2bf5a722007-08-30 11:54:02 -04003638 .invalidatepage = btrfs_invalidatepage,
3639 .releasepage = btrfs_releasepage,
Chris Mason39279cc2007-06-12 06:35:45 -04003640};
3641
3642static struct inode_operations btrfs_file_inode_operations = {
3643 .truncate = btrfs_truncate,
3644 .getattr = btrfs_getattr,
3645 .setattr = btrfs_setattr,
Josef Bacik5103e942007-11-16 11:45:54 -05003646 .setxattr = generic_setxattr,
3647 .getxattr = generic_getxattr,
3648 .listxattr = btrfs_listxattr,
3649 .removexattr = generic_removexattr,
Yanfdebe2b2008-01-14 13:26:08 -05003650 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003651};
Josef Bacik618e21d2007-07-11 10:18:17 -04003652static struct inode_operations btrfs_special_inode_operations = {
3653 .getattr = btrfs_getattr,
3654 .setattr = btrfs_setattr,
Yanfdebe2b2008-01-14 13:26:08 -05003655 .permission = btrfs_permission,
Josef Bacik618e21d2007-07-11 10:18:17 -04003656};
Chris Mason39279cc2007-06-12 06:35:45 -04003657static struct inode_operations btrfs_symlink_inode_operations = {
3658 .readlink = generic_readlink,
3659 .follow_link = page_follow_link_light,
3660 .put_link = page_put_link,
Yanfdebe2b2008-01-14 13:26:08 -05003661 .permission = btrfs_permission,
Chris Mason39279cc2007-06-12 06:35:45 -04003662};